diff options
Diffstat (limited to 'Master/tlpkg')
233 files changed, 14227 insertions, 9452 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index 0622adafab5..6d606bb1caa 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -1,6 +1,6 @@ # $Id$ # TeXLive::TLConfig.pm - module exporting configuration values -# Copyright 2007-2024 Norbert Preining +# Copyright 2007-2025 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -62,7 +62,7 @@ BEGIN { # the year of our release, will be used in the location of the # network packages, and in menu names, and other places. -our $ReleaseYear = 2024; +our $ReleaseYear = 2025; # users can upgrade from this year to the current year; might be the # same as the release year, or any number of releases earlier. diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm index 53762e9e676..aedaf21e225 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -1,6 +1,6 @@ # $Id$ # TeXLive::TLPOBJ.pm - module for using tlpobj files -# Copyright 2007-2023 Norbert Preining +# Copyright 2007-2025 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -1131,7 +1131,7 @@ sub updmap_cfg_lines { } elsif ($maps{$_} == 3) { push @updmaplines, "KanjiMap $_\n"; } else { - tlerror("Should not happen!\n"); + tlerror("impossible maps value for $_: $maps{$_}"); } } return(@updmaplines); diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm index 1b79f239b07..29662efa299 100644 --- a/Master/tlpkg/TeXLive/TLPSRC.pm +++ b/Master/tlpkg/TeXLive/TLPSRC.pm @@ -1,6 +1,6 @@ # $Id$ # TeXLive::TLPSRC.pm - module for handling tlpsrc files -# Copyright 2007-2023 Norbert Preining +# Copyright 2007-2025 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -229,6 +229,9 @@ sub from_file { } elsif ($line =~ /^(depend|hard)\s+(.*)$/) { push (@depends, $2) if ($2 ne ""); + } elsif ($line =~ /^soft\s+(.*)$/) { + ; # accept and ignore + } elsif ($line =~ /^postaction\s+(.*)$/) { push (@postactions, $1) if ($1 ne ""); diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index b9ff366fcee..342318596a6 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -1,6 +1,6 @@ # $Id$ # TeXLive::TLUtils.pm - the inevitable utilities for TeX Live. -# Copyright 2007-2024 Norbert Preining, Reinhard Kotucha +# Copyright 2007-2025 Norbert Preining, Reinhard Kotucha # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -3666,6 +3666,9 @@ sub _create_config_files { tlwarn("Updating $dest, backup copy in $dest.backup\n"); copy("-f", $dest, "$dest.backup"); } + # ensure destination directory exists. + my $destdir = dirname ($dest); + -d $destdir || mkdirhier $destdir; # if fails, the next open will die. open(OUTFILE,">$dest") or die("Cannot open $dest for writing: $!"); @@ -3677,77 +3680,106 @@ sub _create_config_files { close(OUTFILE) || warn "close(>$dest) failed: $!"; } +# sub parse_AddHyphen_line { my $line = shift; my %ret; # default values - my $default_lefthyphenmin = 2; - my $default_righthyphenmin = 3; - $ret{"lefthyphenmin"} = $default_lefthyphenmin; - $ret{"righthyphenmin"} = $default_righthyphenmin; + my $default_lefthyphenmin = -1; + my $default_righthyphenmin = -1; $ret{"synonyms"} = []; + $ret{"databases"} = ["dat", "def", "lua"]; for my $p (quotewords('\s+', 0, "$line")) { my ($a, $b) = split /=/, $p; if ($a eq "name") { if (!$b) { - $ret{"error"} = "AddHyphen line needs name=something"; + $ret{"error"} = "AddHyphen line needs name=something: $line"; return %ret; } $ret{"name"} = $b; next; } if ($a eq "lefthyphenmin") { - $ret{"lefthyphenmin"} = ( $b ? $b : $default_lefthyphenmin ); + if (! defined $b) { + $ret{"error"} = "AddHyphen line needs lefthyphenmin=something: $line"; + return %ret; + } + $ret{"lefthyphenmin"} = $b; next; } if ($a eq "righthyphenmin") { - $ret{"righthyphenmin"} = ( $b ? $b : $default_righthyphenmin ); + if (! defined $b) { + $ret{"error"} = "AddHyphen line needs righthyphenmin=something: $line"; + return %ret; + } + $ret{"righthyphenmin"} = $b; next; } if ($a eq "file") { if (!$b) { - $ret{"error"} = "AddHyphen line needs file=something"; + $ret{"error"} = "AddHyphen line needs file=something: $line "; return %ret; } $ret{"file"} = $b; next; } if ($a eq "file_patterns") { - $ret{"file_patterns"} = $b; - next; + # many are blank in hyph-utf8, don't check. + $ret{"file_patterns"} = $b; + next; } if ($a eq "file_exceptions") { - $ret{"file_exceptions"} = $b; - next; + # many are blank in hyph-utf8, don't check. + $ret{"file_exceptions"} = $b; + next; } if ($a eq "luaspecial") { - $ret{"luaspecial"} = $b; - next; + if (!$b) { + $ret{"error"} = "AddHyphen line needs luaspecial=something: $line"; + return %ret; + } + $ret{"luaspecial"} = $b; + next; } if ($a eq "databases") { + if (!$b) { + $ret{"error"} = "AddHyphen line needs databases=foo[,bar]: $line"; + return %ret; + } @{$ret{"databases"}} = split /,/, $b; next; } if ($a eq "synonyms") { + if (!$b) { + $ret{"error"} = "AddHyphen line needs synonyms=foo[,bar]: $line"; + return %ret; + } @{$ret{"synonyms"}} = split /,/, $b; next; } if ($a eq "comment") { - $ret{"comment"} = $b; - next; + $ret{"comment"} = $b; + next; } # should not be reached at all - $ret{"error"} = "Unknown language directive $a"; + $ret{"error"} = "Unknown AddHyphen directive $a: $line"; return %ret; } - # this default value couldn't be set earlier - if (not defined($ret{"databases"})) { - if (defined $ret{"file_patterns"} or defined $ret{"file_exceptions"} - or defined $ret{"luaspecial"}) { - @{$ret{"databases"}} = qw(dat def lua); - } else { - @{$ret{"databases"}} = qw(dat def); - } + if (! $ret{"name"}) { + $ret{"error"} = "AddHyphen is missing name setting: $line"; + return %ret; + } + if ($ret{"lefthyphenmin"} !~ /^[0-9]$/) { + $ret{"lefthyphenmin"} = "" if ! $ret{"lefthyphenmin"}; #undef warning + $ret{"error"} = "AddHyphen has missing or bad " + . " lefthyphenmin ($ret{lefthyphenmin}): $line"; + return %ret; + } + if ($ret{"righthyphenmin"} !~ /^[0-9]$/) { + $ret{"righthyphenmin"} = "" if ! $ret{"righthyphenmin"}; #undef warning + $ret{"error"} = "AddHyphen has missing or bad " + . " righthyphenmin ($ret{righthyphenmin}): $line"; + return %ret; } return %ret; } diff --git a/Master/tlpkg/TeXLive/TLWinGoo.pm b/Master/tlpkg/TeXLive/TLWinGoo.pm index e7076aea7ee..9251190c6c9 100644 --- a/Master/tlpkg/TeXLive/TLWinGoo.pm +++ b/Master/tlpkg/TeXLive/TLWinGoo.pm @@ -463,6 +463,7 @@ sub adjust_reg_path_for_texlive { debug("Warning: [pdf]tex program not found in $tlbindir\n") if (!is_a_texdir($tlbindir)); my $path = ($mode eq 'system') ? get_system_path() : get_user_path(); + debug("TLWinGoo: adjust_reg_path_for_texlive: current path before adjusting = $path\n"); $tlbindir =~ s!/!\\!g; my $tlbindir_short = uc(short_name($tlbindir)); my ($d, $d_short, @newpath); @@ -490,7 +491,7 @@ sub adjust_reg_path_for_texlive { } } if (@newpath) { - debug("TLWinGoo: adjust_reg_path_for_texlive: calling setenv_reg in $mode\n"); + debug("TLWinGoo: adjust_reg_path_for_texlive: calling setenv_reg in $mode with new path = ", join(';', @newpath), "\n"); setenv_reg("Path", join(';', @newpath), $mode); } else { debug("TLWinGoo: adjust_reg_path_for_texlive: calling unsetenv_reg in $mode\n"); diff --git a/Master/tlpkg/asymptote64/asy.exe b/Master/tlpkg/asymptote64/asy.exe Binary files differindex be19d5d7458..b8f30f36831 100755 --- a/Master/tlpkg/asymptote64/asy.exe +++ b/Master/tlpkg/asymptote64/asy.exe diff --git a/Master/tlpkg/bin/c2a b/Master/tlpkg/bin/c2a index 3d1b942f4b1..670b9869f2a 100755 --- a/Master/tlpkg/bin/c2a +++ b/Master/tlpkg/bin/c2a @@ -43,9 +43,9 @@ sub main { my @lines; ($status,@lines) = &run_c2l (""); if ($status) { - print "first c2l failed, exiting.\n"; + print "first c2l failed, exiting ($status).\n"; print @lines; - exit $status; + exit $status / 256; } my $i; diff --git a/Master/tlpkg/bin/c2l b/Master/tlpkg/bin/c2l index 2f7891be9a7..89fc7e1a9fb 100755 --- a/Master/tlpkg/bin/c2l +++ b/Master/tlpkg/bin/c2l @@ -126,7 +126,7 @@ sub main { -d $cooked && system ("cp /tmp/@{[getlogin()]}-cl.out $cooked/$ARGV[$#ARGV].out"); # *** and other notable messages. - my @msgs = grep { /^\*\*\*.* \S/ + my @msgs = grep { /^\*\*\*.* / && ! /\* Generating / } @lines; push (@msgs, grep { /at \/.* line / } @lines); # perl errors diff --git a/Master/tlpkg/bin/c2lx b/Master/tlpkg/bin/c2lx index 7554b43107d..69d14e685f7 100755 --- a/Master/tlpkg/bin/c2lx +++ b/Master/tlpkg/bin/c2lx @@ -3,19 +3,21 @@ # Originally written by Karl Berry. Public domain. # # Front-front-end script for c2l to update -# (with first arg "3") LaTeX3, -# or (with first arg "e") LaTeX2e, -# or (with first arg "dev") latex-dev, -# each of which is comprised of several -# packages that should be updated together. Look at the end of the output -# for the summarized results for each package, e.g., to see if any files -# ended up getting misplaced. +# (with first arg "e") LaTeX2e, +# or (with first arg "dev") LaTeX-dev, +# etc., +# each of which is comprised of several packages to be updated together. # -# Additional argument "p" runs place also (same as c2l --place). +# Look at the end of the output for the summarized results for each +# package, e.g., to see if any files ended up getting misplaced. +# +# Final argument "p" runs place also (same as c2l --place). -dirsfile=/tmp/@{[getlogin()]}-`id -u`.tlplace.dirs -cp /dev/null $dirsfile.tmp -cp /dev/null /tmp/@{[getlogin()]}-first +placebase=${TMPDIR-/tmp}/`id -u`.tlplace +dirsfile=$placebase.dirs +firstfile=$placebase.first +tmpfile=$placebase.tmp +c2loutfile=$placebase.c2lout if test "x$1" = xe || test "x$1" = x2e; then shift; label=l2e @@ -24,15 +26,6 @@ elif test "x$1" = xdev; then shift; label=ldev pkgs="latex-amsmath-dev latex-firstaid-dev latex-graphics-dev latex-lab-dev" pkgs="$pkgs latex-tools-dev latex-base-dev l3build" -elif test "x$1" = x3; then - shift; label=l3 - pkgs="l3kernel l3packages l3experimental l3build l3backend" -elif test "x$1" = x3dev; then - shift; label=l3dev - pkgs="l3kernel-dev l3backend-dev" -elif test "x$1" = xdeng; then - shift; label=deng - pkgs="elegantbook elegantnote elegantpaper" elif test "x$1" = xhep; then shift; label=hep pkgs="hep-font hep-math-font hep-acronym hep-bibliography hep-float" @@ -41,37 +34,31 @@ elif test "x$1" = xjxu; then shift; label=jxu pkgs="colorist crefthe einfart minimalist simplivre" #pkgs="$pkgs beaulivre create-theorem mindflow projlib q-and-a homework lebhart" -elif test "x$1" = xluamath-all; then - shift; label=luamath-all # not really all - pkgs="lualinalg luanumint luaplot" - #luagcd luamodulartables luatruthtable luacomplex luamaths luaset elif test "x$1" = xminim-all; then shift; label=minim pkgs="minim-hatching minim-math minim-mp minim-pdf minim-xmp minim" -elif test "x$1" = xqyi; then - shift; label=qyi - pkgs="easybook spbmark" -elif test "x$1" = xzref-all; then - shift; label=zref - pkgs="zref-check zref-clever zref-vario" else echo "$0: unknown latex or group type: $1" >&2 - echo "$0: must be one of: e dev 3 3dev deng jxu qyi minim-all" >&2 + echo "$0: must be one of: e dev 3 3dev ... minim-all (USTL)." >&2 exit 1 fi echo "`basename $0`: $label pkgs: $pkgs" +# +>$firstfile +>$tmpfile for p in $pkgs; do echo "${label} pkg $p" >&2 # progress report of a sort printf "\f ${label} pkg $p\n" - c2l "$@" $p | tee /tmp/@{[getlogin()]}-c2l.out - sed -n "1,/`printf '\f'`/p" /tmp/@{[getlogin()]}-c2l.out >>/tmp/@{[getlogin()]}-first - echo >>/tmp/@{[getlogin()]}-first - cat $dirsfile >>$dirsfile.tmp + # each c2l call creates various; combine the directory lists and output. + c2l "$@" $p | tee $c2loutfile + sed -n "1,/`printf '\f'`/p" $c2loutfile >>$firstfile # first part of output + echo >>$firstfile + cat $dirsfile >>$tmpfile done -sort -u $dirsfile.tmp >$dirsfile +sort -u $tmpfile >$dirsfile wc $dirsfile echo -cat /tmp/@{[getlogin()]}-first +cat $firstfile diff --git a/Master/tlpkg/bin/ctan2tl b/Master/tlpkg/bin/ctan2tl index 31229fd4701..ccf52a6cdc4 100755 --- a/Master/tlpkg/bin/ctan2tl +++ b/Master/tlpkg/bin/ctan2tl @@ -10,7 +10,7 @@ LC_ALL=C; export LC_ALL # avoid problems with diff, comm, etc umask 022 # to avoid the svn hit on every run when developing. -TLPKGINFO_CATALOGUE_NO_UPDATE=1; export TLPKGINFO_CATALOGUE_NO_UPDATE +#TLPKGINFO_CATALOGUE_NO_UPDATE=1; export TLPKGINFO_CATALOGUE_NO_UPDATE mydir=`cd \`dirname $0\` && pwd` # Master/tlpkg/bin libexec=`cd $mydir/../libexec && pwd` # Master/tlpkg/libexec diff --git a/Master/tlpkg/bin/tl-check-fmtshare b/Master/tlpkg/bin/tl-check-fmtshare index d9edd433125..055bae6cb84 100755 --- a/Master/tlpkg/bin/tl-check-fmtshare +++ b/Master/tlpkg/bin/tl-check-fmtshare @@ -271,6 +271,7 @@ for fmt in $fmts; do # copy to remote machine. #echo "$0: copying $fmtfile to $remotesys:$remotedir..." scp -pq "$fmtfile" "$remotesys:$remotedir" || exit 1 + ls -l "$fmtfile"; shasum "$fmtfile" # load on remote machine. echo "$0: running ./$engine in $remotesys:$remotedir..." diff --git a/Master/tlpkg/bin/tl-hyph-test b/Master/tlpkg/bin/tl-hyph-test new file mode 100755 index 00000000000..4e67588f958 --- /dev/null +++ b/Master/tlpkg/bin/tl-hyph-test @@ -0,0 +1,242 @@ +#!/bin/sh +# $Id$ +# Public domain. Karl Berry, 2021; Arthur Rosendahl, 2021--2022. +# +# Method for testing hyph-utf8 before committing to TL. +# The idea is to make a new TL tree, unzip the hyph-utf8.tds.zip there, +# build TL from the modified (not committed) tree, +# install from that TL into another temp dir. +# Thus checking all the steps that will happen after commit. +# It's complicated. + +# Usage: +## Initial setup for first time: +##tmpdir=/home/texlive/hyphtest # used in TLhyphtest.pro (used below). +## # but otherwise could be anything +##mkdir $tmpdir # e.g., , could be anywhere +##cd $tmpdir +## +## Get svn checkout of Master tree; need real checkout for the build below. +##svn -q co svn://tug.org/texlive/trunk/Master # takes an hour +## If on tug, slightly faster: +##time nice -19 svn -q co file:///home/svn/texlive/trunk/Master +# +# +# After the first time, when the checkout already exists: +#cd $tmpdir +#rm -rf inst catdump.pl # clean up from last time +#svn update -q Master # get updates made in the meantime (30-60min) +#svn status Master # make sure it's completely clean +# +# Unzip the new hyph-utf tree in our temp checkout. +#pushd Master/texmf-dist +#ls -l $CTAN/install/language/hyph-utf8.tds.zip # ensure new file on ctan +#unzip !$ # overwrite All +# In that unzip command, overwrite All symlinks with the regular files. +# (Can't use -q since we have to do this overwrite.) +# On tug.org, CTAN=/home/ftp/tex-archive. +# (This unzip won't remove any no-longer-distributed files, but that +# seems like too much trouble to deal with here. The final commit +# will take care of it.) +# +# Unzip new tlpsrc files (without leading directory): +#cd ../tlpkg/tlpsrc +#unzip -j ../../texmf-dist/source/generic/hyph-utf8/tlpsrc.zip # overwrite All +# +# No tlpsrc should have any non-ASCII characters. If so, change them & report: +#~karl/bin/nonascii *.tlpsrc +# +# Back to top level of $tmpdir (the one with the ./Master subdir). +#popd +# +# See what we've got. +#svn status Master # if new package/file has been added, set newpkg/file below +#svn diff Master >/tmp/sdh # review changes +# +# When ready, run this script: +#./Master/tlpkg/bin/tl-hyph-test +# +# For files "present but not covered", check if they are in the original +# hypf-utf8.tds.zip; if so, then it's a bug in the tlpsrc generation, +# report. If not, then rm them from our working directory, and svn rm +# them from the TL dev directory where we'll eventually commit. (The +# usual method for determining when files have been removed won't work +# here because hyph-utf8 is split into numerous TL packages.) +# +# Once it all works, can install hyph-utf8 with ctan2tl [p] as usual; +# copy any changed .tlpsrc (or other) files to dev, and +# don't commit in hyphtest, so additions and removals will be correct. +# Also, good to run a test build right after committing since there is a +# good chance of failure, despite all the testing: +#force_rebuild=true cron.trunk # or cron.pretest, if during pretest +# +# To clean up here: +#rm -rf inst tmp catdump.pl +#svn revert --depth infinity Master >/tmp/svri +#rm `svn status Master | sed -n 's/\?//p'` # remove "?" files (new ones) +#svn status Master # ensure clean + +# +: ${do_mktexlsr=true} +: ${do_tlpdb=true} +: ${do_lang_files=true} +: ${do_install=true} +: ${do_pkgs=true} +: ${newfile=hyph-he.tex} # some new file in the new release +: ${newpkg=hyphen-hebrew} # and the package it's in + +real0=`realpath $0` +mydir=`cd \`dirname "$real0"\` && pwd` # tlpkg/bin + +Master=`cd $mydir/../.. && pwd` +test -d "$Master" || { echo "$0: no Master dir: $Master" >&2; exit 1; } + +top=`cd $Master/.. && pwd` + +# /usr/local/bin for updated perl on tug. +PATH=$Master/bin/x86_64-linux:/usr/local/bin:/usr/bin +TMPDIR=$top/tmp; export TMPDIR +test -d $TMPDIR || mkdir $TMPDIR +test -d $TMPDIR || { echo "$0: no tmpdir?: $TMPDIR" >&2; exit 1; } + +unset TEXMFSYSVAR; unset TEXMFSYSCONFIG +unset TEXMFVAR; unset TEXMFCONFIG +MKTEXFMT=0; export MKTEXFMT +MKTEXTFM=0; export MKTEXTFM + +if $do_mktexlsr; then + printf "\n\f `date`\n" + set -x + mktexlsr --verbose || exit 1; set +x +fi +# +if kpsewhich $newfile >/dev/null; then :; else + echo "$0: kpsewhich could not find new file, ls-R problem?: $newfile" >&2 + exit 1 +fi + +if $do_tlpdb; then + printf "\n\f `date`\n" + # It takes a long time to read the Catalogue info; it can be turned + # off as shown, but then the resulting texlive.tlpdb will be hugely + # different from the canonical one, which makes it hard to check. + nocat="--catalogue /nonesuch"; nocat= + + # If running this multiple times, can use --catalogue-dump + # to avoid rereading the XML every time; just don't forget + # to remove the dump file when done, or it will never get updated. + # If you want to sit around waiting for the Catalogue reading every time, + # can just disable as shown. + catdump="--catalogue-dump $top/catdump.pl" #; catdump= + + # -v for progress; -vv for extremely voluminous debugging. + # --save-anyway because there will probably be revision decreases. + # --from-files because we don't want to commit the new files, + # so the script has to read the filesystem, not svn. + opts="-v --save-anyway --from-files $nocat $catdump" + set -x + $Master/tlpkg/bin/tl-update-tlpdb $opts || exit 1; set +x +fi +# +# we intentionally use tlmgr instead of grepping tlpdb directly +# to make sure it's working normally. + +if tlmgr info --list $newpkg | grep /$newfile'$' >/dev/null; then :; else + echo "$0: tlmgr could not find new file, tlpdb problem?: $newfile" >&2 + exit 1 +fi + +# +# Remake the language.* files. Irritatingly different for different +# formats and engines. + +# return 0 if files $1 and $2 are the same except for the first lines. +# (we need to ignore the timestamps in the generation lines.) +same_except_for_line1 () +{ + rm -f $TMPDIR/sef1 $TMPDIR/sef2 + sed 1d <"$1" >$TMPDIR/sef1 + sed 1d <"$2" >$TMPDIR/sef2 + cmp -s $TMPDIR/sef1 $TMPDIR/sef2 +} + +if $do_lang_files; then + printf "\n\f `date`\n" + echo "$0: updating language.* files ..." + + cd $Master/texmf-dist/tex/generic/config || exit 1 + for utype in language.dat language.def language.dat.lua; do + ufile=$utype + cmd="tlmgr -q generate --dest=$ufile.new $utype" + # -q to avoid the "helpful" message about running fmtutil. + printf "$ufile update with: $cmd\n" + $cmd || { echo "$0: $ufile generation failed: $cmd" >&2; exit 1; } + if same_except_for_line1 $ufile $ufile.new; then + printf " same: "; ls -l `pwd`/$ufile + rm $ufile.new + else + mv -v $ufile.new $ufile || exit 1 + printf " updated: "; ls -l `pwd`/$ufile + svn diff $ufile >$TMPDIR/$ufile.diff + echo " (diff in $TMPDIR/$ufile.diff)" + fi + done +fi + +# +printf "\n\f `date`\n" +cmd="tlmgr check files runfiles" +echo "$0: checking file consistency: $cmd" +$cmd || exit $? + +# +# Install minimal, then install the packages with AddHyphen directives +# (in practice: hyphen-* and dehyph-exptl), to avoid installing all the +# non-language stuff, which is a ton. + +instdir=$top/inst +if $do_install; then + printf "\n\f `date`\n" + echo "$0: installing minimal TL into: $instdir" + + rm -rf $instdir + date + set -x + $Master/tlpkg/bin/tl-try-install \ + -o $instdir \ + --profile $Master/tlpkg/dev/profiles/TLhyphtest.pro \ + --quiet \ + --repo $Master \ + || { echo "$0: tl-try-install failed." >&2; exit 1; } + set +x +fi + +if $do_pkgs; then + printf "\n\f `date`\n" + echo "$0: installing hyph packages with tlmgr into: $instdir" + + tlpsrc=$Master/tlpkg/tlpsrc + hyphen_pkgs=`cd $tlpsrc && grep -l AddHyphen * | sed s/.tlpsrc//` + if test -z "$hyphen_pkgs"; then + echo "$0: no packages with AddHyphen found in: $tlpsrc" >&2 + exit 1 + fi + + engine_pkgs="pdftex etex xetex luatex uptex " + + echo "$0: installing hyphen packages: " $hyphen_pkgs + echo "$0: and engine packages: " $engine_pkgs + + # reset PATH to run using our just-installed tree. + PATH=$instdir/bin/x86_64-linux:/usr/local/bin:/usr/bin + date + set -x + tlmgr install $hyphen_pkgs $engine_pkgs || exit $? +fi + +# also written into inst/ since we just changed PATH. +printf "\n\f `date`\n" +echo "$0: running fmtutil-sys separately from install for reproducibility:" +set -x +fmtutil-sys --all +# and that's our exit status. diff --git a/Master/tlpkg/bin/tl-update-asy b/Master/tlpkg/bin/tl-update-asy index da3929daee4..ec86af4dd5a 100755 --- a/Master/tlpkg/bin/tl-update-asy +++ b/Master/tlpkg/bin/tl-update-asy @@ -10,9 +10,13 @@ # define for myself; feel free to peruse tug.org:~karl/.bash_login, etc. # --karl -test "x$1" = x--build || exit 1 +# but running the script is nevertheless useful sometimes, as described below. +test "x$1" = x--build || test "x$1" = x--bin-github || exit 1 + renice +19 -p $$ >/dev/null 2>&1 +fatal () { echo "$0: goodbye, $*" >&2; exit 1; } + # if false && $update_sources_from_ctan; then # this part is about copying the sources from CTAN to TL. @@ -32,26 +36,26 @@ if false && $update_sources_from_ctan; then # show list of files to remove: diff -qr . /home/ftp/tex-archive/graphics/asymptote/ \ - | egrep -v ' differ' | egrep -v '\.svn' | tee /tmp/asyrm + | egrep -v ' differ' | egrep -v '\.svn|/binaries' | tee /tmp/asyrm sed -e 's,: ,/,' -e 's/^Only in //' /tmp/asyrm svn rm `!!` # final check and commit: svn status | fgrep \? # # don't worry about binaries. svn commit -m"asy $ver sources" . ../README - exit $? # elif test "x$1" = x--build; then # this part is about building the x86 linux asymptote on tug.org. - # Despite all the dire warnings above, this part actually can be run - # as a script, because it's so often necessary to redo. + # Despite all the dire warnings above, this part can be executed. unset GREP_OPTIONS CDPATH PATH=/usr/bin:/usr/sbin; export PATH # system gcc for sake of shared libs + PATH=$PATH:/usr/local/gnu/bin # libtool required PATH=$lb:$PATH # get our kpsewhich - svn=/usr/local/bin/svn # so we need our svn explicitly + PYTHON=python3.9; export PYTHON # 3.6 is too old + svn=/usr/local/bin/svn # so we need our svn explicitly set -x - rhtoolset=/opt/rh/devtoolset-10/enable + rhtoolset=/opt/rh/gcc-toolset-13/enable test -s $rhtoolset && . $rhtoolset set -e @@ -70,13 +74,13 @@ elif test "x$1" = x--build; then --with-latex=/tmp/ainst/latex --with-context=/tmp/ainst/context \ --disable-fftw --disable-gl --disable-gsl --disable-lsp \ --enable-texlive-build \ - CFLAGS=-g CXXFLAGS=-std=c++11 LDFLAGS="-static-libgcc -static-libstdc++" - make + CFLAGS=-g \ + LDFLAGS="-static-libgcc -static-libstdc++" + make -j`nproc` SILENT_MAKE= make check make install-prebuilt exit 0 - # elif false && $update_runtime_from_ainst; then # this part is about copying the results of a successful build @@ -88,6 +92,7 @@ elif false && $update_runtime_from_ainst; then xu=$B/source/utils xy=$xu/asymptote cd $xy + make distclean ver=`awk -F\" '{print $2}' revision.cc | sed 1q`; echo $ver # $cp binaries/x86_64-windows/texlive/asy.exe $pg/asymptote64/ @@ -126,24 +131,50 @@ elif false && $update_runtime_from_ainst; then #svn rm ... svn status $ci # just to see - scom -m"asymptote $ver support files, windows binary" $ci -fi + scom -m"asymptote $ver support files + windows binary" $ci -# the production build on x86_64-linux and i386-linux: -# -# cd .../Build/source/utils -# docker run -it -v "$(pwd)/asymptote:/asymptote" --entrypoint bash debian:10 -# -# In the docker container you are dropped in: -# apt update -# apt upgrade -# # note we do NOT install libtirpc-dev because it cannot disabled by configure -# apt install build-essential pkg-config libeigen3-dev libcurl4-openssl-dev libreadline-dev libboost-filesystem-dev flex libglu1-mesa-dev freeglut3-dev libosmesa6-dev libreadline6-dev zlib1g-dev bison libglm-dev libncurses-dev -# cd /asymptote -# ./configure --prefix=/tmp/asyinst --enable-static --enable-texlive-build CXXFLAGS=-std=c++11 --disable-gsl --disable-fftw --disable-lsp --disable-curl -# sed -i -e 's/^LIBS = /LIBS = -static-libgcc -static-libstdc++ /' Makefile -# make -j6 -# exit -# Strip and copy the resulting asy. -# For i386 binaries: -# docker run -it -v "$(pwd)/asymptote:/asymptote" --entrypoint bash i386/debian:10 +# +elif test "x$1" = x--bin-github; then + # The x86_64-linux binary and other platforms are built via github. See + # Build/source/.github/scripts/build-asy.sh (and workflows/build-asy.yml), + # siblings to the main TL build files there. + # + # The sources are synced every five minutes; see + # https://github.com/TeX-Live/texlive-source/actions/. + # + # The main.yml workflow will run automatically to build all of TL + # (and takes hours to complete); the build-asy.yml workflow has to be + # triggered manually from + # https://github.com/TeX-Live/texlive-source/actions/workflows/build-asy.yml + # + # Then, if it succeeds, the artifacts produced will appear on the + # result page and can be downloaded from there. The download links + # only work in a browser, not wget or curl. + # + # Then can run this script with --bin-github *.zip to install the + # available zips in the bin directories. + shift + mydir=`dirname $0` + Master=`cd $mydir/../.. && pwd` + bin=$Master/bin + test -d "$bin" || fatal "no bin directory: $bin" + echo "$0: installing into $bin..." + + for f in "$@"; do + # filenames: asy-amd64-freebsd.zip asy-i386-linux.zip + # asy-i386-freebsd.zip asy-x86_64-linux.zip + # and they unpack into a single file, asy-amd64-freebsd etc. + + # so, better be a known platform name. + platname=`echo "$f" | sed -e 's/^asy-//' -e 's/\.zip$//'` + platdir=$bin/$platname + test -d "$platdir" || fatal "no platform bin directory: $platdir" + + # and we should be able to unpack into it. + unzip -od "$platdir" "$f" || fatal "unzip -d $platdir failed" + + # and then we should be able to rename the binary to just asy. + mv -v "$platdir/asy-$platname" "$platdir/asy" || fatal "mv failed" + done + # then do the commit in Master/bin manually. +fi diff --git a/Master/tlpkg/bin/tl-update-auto b/Master/tlpkg/bin/tl-update-auto index 182a98e7cb2..38c6664f299 100755 --- a/Master/tlpkg/bin/tl-update-auto +++ b/Master/tlpkg/bin/tl-update-auto @@ -44,7 +44,7 @@ add_list= # autogenerate README.EN from readme.html. -# (skip, better to generate when needed and avoid spurious changes.) +# (skip, better to generate when needed to avoid spurious changes.) # #if $config_scripts_only; then :; else #$mydir/htmltext <readme-html.dir/readme.en.html >$temp @@ -264,8 +264,10 @@ if $config_scripts_only; then :; else echo "$0: ctan mirror list already updated today, skipping update:" >&2 ls -lt $mirrors4tl >&2 - elif wget --quiet https://ctan.org/tex-archive/CTAN.sites -O $ctan_mirrors \ - && rsync rsync://rsync.dante.ctan.org/MirMon/mirmon.state $ctan_mirmon; then +# && rsync rsync://rsync.dante.ctan.org/MirMon/mirmon.state $ctan_mirmon; then + elif wget -nv https://ctan.org/tex-archive/CTAN.sites -O $ctan_mirrors \ + && scp -pq ctan.org:/serv/ctan/scripts/mirmon-2.11/mirmon.state \ + $ctan_mirmon; then #echo "got new mirror data"; ls -ltr $TMPDIR $mydir/tl-update-ctan-mirrors -v $ctan_mirrors $ctan_mirmon \ >$mirrors4tl.new @@ -284,7 +286,7 @@ if $config_scripts_only; then :; else else echo "$0: ctan mirror data not retrievable, skipping." >&2 fi -fi # !config_scripts_only || !odd_day_num +fi # !config_scripts_only # curl cert bundle. Every other day is more than often enough. diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index c7c738a8afa..a16f1702061 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -230,12 +230,14 @@ for tlplat in $tlplats; do # Can check status at: # https://github.com/TeX-Live/texlive-source/actions # - # After ~20min, should have some new release tarballs at: + # After ~35min, should have release tarballs for most at: # https://github.com/TeX-Live/texlive-source/releases # (this is a different page than where you're put after creating # the release) + # and can install them with "c2l gh". # but arm and aarch are slow and will take hours to finish. # Should be able to update the finished ones as they happen. + # (For both: "c2l aargh".) # # If try before ready, no harm, just get error message "missing url". # diff --git a/Master/tlpkg/bin/tl-update-ctan-mirrors b/Master/tlpkg/bin/tl-update-ctan-mirrors index b2810898222..d7b53c0c01f 100755 --- a/Master/tlpkg/bin/tl-update-ctan-mirrors +++ b/Master/tlpkg/bin/tl-update-ctan-mirrors @@ -5,9 +5,10 @@ # or any later version. # # Write parsable list of active CTAN mirrors; run from tl-update-auto cron. -# Needed input: -# http://ctan.org/mirrors (aka CTAN.sites and README.mirrors) -# rsync://comedy.dante.de/MirMon/mirmon.state +# +# Needed input are the files from: +# https://ctan.org/mirrors (aka CTAN.sites and README.mirrors) +# (via scp) ctan.org:/serv/ctan/scripts/mirmon-2.11/mirmon.state # (on web: https://ctan.org/mirrors/mirmon) use strict; @@ -16,6 +17,7 @@ use Data::Dumper; my $prg; my $verbose = 0; +my $AGE_HOURS_CUTOFF = 36; # omit a mirror if it's older than this exit (&main ()); @@ -62,7 +64,7 @@ sub read_mstate { } else { # mirrors can be stale and yet not have no_time for their status. my $age_hours = (time() - $age) / (60 * 60); - if ($age_hours > 36) { + if ($age_hours > $AGE_HOURS_CUTOFF) { printf STDERR "mirror age %.1f hours, skipping: $m\n", $age_hours if $verbose; } else { diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index d602593bb94..5bffa3e9c4e 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -2,7 +2,7 @@ # $Id$ # Create the .iso image(s) for TeX Live. # -# Copyright 2007-2024 Karl Berry. +# Copyright 2007-2025 Karl Berry. # Copyright 2003, 2004, 2005 Sebastian Rahtz. # # This file is licensed under the GNU General Public License version 2 @@ -18,7 +18,7 @@ unset CDPATH # avoid output from cd umask 022 NAME=texlive -V=2024 +V=2025 D=`date +%Y%m%d` target=/home/ftp/texlive/Images/test diff --git a/Master/tlpkg/bin/tl-update-linked-scripts b/Master/tlpkg/bin/tl-update-linked-scripts index d2c6c814008..fd6b0a01b8e 100755 --- a/Master/tlpkg/bin/tl-update-linked-scripts +++ b/Master/tlpkg/bin/tl-update-linked-scripts @@ -15,7 +15,7 @@ compare_and_copy () { echo "updating $Src/$file -> $Dest/$file" diff -u0 $Src/$file $Dest/$file - cp $Src/$file $Dest/$file || exit 1 + cp -pv $Src/$file $Dest/$file || exit 1 done } @@ -29,30 +29,7 @@ test -r $Dest/scripts.lst || { exit 1 } -# echo "$Src => $Dest" - . $Dest/scripts.lst compare_and_copy $texmf_scripts exit $? - -# Here is how we handled a second directory, that copied in the other -# direction. As of January 2020, all the scripts in tl_scripts are gone, -# now maintained in Master with slaves in the normal linked_scripts -# handled above. -# -## Build/source/texk/texlive/tl_scripts => Master/texmf-dist/scripts/texlive -# -#Src=`cd $Dest/../tl_scripts && pwd` -#Dest=$Master/texmf-dist/scripts/texlive -# -#test -r $Src/scripts.lst || { -# echo "$0: \`$Src/scripts.lst' missing'" -# exit 1 -#} -# -## echo "$Src => $Dest" -# -#. $Src/scripts.lst -# -#compare_and_copy $tl_scripts diff --git a/Master/tlpkg/bin/tl-update-messages b/Master/tlpkg/bin/tl-update-messages index 5db86276049..ef5796587c7 100755 --- a/Master/tlpkg/bin/tl-update-messages +++ b/Master/tlpkg/bin/tl-update-messages @@ -23,7 +23,7 @@ cat install-tl >>$tmpfile xgettext -o tlpkg/translations/messages.pot \ --copyright-holder="TeX Live Team" \ --msgid-bugs-address=tex-live@tug.org \ - --package-version=2024 \ + --package-version=2025 \ --package-name="TeX Live" \ -k__ -k\$__ -k%__ -k__x -k__n:1,2 -k__nx:1,2 -k__xn:1,2 -kN__ -k \ texmf-dist/scripts/texlive/tlmgrgui.pl \ diff --git a/Master/tlpkg/bin/tl-update-tlnet b/Master/tlpkg/bin/tl-update-tlnet index d8df6e12d44..15177a194c7 100755 --- a/Master/tlpkg/bin/tl-update-tlnet +++ b/Master/tlpkg/bin/tl-update-tlnet @@ -1,5 +1,5 @@ #!/bin/sh -e -# Copyright 2008-2024 Norbert Preining +# Copyright 2008-2025 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. # @@ -13,7 +13,7 @@ renice 20 $$ >/dev/null 2>&1 unset CDPATH unset LS_COLORS -yyyy=2024 +yyyy=2025 adjust_repo=1 check_consistency=true diff --git a/Master/tlpkg/bin/tl-update-tlpdb b/Master/tlpkg/bin/tl-update-tlpdb index 5de6920820f..32d4a6bd13d 100755 --- a/Master/tlpkg/bin/tl-update-tlpdb +++ b/Master/tlpkg/bin/tl-update-tlpdb @@ -1,6 +1,6 @@ #!/usr/bin/env perl # $Id$ -# Copyright 2007-2024 Norbert Preining +# Copyright 2007-2025 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. # @@ -143,8 +143,8 @@ sub main { if ($opt_no_revision_check) { if ($opt_keep_revisions) { - copy_revisions_over($oldtlpdb, $newtlpdb); - info("$prg: keeping old revisions due to --keep-revisions\n"); + copy_revisions_over($oldtlpdb, $newtlpdb); + info("$prg: keeping old revisions due to --keep-revisions\n"); } else { info("$prg: not checking revisions due to --no-reverse-revision-check\n"); } @@ -211,7 +211,7 @@ sub main { } } if (!$buggy_tlpdb) { - finish($newtlpdb, $pkgcount); + finish($newtlpdb, $pkgcount); # never returns } else { # return error to the shell script, it is evaluated in cron.tl! return 1; @@ -277,10 +277,12 @@ sub compare_and_fix_tlpdbs { my ($rA, $rB) = split(':', $cmp{'different_packages'}->{$p}->{'revision'}); # since we only register 'revision' key when there is a - # change, we have either rA < rB or rA > rB - if ($rA > $rB) { + # change, we have either rA < rB or rA > rB. + # If read filesystem, the existing revision will always be 1, + # no use in giving a warning about every package. + if ($rA > $rB && (!$opt_fromfiles && $rB == 1)) { tlwarn("$prg: BIG WARNING for $p: file lists didn't change " - . "but revision is going backward ($rA > $rB)!\n"); + . "but revision is going backward ($rA > $rB)\n"); $packages_needing_fixup{$p} = 1; } # if strange revision change } # no revision changes @@ -702,6 +704,13 @@ sub is_hash_ref { sub finish { my ($tlpdb,$pkgcount) = @_; + + # uncommenting this line is the way to test parse_AddHyphen_line and + # similar, since that's the only time they are called. Seems like it + # would be cleaner to parse them when the *.tlpsrc is read. Someday. + #TeXLive::TLUtils::create_language_def($tlpdb, "/tmp/tlut-language.def", + # "/dev/null"); + if ($opt_output) { if (open(OUT, ">$opt_output")) { $tlpdb->writeout(\*OUT); diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index 4c6d1dd0eca..bacbc9b77ec 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -30,8 +30,8 @@ my @TLP_working = qw( adfathesis adforn adhocfilelist adigraph adjmulticol adfsymbols adjustbox adobemapping adrconv adtrees advdate advice - ae aeguill aesupp affilauthor afparticle afthesis - aguplus aiaa aichej ajl akktex akletter akshar + ae aeguill aesupp affilauthor afthesis + aguplus aiaa aichej aiplans ajl akktex akletter akshar albatross alchemist alegreya alertmessage alfaslabone alg algobox algolrevived algorithm2e algorithmicx algorithms algpseudocodex algxpar @@ -42,7 +42,7 @@ my @TLP_working = qw( amsaddr amscdx amscls amscls-doc amsfonts amslatex-primer amsldoc-it amsldoc-vn amsmath amsmath-it amsrefs amstex amsthdoc-it - andika annee-scolaire animate annotate annotate-equations + andika annee-scolaire anima animate annotate annotate-equations anonchap anonymous-acm anonymouspro answers antanilipsum antique-spanish-units antiqua antomega antt anufinalexam anyfontsize anysize @@ -61,7 +61,8 @@ my @TLP_working = qw( askinclude askmaps asmeconf asmejour aspectratio assignment association-matrix assoccnt asternote astro asyfig asymptote-faq-zh-cn asymptote-by-example-zh-cn asymptote-manual-zh-cn - asy-overview asypictureb atbegshi atenddvi atendofenv atkinson atveryend + asy-overview asypictureb atableau atbegshi + atenddvi atendofenv atkinson atveryend attachfile attachfile2 aucklandthesis augie auncial-new aurical aurl auto-pst-pdf-lua autobreak autopdf @@ -90,32 +91,34 @@ my @TLP_working = qw( babelbib background backnaur baekmuk bagpipe bangla bangorcsthesis bangorexam bangtex bankstatement barcodes bardiag barr barracuda bartel-chess-fonts bashful basicarith - baskervald baskervaldx baskervillef + baskervaldadf baskervaldx baskervillef basque-book basque-date bath-bst bbcard bbding bbm bbm-macros bbold bboldx bbold-type1 bchart bclogo beamer beamer2thesis beamer-fuberlin beamer-rl beamer-tut-pt beamer-verona beamerappendixnote beameraudience beamerauxtheme beamercolorthemeowl beamerdarkthemes beamerposter beamersubframe beamerswitch beamertheme-arguelles beamertheme-cuerna - beamertheme-detlevcm beamertheme-epyt beamertheme-focus - beamertheme-light beamertheme-metropolis beamertheme-npbt + beamertheme-detlevcm beamertheme-epyt beamertheme-focus beamertheme-gotham + beamertheme-light beamertheme-metropolis beamertheme-mirage + beamertheme-npbt beamertheme-phnompenh beamertheme-pure-minimalistic beamertheme-rainbow beamertheme-saintpetersburg beamertheme-simpledarkblue beamertheme-simpleplus beamertheme-tcolorbox beamertheme-trigon beamertheme-upenn-bc - beamerthemeamurmaple beamerthemeconcrete beamerthemejltree beamerthemelalic - beamerthemenirma beamerthemenord + beamerthemeamurmaple beamerthemecelestia beamerthemeconcrete + beamerthemejltree beamerthemelalic + beamerthemenirma beamerthemenord beamertools bearwear beaulivre beautybook beautynote beebe begingreek begriff beilstein belleek bengali bera berenisadf besjournals bestpapers betababel beton beuron bewerbung bez123 bezierplot bfh-ci bgteubner bguq bhcexam - bib-fr bib2gls bibarts bibcop biber biber-ms bibhtml - biblatex biblatex-abnt biblatex-ajc2020unofficial + bib-fr bib2gls bib2qr bibarts bibcop biber biber-ms bibhtml + biblatex biblatex-abnt biblatex-accursius biblatex-ajc2020unofficial biblatex-anonymous biblatex-apa biblatex-apa6 biblatex-archaeology biblatex-arthistory-bonn biblatex-bath biblatex-bookinarticle biblatex-bookinother biblatex-bwl biblatex-caspervector biblatex-cheatsheet biblatex-chem - biblatex-chicago biblatex-claves biblatex-cv + biblatex-chicago biblatex-claves biblatex-cse biblatex-cv biblatex-dw biblatex-enc biblatex-ext biblatex-fiwi biblatex-gb7714-2015 biblatex-german-legal biblatex-gost biblatex-historian @@ -147,7 +150,7 @@ my @TLP_working = qw( bjfuthesis blacklettert1 blindtext blkarray blochsphere block blockdraw_mp blopentype bloques blowup blox bmstu bmstu-iu8 bnumexpr bodegraph bodeplot bohr boisik bold-extra - boites boldtensors bondgraph bondgraphs book-of-common-prayer + boites boldtensors bondgraph bondgraphs bonum-otf book-of-common-prayer bookcover bookdb bookest bookhands booklet bookman bookmark bookshelf booktabs booktabs-de booktabs-fr boolexpr boondox bophook borceux bosisio @@ -157,17 +160,18 @@ my @TLP_working = qw( breakcites breakurl bredzenie breqn bropd brushscr bubblesort buctthesis bullcntr bundledoc burmese businesscard-qrcode bussproofs bussproofs-extra - bxbase bxcalc bxcjkjatype bxdpx-beamer bxdvidriver bxghost + bxbase bxcalc bxcjkjatype bxcoloremoji bxdpx-beamer bxdvidriver bxghost bxjaholiday bxjaprnind bxjatoucs bxpapersize bxpdfver bxeepic bxenclose bxjalipsum bxjscls bxnewfont bxorigcapt bxtexlogo bxwareki byo-twemojis byrne bytefield c90 c-pascal cabin cachepic cahierprof - caladea calcage calcfrac calctab calculation calculator - calligra calligra-type1 callouts calrsfs cals calxxxx-yyyy cancel + caladea calcage calcfrac calctab calculation calculator calculatoritems + calligra calligra-type1 callouts callouts-box calrsfs cals calxxxx-yyyyes + cancel canoniclayout cantarell capt-of captcont captdef caption carbohydrates carlisle carlito carolmin-ps cartonaugh - cascade cascadia-code cascadilla cases casyl + cascade cascadia-code cascadiamono-otf cascadilla cases casyl catchfile catchfilebetweentags catcodes catechis catoptions catppuccinpalette causets cbcoptic cbfonts cbfonts-fd @@ -186,7 +190,7 @@ my @TLP_working = qw( chhaya chicago chicagoa chicagolinks chicago-annote chickenize chifoot childdoc chinese-jfm chinesechess chivo chkfloat chklref chletter chngcntr chordbars chordbox chronology - chronosys chs-physics-report chscite churchslavonic + chronosys chs-physics-report chscite churchslavonic chuushaku cidarticle cinzel circ circledsteps circledtext circuit-macros circuitikz circularglyphs citation-style-language cite citeall citeref cje cjhebrew cjk cjk-gs-integrate cjk-ko cjkpunct cjs-rcs-article @@ -207,12 +211,14 @@ my @TLP_working = qw( colorsep colorspace colortab colortbl colorwav colorweb colourchange combelow combine combinedgraphics combofont comfortaa comicneue - comma commado commath commedit comment commonunicode commutative-diagrams + comma commado commalists-tools commath commedit comment + commonunicode commutative-diagrams compactbib compare competences - complexity components comprehensive computational-complexity + complexity complexpolylongdiv components + comprehensive computational-complexity concepts concmath concmath-fonts concmath-otf concprog concrete conditext confproc constants conteq - context-calendar-examples + context-calendar-examples context-chat context-collating-marks context-cyrillicnumbers context-filter @@ -222,11 +228,12 @@ my @TLP_working = qw( context-simpleslides context-squares context-sudoku context-transliterator context-typescripts context-vim context-visualcounter - continue contour contracard contract conv-xkv convbkmk + continue contour contracard contract conv-xkv convbkmk convert-jpfonts cooking cooking-units cookingsymbols cool coolfn coollist coolstr coolthms cooltooltips coop-writing cooperhewitt - coordsys copyedit copyrightbox cormorantgaramond correctmathalign coseoul + coordsys copyedit copyrightbox + cora-macs cormorantgaramond correctmathalign coseoul couleurs-fr count1to counterz countriesofeurope counttexruns courier courier-scaled courierten @@ -237,7 +244,7 @@ my @TLP_working = qw( crossreference crossreftools crossrefenum crossrefware crossword crosswrd crumbs cryptocode cryst cs cs-techrep csassignments csbulletin cslatex csplain csquotes csquotes-de - css-colors cstex cstypo csvmerge csvsimple + css-colors cstex csthm cstypo csvmerge csvsimple ctan-o-mat ctan_chk ctanbib ctanify ctanupload ctable ctablestack ctex ctex-faq culmus cuprum cursolatex cuisine @@ -274,7 +281,7 @@ my @TLP_working = qw( dk-bib dlfltxb dnaseq dnp doc-pictex docbytex doclicense docmfp docmute docshots docsurvey doctools documentation docutils - doi doipubmed domitian + doi doibanner doipubmed domaincoloring domitian dosepsbin dotlessi dot2texi dotarrow dotseqn dottex doublestroke doulossil dowith download dox dozenal dpcircling dpfloat dprogress @@ -290,11 +297,11 @@ my @TLP_working = qw( ebezier ebgaramond ebgaramond-maths ebong ebook ebproof ebsthesis ec ecc ecclesiastic ecltree eco ecobiblatex econ-bst econlipsum econometrics economic ecothesis - ecv eczar ed edfnotes edichokey edmac edmargin + ecv eczar ed edfnotes edichokey edmac edmargin edmaths eemeir eepic efbox egameps egpeirce egplot ehhline eiad eiad-ltx eijkhout einfart ejpecp ekaia ekdosis ektype-tanka - elbioimp electrum eledform eledmac elements + elbioimp electrumadf eledform eledmac elements ellipse ellipsis elmath elocalloc elpres els-cas-templates elsarticle elteiktdk elteikthesis eltex elvish elzcards @@ -303,7 +310,7 @@ my @TLP_working = qw( enctex encxvlna endfloat endheads endiagram endnotes endnotes-hy endnotesj endofproofwd engpron engrec engtlc enigma enotez ensps-colorscheme - enumitem enumitem-zref envbig environ envlab eolang + enumext enumitem enumitem-zref envbig enverb environ envlab eolang epcqrcode epigrafica epigram epigraph epigraph-keys epiolmec eplain epsdice epsf epsf-dvipdfmx epsincl epslatex-fr epspdfconversion epstopdf epstopdf-pkg @@ -314,22 +321,23 @@ my @TLP_working = qw( eso-pic esrelation esstix estcpmm esvect etaremune etbb etdipa etex-pkg etexcmds etextools ethiop ethiop-t1 etl etoc etoolbox etoolbox-de etoolbox-generic etsvthor - euclideangeometry euenc euflag eukdate - euler euler-math eulerpx eulervm euro euro-ce europasscv europecv eurosym + euclidean-lattice euclideangeometry euenc euflag eukdate + euler euler-math eulerpx eulervm + euro euro-ce euromoney europasscv europecv eurosym evangelion-jfm everyhook everypage everysel everyshi exam exam-lite exam-n exam-randomizechoices exam-zh examdesign example examplep examz exceltex excludeonly exercise exercisebank exercisepoints exercises exercisesheets exesheet exframe exp-testopt - expdlist expex expex-acro expex-glossonly expkv-bundle export + expdlist expex expex-acro expex-glossonly expkv-bundle expltools export expose-expl3-dunkerque-2019 expressg exsheets exsol extarrows exteps - extpfeil extract extsizes + extpfeil extract extractbb extsizes ezedits facsimile factura facture facture-belge-simple-sans-tva fadingimage fail-fast faktor familytree fancybox fancyhandout fancyhdr fancyhdr-it fancylabel fancynum fancypar fancyqr fancyref fancyslides fancytabs fancytooltips fancyvrb fandol - faq-fr fascicules fast-diagram fbb fbithesis fbox fbs + faq-fr faq-fr-gutenberg fascicules fast-diagram fbb fbithesis fbox fbs fc fcavtex fcltxdoc fcolumn fdsymbol fduthesis featpost fei fenetrecas fenixpar fetamont fetchcls @@ -338,6 +346,7 @@ my @TLP_working = qw( fifinddo-info fifo-stack fig4latex figbas figbib figchild figflow figput figsize filecontents filecontentsdef filedate filehook fileinfo filemod + fillpages fillwith findhyph fink finstrut fira firamath firamath-otf first-latex-doc firstaid fistrum fitbox fitch fithesis fix2col fixcmex fixdif fixfoot fixjfm fixlatvian @@ -351,16 +360,17 @@ my @TLP_working = qw( foekfont foilhtml foliono fonetika font-change font-change-xetex fontawesome fontawesome5 fontaxes fontbook fontch fontinst - fontinstallationguide fontmfizz fontools fontscale + fontinstallationguide fontmfizz fontools fonts-churchslavonic fonts-tlwg - fontsetup fontsize fontspec fonttable fontwrap + fontscale fontscripts fontsetup fontsize fontspec fonttable fontwrap footbib footmisc footmisx footnotebackref footnotehyper footnoterange footnpag forarray foreign forest forest-quickstart forloop formal-grammar formlett formation-latex-ul forms16be formular forum fouridx fourier fouriernc fp fpl - fragmaster fragments frame framed francais-bst frankenstein frcursive + fragmaster fragments frame framed framedsyntax + francais-bst frankenstein frcursive frederika2016 freealign frege frenchmath frimurer frletter frontespizio froufrou frpseudocode ftc-notebook ftcap ftnxtra @@ -369,9 +379,9 @@ my @TLP_working = qw( g-brief gaceta galois gamebook gamebooklib gammas garamond-libre garamond-math garuda-c90 garrigues gastex gates gatherenum gauss - gb4e gbt7714 gcard gchords gcite gckanbun + gb4e gb4e-next gbt7714 gcard gchords gcite gckanbun gelasio gelasiomath genealogy genealogytree gender gene-logic genealogy-profiles - genmpage gensymb gentium-tug gentle gentombow geometry + genmpage gensymb gentium-otf gentium-sil gentle gentombow geometry geradwp german germbib germkorr geschichtsfrkl getfiledate getitems getmap getoptk gettitlestring gfnotation gfsartemisia gfsbaskerville gfsbodoni gfscomplutum gfsdidot gfsdidotclassic @@ -396,7 +406,8 @@ my @TLP_working = qw( graph35 graphbox graphics graphics-cfg graphics-def graphics-pln graphicx-psmin graphicscache graphicxbox graphicxpsd - graphpaper graphviz grayhints greek-fontenc greek-inputenc + graphpaper graphviz gratzer-color-scheme grayhints + greek-fontenc greek-inputenc greekdates greektex greektonoi greenpoint gregoriotex grfext grffile grfpaste grid grid-system gridpapers gridset gridslides grotesq grundgesetze @@ -407,7 +418,8 @@ my @TLP_working = qw( happy4th har2nat haranoaji haranoaji-extra hardwrap harmony harnon-cv harpoon harvard harveyballs harvmac hatching hausarbeit-jura havannah - hc he-she hebrew-fonts hecthese helmholtz-ellis-ji-notation helvetic + hc hduthesis he-she hebdomon hebrew-fonts hecthese + helmholtz-ellis-ji-notation helvetic hep hep-acronym hep-bibliography hep-float hep-font hep-float hep-graphic hep-math hep-math-font hep-paper hep-reference hep-text hep-title hepnames hepparticles hepthesis hepunits here hereapplies heria heros-otf hershey-mp @@ -423,7 +435,7 @@ my @TLP_working = qw( hpsdiss href-ul hrefhide hrlatex hu-berlin-bundle huawei huaz huffman hulipsum hustthesis hvarabic hvextern hvfloat hvindex hvlogos hvpygmentex hvqrurl - hwemoji hycolor hypdestopt hypdoc hypdvips + hwemoji hycolor hypcap hypdestopt hypdoc hypdvips hyper hyperbar hypernat hyperref hyperxmp hyph-utf8 hyphen-base hyphenat hyphenex hyplain @@ -437,11 +449,12 @@ my @TLP_working = qw( imfellenglish impnattypo import imsproc imtekda incgraph includernw inconsolata inconsolata-nerd-font index indextools infwarerr - initials inkpaper inline-images inlinebib inlinedef inlinelabel innerscript + initials inkpaper inline-images + inlinebib inlinedef inlinegraphicx inlinelabel innerscript inputenx inputnormalization inputtrc inriafonts insbox install-latex-guide-zh-cn installfont intcalc inter interactiveworkbook - interchar interfaces interpreter interval intopdf + interchar interfaces interlinear interpreter interval intopdf intro-scientific inversepath invoice invoice-class invoice2 iodhbwm ionumbers iopart-num ipaex ipaex-type1 ipsum iran-bibtex @@ -450,7 +463,7 @@ my @TLP_working = qw( isphysicalmath issuulinks istgame itnumpar iwona iwonamath jablantile jacow jamtimes japanese-mathformulas japanese-otf - jbact jeuxcartes jfmutil jieeetran jigsaw + jbact jetbrainsmono-otf jeuxcartes jfmutil jieeetran jigsaw jknapltx jkmath jlabels jlreq jlreq-deluxe jmb jmlr jmsdelim jneurosci jnuexam jobname-suffix joinbox josefin jourcl jourrr @@ -460,7 +473,7 @@ my @TLP_working = qw( kalendarium kanaparser kanbun kantlipsum karnaugh karnaugh-map karnaughmap kastrup kaytannollista-latexia kblocks kdgdocs kdpcover kerkis kerntest ketcindy - keycommand keyfloat keyindex keyparse keyreader keystroke + keycommand keyfloat keyindex keyparse keyreader keystroke keytheorems keyval2e keyvaltable kfupm-math-exam khatalmaqala kinematikz kix kixfont knitting knittingpattern knowledge knuth-errata knuth-hint knuth-lib knuth-local knuth-pdf @@ -505,12 +518,13 @@ my @TLP_working = qw( libertine libertinegc libertinus libertinus-fonts libertinus-otf libertinus-type1 libertinust1math libgreek librarian librebaskerville librebodoni librecaslon librefranklin - libris lie-hasse liftarm light-latex-make ligtype lilyglyphs limap limecv + libris lie-hasse liederbuch liftarm + light-latex-make ligtype lilyglyphs limap limecv lineara linearregression linebreaker linegoal lineno ling-macros linguex linguisticspro linop lion-msc lipsum lisp-on-tex listbib listing listings listings-ext listingsutf8 listlbls listliketab - listofitems listofsymbols litebook litesolution litetable + listofitems listofsymbols listparskip litetable lithuanian liturg lkproof llncs llncsconf lm lm-math lmake lni lobster2 locality localloc logbox logical-markup-utils logicproof logicpuzzle logix logoetalab logpap logreq lollipop @@ -535,20 +549,21 @@ my @TLP_working = qw( luaimageembed luaindex luainputenc luakeys lualatex-doc-de lualatex-math lualatex-truncate lualibs lualinalg luamathalign luamaths - luamesh luamodulartables luamplib luanumint luaoptions luaotfload + luamesh luamml luamodulartables luamplib luanumint luaoptions luaotfload luapackageloader luaplot luaprogtable luapstricks luaquotes luarandom - luaset luasseq luatex85 luatexbase luatexja luatexko luatextra + luaset luasseq + luatbls luatex85 luatexbase luatexja luatexko luatextra luatikz luatodonotes luatruthtable luavlna luaxml - lutabulartools lwarp lxfonts ly1 lyluatex - macrolist macros2e macroswap mafr magaz magicnum magra + lutabulartools luwiantype lwarp lxfonts ly1 lyluatex + macrolist macros2e macroswap mafr magaz magicnum magicwatermark magra mahjong mailing mailmerge make4ht makebarcode makebase makebox makecell makecirc makecmds makecookbook makedtx makeglos makelabels makeplot maker makerobust makeshape mandi manfnt manfnt-font manuscript manyind - marathi marcellus margbib - marginfit marginfix marginnote markdown marvosym + marathi marcellus margbib marginalia + marginfit marginfix marginnote maritime markdown marvosym matapli matc3 matc3mem match_parens math-into-latex-4 mathabx mathabx-type1 mathalpha mathastext mathcommand mathcomp mathdesign mathdots mathexam @@ -566,7 +581,7 @@ my @TLP_working = qw( metafont-beginners metago metalogo metalogox metanorma metaobj metaplot metapost-colorbrewer metapost-examples metastr metatex metatype1 metauml method metre metrix metsymb - mf2pt1 mfirstuc mflogo mflogo-font mfnfss mfpic mfpic4ode mftinc + mf2pt1 mfb-oldstyle mfirstuc mflogo mflogo-font mfnfss mfpic mfpic4ode mftinc mgltex mhchem mhequ miama mi-solns microtype microtype-de midnight midpage miller milog milsymb @@ -582,8 +597,9 @@ my @TLP_working = qw( modref modroman modular modulus moloch mongolian-babel montserrat monofill montex moodle - moreenum morefloats morehype moresize - moreverb morewrites morisawa movement-arrows movie15 mp3d + moreenum morefloats morehype moremath moresize + moreverb morewrites morisawa movement-arrows movie15 + mp-geom2d mp-neuralnetwork mp3d mparhack mparrows mpattern mpchess mpcolornames mpfonts mpgraphics mpkiviat mpman-ru mpostinl mptopdf mptrees msc msg mslapa msu-thesis mtgreek @@ -602,7 +618,7 @@ my @TLP_working = qw( navigator navydocs ncclatex ncctools nchairx ncntrsbk nddiss ndsu-thesis ndsu-thesis-2022 - needspace nestquot neuralnetwork nevelok + needspace neoschool nestquot neuralnetwork nevelok newcastle-bst newcommand newcomputermodern newenviron newfile newfloat newlfm newpax newpx newsletr newspaper @@ -612,14 +628,15 @@ my @TLP_working = qw( nidanfloat nih nihbiosketch nimbus15 nimsticks ninecolors njurepo njustthesis njuthesis njuvisual nkarta nl-interval nlctdoc - nmbib nndraw nnext noconflict nodetree noindentafter noitcrul nolbreaks + nmbib nndraw nnext noconflict nodepthtext nodetree + noindentafter noitcrul nolbreaks nomencl nomentbl non-decimal-units nonfloat nonumonpart nopageno norasi-c90 normalcolor nostarch notebeamer notes notes2bib notespages notestex notex-bst noto noto-emoji notoccite notomath novel nowidow nox - nrc ntgclass nth ntheorem ntheorem-vn nuc nucleardata - numberedblock numberpt + nrc nstc-proposal ntgclass nth ntheorem ntheorem-vn nuc nucleardata + numberedblock numberpt numbersets numerica numerica-plus numerica-tables numericplots numname numnameru numprint numspell nunito nwafuthesis nwejm nxuthesis @@ -627,15 +644,15 @@ my @TLP_working = qw( ocg-p ocgx ocgx2 ocherokee ocr-b ocr-b-outline ocr-latex octave octavo odesandpdes odsfile ofs ogham oinuit old-arrows oldlatin oldstandard - oldstyle olsak-misc + oldstyle olsak-misc omgtudoc-asoiu onedown onlyamsmath onrannual opbible opcit opencolor opensans oplotsymbl opteng optex optexcount optidef optional options orcidlink ordinalpt orientation orkhun - oscola osda oststud oswald ot-tableau othello othelloboard + oscola oststud oswald ot-tableau othello othelloboard oubraces oup-authoring-template outerhbox outilsgeomtikz outline outliner outlines outlining overarrows overlays overlock overpic - pacioli padauk padcount + pacioli packdoc padcount pagecolor pagecont pagegrid pagelayout pagella-otf pagenote pagerange pagesel pageslts palatino palette pangram panneauxroute paper papercdcase papermas papertex @@ -654,19 +671,20 @@ my @TLP_working = qw( pdfpagediff pdfpages pdfpc pdfpc-movie pdfprivacy pdfrender pdfreview pdfscreen pdfslide pdfsync pdftex-quiet pdftexcmds pdftricks pdftricks2 pdfx pdfxup - pecha pedigree-perl penlight penlightplus perception perfectcut perltex + pecha pedigree-perl pegmatch + penlight penlightplus perception perfectcut perltex permute persian-bib petiteannonce petri-nets pfarrei pfdicons pgf pgf-blur pgf-interference pgf-periodictable pgf-pie pgf-soroban pgf-spectra pgf-umlcd pgf-umlsd pgfgantt pgfkeysearch pgfkeyx pgfmath-xfp pgfmolbio pgfmorepages - pgfopts pgfornament pgfornament-han pgfplots + pgfopts pgfornament pgfornament-han pgfplots pgfplotsthemebeamer phaistos phfcc phfextendedabstract phffullpagefigure phfnote phfparen phfqit phfquotetext phfsvnwatermark phfthm philex philokalia philosophersimprint phonenumbers phonetic phonrule photo photobook - physconst physics physics2 physunits + physconst physics physics2 physics-patch physunits piano picinpar pict2e pictex pictex2 pictexsum pictochrono picture piechartmp piff pigpen pinlabel pinoutikz pitex piton pittetd pixelart pixelarttikz @@ -678,16 +696,16 @@ my @TLP_working = qw( plnfss plstmary plweb pm-isomath pmboxdraw pmdraw pmgraph pmhanguljamo pmx pmxchords pnas2009 poemscol poetry poetrytex poiretone polexpr polski poltawski - polyglossia polyhedra polynom polynomial + polyglossia polyhedra polynom polynomial polyomino polytable poormanlog postage postcards poster-mac postit postnotes powerdot powerdot-fuberlin powerdot-tuliplab ppmcheckpdf ppr-prv ppt-slides pracjourn practicalreports precattl prelim2e preprint prerex present pressrelease prettyref prettytok preview prftree - principia printlen proba probsoln prociagssymp + principia printlen prisma-flow-diagram proba probsoln prociagssymp prodint productbox profcollege proflabo proflycee profmaquette profsio program - progress progressbar projlib + progress progressbar projlib pronunciation proof-at-the-end proofread prooftrees proposal properties prosper protex protocol prtec przechlewski-book psbao pseudo pseudocode psfrag psfrag-italian psfragx @@ -726,11 +744,12 @@ my @TLP_working = qw( qualitype quantikz quantumarticle quattrocento quickreaction quicktype quiver quiz2socrative quizztex quotchap quoting quotmark - quran quran-bn quran-de quran-en quran-id quran-ur qyxf-book - r_und_s ragged2e raleway ran_toks randbild randexam + quran quran-bn quran-de quran-en quran-es quran-id quran-ur qyxf-book + r_und_s ragged2e raleway ran_toks randbild randexam randintlist random randomlist randomwalk randtext rank-2-roots rbt-mathnotes rccol rcs rcs-multi rcsinfo - readablecv readarray realboxes realhats realscripts realtranspose rec-thy + readablecv readarray realboxes realhats realscripts realtranspose + rebuttal rec-thy recipe recipebook recipecard recorder-fingering recycle rectopma refcheck refcount refenums reflectgraphics refman refstyle regcount regexpatch register regstats regulatory @@ -741,7 +760,7 @@ my @TLP_working = qw( rgltxdoc ribbonproofs rigidnotation rit-fonts rjlparshap rlepsf rmathbr rmpage robotarm roboto robust-externalize robustcommand robustindex rojud - romanbar romanbarpagenumber romande romanneg romannum + romanbar romanbarpagenumber romandeadf romanneg romannum rorlink rosario rotfloat rotpages rouequestions roundbox roundrect rpgicons rrgtrees rsc rsfs rsfso rterface rtkinenc rtklage @@ -752,13 +771,13 @@ my @TLP_working = qw( sanskrit sanskrit-t1 sansmath sansmathaccent sansmathfonts sapthesis sasnrdisplay sauerj sauter sauterfonts saveenv savefnmark savesym savetrees - scale scalebar scalerel scanpages + scale scalebar scalerel scaletextbullet scanpages schedule schemabloc schemata schola-otf scholax schooldocs schulmathematik sclang-prettifier schule schulschriften schwalbe-chess scikgtex sciposter scientific-thesis-cover scontents scrabble scrambledenvs scratch scratch3 scratchx screenplay screenplay-pkg - scripture scrjrnl scrlayer-fancyhdr scrlttr2copy scrwfile scsnowman + scrhack scripture scrjrnl scrlayer-fancyhdr scrlttr2copy scrwfile scsnowman sdaps sdrt sduthesis se2thesis secdot secnum section sectionbox sectionbreak sectsty seealso selectp selinput selnolig semantex semantic semantic-markup semaphor @@ -791,21 +810,22 @@ my @TLP_working = qw( spacekern spacingtricks spalign spark-otf sparklines spath3 spbmark spectral spectralsequences spelatex spelling spie spix sphack sphdthesis splines splitbib splitindex - spot spotcolor spreadtab spverbatim - sr-vorl srbook-mem srbtiks srcltx srdp-mathematik srcredact sseq sslides + spot spotcolor spreadtab spverbatim sqltex + sr-vorl srbook-mem srbtiks srcltx srdp-mathematik srcredact + sseq sshrc-insight sslides stack stackengine stage standalone standardsectioning stanli starfont startex statex statex2 statistics statistik statmath staves starray stdclsdv stdpage stealcaps steinmetz stellenbosch stellenbosch-2 step stepgreek stex - stickstoo stix stix2-otf stix2-type1 stmaryrd storebox storecmd + stickstoo stix stix2-otf stix2-type1 stmaryrd stocksize storebox storecmd strands stricttex string-diagrams stringenc stringstrings structmech struktex - sttools stubs studenthandouts sty2dtx styledcmd suanpan + sttools stubs studenthandouts sty2dtx styledcmd suanpan suanpan-l3 subdocs subdepth subeqn subeqnarray subfig subfigmat subfigure subfiles subfloat substances substr subsupscripts subtext - sudoku sudokubundle suftesi sugconf + sudoku sudokubundle suftesi sugconf sunpath superiors supertabular suppose susy svg svg-inkscape svgcolor svn svn-multi svn-prov svninfo svrsymbols swebib swfigure swimgraf swrule swungdash syllogism @@ -816,19 +836,19 @@ my @TLP_working = qw( tabbing tabfigures table-fct tableaux tablefootnote tableof tablists tablor tabls tablvar tabriz-thesis tabstackengine tabto-generic tabto-ltx - tabu tabularborder tabularray tabularcalc tabularew + tabu tabularborder tabularray tabularcalc tabularew tabularray-abnt tabulary tabvar tagging tagpair tagpdf talk talos tamefloats tamethebeast tango tangocolors tangramtikz tap tapir tasks tblr-extras tcldoc tcolorbox tdclock tds tdsfrmath - technics technion-thesis-template ted - templates-fenn templates-sommer templatetools tempora + technics technion-thesis-template ted telprint + templates-fenn templates-sommer templatetools tempora temporal-logic tengwarscript tensind tensor termcal termcal-de termes-otf termlist termmenu termsim testhyphens testidx tetragonos teubner tex-ewd tex-font-errors-cheatsheet tex-gyre tex-gyre-math tex-ini-files tex-label tex-locale tex-nutshell tex-overview tex-ps - tex-refs tex-virtual-academy-pl tex-vpat + tex-virtual-academy-pl tex-vpat tex4ebook texaccents texapi texblend texbytopic texcount texdate texdef texdiff texdimens texdirflatten texdoc texdraw texfindpkg texfot texinfo texilikechaps texilikecover @@ -841,25 +861,27 @@ my @TLP_working = qw( theanodidot theanomodern theanooldstyle theatre thematicpuzzle theoremref thermodynamics thesis-ekf thesis-gwu thesis-qom thesis-titlepage-fhac - thinsp thmbox thmlist thmtools + thinsp thmbox thmtools threadcol threeddice threeparttable threeparttablex thuaslogos thubeamer thucoursework thumb thumbpdf thumbs thumby thuthesis ticket ticollege tidyres tiet-question-paper tikz2d-fr tikz3d-fr tikz-3dplot - tikz-among-us tikz-bagua tikz-bayesnet tikz-bbox - tikz-cd tikz-dependency tikz-dimline tikz-ext + tikz-among-us tikz-bagua tikz-bayesnet tikz-bbox tikz-bpmn + tikz-cd tikz-decofonts tikz-dependency tikz-dimline tikz-ext tikz-feynhand tikz-feynman tikz-imagelabels tikz-inet tikz-kalender tikz-karnaugh tikz-ladder tikz-lake-fig tikz-layers tikz-mirror-lens tikz-nef tikz-network tikz-nfold tikz-opm tikz-optics tikz-osci tikz-page tikz-palattice tikz-planets tikz-qtree - tikz-relay tikz-sfc tikz-swigs tikz-timing tikz-trackschematic tikz-truchet + tikz-relay tikz-sfc tikz-swigs + tikz-timing tikz-trackschematic tikz-triminos tikz-truchet tikzbricks tikzcodeblocks tikzdotncross tikzducks tikzfill tikzinclude tikzlings tikzmark tikzmarmots tikzorbital tikzpackets tikzpagenodes tikzpeople tikzpfeile tikzpingus tikzposter tikzquads tikzquests tikzscale tikzsymbols tikztosvg tikzviolinplots tile-graphic tilings - timbreicmc times timetable timing-diagrams tinos tipa tipa-de tipauni tipfr + timbreicmc timechart timeop times timetable timing-diagrams + tinos tipa tipa-de tipauni tipfr tiscreen titlecaps titlefoot titlepages titlepic titleref titlesec titling tkz-base tkz-berge tkz-bernoulli tkz-doc tkz-elements tkz-euclide tkz-fct tkz-graph tkz-grapheur tkz-orm tkz-tab tkzexample @@ -880,16 +902,16 @@ my @TLP_working = qw( tree-dvips treesvr treetex trfsigns trigonometry trimspaces trivfloat trivialpursuit trsym truncate truthtable tsemlines tsvtemplate - tucv tuda-ci tudscr tufte-latex tugboat tugboat-plain + tucv tuda-ci tudscr tufte-latex tugboat tugboat-plain tuple tui turabian turabian-formatting turkmen turnstile turnthepage tutodoc twemoji-colr twemojis twoinone twoup twoxtwogame txfonts txfontsb txgreeks txuprcal type1cm typed-checklist typeface typehtml typeoutfileinfo typewriter typicons typoaid typog typogrid typstfun tzplot - uaclasses uafthesis uantwerpendocs uassign ucalgmthesis + uaclasses uafthesis ualberta uantwerpendocs uassign ucalgmthesis ucharcat ucharclasses ucbthesis ucdavisthesis ucph-revy ucs ucsmonograph - ucthesis udepcolor udes-genie-these udesoftec + ucthesis udepcolor udes-genie-these udesoftec udiss uebungsblatt uestcthesis ufrgscca uhhassignment uhrzeit uiucredborder uiucthesis ukbill ukrhyph ulem ulqda ulthese @@ -899,7 +921,7 @@ my @TLP_working = qw( undar-digitacion undergradmath underlin underoverlap underscore undolabl unfonts-core unfonts-extra uni-titlepage uni-wtal-ger uni-wtal-lin - unicode-alphabets unicode-data unicode-bidi + unibidi-lua unicode-alphabets unicode-data unicode-bidi unicode-math unicode-math-input unicodefonttable unifith unifront unigrazpub unimath-plain-xetex uninormalize uniquecounter unisc unisugar @@ -923,11 +945,12 @@ my @TLP_working = qw( voss-mathcol vpe vruler vtable vwcol wadalab wallcalendar wallpaper wargame warning warpcol - was wasy wasy-type1 wasysym webguide webquiz weiqi wheelchart + was wasy wasy-type1 wasysym webguide webquiz weiqi whatsnote wheelchart widetable widows-and-orphans williams willowtreebook windycity withargs witharrows wnri wnri-latex wordcloud wordcount wordle wordlike worldflags worksheet - wrapfig wrapfig2 wrapstuff writeongrid wsemclassic wsuipa wtref + wrapfig wrapfig2 wrapstuff wrapstuff-doc-en + writeongrid wsemclassic wsuipa wtref xargs xassoccnt xbmks xcharter xcharter-math xcite xcjk2uni xcntperchap xcolor xcolor-material xcolor-solarized xcomment xcookybooky xcpdftips xdoc xduthesis xduts @@ -941,7 +964,7 @@ my @TLP_working = qw( xkcdcolors xkeymask xkeyval xlop xltabular xltxtra xml2pmx xmltex xmpincl xmuthesis xnewcommand xoptarg xpatch xpeek xpiano xpicture xpinyin xprintlen xpunctuate - xq xsavebox xsim xskak xstring xtab xtuthesis xunicode xurl + xq xreview xsavebox xsim xskak xstring xtab xtuthesis xunicode xurl xwatermark xyling xymtex xypic xypic-tut-pt xytree yafoot yagusylo yaletter yamlvars yannisgr yathesis yax yazd-thesis yb-book ycbook ydoc yet-another-guide-latex2e @@ -950,7 +973,7 @@ my @TLP_working = qw( zapfchan zapfding zbmath-review-template zebra-goodies zed-csp zennote zhlineskip zhlipsum zhnumber zhmetrics zhmetrics-uptex zhspacing ziffer zitie zlmtt zootaxa-bst zref zref-check zref-clever zref-vario - zwgetfdate zwpagelayout + zugferd zwgetfdate zwpagelayout zx-calculus zxjafbfont zxjafont zxjatype zztex ); diff --git a/Master/tlpkg/dev/profiles/TLhyphtest.pro b/Master/tlpkg/dev/profiles/TLhyphtest.pro index 0e97a0196b3..370052670df 100644 --- a/Master/tlpkg/dev/profiles/TLhyphtest.pro +++ b/Master/tlpkg/dev/profiles/TLhyphtest.pro @@ -7,26 +7,9 @@ TEXMFSYSVAR /home/texlive/hyphtest/inst/sys/var TEXMFCONFIG /home/texlive/hyphtest/inst/user/config TEXMFVAR /home/texlive/hyphtest/inst/user/var option_adjustrepo 0 -option_doc 1 -option_fmt 1 +option_doc 0 +option_fmt 0 option_letter 0 -option_src 1 +option_src 0 option_symlinks 0 collection-basic 1 -collection-langarabic 0 -collection-langchinese 0 -collection-langcjk 0 -collection-langcyrillic 0 -collection-langczechslovak 0 -collection-langenglish 0 -collection-langeuropean 0 -collection-langfrench 0 -collection-langgerman 0 -collection-langgreek 0 -collection-langitalian 0 -collection-langjapanese 0 -collection-langkorean 0 -collection-langother 0 -collection-langpolish 0 -collection-langportuguese 0 -collection-langspanish 0 diff --git a/Master/tlpkg/dev/srclist.txt b/Master/tlpkg/dev/srclist.txt index cc38357ffe3..40c3c4dfd88 100644 --- a/Master/tlpkg/dev/srclist.txt +++ b/Master/tlpkg/dev/srclist.txt @@ -57,6 +57,6 @@ Build/source/texk/dvipdfm-x/data/dvipdfmx.cfg Master/texmf-dist/dvipdfmx/dvipdfm # to update manually at new automake releases), but automake provides no # version-independent access. # -/usr/local/gnu/share/automake-1.16/missing Build/source/build-aux/missing -/usr/local/gnu/share/automake-1.16/test-driver Build/source/build-aux/test-driver -/usr/local/gnu/share/automake-1.16/ylwrap Build/source/build-aux/ylwrap +/usr/local/gnu/share/automake-1.17/missing Build/source/build-aux/missing +/usr/local/gnu/share/automake-1.17/test-driver Build/source/build-aux/test-driver +/usr/local/gnu/share/automake-1.17/ylwrap Build/source/build-aux/ylwrap diff --git a/Master/tlpkg/doc/packages.txt b/Master/tlpkg/doc/packages.txt index 72d72213dfa..fe0ebcf50c5 100644 --- a/Master/tlpkg/doc/packages.txt +++ b/Master/tlpkg/doc/packages.txt @@ -34,10 +34,25 @@ To remove a platform: - remove entry in Build/source/README, if there is one. + To change the engine used for a format: +- edit the necessary .tlpsrc file(s). +- after the next rebuild, the generated fmtutil.cnf in + Master/texmf-dist/web2c/fmtutil.cnf should reflect the changes. +- update the links in the bindirs with: + texlinks -m + This will not update Windows-based systems; do those by hand. + And definitely do an svn status before any commit, to check that only + the expected updates were made by the script. +- update fmtutil.cnf in the source tree: + cp /tmp/fmtutil.cnf Build/source/texk/texlive/tl_support/fmtutil.cnf + This /tmp/fmtutil.cnf is created by the nightly build; see + /tmp/tlchecktrunk.srclist and cron.tl, etc. + To check tlpsrc changes without committing: tl-update-tlpdb --save-anyway tlmgr check --use-svn files # or whatever -Do not fail to revert the tlpdb, or it will create an svn conflict. +Do not fail to revert the tlpdb after you're done checking, or it will +cause an svn conflict. To remake tlcritical from scratch: diff --git a/Master/tlpkg/doc/releng.txt b/Master/tlpkg/doc/releng.txt index b31ff84dfd4..fc80f0c8cf0 100644 --- a/Master/tlpkg/doc/releng.txt +++ b/Master/tlpkg/doc/releng.txt @@ -64,7 +64,7 @@ affecting production dirs, see: - diff new and old bindirs to see if there are interesting new programs: \ls /usr/local/texlive-rel/bin/x86_64-linux >/tmp/now \ls $ib >/tmp/new - comm -3 /tmp/now /tmp/new >/tmp/bd + comm -3 /tmp/now /tmp/new >/tmp/newbins - in general, writing these news items takes considerable time, but it's important, because this summary of changes is what users want to know. - if new kpathsea file types (kpsewhich --help-formats), update kpathsea.texi. @@ -84,16 +84,17 @@ Build/source first. cd /home/texlive/branch rm -rf * .[^.]*; ls -a # empty completely; be sure .svn et al. are gone # get revision for end of tl24/start of tl24; make sure it's sensible: - rev=`svn info /home/texlive/trunk | \grep '^Revision:'`; echo $rev + rev=`svn info /home/texlive/trunk | sed -n 's/^Revision://p'`; echo $rev tlyear=`date +%Y -d "last year"`; echo $tlyear # previous release umask 022 # keep TL files non-group-writable - # make the .final - branch=branch$tlyear.final + # make the .final branch + branch=branch$tlyear.final; echo $branch svn copy -r $rev \ -m"$branch branch based on r$rev" \ svn://tug.org/texlive/trunk svn://tug.org/texlive/branches/$branch # make working checkout: time svn co svn://tug.org/texlive/branches/$branch . >&/tmp/cout # ~60min + # can continue working in trunk while that checkout is happening Do not create it earlier and merge from trunk, because then all the packages which got updated in the meantime, and have been updated in @@ -107,7 +108,7 @@ and get updated again. commit is created, clean, and up to date: see item 6 just above. 0b. In crontab, disable "update tlnet from trunk" entry, -and also disable cron.synctl entry so it doesn't interfere/lock +and also disable "tl sync" entry for my checkout so it doesn't interfere/lock the repo while we're working. 1. Set up tlpretest: @@ -115,9 +116,9 @@ Update /home/ftp/texlive/tlpretest/README.md. Empty tlpretest except for that README.md and 00_TIME.txt (used for mirmon), and rename TEXLIVE_YYYY_pretest for the new year. -2. Prepare for pretest in cron.tl, with these temporary settings (will - reset below): +2. Temporary setting in cron.tl in pretest block (will reset below): critical=--critical # tlcritical needed for new release version +# And more settings, in the common block: tl_update_auto=false # keep files as-is for now net_frozen=true # stay local for now, no update of tlpretest catalogue_compare=false # avoid for initial test @@ -132,11 +133,11 @@ In any case, doesn't hurt, so safest to always set it. Master/.mkisofsrc Master/release-texlive.txt Master/tlpkg/TeXLive/TLConfig.pm -- $ReleaseYear and think about $MinRelease -Master/tlpkg/TeXLive/TLUtils.pm -- $mactex_darwin and -darwin strings +Master/tlpkg/TeXLive/TLUtils.pm -- $mactex_darwin and universal-darwin strings Master/tlpkg/bin/tl-update-images Master/tlpkg/bin/tl-update-messages Master/tlpkg/bin/tl-update-tlnet -Master/texmf-dist/web2c/texmfcnf.lua +Master/texmf-dist/web2c/texmfcnf.lua # hiddentexlivepath Master/texmf-dist/web2c/texmf.cnf # from Build/.../kpathsea (also ensure that the Build and Master texmf.cnf files are in sync) @@ -146,11 +147,13 @@ Add new executables to appropriate .tlpsrc files (likewise removals). Check with, e.g.: svn status bin/x86_64-linux | grep '^[^M]' (We'll do man pages later with tl-update-man.) Add new scripts to linked_scripts if not already handled. -Run tl-update-asy --build on tug to make new support files ready. - (If there is a new asy, which there probably isn't at this point.) -6. Run tex \\end to check that dynamic mktexfmt works. -Ensure that web2c/texmf.cnf is updated for the current year (per above). +5a. Run tl-update-asy --build on tug to make new support files ready, if + there is a new asy release. Try building asy in advance if possible + (without committing), since there are often asy build problems. + +6. Ensure that web2c/texmf.cnf is updated for the current year (per above), + then run tex \\end to check that dynamic mktexfmt works. 6a. Check that all formats build ok: fmtutil-user --all >&/tmp/fua @@ -168,7 +171,9 @@ Also, for ConTeXt: 7b. HiTeX: make install in hitexdir/tex and hitexdir/doc. -7c. Asymptote: install new runtime files per tl-update-asy (if new asy). +7c. LuaTeX manual: make install in web2c/doc/luatex. + +7d. Asymptote: install new runtime files per tl-update-asy (if new asy). 8. Now, finally, try a first update of tlpretest: env force_rebuild=true ~karl/bin/cron.pretest # ~15min @@ -213,7 +218,7 @@ updating the real tlnet. Initialize this dir as above with tlpretest, item 9: rm -rf * time cp -ar ~ftp/texlive/tlnet/[a-u]* . # omit tlnet/README* umask 002 - chmod -R u+w,go-w,a+rX-st --changes * # avoid lots of chmods in cron.tl + chmod -R u+w,go-w,a+rX-st --changes * >&/tmp/chmod # avoid msgs in cron.tl # # also make an empty working directory for the build: mkdir /home/texlive/trial-work @@ -287,24 +292,32 @@ M. As pretest proceeds, update the doc: and changes throughout if behavior has changed. Engine/etc. doc updates: . run tl-update-news, which copies simple files to the runtime doc dir. - . pdftex/mpost/luatex maintainers should update their manuals - from their repositories (doc/manual/ and manual/ subdirs for the - first two) to the runtime. + . engine maintainers should update their manuals from their + repositories to the runtime. + pdftex: doc/manual + metapost: manual (~www/metapost/src/manual) + luatex: TL:Build/source/texk/web2c/doc/luatex . update of core man pages in Build/source/texk/web2c/man. Update tlbuild.texi text, then xs=.../Build/source W=$xs/Work make -C $W/doc script-links tlbuild-incl.texi readme-files readme-install - Remake updmap,fmtutil man pages with help2man (install latest from source): + # we'll install it below. + Install latest help2man from ftp.gnu.org, then + remake mflua,updmap,fmtutil man pages with help2man: tm=.../Master - make -C $W/texk/texlive/tl_support xupdmap.1 xfmtutil.1 + make -C $W/texk/texlive/tl_support xmans x1=`(unset CDPATH; cd $tm/texmf-dist/doc/man/man1; pwd)` They must be moved from /tmp into both Master and Build by hand: \cp -p /tmp/xupdmap.1 $x1/updmap.1 - \cp -p /tmp/xfmtutil.1 $x1/fmtutil.1 \cp -p /tmp/xupdmap.1 $xs/texk/texlive/tl_support/updmap.1 + # + \cp -p /tmp/xfmtutil.1 $x1/fmtutil.1 \cp -p /tmp/xfmtutil.1 $xs/texk/texlive/tl_support/fmtutil.1 - Also update them in ~www/texlive/doc/*.html: + # + \cp -p /tmp/xmflua.1 $x1/mflua.1 + (mflua should not be our job, but since we're doing the others, why not.) + Also update our web pages in ~www/texlive/doc/*.html (not mflua): \cp -p /tmp/xupdmap.1.html $lw/doc/updmap.html \cp -p /tmp/xfmtutil.1.html $lw/doc/fmtutil.html While we're here, let's update the other generated html files: @@ -323,7 +336,7 @@ M. As pretest proceeds, update the doc: svn add `!!` Texinfo manuals from Build to Master: tl-update-txi - Don't forget to commit everything (texmf-dist/doc, Build/source, ...). + Finally, check and commit everything (texmf-dist/doc, Build/source, ...). N. Really test during, and at end, of pretest that (really! don't leave it for post-release failure) @@ -474,7 +487,11 @@ ls # should only be README.md - move tlpretest to tlnet; this is what does the release mv ../tlpretest/[a-z]* . update README.md (update year, check for other changes) - and ../tlpretest/README.md (pretest over) + and ../tlpretest/README.md with pretest over note: + ---- + The TeX Live pretest is over for this release. See you next time, and + just ignore any files that may remain here. + ---- cp install-tl-unx.tar.gz install-tl.zip $hx/$this/ touch TEXLIVE_$this # empty file to signal new version ls TEXLIVE_* diff --git a/Master/tlpkg/gpg/pubring.gpg b/Master/tlpkg/gpg/pubring.gpg Binary files differindex dae00ca0297..5337853cff9 100644 --- a/Master/tlpkg/gpg/pubring.gpg +++ b/Master/tlpkg/gpg/pubring.gpg diff --git a/Master/tlpkg/gpg/tl-key-extension.txt b/Master/tlpkg/gpg/tl-key-extension.txt index c8cea8097b4..ac4df1a5d75 100644 --- a/Master/tlpkg/gpg/tl-key-extension.txt +++ b/Master/tlpkg/gpg/tl-key-extension.txt @@ -24,21 +24,30 @@ gpg --edit-key $KEYID gpg -a --export $KEYID > texlive.asc # update USB drive with new stuff, remove from home, - rm -rf $GNUPGHOME unset GNUPGHOME # send keys # make sure that .gnupg/dirmngr.conf does NOT contain hkp-cacert lines!!! -# keys.openpgp.org -gpg --export $KEYID | curl -T - https://keys.openpgp.org -# this will give an URL to associate key with email, visit it! +# upload to keyservers. No other good key servers currently known. +keyservers=( + "hkps://keys.openpgp.org/" + "hkps://keyserver.ubuntu.com/" +) +for ks in ${keyservers[@]} ; do + gpg --send-key --keyserver $ks $KEYID +done -# ubuntu key server -gpg --send-key --keyserver hkp://keyserver.ubuntu.com:80 $KEYID +## upload to keys.openpgp.org: +#gpg --export $KEYID | curl -T - https://keys.openpgp.org +## this will give an URL to associate key with email, visit it! +# to check if it's there: +gpg --list-key --keyserver hkp://keyserver.ubuntu.com:80 tex-live +# The new GPG servers strip signatures due to signature poisoning +# attacks, so we tell people to download the key from our web site. # update TeX Live repository export GNUPGHOME=/home/texlive/Master/tlpkg/gpg # wherever svn checkout @@ -47,9 +56,11 @@ gpg1 --import texlive.asc svn commit - -# on the TUG server (needs the exported public key in -# texlive.asc, see above how to export it) +# +# On the TUG server. Get the exported public key in +# texlive.asc, see above how to export it. +# This needs to be done with the owner of the .gnupg directory, +# since group access is disallowed by gpg. gpg --homedir /home/texlive/.gnupg --import texlive.asc # can view that .asc with: @@ -59,7 +70,14 @@ gpg --homedir /home/texlive/.gnupg texlive.asc cp texlive.asc ~www/texlive/files/texlive`date +%Y`.asc ln -s texlive`date +%Y`.asc ~www/texlive/files/texlive.asc -More info: +# update key example on web page, as in: +cd /home/httpd/html/texlive/ +co -l verify.html +$EDITOR !$ +ci -u -m"`date +%Y` key update" + + + General info: . tlgpg runs a gpg command with the above TL .gnupg directory, etc. . tl-sign-file (uses tlgpg) is used to sign texlive.tlpdb.sha512. @@ -70,7 +88,7 @@ More info: . (tl)gpg foo.asc will sometimes report expiration info. . given files updated in Master/tlpkg/gpg, can export into asc: -gpg --homedir ..../Master/tlpkg/gpg --export -a 0x0D5E5D9106BAB6BC >tl.asc + gpg --homedir ..../Master/tlpkg/gpg --export -a $KEYID >tl.asc . gpg --verify --verbose foo.asc reports some info. @@ -78,4 +96,4 @@ gpg --homedir ..../Master/tlpkg/gpg --export -a 0x0D5E5D9106BAB6BC >tl.asc use --status-file and inspect: gpg --verify --verbose --status-file=/tmp/st foo.asc -. see tlgpg, tl-sign-file, TLCrypto.pm for full implementation. +. see tlgpg, tlgpg-verify, tl-sign-file, TLCrypto.pm for full implementation. diff --git a/Master/tlpkg/gpg/trustdb.gpg b/Master/tlpkg/gpg/trustdb.gpg Binary files differindex 8ed5bd17cbb..82f772a8b32 100644 --- a/Master/tlpkg/gpg/trustdb.gpg +++ b/Master/tlpkg/gpg/trustdb.gpg diff --git a/Master/tlpkg/installer/config.guess b/Master/tlpkg/installer/config.guess index f6d217a49f8..48a684601bd 100755 --- a/Master/tlpkg/installer/config.guess +++ b/Master/tlpkg/installer/config.guess @@ -4,7 +4,7 @@ # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2024-01-01' +timestamp='2024-07-27' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -123,7 +123,7 @@ set_cc_for_build() { dummy=$tmp/dummy case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in ,,) echo "int x;" > "$dummy.c" - for driver in cc gcc c89 c99 ; do + for driver in cc gcc c17 c99 c89 ; do if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD=$driver break @@ -634,7 +634,8 @@ EOF sed 's/^ //' << EOF > "$dummy.c" #include <sys/systemcfg.h> - main() + int + main () { if (!__power_pc()) exit(1); @@ -718,7 +719,8 @@ EOF #include <stdlib.h> #include <unistd.h> - int main () + int + main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); @@ -1621,6 +1623,7 @@ cat > "$dummy.c" <<EOF #endif #endif #endif +int main () { #if defined (sony) diff --git a/Master/tlpkg/installer/ctan-mirrors.pl b/Master/tlpkg/installer/ctan-mirrors.pl index b3920113f1d..b92a6124555 100644 --- a/Master/tlpkg/installer/ctan-mirrors.pl +++ b/Master/tlpkg/installer/ctan-mirrors.pl @@ -5,6 +5,7 @@ $mirrors = { }, 'South Africa' => { 'https://mirror.ufs.ac.za/ctan/' => 1, + 'https://za.mirrors.cicku.me/ctan/' => 1, }, }, 'Asia' => { @@ -15,6 +16,7 @@ $mirrors = { 'https://mirrors.bfsu.edu.cn/CTAN/' => 1, 'https://mirrors.cloud.tencent.com/CTAN/' => 1, 'https://mirrors.cqu.edu.cn/CTAN/' => 1, + 'https://mirrors.hust.edu.cn/CTAN/' => 1, 'https://mirrors.jlu.edu.cn/CTAN/' => 1, 'https://mirrors.nju.edu.cn/CTAN/' => 1, 'https://mirrors.pku.edu.cn/ctan/' => 1, @@ -27,37 +29,40 @@ $mirrors = { 'https://mirror-hk.koddos.net/CTAN/' => 1, }, 'India' => { + 'https://2.mirrors.in.sahilister.net/ctan/' => 1, 'https://in.mirrors.cicku.me/ctan/' => 1, 'https://mirror.niser.ac.in/ctan/' => 1, }, 'Indonesia' => { - 'http://repo.ugm.ac.id/ctan/' => 1, 'https://mirror.unpad.ac.id/ctan/' => 1, }, 'Iran' => { - 'http://ctan.asis.ai/' => 1, + 'https://ctan.asis.sh/' => 1, + 'https://ctan.yazd.ac.ir/' => 1, }, 'Japan' => { - 'http://ring.airnet.ne.jp/archives/text/CTAN/' => 1, 'https://ftp.jaist.ac.jp/pub/CTAN/' => 1, 'https://ftp.kddilabs.jp/CTAN/' => 1, 'https://ftp.yz.yamagata-u.ac.jp/pub/CTAN/' => 1, 'https://jp.mirrors.cicku.me/ctan/' => 1, + 'https://mirror.aria-on-the-planet.es/CTAN/' => 1, }, 'Korea' => { - 'http://ftp.ktug.org/tex-archive/' => 1, 'https://ftp.kaist.ac.kr/tex-archive/' => 1, 'https://kr.mirrors.cicku.me/ctan/' => 1, 'https://lab.uklee.pe.kr/tex-archive/' => 1, 'https://mirror.kakao.com/CTAN/' => 1, 'https://mirror.navercorp.com/CTAN/' => 1, }, + 'Saudi Arabia' => { + 'https://sa.mirrors.cicku.me/ctan/' => 1, + }, 'Singapore' => { 'https://sg.mirrors.cicku.me/ctan/' => 1, }, 'Taiwan' => { 'https://ctan.mirror.twds.com.tw/tex-archive/' => 1, - 'https://ctan.simanglam.com/' => 1, + 'https://tw.mirrors.cicku.me/ctan/' => 1, }, 'Thailand' => { 'https://mirror.kku.ac.th/CTAN/' => 1, @@ -76,7 +81,6 @@ $mirrors = { 'https://mirrors.netix.net/CTAN/' => 1, }, 'Czech Republic' => { - 'http://ftp.cvut.cz/tex-archive/' => 1, 'https://mirrors.nic.cz/tex-archive/' => 1, }, 'Denmark' => { @@ -88,7 +92,6 @@ $mirrors = { 'https://www.texlive.info/CTAN/' => 1, }, 'France' => { - 'https://ctan.gutenberg-asso.fr/' => 1, 'https://ctan.mines-albi.fr/' => 1, 'https://ctan.tetaneutral.net/' => 1, 'https://distrib-coffee.ipsl.jussieu.fr/pub/mirrors/ctan/' => 1, @@ -132,6 +135,7 @@ $mirrors = { 'https://ftp.snt.utwente.nl/pub/software/tex/' => 1, 'https://mirror.koddos.net/CTAN/' => 1, 'https://mirror.lyrahosting.com/CTAN/' => 1, + 'https://nl.mirrors.cicku.me/ctan/' => 1, }, 'Norway' => { 'https://ctan.uib.no/' => 1, @@ -140,6 +144,7 @@ $mirrors = { 'Poland' => { 'https://ctan.gust.org.pl/tex-archive/' => 1, 'https://polish-mirror.evolution-host.com/ctan/' => 1, + 'https://sunsite.icm.edu.pl/pub/CTAN/' => 1, }, 'Portugal' => { 'https://ftp.eq.uc.pt/software/TeX/' => 1, @@ -149,27 +154,26 @@ $mirrors = { 'https://mirrors.nxthost.com/ctan/' => 1, }, 'Russia' => { - 'https://ctan.altspu.ru/' => 1, 'https://mirror.macomnet.net/pub/CTAN/' => 1, 'https://mirror.truenetwork.ru/CTAN/' => 1, }, 'Spain' => { 'https://ctan.fisiquimicamente.com/' => 1, 'https://ctan.javinator9889.com/' => 1, - 'https://osl.ugr.es/CTAN/' => 1, }, 'Sweden' => { 'https://ftpmirror1.infania.net/mirror/CTAN/' => 1, 'https://mirror.accum.se/mirror/CTAN/' => 1, }, 'Switzerland' => { + 'https://ch.mirrors.cicku.me/ctan/' => 1, 'https://mirror.foobar.to/CTAN/' => 1, 'https://mirror.init7.net/ctan/' => 1, }, 'United Kingdom' => { 'https://anorien.csc.warwick.ac.uk/mirrors/CTAN/' => 1, - 'https://eu.mirrors.cicku.me/ctan/' => 1, - 'https://www-uxsup.csx.cam.ac.uk/pub/tex-archive/' => 1, + 'https://gb.mirrors.cicku.me/ctan/' => 1, + 'https://mirror.apps.cam.ac.uk/pub/tex-archive/' => 1, }, }, 'North America' => { @@ -185,14 +189,17 @@ $mirrors = { 'Costa Rica' => { 'https://mirrors.ucr.ac.cr/CTAN/' => 1, }, + 'Mexico' => { + 'https://linux-mirror.xicalcoatl.mx/ctan/' => 1, + }, 'USA' => { - 'http://mirrors.ibiblio.org/pub/mirrors/CTAN/' => 1, 'https://ctan.math.illinois.edu/' => 1, 'https://ctan.math.utah.edu/ctan/tex-archive/' => 1, 'https://ctan.math.washington.edu/tex-archive/' => 1, 'https://ctan.mirrors.hoobly.com/' => 1, 'https://mirror.las.iastate.edu/tex-archive/' => 1, 'https://mirror.math.princeton.edu/pub/CTAN/' => 1, + 'https://mirrors.ibiblio.org/pub/mirrors/CTAN/' => 1, 'https://mirrors.mit.edu/CTAN/' => 1, 'https://mirrors.rit.edu/CTAN/' => 1, 'https://us.mirrors.cicku.me/ctan/' => 1, @@ -202,11 +209,11 @@ $mirrors = { 'Australia' => { 'https://au.mirrors.cicku.me/ctan/' => 1, 'https://mirror.aarnet.edu.au/pub/CTAN/' => 1, - 'https://mirror.cse.unsw.edu.au/pub/CTAN/' => 1, }, }, 'South America' => { 'Brazil' => { + 'https://br.mirrors.cicku.me/ctan/' => 1, 'https://linorg.usp.br/CTAN/' => 1, }, 'Chile' => { diff --git a/Master/tlpkg/installer/curl/curl-ca-bundle.crt b/Master/tlpkg/installer/curl/curl-ca-bundle.crt index 86d6cd80cc0..e8cc6c1c094 100644 --- a/Master/tlpkg/installer/curl/curl-ca-bundle.crt +++ b/Master/tlpkg/installer/curl/curl-ca-bundle.crt @@ -1,7 +1,9 @@ ## ## Bundle of CA Root Certificates ## -## Certificate data from Mozilla as of: Tue Jul 2 03:12:04 2024 GMT +## Certificate data from Mozilla as of: Tue Dec 31 04:12:05 2024 GMT +## +## Find updated versions here: https://curl.se/docs/caextract.html ## ## This is a bundle of X.509 certificates of public Certificate Authorities ## (CA). These were automatically extracted from Mozilla's root certificates @@ -14,7 +16,7 @@ ## Just configure this file as the SSLCACertificateFile. ## ## Conversion done with mk-ca-bundle.pl version 1.29. -## SHA256: 456ff095dde6dd73354c5c28c73d9c06f53b61a803963414cb91a1d92945cdd3 +## SHA256: c99d6d3f8d3d4e47719ba2b648992f5b58b150128d3aca3c05c566d8dc98e116 ## @@ -582,27 +584,6 @@ NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= -----END CERTIFICATE----- -SecureSign RootCA11 -=================== ------BEGIN CERTIFICATE----- -MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi -SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS -b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw -KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1 -cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL -TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO -wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq -g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP -O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA -bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX -t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh -OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r -bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ -Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01 -y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061 -lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I= ------END CERTIFICATE----- - Microsec e-Szigno Root CA 2009 ============================== -----BEGIN CERTIFICATE----- @@ -2317,40 +2298,6 @@ hcErulWuBurQB7Lcq9CClnXO0lD+mefPL5/ndtFhKvshuzHQqp9HpLIiyhY6UFfEW0NnxWViA0kB dBb9HxEGmpv0 -----END CERTIFICATE----- -Entrust Root Certification Authority - G4 -========================================= ------BEGIN CERTIFICATE----- -MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAwgb4xCzAJBgNV -BAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3Qu -bmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1 -dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1 -dGhvcml0eSAtIEc0MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYT -AlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 -L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhv -cml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhv -cml0eSAtIEc0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3D -umSXbcr3DbVZwbPLqGgZ2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV -3imz/f3ET+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j5pds -8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAMC1rlLAHGVK/XqsEQ -e9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73TDtTUXm6Hnmo9RR3RXRv06QqsYJn7 -ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNXwbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5X -xNMhIWNlUpEbsZmOeX7m640A2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV -7rtNOzK+mndmnqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 -dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwlN4y6mACXi0mW -Hv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNjc0kCAwEAAaNCMEAwDwYDVR0T -AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9n -MA0GCSqGSIb3DQEBCwUAA4ICAQAS5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4Q -jbRaZIxowLByQzTSGwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht -7LGrhFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/B7NTeLUK -YvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uIAeV8KEsD+UmDfLJ/fOPt -jqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbwH5Lk6rWS02FREAutp9lfx1/cH6NcjKF+ -m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKW -RGhXxNUzzxkvFMSUHHuk2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjA -JOgc47OlIQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk5F6G -+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuYn/PIjhs4ViFqUZPT -kcpG2om3PVODLAgfi49T3f+sHw== ------END CERTIFICATE----- - Microsoft ECC Root Certificate Authority 2017 ============================================= -----BEGIN CERTIFICATE----- @@ -2600,6 +2547,36 @@ vLtoURMMA/cVi4RguYv/Uo7njLwcAjA8+RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+ CAezNIm8BZ/3Hobui3A= -----END CERTIFICATE----- +GLOBALTRUST 2020 +================ +-----BEGIN CERTIFICATE----- +MIIFgjCCA2qgAwIBAgILWku9WvtPilv6ZeUwDQYJKoZIhvcNAQELBQAwTTELMAkGA1UEBhMCQVQx +IzAhBgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVT +VCAyMDIwMB4XDTIwMDIxMDAwMDAwMFoXDTQwMDYxMDAwMDAwMFowTTELMAkGA1UEBhMCQVQxIzAh +BgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVTVCAy +MDIwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAri5WrRsc7/aVj6B3GyvTY4+ETUWi +D59bRatZe1E0+eyLinjF3WuvvcTfk0Uev5E4C64OFudBc/jbu9G4UeDLgztzOG53ig9ZYybNpyrO +VPu44sB8R85gfD+yc/LAGbaKkoc1DZAoouQVBGM+uq/ufF7MpotQsjj3QWPKzv9pj2gOlTblzLmM +CcpL3TGQlsjMH/1WljTbjhzqLL6FLmPdqqmV0/0plRPwyJiT2S0WR5ARg6I6IqIoV6Lr/sCMKKCm +fecqQjuCgGOlYx8ZzHyyZqjC0203b+J+BlHZRYQfEs4kUmSFC0iAToexIiIwquuuvuAC4EDosEKA +A1GqtH6qRNdDYfOiaxaJSaSjpCuKAsR49GiKweR6NrFvG5Ybd0mN1MkGco/PU+PcF4UgStyYJ9OR +JitHHmkHr96i5OTUawuzXnzUJIBHKWk7buis/UDr2O1xcSvy6Fgd60GXIsUf1DnQJ4+H4xj04KlG +DfV0OoIu0G4skaMxXDtG6nsEEFZegB31pWXogvziB4xiRfUg3kZwhqG8k9MedKZssCz3AwyIDMvU +clOGvGBG85hqwvG/Q/lwIHfKN0F5VVJjjVsSn8VoxIidrPIwq7ejMZdnrY8XD2zHc+0klGvIg5rQ +mjdJBKuxFshsSUktq6HQjJLyQUp5ISXbY9e2nKd+Qmn7OmMCAwEAAaNjMGEwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFNwuH9FhN3nkq9XVsxJxaD1qaJwiMB8GA1Ud +IwQYMBaAFNwuH9FhN3nkq9XVsxJxaD1qaJwiMA0GCSqGSIb3DQEBCwUAA4ICAQCR8EICaEDuw2jA +VC/f7GLDw56KoDEoqoOOpFaWEhCGVrqXctJUMHytGdUdaG/7FELYjQ7ztdGl4wJCXtzoRlgHNQIw +4Lx0SsFDKv/bGtCwr2zD/cuz9X9tAy5ZVp0tLTWMstZDFyySCstd6IwPS3BD0IL/qMy/pJTAvoe9 +iuOTe8aPmxadJ2W8esVCgmxcB9CpwYhgROmYhRZf+I/KARDOJcP5YBugxZfD0yyIMaK9MOzQ0MAS +8cE54+X1+NZK3TTN+2/BT+MAi1bikvcoskJ3ciNnxz8RFbLEAwW+uxF7Cr+obuf/WEPPm2eggAe2 +HcqtbepBEX4tdJP7wry+UUTF72glJ4DjyKDUEuzZpTcdN3y0kcra1LGWge9oXHYQSa9+pTeAsRxS +vTOBTI/53WXZFM2KJVj04sWDpQmQ1GwUY7VA3+vA/MRYfg0UFodUJ25W5HCEuGwyEn6CMUO+1918 +oa2u1qsgEu8KwxCMSZY13At1XrFP1U80DhEgB3VDRemjEdqso5nCtnkn4rnvyOL2NSl6dPrFf4IF +YqYK6miyeUcGbvJXqBUzxvd4Sj1Ce2t+/vdG6tHrju+IaFvowdlxfv1k7/9nR4hYJS8+hge9+6jl +gqispdNpQ80xiEmEU5LAsTkbOYMBMMTyqfrQA71yN2BWHzZ8vTmR9W0Nv3vXkg== +-----END CERTIFICATE----- + ANF Secure Server Root CA ========================= -----BEGIN CERTIFICATE----- @@ -3138,36 +3115,6 @@ AwMDaAAwZQIxALGOWiDDshliTd6wT99u0nCK8Z9+aozmut6Dacpps6kFtZaSF4fC0urQe87YQVt8 rgIwRt7qy12a7DLCZRawTDBcMPPaTnOGBtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR -----END CERTIFICATE----- -Security Communication RootCA3 -============================== ------BEGIN CERTIFICATE----- -MIIFfzCCA2egAwIBAgIJAOF8N0D9G/5nMA0GCSqGSIb3DQEBDAUAMF0xCzAJBgNVBAYTAkpQMSUw -IwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScwJQYDVQQDEx5TZWN1cml0eSBD -b21tdW5pY2F0aW9uIFJvb3RDQTMwHhcNMTYwNjE2MDYxNzE2WhcNMzgwMTE4MDYxNzE2WjBdMQsw -CQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UE -AxMeU2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -MIICCgKCAgEA48lySfcw3gl8qUCBWNO0Ot26YQ+TUG5pPDXC7ltzkBtnTCHsXzW7OT4rCmDvu20r -hvtxosis5FaU+cmvsXLUIKx00rgVrVH+hXShuRD+BYD5UpOzQD11EKzAlrenfna84xtSGc4RHwsE -NPXY9Wk8d/Nk9A2qhd7gCVAEF5aEt8iKvE1y/By7z/MGTfmfZPd+pmaGNXHIEYBMwXFAWB6+oHP2 -/D5Q4eAvJj1+XCO1eXDe+uDRpdYMQXF79+qMHIjH7Iv10S9VlkZ8WjtYO/u62C21Jdp6Ts9EriGm -npjKIG58u4iFW/vAEGK78vknR+/RiTlDxN/e4UG/VHMgly1s2vPUB6PmudhvrvyMGS7TZ2crldtY -XLVqAvO4g160a75BflcJdURQVc1aEWEhCmHCqYj9E7wtiS/NYeCVvsq1e+F7NGcLH7YMx3weGVPK -p7FKFSBWFHA9K4IsD50VHUeAR/94mQ4xr28+j+2GaR57GIgUssL8gjMunEst+3A7caoreyYn8xrC -3PsXuKHqy6C0rtOUfnrQq8PsOC0RLoi/1D+tEjtCrI8Cbn3M0V9hvqG8OmpI6iZVIhZdXw3/JzOf -GAN0iltSIEdrRU0id4xVJ/CvHozJgyJUt5rQT9nO/NkuHJYosQLTA70lUhw0Zk8jq/R3gpYd0Vcw -CBEF/VfR2ccCAwEAAaNCMEAwHQYDVR0OBBYEFGQUfPxYchamCik0FW8qy7z8r6irMA4GA1UdDwEB -/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBDAUAA4ICAQDcAiMI4u8hOscNtybS -YpOnpSNyByCCYN8Y11StaSWSntkUz5m5UoHPrmyKO1o5yGwBQ8IibQLwYs1OY0PAFNr0Y/Dq9HHu -Tofjcan0yVflLl8cebsjqodEV+m9NU1Bu0soo5iyG9kLFwfl9+qd9XbXv8S2gVj/yP9kaWJ5rW4O -H3/uHWnlt3Jxs/6lATWUVCvAUm2PVcTJ0rjLyjQIUYWg9by0F1jqClx6vWPGOi//lkkZhOpn2ASx -YfQAW0q3nHE3GYV5v4GwxxMOdnE+OoAGrgYWp421wsTL/0ClXI2lyTrtcoHKXJg80jQDdwj98ClZ -XSEIx2C/pHF7uNkegr4Jr2VvKKu/S7XuPghHJ6APbw+LP6yVGPO5DtxnVW5inkYO0QR4ynKudtml -+LLfiAlhi+8kTtFZP1rUPcmTPCtk9YENFpb3ksP+MW/oKjJ0DvRMmEoYDjBU1cXrvMUVnuiZIesn -KwkK2/HmcBhWuwzkvvnoEKQTkrgc4NtnHVMDpCKn3F2SEDzq//wbEBrD2NCcnWXL0CsnMQMeNuE9 -dnUM/0Umud1RvCPHX9jYhxBAEg09ODfnRDwYwFMJZI//1ZqmfHAuc1Uh6N//g7kdPjIe1qZ9LPFm -6Vwdp6POXiUyK+OVrCoHzrQoeIY8LaadTdJ0MN1kURXbg4NR16/9M51NZg== ------END CERTIFICATE----- - Security Communication ECC RootCA1 ================================== -----BEGIN CERTIFICATE----- @@ -3566,3 +3513,99 @@ Y1w8ndYn81LsF7Kpryz3dvgwHQYDVR0OBBYEFJPhQ2NcPJ3WJ/NS7Beyqa8s93b4MA4GA1UdDwEB cFBTApFwhVmpHqTm6iMxoAACMQD94vizrxa5HnPEluPBMBnYfubDl94cT7iJLzPrSA8Z94dGXSaQ pYXFuXqUPoeovQA= -----END CERTIFICATE----- + +TWCA CYBER Root CA +================== +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIQQAE0jMIAAAAAAAAAATzyxjANBgkqhkiG9w0BAQwFADBQMQswCQYDVQQG +EwJUVzESMBAGA1UEChMJVEFJV0FOLUNBMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJUV0NB +IENZQkVSIFJvb3QgQ0EwHhcNMjIxMTIyMDY1NDI5WhcNNDcxMTIyMTU1OTU5WjBQMQswCQYDVQQG +EwJUVzESMBAGA1UEChMJVEFJV0FOLUNBMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJUV0NB +IENZQkVSIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDG+Moe2Qkgfh1s +Ts6P40czRJzHyWmqOlt47nDSkvgEs1JSHWdyKKHfi12VCv7qze33Kc7wb3+szT3vsxxFavcokPFh +V8UMxKNQXd7UtcsZyoC5dc4pztKFIuwCY8xEMCDa6pFbVuYdHNWdZsc/34bKS1PE2Y2yHer43CdT +o0fhYcx9tbD47nORxc5zb87uEB8aBs/pJ2DFTxnk684iJkXXYJndzk834H/nY62wuFm40AZoNWDT +Nq5xQwTxaWV4fPMf88oon1oglWa0zbfuj3ikRRjpJi+NmykosaS3Om251Bw4ckVYsV7r8Cibt4LK +/c/WMw+f+5eesRycnupfXtuq3VTpMCEobY5583WSjCb+3MX2w7DfRFlDo7YDKPYIMKoNM+HvnKkH +IuNZW0CP2oi3aQiotyMuRAlZN1vH4xfyIutuOVLF3lSnmMlLIJXcRolftBL5hSmO68gnFSDAS9TM +fAxsNAwmmyYxpjyn9tnQS6Jk/zuZQXLB4HCX8SS7K8R0IrGsayIyJNN4KsDAoS/xUgXJP+92ZuJF +2A09rZXIx4kmyA+upwMu+8Ff+iDhcK2wZSA3M2Cw1a/XDBzCkHDXShi8fgGwsOsVHkQGzaRP6AzR +wyAQ4VRlnrZR0Bp2a0JaWHY06rc3Ga4udfmW5cFZ95RXKSWNOkyrTZpB0F8mAwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBSdhWEUfMFib5do5E83 +QOGt4A1WNzAdBgNVHQ4EFgQUnYVhFHzBYm+XaORPN0DhreANVjcwDQYJKoZIhvcNAQEMBQADggIB +AGSPesRiDrWIzLjHhg6hShbNcAu3p4ULs3a2D6f/CIsLJc+o1IN1KriWiLb73y0ttGlTITVX1olN +c79pj3CjYcya2x6a4CD4bLubIp1dhDGaLIrdaqHXKGnK/nZVekZn68xDiBaiA9a5F/gZbG0jAn/x +X9AKKSM70aoK7akXJlQKTcKlTfjF/biBzysseKNnTKkHmvPfXvt89YnNdJdhEGoHK4Fa0o635yDR +IG4kqIQnoVesqlVYL9zZyvpoBJ7tRCT5dEA7IzOrg1oYJkK2bVS1FmAwbLGg+LhBoF1JSdJlBTrq +/p1hvIbZv97Tujqxf36SNI7JAG7cmL3c7IAFrQI932XtCwP39xaEBDG6k5TY8hL4iuO/Qq+n1M0R +FxbIQh0UqEL20kCGoE8jypZFVmAGzbdVAaYBlGX+bgUJurSkquLvWL69J1bY73NxW0Qz8ppy6rBe +Pm6pUlvscG21h483XjyMnM7k8M4MZ0HMzvaAq07MTFb1wWFZk7Q+ptq4NxKfKjLji7gh7MMrZQzv +It6IKTtM1/r+t+FHvpw+PoP7UV31aPcuIYXcv/Fa4nzXxeSDwWrruoBa3lwtcHb4yOWHh8qgnaHl +IhInD0Q9HWzq1MKLL295q39QpsQZp6F6t5b5wR9iWqJDB0BeJsas7a5wFsWqynKKTbDPAYsDP27X +-----END CERTIFICATE----- + +SecureSign Root CA12 +==================== +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUZvnHwa/swlG07VOX5uaCwysckBYwDQYJKoZIhvcNAQELBQAwUTELMAkG +A1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28uLCBMdGQuMR0wGwYDVQQDExRT +ZWN1cmVTaWduIFJvb3QgQ0ExMjAeFw0yMDA0MDgwNTM2NDZaFw00MDA0MDgwNTM2NDZaMFExCzAJ +BgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMU +U2VjdXJlU2lnbiBSb290IENBMTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6OcE3 +emhFKxS06+QT61d1I02PJC0W6K6OyX2kVzsqdiUzg2zqMoqUm048luT9Ub+ZyZN+v/mtp7JIKwcc +J/VMvHASd6SFVLX9kHrko+RRWAPNEHl57muTH2SOa2SroxPjcf59q5zdJ1M3s6oYwlkm7Fsf0uZl +fO+TvdhYXAvA42VvPMfKWeP+bl+sg779XSVOKik71gurFzJ4pOE+lEa+Ym6b3kaosRbnhW70CEBF +EaCeVESE99g2zvVQR9wsMJvuwPWW0v4JhscGWa5Pro4RmHvzC1KqYiaqId+OJTN5lxZJjfU+1Uef +NzFJM3IFTQy2VYzxV4+Kh9GtxRESOaCtAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P +AQH/BAQDAgEGMB0GA1UdDgQWBBRXNPN0zwRL1SXm8UC2LEzZLemgrTANBgkqhkiG9w0BAQsFAAOC +AQEAPrvbFxbS8hQBICw4g0utvsqFepq2m2um4fylOqyttCg6r9cBg0krY6LdmmQOmFxv3Y67ilQi +LUoT865AQ9tPkbeGGuwAtEGBpE/6aouIs3YIcipJQMPTw4WJmBClnW8Zt7vPemVV2zfrPIpyMpce +mik+rY3moxtt9XUa5rBouVui7mlHJzWhhpmA8zNL4WukJsPvdFlseqJkth5Ew1DgDzk9qTPxpfPS +vWKErI4cqc1avTc7bgoitPQV55FYxTpE05Uo2cBl6XLK0A+9H7MV2anjpEcJnuDLN/v9vZfVvhga +aaI5gdka9at/yOPiZwud9AzqVN/Ssq+xIvEg37xEHA== +-----END CERTIFICATE----- + +SecureSign Root CA14 +==================== +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIUZNtaDCBO6Ncpd8hQJ6JaJ90t8sswDQYJKoZIhvcNAQEMBQAwUTELMAkG +A1UEBhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28uLCBMdGQuMR0wGwYDVQQDExRT +ZWN1cmVTaWduIFJvb3QgQ0ExNDAeFw0yMDA0MDgwNzA2MTlaFw00NTA0MDgwNzA2MTlaMFExCzAJ +BgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMU +U2VjdXJlU2lnbiBSb290IENBMTQwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDF0nqh +1oq/FjHQmNE6lPxauG4iwWL3pwon71D2LrGeaBLwbCRjOfHw3xDG3rdSINVSW0KZnvOgvlIfX8xn +bacuUKLBl422+JX1sLrcneC+y9/3OPJH9aaakpUqYllQC6KxNedlsmGy6pJxaeQp8E+BgQQ8sqVb +1MWoWWd7VRxJq3qdwudzTe/NCcLEVxLbAQ4jeQkHO6Lo/IrPj8BGJJw4J+CDnRugv3gVEOuGTgpa +/d/aLIJ+7sr2KeH6caH3iGicnPCNvg9JkdjqOvn90Ghx2+m1K06Ckm9mH+Dw3EzsytHqunQG+bOE +kJTRX45zGRBdAuVwpcAQ0BB8b8VYSbSwbprafZX1zNoCr7gsfXmPvkPx+SgojQlD+Ajda8iLLCSx +jVIHvXiby8posqTdDEx5YMaZ0ZPxMBoH064iwurO8YQJzOAUbn8/ftKChazcqRZOhaBgy/ac18iz +ju3Gm5h1DVXoX+WViwKkrkMpKBGk5hIwAUt1ax5mnXkvpXYvHUC0bcl9eQjs0Wq2XSqypWa9a4X0 +dFbD9ed1Uigspf9mR6XU/v6eVL9lfgHWMI+lNpyiUBzuOIABSMbHdPTGrMNASRZhdCyvjG817XsY +AFs2PJxQDcqSMxDxJklt33UkN4Ii1+iW/RVLApY+B3KVfqs9TC7XyvDf4Fg/LS8EmjijAQIDAQAB +o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUBpOjCl4oaTeq +YR3r6/wtbyPk86AwDQYJKoZIhvcNAQEMBQADggIBAJaAcgkGfpzMkwQWu6A6jZJOtxEaCnFxEM0E +rX+lRVAQZk5KQaID2RFPeje5S+LGjzJmdSX7684/AykmjbgWHfYfM25I5uj4V7Ibed87hwriZLoA +ymzvftAj63iP/2SbNDefNWWipAA9EiOWWF3KY4fGoweITedpdopTzfFP7ELyk+OZpDc8h7hi2/Ds +Hzc/N19DzFGdtfCXwreFamgLRB7lUe6TzktuhsHSDCRZNhqfLJGP4xjblJUK7ZGqDpncllPjYYPG +FrojutzdfhrGe0K22VoF3Jpf1d+42kd92jjbrDnVHmtsKheMYc2xbXIBw8MgAGJoFjHVdqqGuw6q +nsb58Nn4DSEC5MUoFlkRudlpcyqSeLiSV5sI8jrlL5WwWLdrIBRtFO8KvH7YVdiI2i/6GaX7i+B/ +OfVyK4XELKzvGUWSTLNhB9xNH27SgRNcmvMSZ4PPmz+Ln52kuaiWA3rF7iDeM9ovnhp6dB7h7sxa +OgTdsxoEqBRjrLdHEoOabPXm6RUVkRqEGQ6UROcSjiVbgGcZ3GOTEAtlLor6CZpO2oYofaphNdgO +pygau1LgePhsumywbrmHXumZNTfxPWQrqaA0k89jL9WB365jJ6UeTo3cKXhZ+PmhIIynJkBugnLN +eLLIjzwec+fBH7/PzqUqm9tEZDKgu39cJRNItX+S +-----END CERTIFICATE----- + +SecureSign Root CA15 +==================== +-----BEGIN CERTIFICATE----- +MIICIzCCAamgAwIBAgIUFhXHw9hJp75pDIqI7fBw+d23PocwCgYIKoZIzj0EAwMwUTELMAkGA1UE +BhMCSlAxIzAhBgNVBAoTGkN5YmVydHJ1c3QgSmFwYW4gQ28uLCBMdGQuMR0wGwYDVQQDExRTZWN1 +cmVTaWduIFJvb3QgQ0ExNTAeFw0yMDA0MDgwODMyNTZaFw00NTA0MDgwODMyNTZaMFExCzAJBgNV +BAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEdMBsGA1UEAxMUU2Vj +dXJlU2lnbiBSb290IENBMTUwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQLUHSNZDKZmbPSYAi4Io5G +dCx4wCtELW1fHcmuS1Iggz24FG1Th2CeX2yF2wYUleDHKP+dX+Sq8bOLbe1PL0vJSpSRZHX+AezB +2Ot6lHhWGENfa4HL9rzatAy2KZMIaY+jQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBTrQciu/NWeUUj1vYv0hyCTQSvT9DAKBggqhkjOPQQDAwNoADBlAjEA2S6J +fl5OpBEHvVnCB96rMjhTKkZEBhd6zlHp4P9mLQlO4E/0BdGF9jVg3PVys0Z9AjBEmEYagoUeYWmJ +SwdLZrWeqrqgHkHZAXQ6bkU6iYAZezKYVWOr62Nuk22rGwlgMU4= +-----END CERTIFICATE----- diff --git a/Master/tlpkg/installer/install-tl-gui.tcl b/Master/tlpkg/installer/install-tl-gui.tcl index e654ce1b687..4249aa6e7a3 100755 --- a/Master/tlpkg/installer/install-tl-gui.tcl +++ b/Master/tlpkg/installer/install-tl-gui.tcl @@ -1,6 +1,6 @@ #!/usr/bin/env wish -# Copyright 2018-2022 Siep Kroonenberg +# Copyright 2018-2025 Siep Kroonenberg # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -334,7 +334,7 @@ proc pre_splash {} { } # wallpaper for remaining widgets - pack [ttk::frame .bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .bg -padding 3p] -fill both -expand 1 # frame for buttons (abort button, mirrors dropdown menu) pack [ttk::frame .splfb] -in .bg -side bottom -fill x @@ -389,7 +389,7 @@ proc show_log {{do_abort 0}} { } # wallpaper - pack [ttk::frame .bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .bg -padding 3p] -fill both -expand 1 # buttons at bottom pack [ttk::frame .bottom] -in .bg -side bottom -fill x @@ -471,14 +471,14 @@ proc edit_name {} { if $::plain_unix {wm attributes .tled -type dialog} # wallpaper - pack [ttk::frame .tled.bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .tled.bg -padding 3p] -fill both -expand 1 # widgets ttk::label .tled.l -text [__ "Change name (slashes not allowed)"] - pack .tled.l -in .tled.bg -padx 5pt -pady 5pt + pack .tled.l -in .tled.bg -padx 5p -pady 5p ttk::entry .tled.e -width 20 .tled.e state !disabled - pack .tled.e -in .tled.bg -pady 5pt + pack .tled.e -in .tled.bg -pady 5p .tled.e insert 0 [.tltd.name_l cget -text] # now frame with ok and cancel buttons @@ -492,9 +492,9 @@ proc edit_name {} { end_dlg "" .tled } } - ppack .tled.ok_b -in .tled.buttons -side right -padx 5pt -pady 5pt + ppack .tled.ok_b -in .tled.buttons -side right -padx 5p -pady 5p ttk::button .tled.cancel_b -text [__ "Cancel"] -command {end_dlg "" .tled} - ppack .tled.cancel_b -in .tled.buttons -side right -padx 5pt -pady 5pt + ppack .tled.cancel_b -in .tled.buttons -side right -padx 5p -pady 5p bind .tled <Escape> {.tled.cancel_b invoke} wm protocol .tled WM_DELETE_WINDOW \ @@ -570,14 +570,14 @@ proc texdir_setup {} { wm title .tltd [__ "Installation root"] # wallpaper - pack [ttk::frame .tltd.bg -padding 3pt] -expand 1 -fill both + pack [ttk::frame .tltd.bg -padding 3p] -expand 1 -fill both # full path pack [ttk::label .tltd.path_l -font lfont -anchor center] \ - -in .tltd.bg -pady 10pt -fill x -expand 1 + -in .tltd.bg -pady 10p -fill x -expand 1 # installation root components, gridded - pack [ttk::frame .tltd.fr1 -borderwidth 2pt -relief groove] \ + pack [ttk::frame .tltd.fr1 -borderwidth 2p -relief groove] \ -in .tltd.bg -fill x -expand 1 grid columnconfigure .tltd.fr1 0 -weight 1 grid columnconfigure .tltd.fr1 2 -weight 1 @@ -620,7 +620,7 @@ proc texdir_setup {} { } # ok/cancel buttons - pack [ttk::frame .tltd.frbt] -in .tltd.bg -pady {10pt 0pt} -fill x + pack [ttk::frame .tltd.frbt] -in .tltd.bg -pady {10p 0p} -fill x ttk::button .tltd.ok_b -text [__ "Ok"] -command commit_root ppack .tltd.ok_b -in .tltd.frbt -side right ttk::button .tltd.cancel_b -text [__ "Cancel"] \ @@ -684,7 +684,7 @@ proc edit_dir {d} { if $::plain_unix {wm attributes .td -type dialog} # wallpaper - pack [ttk::frame .td.bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .td.bg -padding 3p] -fill both -expand 1 if {$d eq "TEXMFHOME"} { # explain tilde @@ -889,7 +889,7 @@ proc select_binaries {} { wm title .tlbin [__ "Binaries"] # wallpaper - pack [ttk::frame .tlbin.bg -padding 3pt] -expand 1 -fill both + pack [ttk::frame .tlbin.bg -padding 3p] -expand 1 -fill both # ok, cancel buttons pack [ttk::frame .tlbin.buts] -in .tlbin.bg -side bottom -fill x @@ -939,7 +939,7 @@ proc select_scheme {} { wm title .tlschm [__ "Schemes"] # wallpaper - pack [ttk::frame .tlschm.bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .tlschm.bg -padding 3p] -fill both -expand 1 # buttons at bottom pack [ttk::frame .tlschm.buts] -in .tlschm.bg -side bottom -fill x @@ -1027,7 +1027,7 @@ proc select_collections {} { wm title .tlcoll [__ "Collections"] # wallpaper - pack [ttk::frame .tlcoll.bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .tlcoll.bg -padding 3p] -fill both -expand 1 # frame at bottom with ok and cancel buttons pack [ttk::frame .tlcoll.butf] -in .tlcoll.bg -side bottom -fill x @@ -1047,14 +1047,14 @@ proc select_collections {} { set wgb .tlcoll.b$t ttk::frame $wgb ttk::label ${wgb}sel -text [__ "Select"] - ttk::button ${wgb}all -text [__ "All"] -padding 1pt -command \ + ttk::button ${wgb}all -text [__ "All"] -padding 1p -command \ "foreach c \[.tlcoll.$t children {}\] \{ .tlcoll.$t set \$c mk \[mark_sym 1\]\}" - ttk::button ${wgb}none -text [__ "None"] -padding 1pt -command \ + ttk::button ${wgb}none -text [__ "None"] -padding 1p -command \ "foreach c \[.tlcoll.$t children {}\] \{ .tlcoll.$t set \$c mk \[mark_sym 0\]\}" pack ${wgb}sel ${wgb}all ${wgb}none -in $wgb \ - -side left -padx 3pt -pady 3pt + -side left -padx 3p -pady 3p # trees with collections and markers, lang and other separately set wgt ".tlcoll.$t" @@ -1213,7 +1213,7 @@ if {$::tcl_platform(platform) ne "windows"} { create_dlg .edsyms . wm title .edsyms [__ "Symlinks"] - pack [ttk::frame .edsyms.bg -padding 3pt] -expand 1 -fill both + pack [ttk::frame .edsyms.bg -padding 3p] -expand 1 -fill both set rw -1 pack [ttk::frame .edsyms.fr0] -in .edsyms.bg -expand 1 -fill both @@ -1345,7 +1345,7 @@ proc run_menu {} { menu .mn . configure -menu .mn if $::plain_unix { - .mn configure -borderwidth 1pt + .mn configure -borderwidth 1p .mn configure -background $::default_bg } .mn add command -command abort_menu -label [__ "Abort"] @@ -1387,20 +1387,20 @@ proc run_menu {} { } # wallpaper, for a uniform background - pack [ttk::frame .bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .bg -padding 3p] -fill both -expand 1 # title ttk::label .title -text [__ "TeX Live %s Installer" $::release_year] \ -font titlefont - pack .title -pady {10pt 1pt} -in .bg + pack .title -pady {10p 1p} -in .bg pack [ttk::label .svn -text "r. $::svn"] -in .bg pack [ttk::separator .seph0 -orient horizontal] \ - -in .bg -pady 3pt -fill x + -in .bg -pady 3p -fill x # frame at bottom with install/quit buttons pack [ttk::frame .final] \ - -in .bg -side bottom -pady {5pt 2pt} -fill x + -in .bg -side bottom -pady {5p 2p} -fill x ppack [ttk::button .install -text [__ "Install"] -command maybe_install] \ -in .final -side right ppack [ttk::button .quit -text [__ "Quit"] -command { @@ -1414,7 +1414,7 @@ proc run_menu {} { }] -in .final -side left } pack [ttk::separator .seph1 -orient horizontal] \ - -in .bg -side bottom -pady 3pt -fill x + -in .bg -side bottom -pady 3p -fill x # directories, selections # advanced and basic have different frame setups @@ -1610,7 +1610,7 @@ proc run_menu {} { if $::advanced { pack [ttk::separator .sepv -orient vertical] \ - -in .bg -side left -padx 3pt -fill y + -in .bg -side left -padx 3p -fill y pack [ttk::frame .options] -in .bg -side right -fill both -expand 1 set curf .options diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 30713f877aa..edd612b5bfd 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -87,6 +87,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'acromake', "die 'skipping, nonfree (nomodify) license'", 'acrotex', "die 'skipping, per author (dps) request'", 'acrotex-js', "die 'skipping, requires adobe'", + 'adforn', "&MAKEflatten", + 'adfsymbols', "&MAKEflatten", 'adobe-euro', "die 'skipping, support for nonfree fonts'", 'adobecaslon', "die 'skipping, support for nonfree fonts'", 'adobeornaments', "die 'skipping, support for nonfree fonts'", @@ -99,6 +101,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'aeb_tilebg', "die 'skipping, per author (dps) request'", 'aecc', "die 'skipping, obsolete on CTAN'", 'aesupp', "&MAKEflatten", + 'afparticle', "die 'skipping, obsolete on CTAN'", 'akktex', "&MAKEflatten", 'alatex', "die 'skipping, 1995 LaTeX generalization'", 'alfaslabone', "&MAKEflatten", @@ -172,7 +175,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'bargraph-js', "die 'skipping, requires acrobat and non-unique filename'", 'base', "die 'skipping, what package did you really mean?'", 'basiclatex-ru',"die 'skipping, no source'", - 'baskervald', "&MAKEcopy", + 'antt', "&MAKEcopy", + 'baskervillef',"&MAKEflatten", 'baskervaldx', "&MAKEflatten", 'basque', "die 'skipping, use babel-basque'", 'bbm-macros', "&MAKEnosymlinks", @@ -185,9 +189,11 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'beamer-rl', "&MAKEflatten", 'beamer2thesis', "&MAKEflatten", 'beamerauxtheme', "&MAKEflatten", + 'beamertheme-edmaths', "die 'skipping, nonfree images'", 'beamertheme-metropolis', "&MAKEflatten", 'beamertheme-trigon', "&MAKEflatten", 'beamertheme-upenn-bc', "&MAKEflatten", + 'beamerthemecelestia', "&MAKEflatten", 'beamerthemeconcrete', "&MAKEflatten", 'beamerthemeamurmaple', "&MAKEflatten", 'beginlatex', "die 'skipping, ca.2004'", @@ -195,6 +201,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'bengali', "&MAKEflatten", 'bengali-omega', "die 'skipping, duplicates odev.sty et al.'", 'bera', "&MAKEunzipandflatten", + 'baskervald', "die 'skipping, use baskervaldadf'", + 'baskervaldadf',"&MAKEflatten", 'berenisadf', "&MAKEflatten", 'beuron', "&MAKEflatten", 'bezos', "die 'skipping, split into constituent packages'", @@ -243,6 +251,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'bnf-plain', "die 'skipping, unknown license (and c.1992)'", 'bookhands', "&MAKEwilson", 'bookman', "die 'skipping, part of urw-base35, frozen'", + 'bookshelf', "&MAKEflatten", 'booktabs-fr', "&MAKEnosymlinks", 'boondox', "&MAKEcopy", 'borceux', "&MAKEborceux", @@ -282,6 +291,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'cdcover', "die 'skipping, use cd-cover'", 'cellular', "die 'skipping, noinfo license, author deceased'", 'cellwise', "die 'skipping, noinfo license'", + 'cfr-lm', "&MAKEflatten", 'changebar', "&MAKEchangebar", 'chapterbib', "die 'skipping, update cite instead'", 'charter', "die 'skipping, frozen'", @@ -345,6 +355,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'context-annotation', "die 'skipping, obsolete on CTAN'", 'context-bnf', "die 'skipping, obsolete on CTAN'", 'context-calendar-examples', "&MAKEcopy", + 'context-chat', "&MAKEcopy", 'context-chromato', "die 'skipping, obsolete on CTAN'", 'context-cmscbf', "die 'skipping, obsolete on CTAN'", 'context-cmttbf', "die 'skipping, obsolete on CTAN'", @@ -461,6 +472,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'do-it-yourself-tex', "die 'skipping, huge documentation package'", 'docassembly', "die 'skipping, requires adobe (dps)'", 'dogma', "die 'skipping, requires nonfree font'", + 'domaincoloring' => '&MAKEflatten', 'dot2tex', "die 'skipping, only useful with supporting python setup'", 'domitian', "&MAKEflatten", 'dozenal', "&MAKEflatten", @@ -501,7 +513,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'einfuehrung2',"die 'skipping, author request'", 'eitl', "die 'skipping, distro-specific scripts, etc.'", 'ektype-tanka',"&MAKEflatten", - 'electrum', "&MAKEcopy", + 'electrum', "die 'skipping, use electrumadf'", + 'electrumadf', "&MAKEflatten", 'eledpar', "die 'skipping, use eledmac'", 'elegantbook', "die 'skipping, obsolete per author'", 'elegantnote', "die 'skipping, obsolete per author'", @@ -544,6 +557,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'excel2latex', "die 'skipping, only supports excel?'", 'expkv', "die 'skipping, replaced by expkv-bundle'", 'expl3', "die 'skipping, now l3kernel, etc.'", + 'expltools', "&MAKEflatten", 'expressgx', "&MAKEexpressg", 'extractpdfmark', "die 'skipping, compiled program'", 'fac', "die 'skipping, noinfo license'", @@ -587,6 +601,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'footnpag', "&MAKEfootnpag", 'formula', "die 'skipping, requires scripts, very old'", 'fourier', "&MAKEflatten", + 'fourier-gut', "die 'skipping, use fourier'", 'fourier-GUT', "die 'skipping, use fourier'", 'fp', "&MAKEfp", 'fpl', "&MAKEflatten", @@ -618,7 +633,9 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'gene', "die 'skipping, complicated, some have sources, sorry'", 'gelasiomath', "&MAKEflatten", 'genmisc', "die 'skipping, split into separate packages'", - 'gentium', "die 'skipping, use gentium-tug'", + 'gentium', "die 'skipping, use gentium-sil'", + 'gentium-otf', "&MAKEflatten", + 'gentium-tug', "die 'skipping, use gentium-sil'", 'gentl-gr', "die 'skipping, nonfree license'", 'geometry-de', "die 'skipping, part of geometry as of 2jan20'", 'geomsty', "die 'skipping, nonfree license'", @@ -675,7 +692,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'hilowres', "die 'skipping, nonfree'", 'hindmadurai', "&MAKEflatten", 'historische-zeitschrift', "&MAKEflatten", - 'hitex-def', "die 'skipping, martin does from build tree'", + 'hitex-def', "die 'skipping, martin.r does from build tree'", + 'hittype', "die 'skipping, nosell'", 'hm-ftx', "die 'skipping, use persian-hm-ftx'", 'hm-xbs', "die 'skipping, use persian-hm-xbs'", 'html2latex', "die 'skipping, no self-locating of Perl modules'", @@ -688,8 +706,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'hvlogos', "&MAKEflatten", 'hvpygmentex', "&MAKEflatten", 'hvqrurl', "&MAKEflatten", - 'hybrid-latex', "die 'skipping, no self-locating of Python modules'", - 'hyph-utf8', "&MAKEcopy", + 'hybrid-latex', "die 'skipping, no self-locating of Python modules'", 'hyphen-german', "die 'skipping, part of hyph-utf8'", 'hyphen-spanish',"die 'skipping, part of hyph-utf8'", 'ibygrk', "&MAKEflatten", @@ -729,6 +746,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'javascripthttp',"die 'skipping, requires acrotex'", 'javatex', "die 'skipping, ca.1998, not integrated'", 'jeopardy', "die 'skipping, requires dpstory packages'", + 'jetbrainsmono-otf',"&MAKEflatten", 'jeuxcartes', "&MAKEflatten", 'jflap2tikz', "die 'skipping, requires java'", 'jfontmaps', "die 'skipping, use ptex-fontmaps'", @@ -831,7 +849,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'libertinus-otf', "&MAKEflatten", 'libertinust1math', "&MAKEflatten", 'librarian', "&MAKEflatten", - 'libris', "&MAKEcopy", + 'libris', "&MAKEflatten", 'lifia-th', "die 'skipping, ?'", 'linearA', "die 'skipping, use lineara'", 'LinearA', "die 'skipping, use lineara'", @@ -840,6 +858,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'lintex', "die 'skipping, compiled program'", 'list', "die 'skipping, part of knuth-local'", 'listofanswers', "die 'skipping, noinfo license'", + 'litebook', "die 'skipping, replaced by whatsnote'", + 'litesolution',"die 'skipping, replaced by whatsnote'", 'literat', "&MAKEliterat", 'lithuanian', "&MAKEflatten", 'lkort', "die 'skipping, obsolete'", @@ -881,7 +901,6 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'lua-visual-debug', "&MAKEflatten", 'lua2dox', "die 'skipping, author request'", 'luabidi', "&MAKEflatten", - 'luacensor', "die 'skipping, awaited Redacted-Regular.ttf own pkg'", 'luafindfont', "&MAKEflatten", 'luaintro', "die 'skipping, obsolete per author (hvoss)'", 'lualatex-doc', "die 'skipping, obsolete on ctan (hvoss)'", @@ -893,6 +912,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'lucidabr', "die 'skipping, nonfree font'", 'lucold', "die 'skipping, nonfree font'", 'lug', "skipping, specific script (with too-short name)", + 'luwiantype', "&MAKEflatten", 'lxfonts', "&MAKEflatten", 'ly1', "&MAKEcopy", 'lyx', "die 'skipping, container directory'", @@ -950,6 +970,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'metauml', "&MAKEmetauml", 'metropolis', "die 'skipping, use beamertheme-metropolis'", 'metsymb', "&MAKEflatten", + 'mf', "die 'skipping, compiled engine metafont'", + 'mfb-oldstyle',"&MAKEflatten", 'mff', "die 'skipping, noinfo license'", 'mflogo', "die 'skipping, must find logosl8.mf on CTAN'", # 11feb19 'mflogo-font', "&MAKEflatten", @@ -1060,13 +1082,14 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'optexcount', "&MAKEflatten", 'optima', "die 'skipping, nonfree font'", 'osa', "die 'skipping, relies on endfloat.cfg and non-unique filenames'", + 'osda', "die 'skipping, nonfree license due to logo, 20nov24 ulm mail'", 'osmanian', "die 'skipping, no good license info'", 'oswald', "&MAKEflatten", 'ot2cyr', "die 'skipping, nonfree font support'", 'otfinst', "die 'skipping, python script, perhaps stale'", 'otibet', "&MAKEflatten", 'oxford', "die 'skipping, nosell license'", - 'padauk', "&MAKEflatten", + 'padauk', "die 'skipping, obsolete on CTAN (updated at SIL)'", 'pageframe', "die 'skipping, noinfo license'", 'pagella-otf', "&MAKEflatten", 'pageno', "die 'skipping, nosell license'", @@ -1090,7 +1113,6 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'pdf-forms-tutorial-de', "die 'skipping, requires acrobat'", #"&MAKEpdf_forms_tutorial", 'pdf-forms-tutorial-en', "die 'skipping, requires acrobat'", #"&MAKEpdf_forms_tutorial", 'pdfbook', "die 'skipping, requires compilation'", - 'pdfjam', "&MAKEflatten", 'pdfmarginpar',"&MAKEflatten", 'pdfrack', "die 'skipping, until someone asks for it'", 'pdftex-def', "die 'skipping, replaced by graphics-def'", @@ -1284,7 +1306,8 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'rmannot', "die 'skipping, per author (dps) request'", 'rmligs', "die 'skipping, no requests'", 'rojud', "&MAKEflatten", - 'romande', "&MAKEcopy", + 'romande', "die 'skipping, use romandeadf'", + 'romandeadf', "&MAKEflatten", 'rosario', "&MAKEflatten", 'rotating', "die 'skipping, now part of (core latex) graphics'", 'rpg-module', "die 'skipping, basic-stats name'", @@ -1333,7 +1356,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'sistyle', "&MAKEflatten", 'skak', "&MAKEflatten", 'skeyval', "&MAKEmv_doctex", - 'skillicons', "die 'skipping, '", + 'skillicons', "die 'skipping, huge, licensing?'", 'slashbox', "die 'skipping, noinfo license, c.1993'", 'slidenotes', "die 'skipping, nonfree'", 'smallcap', "die 'skipping, questionable license, 1996'", @@ -1346,7 +1369,6 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'splint', "die 'skipping, binary'", 'springer', "die 'skipping, licenses not checked'", 'sprite', "die 'skipping, noinfo license'", - 'sqltex', "die 'skipping, not self-locating'", 'srbtiks', "&MAKEflatten", 'ssqquote', "die 'skipping, nonfree license'", 'startlatex2e',"die 'skipping, renamed to yet-another-guide-latex2e'", @@ -1397,6 +1419,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'tex-implementors', "die 'skipping, verbatim mail archive'", 'tex-in-practice', "die 'skipping, old book examples'", 'tex-it', "die 'skipping, old support'", + 'tex-refs', "die 'skipping, removed on CTAN'", 'tex_it', "die 'skipping, old support'", 'texdoc', "&MAKEflatten", 'texdoctk', "die 'skipping, moribund, only in tl'", @@ -1520,7 +1543,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'vdm', "die 'skipping, noinfo license, 1994'", 'vector', "die 'skipping, noinfo license, 1994'", 'velthuis', "&MAKEflatten", - 'venturisadf', "&MAKEcopy", + 'venturisadf', "&MAKEflatten", 'verdana', "die 'skipping, support for nonfree font'", 'vertex', "die 'skipping, noinfo license, aer.sty clash, ancient'", 'vhistory', "&MAKEflatten", @@ -1654,6 +1677,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'optex' => '&PREHOOK_optex', 'optexcount' => '&PREHOOK_optexcount', 'pgfornament' => '&PREHOOK_flatten1', + 'pdfjam' => '&PREHOOK_flatten1', 'phonetic' => '&PREHOOK_flatten1', 'pictex' => '&PREHOOK_pictex', 'pkuthss' => '&PREHOOK_flatten1', @@ -1694,6 +1718,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'amscls-doc' => '&POST_rmsymlink', 'amsrefs' => '&POSTamsrefs', 'amstex' => '&POSTamstex', + 'aomart' => '&POST_do_man', 'apalike' => '&POSTapalike', 'arara' => '&POST_do_man', 'asapsym' => '&POSTasapsym', @@ -1701,6 +1726,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'autosp' => '&POSTautosp', 'barracuda' => '&POSTbarracuda', 'beautybook' => '&POSTbeautybook', + 'bhcexam' => '&POST_rmsymlink', 'bib2gls' => '&POSTbib2gls', 'biber' => '&POSTbiber', 'biber-ms' => '&POSTbiber', @@ -1711,13 +1737,16 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'bibtex' => '&POSTbibtex', 'bibtexperllibs' => '&POSTbibtexperllibs', 'blopentype' => '&POST_onelevel', - 'cfr-lm' => '&POSTcfr_lm', + 'bonum-otf' => '&POST_onelevel', + 'calculatoritems' => '&POST_onelevel', + 'cascadiamono-otf' => '&POST_onelevel', 'circularglyphs' => '&POST_onelevel', 'citation-style-language' => '&POST_do_man', 'cjk-gs-integrate' => '&POSTcjk_gs_integrate', 'cmcyr' => '&POSTcmcyr', 'codedescribe' => '&POST_onelevel', 'coloredbelts' => '&POST_onelevel', + 'commalists-tools' => '&POST_onelevel', 'context' => '&POSTcontext', 'context-games' => '&POSTcontext_games', 'context-legacy' => '&POSTcontext_legacy', @@ -1745,6 +1774,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'enigma' => '&POSTenigma', 'eplain' => '&POSTeplain', 'epspdf' => '&POSTepspdf', + 'euromoney' => '&POST_onelevel', 'exam-zh' => '&POSTexam_zh', 'fadingimage' => '&POST_onelevel', 'fenetrecas' => '&POST_onelevel', @@ -1764,17 +1794,23 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'grverb' => '&POSTgrverb', 'guide-latex-fr' => '&POST_rmsymlink', 'haranoaji' => '&POST_preserve_postcode', + 'hduthesis' => '&POST_onelevel', + 'hebdomon' => '&POST_onelevel', 'highlightx' => '&POST_onelevel', 'hmtrump' => '&POSThmtrump', 'huffman' => '&POST_onelevel', 'hustthesis' => '&POSThustthesis', 'hyperxmp' => '&POST_do_man', + 'hyph-utf8' => '&POSThyph_utf8', 'ibygrk' => '&POSTibygrk', 'impatient' => '&POSTimpatient', 'impatient-fr' => '&POSTimpatient_fr', + 'inlinegraphicx' => '&POST_onelevel', 'interactiveworkbook' => '&POSTinteractiveworkbook', 'ipsum' => '&POST_onelevel', 'isodoc' => '&POSTisodoc', + 'isosafety' => '&POST_onelevel', + 'keytheorems' => '&POST_onelevel', 'knitting' => '&POSTknitting', 'knuth-lib' => '&POSTknuth_lib', 'koma-script' => '&POSTkoma_script', #'&POST_rmsymlink', @@ -1786,11 +1822,10 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'latexindent' => '&POSTlatexindent', 'lettrine' => '&POST_onelevel', 'lhcyr' => '&POSTlhcyr', + 'libertinus-type1' => '&POSTlibertinus_type1', 'light-latex-make' => '&tl_man_to_pdf', 'lilyglyphs' => '&POSTlilyglyphs', 'listbib' => '&POSTlistbib', - 'litebook' => '&POST_onelevel', - 'litesolution' => '&POST_onelevel', 'litetable' => '&POST_onelevel', 'lithuanian' => '&POSTlithuanian', 'lni' => '&POST_rmsymlink', @@ -1802,6 +1837,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'luaotfload' => '&POST_do_man', 'luatexja' => '&POSTluatexja', 'm-tx' => '&POSTmtx', + 'maritime' => '&POST_onelevel', 'match_parens' => '&POST_do_man', 'mathdesign' => '&POSTmathdesign', 'memoize' => '&POST_do_man', @@ -1809,12 +1845,16 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'mitthesis' => '&POSTmitthesis', 'moderncv' => '&POST_deref_symlink', 'montex' => '&POSTmontex', + 'mp-geom2d' => '&POST_onelevel', + 'mp-neuralnetwork' => '&POST_onelevel', 'mpfonts' => '&POSTmpfonts', 'mpkiviat' => '&POST_onelevel', 'mptopdf' => '&POSTmptopdf', 'musixtex' => '&POSTmusixtex', 'musixtnt' => '&POSTmusixtnt', + 'neoschool' => '&POST_onelevel', 'niceframe' => '&POST_rmsymlink', + 'nodepthtext' => '&POST_onelevel', 'non-decimal-units' => '&POST_onelevel', 'notebeamer' => '&POST_onelevel', 'novel' => '&POST_onelevel', @@ -1858,7 +1898,9 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'pynotebook' => '&POST_onelevel', 'quizztex' => '&POST_onelevel', 'quran-en' => '&POST_onelevel', + 'quran-es' => '&POST_onelevel', 'quran-id' => '&POST_onelevel', + 'randintlist' => '&POST_onelevel', 'recipebook' => '&POST_rmsymlink', 'regulatory' => '&POST_onelevel', 'resolsysteme' => '&POST_onelevel', @@ -1872,6 +1914,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'simple-resume-cv' => '&POST_simple_rmFonts', 'simple-thesis-dissertation' => '&POST_simple_rmFonts', 'splitindex' => '&POST_do_man', + 'sqltex', => '&POSTsqltex', 'starray' => '&POST_onelevel', 'startex' => '&POST_otherformat', 'stex', => '&POSTstex', @@ -1888,12 +1931,15 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'thmlist' => '&POST_onelevel', 'thumbpdf' => '&POST_preserve_man', 'tikz-cd' => '&POSTtikz_cd', + 'tikz-decofonts' => '&POST_onelevel', 'tikz-ext' => '&POSTtikz_ext', + 'tikz-triminos' => '&POST_onelevel', 'tikz2d-fr' => '&POST_onelevel', 'tikz3d-fr' => '&POST_onelevel', 'tikzdotncross' => '&POST_onelevel', 'tikzquads' => '&POST_onelevel', 'tikzquests' => '&POST_onelevel', + 'timeop' => '&POST_onelevel', 'tipa-de' => '&POST_rmsymlink', 'tkz-berge' => '&POSTtkz_berge', 'tkz-bernoulli' => '&POST_onelevel', @@ -1911,8 +1957,10 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'vectorlogos' => '&POST_onelevel', 'velthuis' => '&POSTvelthuis', 'webquiz' => '&POST_deref_symlink', + 'whatsnote' => '&POST_onelevel', 'wordle' => '&POST_onelevel', 'writeongrid' => '&POST_onelevel', + 'xcomment' => '&POST_onelevel', 'xetex-pstricks' => '&POSTxetexpstricks', 'xindex' => '&POSTxindex', 'xint-regression' => '&POST_onelevel', @@ -2029,7 +2077,6 @@ $standarddest = "texmf-dist"; 'texdraw', 'generic', 'texsis', 'texsis', 'textmerg', 'generic', - 'tikzducks', 'generic', 'tugboat-plain', 'plain', 'ulem', 'generic', 'uptex-base', 'uptex', @@ -2058,7 +2105,7 @@ $standardfmt='latex'; $standardtex = '(\.(.bx|4ht|cls|clo|cmap|(code|lib)\.tex' . '|def|dfu|fd|fontspec|ldf|lua|opm|py|sty|trsl)' - . '|.*[^c]\.cfg)$'; # not ltxdoc.cfg + . '|^lbx|.*[^c]\.cfg)$'; # not ltxdoc.cfg %specialtex = ( '2up', '2up\.tex|' . $standardtex, 'FAQ-en', 'NULL', @@ -2067,6 +2114,7 @@ $standardtex 'acro', 'definitions\.tex|' . $standardtex, 'algxpar', '\.kw\.tex|' . $standardtex, 'aobs-tikz', 'tikz.*tex', + 'aomart', 'aom_orcid_logo|' . $standardtex, 'ae', '\.fd$|\.sty', 'alchemist', 'alchemist.sty', # not manual.sty 'alertmessage','img|' . $standardtex, @@ -2099,7 +2147,6 @@ $standardtex 'beamer-rl', '\.dict|' . $standardtex, 'beamer2thesis','\.jpg|' . $standardtex, 'beamertheme-npbt', 'images|' . $standardtex, - 'beamertheme-tcolorbox', '[^s]\.sty$', # not *-doc-settings.sty 'bezierplot', '\.lua|' . $standardtex, 'bghyphen', '\.tex', 'biblatex-ext','\.lua|' . $standardtex, @@ -2108,6 +2155,7 @@ $standardtex 'bibtex', 'apalike\..*|' . $standardtex, 'bidi', '^bidi\.tex|' . $standardtex, 'blockdraw_mp','NULL', # skip .sty's + 'bookshelf', '^bookshelf-svgnam\.tex|' . $standardtex, 'booktabs-de', 'NULL', # doc package 'booktabs-fr', 'NULL', # doc package 'bmstu', 'img|sty|logo.pdf|' . $standardtex, @@ -2200,6 +2248,7 @@ $standardtex 'europasscv', '(icon|logo).*\.pdf|' . $standardtex, 'europecv', 'EuropeFlag|europasslogo|\.cls|\.def', 'exam-n', '\.cls', # not .clo example file + 'expltools', 'NULL', # doc 'fancyqr', '\.code|' . $standardtex, 'fancytooltips', 'fancytipmark[.1-4].*|' . $standardtex, 'fewerfloatpages', '\.sty$', # not l3doc-TUB.cls @@ -2216,6 +2265,7 @@ $standardtex 'fontch', '\.tex', 'fontloader-luaotfload', '\.lua$', 'fontscale', '\.sty', # not beery.cls + 'fontscripts', 'NULL', # everything in source 'footnpag', 'footnpag\.sty', 'fragments', '\.tex|' . $standardtex, 'frame', 'frame\.tex|' . $standardtex, @@ -2264,7 +2314,6 @@ $standardtex 'iso10303', 'a.*tex|b.*tex|e.*tex|stp.*tex|\.sty|\.4ht', 'isodate', '\.idf|\.sty', 'isodoc', '\.cls|iso.*\.ldf', # not *.sty - 'isosafety', 'images|' . $standardtex, 'jadetex', '\.ltx|\.def|\.tex|\.ini|\.sty|\.fd', 'jeuxcartes', 'CaJ.*\.(png|pdf)|' . $standardtex, 'jieeetran', 'NULL', # not .py @@ -2339,12 +2388,14 @@ $standardtex 'luaprogtable','\.lua|' . $standardtex, 'luapstricks', '\.lua|' . $standardtex, 'luatexko', '\.lua|' . $standardtex, + 'luatikz', '\.lua|' . $standardtex, 'luatodonotes','\.lua|' . $standardtex, 'luavlna', 'luavlna.*\.lua|luavlna\.tex|' . $standardtex, 'luaxml', '\.lua|' . $standardtex, 'lutabulartools', '\.lua|' . $standardtex, 'lyluatex', '\.sty', # not *.cls 'magyar', 'NULL', # do not install in runtime, conflicts with babel + 'mahjong', 'tiles|' . $standardtex, 'make4ht', 'NULL', # all in scripts 'makelabels', '\.lco|' . $standardtex, 'mandi', '\.sty', # not .py @@ -2378,6 +2429,7 @@ $standardtex 'mkpattern', 'mkpatter.tex', 'mlawriter', 'mlawriter.tex', 'mnhyphn', 'mnhyphn.tex', + 'moderncv', 'moderncv.*\.tex|' . $standardtex, 'montex', '(mlsgalig|mlstrans|mnhyphex)\.tex|' . $standardtex, 'mpman-ru', 'NULL', # doc package 'msg', '-msg\.tex|' . $standardtex, @@ -2495,7 +2547,9 @@ $standardtex 'sa-tikz', 'tikzlib.*tex|' . $standardtex, 'sansmath', '^..[^s].*\.sty', # not miscdoc.sty 'sapthesis', 'sapienzalogo.pdf|' . $standardtex, + 'scaletextbullet', '\.sty$', # not .cls 'scholax', '.*-subs\.tex|' . $standardtex, + 'scrhack', '.hak$|' . $standardtex, 'scrlttr2copy','\.lco', 'sdaps', '\.dict$|code128|' . $standardtex, 'sduthesis', 'figures|' . $standardtex, @@ -2552,8 +2606,7 @@ $standardtex 'tikz-qtree', '(pgf|tikz-)(subpic|q?tree(-compat)?)\.(tex|sty)', 'tikz-sfc', '\.code\.tex$', 'tikz-trackschematic', '\.code\.tex$|tic\.sty$', # not *documentation.sty - 'tikzducks', '(code|-(generic|plain)).tex$|ducks\.sty|\.mkiv$', # not *doc-settings.sty - 'tikzmarmots', '\.code\.tex$|tikzmarmots(|-v1)\.sty$', # not *doc-settings.sty + 'tikzducks', '(code|-(generic|plain)).tex$|ducks\.sty|\.mkiv$', 'tikzposter', 'tikzposter[^-].*\.tex|' . $standardtex, # tipa: we want to install all .sty except tipaman|boxchar|codelist. # i can't explain why ^(?!...), the "zero-width negative look-ahead @@ -2582,14 +2635,17 @@ $standardtex 'tudscr', 'DDC.*|TUD.*|' . $standardtex, 'tugboat-plain','\.cmn|' . $standardtex, 'twemojis', 'all-twemojis\.pdf|' . $standardtex, + 'tuple', '^tuple\.tex|' . $standardtex, 'typstfun', 'NULL', # doc pkg 'ucs', 'data|' . $standardtex, 'uestcthesis', '\.png|' . $standardtex, 'udesoftec', 'udesoftec-cover|\.cls|\.def', + 'udiss', 'logos|' . $standardtex, 'ulthese', 'ulthese.cls|ul_p\.(eps|pdf)', # logo for the university 'underoverlap','underoverlap\.sty', 'underscore', '^..[^s].*\.sty', # not miscdoc.sty 'undolabl', '\.sty|[^c]\.cfg', # omit ltxdoc.cfg, would be system-wide + 'unibidi-lua', 'unibidi-lua.tex|' . $standardtex, 'unicode-alphabets', '\..sv|' . $standardtex, 'unicode-math-input', '\.sty|unicode-math-input-table\.tex', # not .py 'unicodefonttable', '(\.sty|unicodefont.tex)$', # not .cls @@ -2883,7 +2939,6 @@ $standardtex 'texsis', 'otherformats', 'textmerg', 'generic', 'textpath', 'metapost', - 'tikzducks', 'generic', 'timing', 'fonts', 'tlmgr-intro-zh-cn', 'support', 'tlmgrbasics', 'support', @@ -3049,6 +3104,7 @@ $standardsource = '(\.(bat|c|drv|[dem]tx|fea|fdd|ins|mk|sfd)' 'bibtools', '.', # everything but one bst 'bigints', 'NULL', 'blacklettert1', '\.dtx|\.ins|\.pl|Makefile', + 'bookshelf', 'NULL', # all non-runtime in doc 'booktabs-de', 'NULL', # doc package 'booktabs-fr', 'NULL', # doc package 'burmese', '\.pl', @@ -3077,6 +3133,7 @@ $standardsource = '(\.(bat|c|drv|[dem]tx|fea|fdd|ins|mk|sfd)' 'feynmf', 'feynmf\.pl|' . $standardsource, 'findhyph', 'NULL', # leave makefile 'fmtcount', 'fmtcount.perl|' . $standardsource, + 'fontscripts', '\.(lua|tex|lvt)$|' . $standardsource, # pdf/README in doc 'fpl', 'Add|\.p[es]|' . $standardsource, 'fullblck', '\.asc|' . $standardsource, 'grverb', '\.vpl|' . $standardsource, @@ -3126,6 +3183,7 @@ $standardsource = '(\.(bat|c|drv|[dem]tx|fea|fdd|ins|mk|sfd)' 'ruhyphen', '^[^.]*$|README.ru|hyphen.rules', 'selnolig', 'NULL', # not .fea 'shipunov', 'NULL', # .bat in scripts + 'sqltex', '.', 'stex', 'NULL', # handled in post fn 'tds', 'NULL', # doc pkg 'tex-vpat', 'NULL', @@ -3236,6 +3294,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'asciilist' => 'latex', # requires interaction 'askinclude' => 'tex', # else doc is generated 'atenddvi' => 'etex', + 'atveryend' => 'etex', 'babel' => 'etex', 'babel-belarusian' => 'tex -8bit', # do not make doc, no ^^ 'babel-french' => 'luatex', @@ -3248,8 +3307,10 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'bath-bst' => 'luatex -interaction=nonstopmode', 'bbold' => 'pdflatex', 'beamerswitch' => 'tex -8bit', # no doc remake + 'biblatex-accursius' => 'pdflatex-preserve-pdf --engine xelatex', 'biblatex-bath' => 'luatex', # no doc remake 'biblatex-oxref' => 'luatex', # no doc remake + 'bib2qr' => 'etex', 'bguq' => 'latex', # requires interaction 'bhcexam' => 'latex', # requires interaction 'bnumexpr' => 'etex', @@ -3271,6 +3332,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'denisbdoc' => 'tex -8bit', 'dotseqn' => 'latex', # requires interaction 'delimtxt' => 'latex -translate-file=empty.tcx', # no 8-bit + 'doibanner' => 'etex', 'dramatist' => 'latex', # requires interaction 'drm' => 'latex', # requires interaction 'duckuments' => 'tex', @@ -3283,6 +3345,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'emisa' => 'pdflatex-preserve-pdf', 'emo' => 'etex', 'engpron' => 'latex -translate-file=empty.tcx', # no 8-bit + 'enverb' => 'etex', 'ecclesiastic' => 'latex', # requires interaction 'emisa' => 'pdflatex-preserve-pdf', 'epstopdf-pkg' => 'tex', @@ -3311,6 +3374,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'grading-scheme' => 'etex-answer-y', 'graphics-pln' => "env TEXINPUTS=$Master/texmf-dist/source/latex/base: latex", 'grffile' => 'tex', + 'gridset' => 'tex', 'halloweenmath' => 'latex', # requires interaction 'hamnosys' => 'etex-answer-y', 'hanzibox' => 'etex', @@ -3324,6 +3388,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'hu-berlin-bundle' => 'luatex', 'hycolor' => 'tex', 'hypdestopt' => 'etex', + 'hypcap' => 'tex', 'hypdoc' => 'tex', 'hyperbar' => 'tex', 'inputnormalization' => 'etex -8bit', @@ -3352,6 +3417,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'lua-ul' => 'etex-answer-y', # https://github.com/latex3/latex2e/issues/558 'luacolor' => 'etex', 'luaindex' => 'lualatex --shell-escape', + 'luamml' => 'etex-answer-y', 'luamathalign' => 'etex-answer-y', 'luatexja' => 'lualatex', 'magicwatermark' => 'etex', @@ -3400,6 +3466,7 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'schedule' => 'latex', # requires interaction 'schemata' => 'tex', 'scontents' => 'etex', + 'scrhack' => 'etex-answer-y', 'scrlayer-fancyhdr' => 'etex-answer-y', 'scrwfile' => 'etex', 'secnum' => 'etex-answer-y', @@ -3408,12 +3475,13 @@ my $core_latex = "$Master/texmf-dist/tex/latex"; 'sillypage' => 'etex', 'skdoc' => 'tex', 'spath3' => 'etex', - 'standardsectioning' => etex, + 'standardsectioning' => 'etex', 'stix2-type1' => 'tex', 'svg' => 'etex', 'svn-multi' => 'latex', # interaction for .pl 'swfigure' => 'etex', 'teubner' => 'latex', # interaction + 'telprint' => 'tex', 'termlist' => 'tex', # interaction for .pl 'termsim', => 'etex', 'thmtools' => 'latex', @@ -3447,6 +3515,7 @@ $standardinsrunner = "latex -8bit"; 'bibleref' => 'NULL', # doc 'einfuehrung' => 'NULL', # doc 'einfuehrung2' => 'NULL', # doc + 'expltools' => 'NULL', # doc 'hyperxmp' => 'NULL', # doc 'istgame' => 'NULL', # doc 'labyrinth' => 'NULL', # doc @@ -3485,7 +3554,7 @@ $standardmp = '\.mp$'; 'latexmp', 'latexmp.mp', 'latex-graphics-companion', 'NULL', # doc package 'luamesh', 'luamesh.mp', # not doc file fond.mp - 'mcf2graph', 'mcf2graph.mf', # not the examples + 'mcf2graph', 'mcf2graph.mp|main_lib.mcf', # not the examples 'metapost-colorbrewer','colorbrewer-[cr].*mp', # not -sampler 'metapost-examples', 'NULL', # doc package 'minim-hatching', '.*g\.mp', # not doc.mp @@ -3594,7 +3663,9 @@ $standardmf='[0-9]\.mf'; 'berenisadf' => 'arkandis', 'charter' => 'bitstrea', 'fc' => 'jknappen', + 'gentium-sil' => 'SIL', 'grotesq' => 'urw', + 'jetbrainsmono-otf' => 'SIL', 'manfnt-font' => 'hoekwater', 'mflogo-font' => 'hoekwater', 'mfpic' => 'metafont', @@ -3712,10 +3783,12 @@ $standardttf = '\.ttf|\.TTC'; # scripts to install under texmf*/.../scripts, but no bindir links. %specialscripts_nobin = ( 'albatross' => '\.jar$', - 'bib2gls' => '\.jar$', + 'bib2gls' => '\.jar$|resources', 'changes' => '\.py$', 'cloze' => '\.lua$', 'epspdf' => '(epspdf(|\.help|\.tlu|.*tk.*)|\.rb|makegray\.pro)$', + 'expltools' => 'expl.*\.lua$', + 'extractbb' => 'extractbb-.*\.lua$', 'latex2nemeth' => '\.jar$', 'latex-make' => '\.py$', 'latexindent' => 'LatexIndent|\.yaml$', @@ -3730,6 +3803,7 @@ $standardttf = '\.ttf|\.TTC'; 'luasseq' => '\.lua$', 'lyluatex' => '\.lua$', 'make4ht' => '(extensions|filters|formats|\.lua)$', + 'minted' => '\.whl$', 'mycv' => 'mycv_split_contents\.pl$', 'pgfmolbio' => '\.lua$', 'pax' => 'pax.jar$', @@ -3754,6 +3828,7 @@ $standardttf = '\.ttf|\.TTC'; 'accfonts' => 'mkt1font|vpl2', 'adhocfilelist' => 'adhocfilelist\.sh$', 'albatross' => '\.sh$', + 'aomart' => 'aom-fullref\.pl$', 'arara' => 'arara\.sh$', 'attachfile2' => 'pdfatfi\.pl$', 'authorindex' => 'authorindex$', @@ -3761,6 +3836,7 @@ $standardttf = '\.ttf|\.TTC'; 'bibcop' => '\.pl$', 'bibexport' => 'bibexport\.sh$', 'bibtexperllibs' => 'ltx2unitxt', + 'bookshelf' => 'bookshelf-(listallfonts|mkfontsel)$', 'bundledoc' => '(arlatex|bundledoc)$', 'checkcites' => '\.lua$', 'checklistings' => '\.sh$', @@ -3787,6 +3863,8 @@ $standardttf = '\.ttf|\.TTC'; 'eolang' => '\.pl$', 'epstopdf' => 'epstopdf\.pl', # doscripts() does r* 'exceltex' => 'exceltex$', + 'expltools' => 'explcheck\.lua$', + 'extractbb' => 'extractbb\.lua$', 'fig4latex' => 'fig4latex', 'findhyph' => 'findhyph$', 'fragmaster' => 'fragmaster\.pl$', @@ -3823,9 +3901,11 @@ $standardttf = '\.ttf|\.TTC'; 'm-tx' => 'm-tx.lua', 'make4ht' => 'make4ht$', 'makedtx' => '^makedtx\.pl$', + 'markdown' => '^markdown2tex\.lua$', 'match_parens' => '^match_parens$', 'mathspic' => '^mathspic\.pl$', 'memoize' => '\.p[ly]$', + 'minted' => 'latexminted.py$', 'multibibliography' => '\.pl$', 'mf2pt1' => '\.pl$', 'mkgrkindex' => 'mkgrkindex$', @@ -3837,7 +3917,7 @@ $standardttf = '\.ttf|\.TTC'; 'pax' => 'pdfannotextractor.pl$', 'pdfbook2' => 'pdfbook2$', 'pdfcrop' => '\.pl$', # doscripts() does r* - 'pdfjam' => 'pdfjam$', + 'pdfjam' => '^pdfjam$', 'pdflatexpicscale' => '\.pl$', 'pdftex-quiet' => 'pdftex-quiet$', 'pdfxup' => 'pdfxup$', @@ -3848,6 +3928,7 @@ $standardttf = '\.ttf|\.TTC'; 'pkfix-helper' => 'pkfix-helper$', 'pmxchords' => 'pmxchords\.lua$', 'petri-nets' => 'pn2pdf', + 'ppmcheckpdf' => 'ppmcheckpdf\.lua$', 'pst-pdf' => 'ps4pdf$', 'pst2pdf' => 'pst2pdf\.pl$', 'ptex2pdf' => 'ptex2pdf\.lua$', @@ -3857,6 +3938,7 @@ $standardttf = '\.ttf|\.TTC'; 'rubik' => '\.pl$', 'runtexshebang' => '\.lua$', 'spix' => '\.py$', + 'sqltex' => 'sqltex$', 'srcredact' => '\.pl$', 'splitindex' => 'splitindex\.pl$', 'sty2dtx' => '\.pl$', @@ -3919,6 +4001,7 @@ $standardttf = '\.ttf|\.TTC'; 'bib2gls' => '\.1$', 'bibtexperllibs' => '\.1$', 'bibcop' => '\.1$', + 'bookshelf' => '\.1$', 'bundledoc' => '\.1$', 'chklref' => '\.1$', 'citation-style-language' => '\.1$', @@ -3933,6 +4016,7 @@ $standardttf = '\.ttf|\.TTC'; 'easydtx' => '\.1$', 'eolang' => '\.1$', 'epstopdf' => 'r?epstopdf.1|epstopdf.man1.pdf', # don't keep pdf + 'extractbb' => '\.1$', 'findhyph' => 'findhyph.1', 'fontools' => '\.1$', 'git-latexdiff' => '\.1$', @@ -3953,9 +4037,10 @@ $standardttf = '\.ttf|\.TTC'; 'pedigree-perl' => '\.1$', 'perltex' => 'perltex.1', 'pdfbook2' => '\.1$', - 'pdfjam' => '\.1$', + 'pdfjam' => 'pdfjam\.1$', 'pdfxup' => '\.1$', 'pmx' => '\.1$', + 'ppmcheckpdf' => '\.1$', 'purifyeps' => 'purifyeps.1', 'rubik' => '\.1$', 'spix' => '\.1$', @@ -4045,6 +4130,7 @@ $standardclean = '\.head|\.tmp|\.dvi|\.log|\.out|\.aux|\.toc|\.lof|\.lot' 'din1505' => '(leitbild3|normpatsoft).pdf', # no source 'easy' => '.*\.pdf|doc.html.tgz', # no source 'eczar' => 'ttf', # dup with otf + 'edmaths' => 'edmaths-docs.pdf', # no source 'ednotes' => 'perpage.sty', # copy from bigfoot 'epslatex-fr' => 'R?Danger.eps', # unneeded, name clash 'exceltex' => 'manpage.pdf', # no source @@ -4117,7 +4203,7 @@ for (@ARGV) { if ($specialscripts_bin{$package} # special POSTcases: - || $package =~ /^(biber|context|mptopdf|musixtnt)$/) { + || $package =~ /^(biber|context|hyph-utf8|mptopdf|musixtnt)$/) { $BUILDDEST = "$COOKED_PKG/Build/source"; $TOPDEST = "$COOKED_PKG/Master"; } else { @@ -4279,13 +4365,15 @@ sub rename_with_mkdir { &xsystem ("$MV $from $to"); } -# run a shell command. +# run a shell command, ignoring return status (historic, +# calls should be changed). # sub SYSTEM { my ($job) = @_; if ($opt_test) { print "\t SYSTEM $job # test\n"; } else { + warn "PATH = $ENV{PATH}\n"; print "\t SYSTEM $job\n" if $opt_debug; system ($job); } @@ -4548,10 +4636,10 @@ sub runins { &runjob ("$invoke_insrunner $_"); # bbold.dtx generates bbold.ins, and then does "low level hacks" to - # run the .ins itself. mathfont.dtx generates mathfont.ins to no - # purpose (and it doesn't work). We don't want to do anything in - # either case. - next if $package =~ /^(bbold|mathfont)$/; + # run the .ins itself. mathfont.dtx and gridset.dtx generate + # .ins files to no purpose (and they don't work). We don't want to + # do anything in these cases. + next if $package =~ /^(bbold|mathfont|gridset)$/; # in the case of fullblck (et al.), the .dtx creates the .ins (so the # .ins is not in @filenames), and the .ins creates the .sty. @@ -4571,6 +4659,8 @@ sub runins { &killfiles ($specialclean{$package} || $standardclean); } +# Install files into DESTDIR matching THISPATT. +# sub install { my ($destdir,$thispatt) = @_; return unless $thispatt; @@ -4583,6 +4673,7 @@ sub install { for my $file (@files) { next if $file eq "dtx-style.sty"; # this should never be in runtime + next if $file =~ /-doc-settings.sty$/; # ditto &SYSTEM ("$MV $file $destdir"); } } @@ -4790,14 +4881,17 @@ sub doscripts { my $linktarget = "../../$DEST_TREE/scripts/$package/$s"; &SYSTEM ("ln -s $linktarget $platdir/$linkname"); # - # Scripts with special cases. - # xx should merge with bin_links in - # Build/source/texk/texlive/linked_scripts/Makefile.am, sigh. + # Scripts with multiple links. + # xxqqq should merge with bin_links in + # Build/source/texk/texlive/linked_scripts/Makefile.am. &SYSTEM ("ln -s $linkname $platdir/cllualatex") if $linkname eq "cluttex"; # cluttex->cllualatex &SYSTEM ("ln -s $linkname $platdir/clxelatex") if $linkname eq "cluttex"; # cluttex->clxelatex # + &SYSTEM ("ln -s $linkname $platdir/ebb") + if $linkname eq "extractbb"; # ebb->extractbb + # &SYSTEM ("ln -s $linkname $platdir/r$linkname") if $linkname =~ /^(pdfcrop|epstopdf)$/; # rpdfcrop ->pdfcrop, ... # @@ -4807,7 +4901,7 @@ sub doscripts { } else { # Windows. If a shell script, usually skip, except for Java # programs. Else copy the wrapper. - if ($s !~ /albatross|arara|bib2gls|convertgls2bib + if ($s !~ /albatross|arara|bib2gls|convertgls2bib|datatool2bib |texosquery|texplate|tlcockpit/x) { next if $s =~ /\.sh$/ && $s !~ /-sys\.sh$/; } @@ -6771,7 +6865,7 @@ sub POSTbibtex { } sub POSTbibtexperllibs { - print "POST$package - move modules to scripts/, man pages to doc/\n"; + print "POST$package - move modules to scripts/, man pages to doc/, etc.\n"; &xchdir ("$DEST/source/support/$package/"); &mv_with_mkdir ("*/lib/*", "$DEST/scripts/$package/"); # @@ -7235,7 +7329,6 @@ sub POSTfixme { print "POST$package - move subdirectories\n"; my $dstdir = "$DEST/tex/latex/$package"; &xmkdir ($dstdir); - &SYSTEM ("$MV themes layouts $dstdir/"); } sub POSTfont_change_xetex { @@ -7312,6 +7405,30 @@ sub POSThustthesis { . " $DEST/doc/latex/$package/"); } +sub POSThyph_utf8 { + print "POST$package - unpack tlpsrc, etc.\n"; + print "*** Before committing from this:\n"; + print "*** read leading comments in tlpkg/bin/tl-hyph-test and run it!\n"; + print "*** \n"; + print "*** After tl-hyph-test is ok, and still before committing:\n"; + print "*** add new hyphen-* pkgs to collection-lang*.\n"; + print "*** \n"; + print "*** If all ok, then commit.\n"; + print "*** Final commit will have svn add errors per below; ignore.\n"; + print "*** \n"; + print "*** After commit, manually rebuild:\n"; + print "*** env force_rebuild=true cron.trunk # or cron.pretest\n"; + print "*** \n"; + print "*** All *hyph[en]-* files (etc.) will not be matched, in own pkgs.\n"; + my $tlpsrc_dir = "$TOPDEST/tlpkg/tlpsrc"; + &xmkdir ($tlpsrc_dir); + &xchdir ($tlpsrc_dir); + # + my $pkgsrc_dir = "$DEST/source/generic/$package"; + &xsystem ("unzip -j $pkgsrc_dir/tlpsrc.zip"); # junk top dir in tlpsrc.zip + &SYSTEM ("$RM $pkgsrc_dir/tlpsrc.zip"); # no need for tlpsrc.zip +} + sub POSTibygrk { print "POST$package - second copy of ibycus4.map\n"; # after the ibygrk structure has been set up, copy ibycus4.map to the @@ -7473,6 +7590,11 @@ sub POSTlhcyr { } } +sub POSTlibertinus_type1 { + print "POST$package - clean spurious empty .sty\n"; + &SYSTEM ("$RM $DEST/tex/latex/libertinus-type1.sty"); +} + sub POSTlilyglyphs { print "POST$package - move directories around\n"; &rename_with_mkdir ("fonts", "$DEST/fonts/opentype/public/$package"); @@ -7803,6 +7925,30 @@ sub POST_simple_rmFonts { &SYSTEM ("$RM -r Fonts"); } +sub POSTsqltex { + print "POST$package - move script to scripts/, man pages to doc/, etc.\n"; + &xchdir ("$DEST/source/support/$package/"); + # + # The user-level script, and accompanying data files, are in a subdir. + # Don't move Makefile.*. + &mv_with_mkdir ("src/[sS]*", "$DEST/scripts/$package/"); + # + &xchdir ("$DEST/scripts/$package/"); + @filenames = glob ("*"); # have to reset @filenames for install() + &doscripts (); + # + # Move the doc files to the doc tree. Don't move Makefile.*. + &xchdir ("$DEST/source/support/$package"); + my $docdest = "$DEST/doc/support/$package"; + &mv_with_mkdir ("doc/S*", $docdest); + &domans (); + # + # The man page is in a different subdir. + &xchdir ("man"); + @filenames = glob ("*.man"); # have to reset @filenames for install() + &domans (); +} + sub POSTstex { print "POST$package - mv tex/ dir, copy source/ dir\n"; @@ -7994,7 +8140,7 @@ sub POST_onelevel { my $foundry = $specialfoundry{$package} || $standardfoundry; $format = "$dir/$foundry"; } else { - die "$0: quitting, don't know about one-level directory: $dir\n"; + die "$0: quitting, don't know about one-level directory: $dir"; } &rename_with_mkdir ($dir, "$DEST/$destdir/$format/$package"); } diff --git a/Master/tlpkg/texlive.tlpdb b/Master/tlpkg/texlive.tlpdb index ee9ff018a6f..ecf9a0b7e0f 100644 --- a/Master/tlpkg/texlive.tlpdb +++ b/Master/tlpkg/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/2024 -depend revision/71770 +depend release/2025 +depend revision/74117 name 00texlive.image category TLCore -revision 71756 +revision 74115 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=14491 +runfiles size=14489 .mkisofsrc autorun.inf texmf-dist/README @@ -85,6 +85,7 @@ runfiles size=14491 tlpkg/bin/tl-compare-tlpdbs tlpkg/bin/tl-dump-texcatalogue tlpkg/bin/tl-fix-container-links + tlpkg/bin/tl-hyph-test tlpkg/bin/tl-makeself-from-tlnet tlpkg/bin/tl-print-dependencies tlpkg/bin/tl-prune-platforms @@ -427,11 +428,11 @@ runfiles size=14491 tlpkg/tlpsrc/aesupp.tlpsrc tlpkg/tlpsrc/affilauthor.tlpsrc tlpkg/tlpsrc/afm2pl.tlpsrc - tlpkg/tlpsrc/afparticle.tlpsrc tlpkg/tlpsrc/afthesis.tlpsrc tlpkg/tlpsrc/aguplus.tlpsrc tlpkg/tlpsrc/aiaa.tlpsrc tlpkg/tlpsrc/aichej.tlpsrc + tlpkg/tlpsrc/aiplans.tlpsrc tlpkg/tlpsrc/ajl.tlpsrc tlpkg/tlpsrc/akktex.tlpsrc tlpkg/tlpsrc/akletter.tlpsrc @@ -478,6 +479,7 @@ runfiles size=14491 tlpkg/tlpsrc/amstex.tlpsrc tlpkg/tlpsrc/amsthdoc-it.tlpsrc tlpkg/tlpsrc/andika.tlpsrc + tlpkg/tlpsrc/anima.tlpsrc tlpkg/tlpsrc/animate.tlpsrc tlpkg/tlpsrc/annee-scolaire.tlpsrc tlpkg/tlpsrc/annotate-equations.tlpsrc @@ -564,6 +566,7 @@ runfiles size=14491 tlpkg/tlpsrc/asymptote-manual-zh-cn.tlpsrc tlpkg/tlpsrc/asymptote.tlpsrc tlpkg/tlpsrc/asypictureb.tlpsrc + tlpkg/tlpsrc/atableau.tlpsrc tlpkg/tlpsrc/atbegshi.tlpsrc tlpkg/tlpsrc/atenddvi.tlpsrc tlpkg/tlpsrc/atendofenv.tlpsrc @@ -675,7 +678,7 @@ runfiles size=14491 tlpkg/tlpsrc/bartel-chess-fonts.tlpsrc tlpkg/tlpsrc/bashful.tlpsrc tlpkg/tlpsrc/basicarith.tlpsrc - tlpkg/tlpsrc/baskervald.tlpsrc + tlpkg/tlpsrc/baskervaldadf.tlpsrc tlpkg/tlpsrc/baskervaldx.tlpsrc tlpkg/tlpsrc/baskervillef.tlpsrc tlpkg/tlpsrc/basque-book.tlpsrc @@ -709,8 +712,10 @@ runfiles size=14491 tlpkg/tlpsrc/beamertheme-detlevcm.tlpsrc tlpkg/tlpsrc/beamertheme-epyt.tlpsrc tlpkg/tlpsrc/beamertheme-focus.tlpsrc + tlpkg/tlpsrc/beamertheme-gotham.tlpsrc tlpkg/tlpsrc/beamertheme-light.tlpsrc tlpkg/tlpsrc/beamertheme-metropolis.tlpsrc + tlpkg/tlpsrc/beamertheme-mirage.tlpsrc tlpkg/tlpsrc/beamertheme-npbt.tlpsrc tlpkg/tlpsrc/beamertheme-phnompenh.tlpsrc tlpkg/tlpsrc/beamertheme-pure-minimalistic.tlpsrc @@ -722,11 +727,13 @@ runfiles size=14491 tlpkg/tlpsrc/beamertheme-trigon.tlpsrc tlpkg/tlpsrc/beamertheme-upenn-bc.tlpsrc tlpkg/tlpsrc/beamerthemeamurmaple.tlpsrc + tlpkg/tlpsrc/beamerthemecelestia.tlpsrc tlpkg/tlpsrc/beamerthemeconcrete.tlpsrc tlpkg/tlpsrc/beamerthemejltree.tlpsrc tlpkg/tlpsrc/beamerthemelalic.tlpsrc tlpkg/tlpsrc/beamerthemenirma.tlpsrc tlpkg/tlpsrc/beamerthemenord.tlpsrc + tlpkg/tlpsrc/beamertools.tlpsrc tlpkg/tlpsrc/bearwear.tlpsrc tlpkg/tlpsrc/beaulivre.tlpsrc tlpkg/tlpsrc/beautybook.tlpsrc @@ -753,6 +760,7 @@ runfiles size=14491 tlpkg/tlpsrc/bhcexam.tlpsrc tlpkg/tlpsrc/bib-fr.tlpsrc tlpkg/tlpsrc/bib2gls.tlpsrc + tlpkg/tlpsrc/bib2qr.tlpsrc tlpkg/tlpsrc/bibarts.tlpsrc tlpkg/tlpsrc/bibcop.tlpsrc tlpkg/tlpsrc/biber-ms.tlpsrc @@ -760,6 +768,7 @@ runfiles size=14491 tlpkg/tlpsrc/bibexport.tlpsrc tlpkg/tlpsrc/bibhtml.tlpsrc tlpkg/tlpsrc/biblatex-abnt.tlpsrc + tlpkg/tlpsrc/biblatex-accursius.tlpsrc tlpkg/tlpsrc/biblatex-ajc2020unofficial.tlpsrc tlpkg/tlpsrc/biblatex-anonymous.tlpsrc tlpkg/tlpsrc/biblatex-apa.tlpsrc @@ -775,6 +784,7 @@ runfiles size=14491 tlpkg/tlpsrc/biblatex-chem.tlpsrc tlpkg/tlpsrc/biblatex-chicago.tlpsrc tlpkg/tlpsrc/biblatex-claves.tlpsrc + tlpkg/tlpsrc/biblatex-cse.tlpsrc tlpkg/tlpsrc/biblatex-cv.tlpsrc tlpkg/tlpsrc/biblatex-dw.tlpsrc tlpkg/tlpsrc/biblatex-enc.tlpsrc @@ -885,6 +895,7 @@ runfiles size=14491 tlpkg/tlpsrc/boldtensors.tlpsrc tlpkg/tlpsrc/bondgraph.tlpsrc tlpkg/tlpsrc/bondgraphs.tlpsrc + tlpkg/tlpsrc/bonum-otf.tlpsrc tlpkg/tlpsrc/book-of-common-prayer.tlpsrc tlpkg/tlpsrc/bookcover.tlpsrc tlpkg/tlpsrc/bookdb.tlpsrc @@ -931,6 +942,7 @@ runfiles size=14491 tlpkg/tlpsrc/bxbase.tlpsrc tlpkg/tlpsrc/bxcalc.tlpsrc tlpkg/tlpsrc/bxcjkjatype.tlpsrc + tlpkg/tlpsrc/bxcoloremoji.tlpsrc tlpkg/tlpsrc/bxdpx-beamer.tlpsrc tlpkg/tlpsrc/bxdvidriver.tlpsrc tlpkg/tlpsrc/bxeepic.tlpsrc @@ -961,8 +973,10 @@ runfiles size=14491 tlpkg/tlpsrc/calctab.tlpsrc tlpkg/tlpsrc/calculation.tlpsrc tlpkg/tlpsrc/calculator.tlpsrc + tlpkg/tlpsrc/calculatoritems.tlpsrc tlpkg/tlpsrc/calligra-type1.tlpsrc tlpkg/tlpsrc/calligra.tlpsrc + tlpkg/tlpsrc/callouts-box.tlpsrc tlpkg/tlpsrc/callouts.tlpsrc tlpkg/tlpsrc/calrsfs.tlpsrc tlpkg/tlpsrc/cals.tlpsrc @@ -981,6 +995,7 @@ runfiles size=14491 tlpkg/tlpsrc/cartonaugh.tlpsrc tlpkg/tlpsrc/cascade.tlpsrc tlpkg/tlpsrc/cascadia-code.tlpsrc + tlpkg/tlpsrc/cascadiamono-otf.tlpsrc tlpkg/tlpsrc/cascadilla.tlpsrc tlpkg/tlpsrc/cases.tlpsrc tlpkg/tlpsrc/casyl.tlpsrc @@ -1075,6 +1090,7 @@ runfiles size=14491 tlpkg/tlpsrc/chs-physics-report.tlpsrc tlpkg/tlpsrc/chscite.tlpsrc tlpkg/tlpsrc/churchslavonic.tlpsrc + tlpkg/tlpsrc/chuushaku.tlpsrc tlpkg/tlpsrc/cidarticle.tlpsrc tlpkg/tlpsrc/cinzel.tlpsrc tlpkg/tlpsrc/circ.tlpsrc @@ -1224,6 +1240,7 @@ runfiles size=14491 tlpkg/tlpsrc/comicneue.tlpsrc tlpkg/tlpsrc/comma.tlpsrc tlpkg/tlpsrc/commado.tlpsrc + tlpkg/tlpsrc/commalists-tools.tlpsrc tlpkg/tlpsrc/commath.tlpsrc tlpkg/tlpsrc/commedit.tlpsrc tlpkg/tlpsrc/comment.tlpsrc @@ -1233,6 +1250,7 @@ runfiles size=14491 tlpkg/tlpsrc/compare.tlpsrc tlpkg/tlpsrc/competences.tlpsrc tlpkg/tlpsrc/complexity.tlpsrc + tlpkg/tlpsrc/complexpolylongdiv.tlpsrc tlpkg/tlpsrc/components.tlpsrc tlpkg/tlpsrc/comprehensive.tlpsrc tlpkg/tlpsrc/computational-complexity.tlpsrc @@ -1247,6 +1265,7 @@ runfiles size=14491 tlpkg/tlpsrc/constants.tlpsrc tlpkg/tlpsrc/conteq.tlpsrc tlpkg/tlpsrc/context-calendar-examples.tlpsrc + tlpkg/tlpsrc/context-chat.tlpsrc tlpkg/tlpsrc/context-collating-marks.tlpsrc tlpkg/tlpsrc/context-companion-fonts.tlpsrc tlpkg/tlpsrc/context-cyrillicnumbers.tlpsrc @@ -1273,6 +1292,7 @@ runfiles size=14491 tlpkg/tlpsrc/contract.tlpsrc tlpkg/tlpsrc/conv-xkv.tlpsrc tlpkg/tlpsrc/convbkmk.tlpsrc + tlpkg/tlpsrc/convert-jpfonts.tlpsrc tlpkg/tlpsrc/cooking-units.tlpsrc tlpkg/tlpsrc/cooking.tlpsrc tlpkg/tlpsrc/cookingsymbols.tlpsrc @@ -1287,6 +1307,7 @@ runfiles size=14491 tlpkg/tlpsrc/coordsys.tlpsrc tlpkg/tlpsrc/copyedit.tlpsrc tlpkg/tlpsrc/copyrightbox.tlpsrc + tlpkg/tlpsrc/cora-macs.tlpsrc tlpkg/tlpsrc/cormorantgaramond.tlpsrc tlpkg/tlpsrc/correctmathalign.tlpsrc tlpkg/tlpsrc/coseoul.tlpsrc @@ -1332,6 +1353,7 @@ runfiles size=14491 tlpkg/tlpsrc/csquotes.tlpsrc tlpkg/tlpsrc/css-colors.tlpsrc tlpkg/tlpsrc/cstex.tlpsrc + tlpkg/tlpsrc/csthm.tlpsrc tlpkg/tlpsrc/cstypo.tlpsrc tlpkg/tlpsrc/csvmerge.tlpsrc tlpkg/tlpsrc/csvsimple.tlpsrc @@ -1499,7 +1521,9 @@ runfiles size=14491 tlpkg/tlpsrc/documentation.tlpsrc tlpkg/tlpsrc/docutils.tlpsrc tlpkg/tlpsrc/doi.tlpsrc + tlpkg/tlpsrc/doibanner.tlpsrc tlpkg/tlpsrc/doipubmed.tlpsrc + tlpkg/tlpsrc/domaincoloring.tlpsrc tlpkg/tlpsrc/domitian.tlpsrc tlpkg/tlpsrc/dosepsbin.tlpsrc tlpkg/tlpsrc/dot2texi.tlpsrc @@ -1605,6 +1629,7 @@ runfiles size=14491 tlpkg/tlpsrc/edichokey.tlpsrc tlpkg/tlpsrc/edmac.tlpsrc tlpkg/tlpsrc/edmargin.tlpsrc + tlpkg/tlpsrc/edmaths.tlpsrc tlpkg/tlpsrc/eemeir.tlpsrc tlpkg/tlpsrc/eepic.tlpsrc tlpkg/tlpsrc/efbox.tlpsrc @@ -1621,7 +1646,7 @@ runfiles size=14491 tlpkg/tlpsrc/ekdosis.tlpsrc tlpkg/tlpsrc/ektype-tanka.tlpsrc tlpkg/tlpsrc/elbioimp.tlpsrc - tlpkg/tlpsrc/electrum.tlpsrc + tlpkg/tlpsrc/electrumadf.tlpsrc tlpkg/tlpsrc/eledform.tlpsrc tlpkg/tlpsrc/eledmac.tlpsrc tlpkg/tlpsrc/elements.tlpsrc @@ -1665,9 +1690,11 @@ runfiles size=14491 tlpkg/tlpsrc/enigma.tlpsrc tlpkg/tlpsrc/enotez.tlpsrc tlpkg/tlpsrc/ensps-colorscheme.tlpsrc + tlpkg/tlpsrc/enumext.tlpsrc tlpkg/tlpsrc/enumitem-zref.tlpsrc tlpkg/tlpsrc/enumitem.tlpsrc tlpkg/tlpsrc/envbig.tlpsrc + tlpkg/tlpsrc/enverb.tlpsrc tlpkg/tlpsrc/environ.tlpsrc tlpkg/tlpsrc/envlab.tlpsrc tlpkg/tlpsrc/eolang.tlpsrc @@ -1731,6 +1758,7 @@ runfiles size=14491 tlpkg/tlpsrc/etoolbox-generic.tlpsrc tlpkg/tlpsrc/etoolbox.tlpsrc tlpkg/tlpsrc/etsvthor.tlpsrc + tlpkg/tlpsrc/euclidean-lattice.tlpsrc tlpkg/tlpsrc/euclideangeometry.tlpsrc tlpkg/tlpsrc/euenc.tlpsrc tlpkg/tlpsrc/euflag.tlpsrc @@ -1741,6 +1769,7 @@ runfiles size=14491 tlpkg/tlpsrc/eulervm.tlpsrc tlpkg/tlpsrc/euro-ce.tlpsrc tlpkg/tlpsrc/euro.tlpsrc + tlpkg/tlpsrc/euromoney.tlpsrc tlpkg/tlpsrc/europasscv.tlpsrc tlpkg/tlpsrc/europecv.tlpsrc tlpkg/tlpsrc/eurosym.tlpsrc @@ -1774,6 +1803,7 @@ runfiles size=14491 tlpkg/tlpsrc/expex-glossonly.tlpsrc tlpkg/tlpsrc/expex.tlpsrc tlpkg/tlpsrc/expkv-bundle.tlpsrc + tlpkg/tlpsrc/expltools.tlpsrc tlpkg/tlpsrc/export.tlpsrc tlpkg/tlpsrc/expose-expl3-dunkerque-2019.tlpsrc tlpkg/tlpsrc/expressg.tlpsrc @@ -1783,7 +1813,9 @@ runfiles size=14491 tlpkg/tlpsrc/exteps.tlpsrc tlpkg/tlpsrc/extpfeil.tlpsrc tlpkg/tlpsrc/extract.tlpsrc + tlpkg/tlpsrc/extractbb.tlpsrc tlpkg/tlpsrc/extsizes.tlpsrc + tlpkg/tlpsrc/ezedits.tlpsrc tlpkg/tlpsrc/facsimile.tlpsrc tlpkg/tlpsrc/factura.tlpsrc tlpkg/tlpsrc/facture-belge-simple-sans-tva.tlpsrc @@ -1806,6 +1838,7 @@ runfiles size=14491 tlpkg/tlpsrc/fancytooltips.tlpsrc tlpkg/tlpsrc/fancyvrb.tlpsrc tlpkg/tlpsrc/fandol.tlpsrc + tlpkg/tlpsrc/faq-fr-gutenberg.tlpsrc tlpkg/tlpsrc/faq-fr.tlpsrc tlpkg/tlpsrc/fascicules.tlpsrc tlpkg/tlpsrc/fast-diagram.tlpsrc @@ -1849,6 +1882,8 @@ runfiles size=14491 tlpkg/tlpsrc/filehook.tlpsrc tlpkg/tlpsrc/fileinfo.tlpsrc tlpkg/tlpsrc/filemod.tlpsrc + tlpkg/tlpsrc/fillpages.tlpsrc + tlpkg/tlpsrc/fillwith.tlpsrc tlpkg/tlpsrc/finbib.tlpsrc tlpkg/tlpsrc/findhyph.tlpsrc tlpkg/tlpsrc/fink.tlpsrc @@ -1921,6 +1956,7 @@ runfiles size=14491 tlpkg/tlpsrc/fonts-churchslavonic.tlpsrc tlpkg/tlpsrc/fonts-tlwg.tlpsrc tlpkg/tlpsrc/fontscale.tlpsrc + tlpkg/tlpsrc/fontscripts.tlpsrc tlpkg/tlpsrc/fontsetup.tlpsrc tlpkg/tlpsrc/fontsize.tlpsrc tlpkg/tlpsrc/fontspec.tlpsrc @@ -1954,6 +1990,7 @@ runfiles size=14491 tlpkg/tlpsrc/fragments.tlpsrc tlpkg/tlpsrc/frame.tlpsrc tlpkg/tlpsrc/framed.tlpsrc + tlpkg/tlpsrc/framedsyntax.tlpsrc tlpkg/tlpsrc/francais-bst.tlpsrc tlpkg/tlpsrc/frankenstein.tlpsrc tlpkg/tlpsrc/frcursive.tlpsrc @@ -1993,6 +2030,7 @@ runfiles size=14491 tlpkg/tlpsrc/gates.tlpsrc tlpkg/tlpsrc/gatherenum.tlpsrc tlpkg/tlpsrc/gauss.tlpsrc + tlpkg/tlpsrc/gb4e-next.tlpsrc tlpkg/tlpsrc/gb4e.tlpsrc tlpkg/tlpsrc/gbt7714.tlpsrc tlpkg/tlpsrc/gcard.tlpsrc @@ -2008,7 +2046,8 @@ runfiles size=14491 tlpkg/tlpsrc/genealogytree.tlpsrc tlpkg/tlpsrc/genmpage.tlpsrc tlpkg/tlpsrc/gensymb.tlpsrc - tlpkg/tlpsrc/gentium-tug.tlpsrc + tlpkg/tlpsrc/gentium-otf.tlpsrc + tlpkg/tlpsrc/gentium-sil.tlpsrc tlpkg/tlpsrc/gentle.tlpsrc tlpkg/tlpsrc/gentombow.tlpsrc tlpkg/tlpsrc/geometry.tlpsrc @@ -2107,6 +2146,7 @@ runfiles size=14491 tlpkg/tlpsrc/graphicxpsd.tlpsrc tlpkg/tlpsrc/graphpaper.tlpsrc tlpkg/tlpsrc/graphviz.tlpsrc + tlpkg/tlpsrc/gratzer-color-scheme.tlpsrc tlpkg/tlpsrc/grayhints.tlpsrc tlpkg/tlpsrc/greek-fontenc.tlpsrc tlpkg/tlpsrc/greek-inputenc.tlpsrc @@ -2171,7 +2211,9 @@ runfiles size=14491 tlpkg/tlpsrc/hausarbeit-jura.tlpsrc tlpkg/tlpsrc/havannah.tlpsrc tlpkg/tlpsrc/hc.tlpsrc + tlpkg/tlpsrc/hduthesis.tlpsrc tlpkg/tlpsrc/he-she.tlpsrc + tlpkg/tlpsrc/hebdomon.tlpsrc tlpkg/tlpsrc/hebrew-fonts.tlpsrc tlpkg/tlpsrc/hecthese.tlpsrc tlpkg/tlpsrc/helmholtz-ellis-ji-notation.tlpsrc @@ -2249,6 +2291,7 @@ runfiles size=14491 tlpkg/tlpsrc/hvqrurl.tlpsrc tlpkg/tlpsrc/hwemoji.tlpsrc tlpkg/tlpsrc/hycolor.tlpsrc + tlpkg/tlpsrc/hypcap.tlpsrc tlpkg/tlpsrc/hypdestopt.tlpsrc tlpkg/tlpsrc/hypdoc.tlpsrc tlpkg/tlpsrc/hypdvips.tlpsrc @@ -2259,6 +2302,7 @@ runfiles size=14491 tlpkg/tlpsrc/hyperxmp.tlpsrc tlpkg/tlpsrc/hyph-utf8.tlpsrc tlpkg/tlpsrc/hyphen-afrikaans.tlpsrc + tlpkg/tlpsrc/hyphen-albanian.tlpsrc tlpkg/tlpsrc/hyphen-ancientgreek.tlpsrc tlpkg/tlpsrc/hyphen-arabic.tlpsrc tlpkg/tlpsrc/hyphen-armenian.tlpsrc @@ -2286,6 +2330,7 @@ runfiles size=14491 tlpkg/tlpsrc/hyphen-georgian.tlpsrc tlpkg/tlpsrc/hyphen-german.tlpsrc tlpkg/tlpsrc/hyphen-greek.tlpsrc + tlpkg/tlpsrc/hyphen-hebrew.tlpsrc tlpkg/tlpsrc/hyphen-hungarian.tlpsrc tlpkg/tlpsrc/hyphen-icelandic.tlpsrc tlpkg/tlpsrc/hyphen-indic.tlpsrc @@ -2318,6 +2363,7 @@ runfiles size=14491 tlpkg/tlpsrc/hyphen-turkmen.tlpsrc tlpkg/tlpsrc/hyphen-ukrainian.tlpsrc tlpkg/tlpsrc/hyphen-uppersorbian.tlpsrc + tlpkg/tlpsrc/hyphen-vietnamese.tlpsrc tlpkg/tlpsrc/hyphen-welsh.tlpsrc tlpkg/tlpsrc/hyphenat.tlpsrc tlpkg/tlpsrc/hyphenex.tlpsrc @@ -2380,6 +2426,7 @@ runfiles size=14491 tlpkg/tlpsrc/inline-images.tlpsrc tlpkg/tlpsrc/inlinebib.tlpsrc tlpkg/tlpsrc/inlinedef.tlpsrc + tlpkg/tlpsrc/inlinegraphicx.tlpsrc tlpkg/tlpsrc/inlinelabel.tlpsrc tlpkg/tlpsrc/innerscript.tlpsrc tlpkg/tlpsrc/inputenx.tlpsrc @@ -2394,6 +2441,7 @@ runfiles size=14491 tlpkg/tlpsrc/interactiveworkbook.tlpsrc tlpkg/tlpsrc/interchar.tlpsrc tlpkg/tlpsrc/interfaces.tlpsrc + tlpkg/tlpsrc/interlinear.tlpsrc tlpkg/tlpsrc/interpreter.tlpsrc tlpkg/tlpsrc/interval.tlpsrc tlpkg/tlpsrc/intopdf.tlpsrc @@ -2434,6 +2482,7 @@ runfiles size=14491 tlpkg/tlpsrc/japanese-mathformulas.tlpsrc tlpkg/tlpsrc/japanese-otf.tlpsrc tlpkg/tlpsrc/jbact.tlpsrc + tlpkg/tlpsrc/jetbrainsmono-otf.tlpsrc tlpkg/tlpsrc/jeuxcartes.tlpsrc tlpkg/tlpsrc/jfmutil.tlpsrc tlpkg/tlpsrc/jieeetran.tlpsrc @@ -2493,6 +2542,7 @@ runfiles size=14491 tlpkg/tlpsrc/keyparse.tlpsrc tlpkg/tlpsrc/keyreader.tlpsrc tlpkg/tlpsrc/keystroke.tlpsrc + tlpkg/tlpsrc/keytheorems.tlpsrc tlpkg/tlpsrc/keyval2e.tlpsrc tlpkg/tlpsrc/keyvaltable.tlpsrc tlpkg/tlpsrc/kfupm-math-exam.tlpsrc @@ -2674,6 +2724,7 @@ runfiles size=14491 tlpkg/tlpsrc/librefranklin.tlpsrc tlpkg/tlpsrc/libris.tlpsrc tlpkg/tlpsrc/lie-hasse.tlpsrc + tlpkg/tlpsrc/liederbuch.tlpsrc tlpkg/tlpsrc/liftarm.tlpsrc tlpkg/tlpsrc/light-latex-make.tlpsrc tlpkg/tlpsrc/ligtype.tlpsrc @@ -2701,8 +2752,7 @@ runfiles size=14491 tlpkg/tlpsrc/listliketab.tlpsrc tlpkg/tlpsrc/listofitems.tlpsrc tlpkg/tlpsrc/listofsymbols.tlpsrc - tlpkg/tlpsrc/litebook.tlpsrc - tlpkg/tlpsrc/litesolution.tlpsrc + tlpkg/tlpsrc/listparskip.tlpsrc tlpkg/tlpsrc/litetable.tlpsrc tlpkg/tlpsrc/lithuanian.tlpsrc tlpkg/tlpsrc/liturg.tlpsrc @@ -2818,6 +2868,7 @@ runfiles size=14491 tlpkg/tlpsrc/luamathalign.tlpsrc tlpkg/tlpsrc/luamaths.tlpsrc tlpkg/tlpsrc/luamesh.tlpsrc + tlpkg/tlpsrc/luamml.tlpsrc tlpkg/tlpsrc/luamodulartables.tlpsrc tlpkg/tlpsrc/luamplib.tlpsrc tlpkg/tlpsrc/luanumint.tlpsrc @@ -2831,17 +2882,20 @@ runfiles size=14491 tlpkg/tlpsrc/luarandom.tlpsrc tlpkg/tlpsrc/luaset.tlpsrc tlpkg/tlpsrc/luasseq.tlpsrc + tlpkg/tlpsrc/luatbls.tlpsrc tlpkg/tlpsrc/luatex.tlpsrc tlpkg/tlpsrc/luatex85.tlpsrc tlpkg/tlpsrc/luatexbase.tlpsrc tlpkg/tlpsrc/luatexja.tlpsrc tlpkg/tlpsrc/luatexko.tlpsrc tlpkg/tlpsrc/luatextra.tlpsrc + tlpkg/tlpsrc/luatikz.tlpsrc tlpkg/tlpsrc/luatodonotes.tlpsrc tlpkg/tlpsrc/luatruthtable.tlpsrc tlpkg/tlpsrc/luavlna.tlpsrc tlpkg/tlpsrc/luaxml.tlpsrc tlpkg/tlpsrc/lutabulartools.tlpsrc + tlpkg/tlpsrc/luwiantype.tlpsrc tlpkg/tlpsrc/lwarp.tlpsrc tlpkg/tlpsrc/lxfonts.tlpsrc tlpkg/tlpsrc/ly1.tlpsrc @@ -2882,9 +2936,11 @@ runfiles size=14491 tlpkg/tlpsrc/marathi.tlpsrc tlpkg/tlpsrc/marcellus.tlpsrc tlpkg/tlpsrc/margbib.tlpsrc + tlpkg/tlpsrc/marginalia.tlpsrc tlpkg/tlpsrc/marginfit.tlpsrc tlpkg/tlpsrc/marginfix.tlpsrc tlpkg/tlpsrc/marginnote.tlpsrc + tlpkg/tlpsrc/maritime.tlpsrc tlpkg/tlpsrc/markdown.tlpsrc tlpkg/tlpsrc/marvosym.tlpsrc tlpkg/tlpsrc/matapli.tlpsrc @@ -2974,6 +3030,7 @@ runfiles size=14491 tlpkg/tlpsrc/metsymb.tlpsrc tlpkg/tlpsrc/mex.tlpsrc tlpkg/tlpsrc/mf2pt1.tlpsrc + tlpkg/tlpsrc/mfb-oldstyle.tlpsrc tlpkg/tlpsrc/mfirstuc.tlpsrc tlpkg/tlpsrc/mflogo-font.tlpsrc tlpkg/tlpsrc/mflogo.tlpsrc @@ -3052,12 +3109,15 @@ runfiles size=14491 tlpkg/tlpsrc/moreenum.tlpsrc tlpkg/tlpsrc/morefloats.tlpsrc tlpkg/tlpsrc/morehype.tlpsrc + tlpkg/tlpsrc/moremath.tlpsrc tlpkg/tlpsrc/moresize.tlpsrc tlpkg/tlpsrc/moreverb.tlpsrc tlpkg/tlpsrc/morewrites.tlpsrc tlpkg/tlpsrc/morisawa.tlpsrc tlpkg/tlpsrc/movement-arrows.tlpsrc tlpkg/tlpsrc/movie15.tlpsrc + tlpkg/tlpsrc/mp-geom2d.tlpsrc + tlpkg/tlpsrc/mp-neuralnetwork.tlpsrc tlpkg/tlpsrc/mp3d.tlpsrc tlpkg/tlpsrc/mparhack.tlpsrc tlpkg/tlpsrc/mparrows.tlpsrc @@ -3140,6 +3200,7 @@ runfiles size=14491 tlpkg/tlpsrc/ndsu-thesis-2022.tlpsrc tlpkg/tlpsrc/ndsu-thesis.tlpsrc tlpkg/tlpsrc/needspace.tlpsrc + tlpkg/tlpsrc/neoschool.tlpsrc tlpkg/tlpsrc/nestquot.tlpsrc tlpkg/tlpsrc/neuralnetwork.tlpsrc tlpkg/tlpsrc/nevelok.tlpsrc @@ -3184,6 +3245,7 @@ runfiles size=14491 tlpkg/tlpsrc/nndraw.tlpsrc tlpkg/tlpsrc/nnext.tlpsrc tlpkg/tlpsrc/noconflict.tlpsrc + tlpkg/tlpsrc/nodepthtext.tlpsrc tlpkg/tlpsrc/nodetree.tlpsrc tlpkg/tlpsrc/noindentafter.tlpsrc tlpkg/tlpsrc/noitcrul.tlpsrc @@ -3211,6 +3273,7 @@ runfiles size=14491 tlpkg/tlpsrc/nowidow.tlpsrc tlpkg/tlpsrc/nox.tlpsrc tlpkg/tlpsrc/nrc.tlpsrc + tlpkg/tlpsrc/nstc-proposal.tlpsrc tlpkg/tlpsrc/ntgclass.tlpsrc tlpkg/tlpsrc/nth.tlpsrc tlpkg/tlpsrc/ntheorem-vn.tlpsrc @@ -3219,6 +3282,7 @@ runfiles size=14491 tlpkg/tlpsrc/nucleardata.tlpsrc tlpkg/tlpsrc/numberedblock.tlpsrc tlpkg/tlpsrc/numberpt.tlpsrc + tlpkg/tlpsrc/numbersets.tlpsrc tlpkg/tlpsrc/numerica-plus.tlpsrc tlpkg/tlpsrc/numerica-tables.tlpsrc tlpkg/tlpsrc/numerica.tlpsrc @@ -3255,6 +3319,7 @@ runfiles size=14491 tlpkg/tlpsrc/olsak-misc.tlpsrc tlpkg/tlpsrc/omega.tlpsrc tlpkg/tlpsrc/omegaware.tlpsrc + tlpkg/tlpsrc/omgtudoc-asoiu.tlpsrc tlpkg/tlpsrc/onedown.tlpsrc tlpkg/tlpsrc/onlyamsmath.tlpsrc tlpkg/tlpsrc/onrannual.tlpsrc @@ -3274,7 +3339,6 @@ runfiles size=14491 tlpkg/tlpsrc/orientation.tlpsrc tlpkg/tlpsrc/orkhun.tlpsrc tlpkg/tlpsrc/oscola.tlpsrc - tlpkg/tlpsrc/osda.tlpsrc tlpkg/tlpsrc/oststud.tlpsrc tlpkg/tlpsrc/oswald.tlpsrc tlpkg/tlpsrc/ot-tableau.tlpsrc @@ -3294,7 +3358,7 @@ runfiles size=14491 tlpkg/tlpsrc/overlock.tlpsrc tlpkg/tlpsrc/overpic.tlpsrc tlpkg/tlpsrc/pacioli.tlpsrc - tlpkg/tlpsrc/padauk.tlpsrc + tlpkg/tlpsrc/packdoc.tlpsrc tlpkg/tlpsrc/padcount.tlpsrc tlpkg/tlpsrc/pagecolor.tlpsrc tlpkg/tlpsrc/pagecont.tlpsrc @@ -3333,6 +3397,7 @@ runfiles size=14491 tlpkg/tlpsrc/pas-tableur.tlpsrc tlpkg/tlpsrc/pascaltriangle.tlpsrc tlpkg/tlpsrc/passivetex.tlpsrc + tlpkg/tlpsrc/passopt.tlpsrc tlpkg/tlpsrc/patch.tlpsrc tlpkg/tlpsrc/patchcmd.tlpsrc tlpkg/tlpsrc/patgen.tlpsrc @@ -3388,6 +3453,7 @@ runfiles size=14491 tlpkg/tlpsrc/pdfxup.tlpsrc tlpkg/tlpsrc/pecha.tlpsrc tlpkg/tlpsrc/pedigree-perl.tlpsrc + tlpkg/tlpsrc/pegmatch.tlpsrc tlpkg/tlpsrc/penlight.tlpsrc tlpkg/tlpsrc/penlightplus.tlpsrc tlpkg/tlpsrc/perception.tlpsrc @@ -3418,6 +3484,7 @@ runfiles size=14491 tlpkg/tlpsrc/pgfornament-han.tlpsrc tlpkg/tlpsrc/pgfornament.tlpsrc tlpkg/tlpsrc/pgfplots.tlpsrc + tlpkg/tlpsrc/pgfplotsthemebeamer.tlpsrc tlpkg/tlpsrc/phaistos.tlpsrc tlpkg/tlpsrc/phfcc.tlpsrc tlpkg/tlpsrc/phfextendedabstract.tlpsrc @@ -3437,6 +3504,7 @@ runfiles size=14491 tlpkg/tlpsrc/photo.tlpsrc tlpkg/tlpsrc/photobook.tlpsrc tlpkg/tlpsrc/physconst.tlpsrc + tlpkg/tlpsrc/physics-patch.tlpsrc tlpkg/tlpsrc/physics.tlpsrc tlpkg/tlpsrc/physics2.tlpsrc tlpkg/tlpsrc/physunits.tlpsrc @@ -3507,6 +3575,7 @@ runfiles size=14491 tlpkg/tlpsrc/polyhedra.tlpsrc tlpkg/tlpsrc/polynom.tlpsrc tlpkg/tlpsrc/polynomial.tlpsrc + tlpkg/tlpsrc/polyomino.tlpsrc tlpkg/tlpsrc/polytable.tlpsrc tlpkg/tlpsrc/poormanlog.tlpsrc tlpkg/tlpsrc/postage.tlpsrc @@ -3534,6 +3603,7 @@ runfiles size=14491 tlpkg/tlpsrc/prftree.tlpsrc tlpkg/tlpsrc/principia.tlpsrc tlpkg/tlpsrc/printlen.tlpsrc + tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc tlpkg/tlpsrc/proba.tlpsrc tlpkg/tlpsrc/probsoln.tlpsrc tlpkg/tlpsrc/prociagssymp.tlpsrc @@ -3548,6 +3618,7 @@ runfiles size=14491 tlpkg/tlpsrc/progress.tlpsrc tlpkg/tlpsrc/progressbar.tlpsrc tlpkg/tlpsrc/projlib.tlpsrc + tlpkg/tlpsrc/pronunciation.tlpsrc tlpkg/tlpsrc/proof-at-the-end.tlpsrc tlpkg/tlpsrc/proofread.tlpsrc tlpkg/tlpsrc/prooftrees.tlpsrc @@ -3737,6 +3808,7 @@ runfiles size=14491 tlpkg/tlpsrc/quran-bn.tlpsrc tlpkg/tlpsrc/quran-de.tlpsrc tlpkg/tlpsrc/quran-en.tlpsrc + tlpkg/tlpsrc/quran-es.tlpsrc tlpkg/tlpsrc/quran-id.tlpsrc tlpkg/tlpsrc/quran-ur.tlpsrc tlpkg/tlpsrc/quran.tlpsrc @@ -3747,6 +3819,7 @@ runfiles size=14491 tlpkg/tlpsrc/ran_toks.tlpsrc tlpkg/tlpsrc/randbild.tlpsrc tlpkg/tlpsrc/randexam.tlpsrc + tlpkg/tlpsrc/randintlist.tlpsrc tlpkg/tlpsrc/random.tlpsrc tlpkg/tlpsrc/randomlist.tlpsrc tlpkg/tlpsrc/randomwalk.tlpsrc @@ -3763,6 +3836,7 @@ runfiles size=14491 tlpkg/tlpsrc/realhats.tlpsrc tlpkg/tlpsrc/realscripts.tlpsrc tlpkg/tlpsrc/realtranspose.tlpsrc + tlpkg/tlpsrc/rebuttal.tlpsrc tlpkg/tlpsrc/rec-thy.tlpsrc tlpkg/tlpsrc/recipe.tlpsrc tlpkg/tlpsrc/recipebook.tlpsrc @@ -3821,7 +3895,7 @@ runfiles size=14491 tlpkg/tlpsrc/rojud.tlpsrc tlpkg/tlpsrc/romanbar.tlpsrc tlpkg/tlpsrc/romanbarpagenumber.tlpsrc - tlpkg/tlpsrc/romande.tlpsrc + tlpkg/tlpsrc/romandeadf.tlpsrc tlpkg/tlpsrc/romanneg.tlpsrc tlpkg/tlpsrc/romannum.tlpsrc tlpkg/tlpsrc/rorlink.tlpsrc @@ -3876,6 +3950,7 @@ runfiles size=14491 tlpkg/tlpsrc/scale.tlpsrc tlpkg/tlpsrc/scalebar.tlpsrc tlpkg/tlpsrc/scalerel.tlpsrc + tlpkg/tlpsrc/scaletextbullet.tlpsrc tlpkg/tlpsrc/scanpages.tlpsrc tlpkg/tlpsrc/schedule.tlpsrc tlpkg/tlpsrc/schemabloc.tlpsrc @@ -3909,6 +3984,7 @@ runfiles size=14491 tlpkg/tlpsrc/scratchx.tlpsrc tlpkg/tlpsrc/screenplay-pkg.tlpsrc tlpkg/tlpsrc/screenplay.tlpsrc + tlpkg/tlpsrc/scrhack.tlpsrc tlpkg/tlpsrc/scripture.tlpsrc tlpkg/tlpsrc/scrjrnl.tlpsrc tlpkg/tlpsrc/scrlayer-fancyhdr.tlpsrc @@ -4068,6 +4144,7 @@ runfiles size=14491 tlpkg/tlpsrc/spotcolor.tlpsrc tlpkg/tlpsrc/spreadtab.tlpsrc tlpkg/tlpsrc/spverbatim.tlpsrc + tlpkg/tlpsrc/sqltex.tlpsrc tlpkg/tlpsrc/sr-vorl.tlpsrc tlpkg/tlpsrc/srbook-mem.tlpsrc tlpkg/tlpsrc/srbtiks.tlpsrc @@ -4075,6 +4152,7 @@ runfiles size=14491 tlpkg/tlpsrc/srcredact.tlpsrc tlpkg/tlpsrc/srdp-mathematik.tlpsrc tlpkg/tlpsrc/sseq.tlpsrc + tlpkg/tlpsrc/sshrc-insight.tlpsrc tlpkg/tlpsrc/sslides.tlpsrc tlpkg/tlpsrc/stack.tlpsrc tlpkg/tlpsrc/stackengine.tlpsrc @@ -4105,6 +4183,7 @@ runfiles size=14491 tlpkg/tlpsrc/stix2-otf.tlpsrc tlpkg/tlpsrc/stix2-type1.tlpsrc tlpkg/tlpsrc/stmaryrd.tlpsrc + tlpkg/tlpsrc/stocksize.tlpsrc tlpkg/tlpsrc/storebox.tlpsrc tlpkg/tlpsrc/storecmd.tlpsrc tlpkg/tlpsrc/strands.tlpsrc @@ -4119,6 +4198,7 @@ runfiles size=14491 tlpkg/tlpsrc/studenthandouts.tlpsrc tlpkg/tlpsrc/sty2dtx.tlpsrc tlpkg/tlpsrc/styledcmd.tlpsrc + tlpkg/tlpsrc/suanpan-l3.tlpsrc tlpkg/tlpsrc/suanpan.tlpsrc tlpkg/tlpsrc/subdepth.tlpsrc tlpkg/tlpsrc/subdocs.tlpsrc @@ -4137,6 +4217,7 @@ runfiles size=14491 tlpkg/tlpsrc/sudokubundle.tlpsrc tlpkg/tlpsrc/suftesi.tlpsrc tlpkg/tlpsrc/sugconf.tlpsrc + tlpkg/tlpsrc/sunpath.tlpsrc tlpkg/tlpsrc/superiors.tlpsrc tlpkg/tlpsrc/supertabular.tlpsrc tlpkg/tlpsrc/suppose.tlpsrc @@ -4188,6 +4269,7 @@ runfiles size=14491 tlpkg/tlpsrc/tabularborder.tlpsrc tlpkg/tlpsrc/tabularcalc.tlpsrc tlpkg/tlpsrc/tabularew.tlpsrc + tlpkg/tlpsrc/tabularray-abnt.tlpsrc tlpkg/tlpsrc/tabularray.tlpsrc tlpkg/tlpsrc/tabulary.tlpsrc tlpkg/tlpsrc/tabvar.tlpsrc @@ -4213,10 +4295,12 @@ runfiles size=14491 tlpkg/tlpsrc/technics.tlpsrc tlpkg/tlpsrc/technion-thesis-template.tlpsrc tlpkg/tlpsrc/ted.tlpsrc + tlpkg/tlpsrc/telprint.tlpsrc tlpkg/tlpsrc/templates-fenn.tlpsrc tlpkg/tlpsrc/templates-sommer.tlpsrc tlpkg/tlpsrc/templatetools.tlpsrc tlpkg/tlpsrc/tempora.tlpsrc + tlpkg/tlpsrc/temporal-logic.tlpsrc tlpkg/tlpsrc/tengwarscript.tlpsrc tlpkg/tlpsrc/tensind.tlpsrc tlpkg/tlpsrc/tensor.tlpsrc @@ -4240,7 +4324,6 @@ runfiles size=14491 tlpkg/tlpsrc/tex-nutshell.tlpsrc tlpkg/tlpsrc/tex-overview.tlpsrc tlpkg/tlpsrc/tex-ps.tlpsrc - tlpkg/tlpsrc/tex-refs.tlpsrc tlpkg/tlpsrc/tex-virtual-academy-pl.tlpsrc tlpkg/tlpsrc/tex-vpat.tlpsrc tlpkg/tlpsrc/tex.tlpsrc @@ -4326,7 +4409,6 @@ runfiles size=14491 tlpkg/tlpsrc/thesis-titlepage-fhac.tlpsrc tlpkg/tlpsrc/thinsp.tlpsrc tlpkg/tlpsrc/thmbox.tlpsrc - tlpkg/tlpsrc/thmlist.tlpsrc tlpkg/tlpsrc/thmtools.tlpsrc tlpkg/tlpsrc/threadcol.tlpsrc tlpkg/tlpsrc/threeddice.tlpsrc @@ -4350,7 +4432,9 @@ runfiles size=14491 tlpkg/tlpsrc/tikz-bagua.tlpsrc tlpkg/tlpsrc/tikz-bayesnet.tlpsrc tlpkg/tlpsrc/tikz-bbox.tlpsrc + tlpkg/tlpsrc/tikz-bpmn.tlpsrc tlpkg/tlpsrc/tikz-cd.tlpsrc + tlpkg/tlpsrc/tikz-decofonts.tlpsrc tlpkg/tlpsrc/tikz-dependency.tlpsrc tlpkg/tlpsrc/tikz-dimline.tlpsrc tlpkg/tlpsrc/tikz-ext.tlpsrc @@ -4379,6 +4463,7 @@ runfiles size=14491 tlpkg/tlpsrc/tikz-swigs.tlpsrc tlpkg/tlpsrc/tikz-timing.tlpsrc tlpkg/tlpsrc/tikz-trackschematic.tlpsrc + tlpkg/tlpsrc/tikz-triminos.tlpsrc tlpkg/tlpsrc/tikz-truchet.tlpsrc tlpkg/tlpsrc/tikz2d-fr.tlpsrc tlpkg/tlpsrc/tikz3d-fr.tlpsrc @@ -4407,6 +4492,8 @@ runfiles size=14491 tlpkg/tlpsrc/tile-graphic.tlpsrc tlpkg/tlpsrc/tilings.tlpsrc tlpkg/tlpsrc/timbreicmc.tlpsrc + tlpkg/tlpsrc/timechart.tlpsrc + tlpkg/tlpsrc/timeop.tlpsrc tlpkg/tlpsrc/times.tlpsrc tlpkg/tlpsrc/timetable.tlpsrc tlpkg/tlpsrc/timing-diagrams.tlpsrc @@ -4507,6 +4594,7 @@ runfiles size=14491 tlpkg/tlpsrc/tugboat-plain.tlpsrc tlpkg/tlpsrc/tugboat.tlpsrc tlpkg/tlpsrc/tui.tlpsrc + tlpkg/tlpsrc/tuple.tlpsrc tlpkg/tlpsrc/turabian-formatting.tlpsrc tlpkg/tlpsrc/turabian.tlpsrc tlpkg/tlpsrc/turkmen.tlpsrc @@ -4536,6 +4624,7 @@ runfiles size=14491 tlpkg/tlpsrc/tzplot.tlpsrc tlpkg/tlpsrc/uaclasses.tlpsrc tlpkg/tlpsrc/uafthesis.tlpsrc + tlpkg/tlpsrc/ualberta.tlpsrc tlpkg/tlpsrc/uantwerpendocs.tlpsrc tlpkg/tlpsrc/uassign.tlpsrc tlpkg/tlpsrc/ucalgmthesis.tlpsrc @@ -4550,6 +4639,7 @@ runfiles size=14491 tlpkg/tlpsrc/udepcolor.tlpsrc tlpkg/tlpsrc/udes-genie-these.tlpsrc tlpkg/tlpsrc/udesoftec.tlpsrc + tlpkg/tlpsrc/udiss.tlpsrc tlpkg/tlpsrc/uebungsblatt.tlpsrc tlpkg/tlpsrc/uestcthesis.tlpsrc tlpkg/tlpsrc/ufrgscca.tlpsrc @@ -4585,6 +4675,7 @@ runfiles size=14491 tlpkg/tlpsrc/uni-titlepage.tlpsrc tlpkg/tlpsrc/uni-wtal-ger.tlpsrc tlpkg/tlpsrc/uni-wtal-lin.tlpsrc + tlpkg/tlpsrc/unibidi-lua.tlpsrc tlpkg/tlpsrc/unicode-alphabets.tlpsrc tlpkg/tlpsrc/unicode-bidi.tlpsrc tlpkg/tlpsrc/unicode-data.tlpsrc @@ -4706,6 +4797,7 @@ runfiles size=14491 tlpkg/tlpsrc/webguide.tlpsrc tlpkg/tlpsrc/webquiz.tlpsrc tlpkg/tlpsrc/weiqi.tlpsrc + tlpkg/tlpsrc/whatsnote.tlpsrc tlpkg/tlpsrc/wheelchart.tlpsrc tlpkg/tlpsrc/widetable.tlpsrc tlpkg/tlpsrc/widows-and-orphans.tlpsrc @@ -4725,6 +4817,7 @@ runfiles size=14491 tlpkg/tlpsrc/worldflags.tlpsrc tlpkg/tlpsrc/wrapfig.tlpsrc tlpkg/tlpsrc/wrapfig2.tlpsrc + tlpkg/tlpsrc/wrapstuff-doc-en.tlpsrc tlpkg/tlpsrc/wrapstuff.tlpsrc tlpkg/tlpsrc/writeongrid.tlpsrc tlpkg/tlpsrc/wsemclassic.tlpsrc @@ -4809,6 +4902,7 @@ runfiles size=14491 tlpkg/tlpsrc/xprintlen.tlpsrc tlpkg/tlpsrc/xpunctuate.tlpsrc tlpkg/tlpsrc/xq.tlpsrc + tlpkg/tlpsrc/xreview.tlpsrc tlpkg/tlpsrc/xsavebox.tlpsrc tlpkg/tlpsrc/xsim.tlpsrc tlpkg/tlpsrc/xskak.tlpsrc @@ -4866,6 +4960,7 @@ runfiles size=14491 tlpkg/tlpsrc/zref-clever.tlpsrc tlpkg/tlpsrc/zref-vario.tlpsrc tlpkg/tlpsrc/zref.tlpsrc + tlpkg/tlpsrc/zugferd.tlpsrc tlpkg/tlpsrc/zwgetfdate.tlpsrc tlpkg/tlpsrc/zwpagelayout.tlpsrc tlpkg/tlpsrc/zx-calculus.tlpsrc @@ -4916,7 +5011,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd name 00texlive.installer category TLCore -revision 71770 +revision 74084 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 @@ -4926,7 +5021,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=801 +runfiles size=802 install-tl release-texlive.txt tlpkg/installer/COPYING.MinGW-runtime.txt @@ -8283,17 +8378,18 @@ catalogue-version 1.9.7 name abntexto category Package -revision 70885 +revision 73233 shortdesc LaTeX class for formatting academic papers in ABNT standards 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. -docfiles size=90 +docfiles size=98 texmf-dist/doc/latex/abntexto/README details="Readme" texmf-dist/doc/latex/abntexto/abntexto.bib texmf-dist/doc/latex/abntexto/abntexto.pdf details="User manual" language="pt-br" texmf-dist/doc/latex/abntexto/abntexto.tex + texmf-dist/doc/latex/abntexto/exemplo.bib texmf-dist/doc/latex/abntexto/exemplo.pdf texmf-dist/doc/latex/abntexto/exemplo.tex runfiles size=7 @@ -8301,7 +8397,7 @@ runfiles size=7 catalogue-ctan /macros/latex/contrib/abntexto catalogue-license pd catalogue-topics class dissertation std-conform portuguese-br -catalogue-version 3.1.1-beta +catalogue-version 3.2.1-beta name aboensis category Package @@ -8391,7 +8487,7 @@ catalogue-topics font-bookhand font-calligraphic font-medieval font-display font name abraces category Package -revision 64967 +revision 71955 shortdesc Asymmetric over-/underbraces in maths longdesc The package provides a character key-driven interface to longdesc supplement new constructions of the traditional \overbrace and @@ -8406,7 +8502,7 @@ 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.1 +catalogue-version 2.2 name abspos category Package @@ -8896,7 +8992,7 @@ catalogue-version 0.6 name achemso category Package -revision 69638 +revision 73648 shortdesc Support for American Chemical Society journal submissions longdesc The bundle provides the official macros (achemso.cls) and longdesc BibTeX styles (achemso.bst and biochem.bst) for submission to @@ -8997,15 +9093,15 @@ catalogue-contact-repository https://github.com/josephwright/achemso catalogue-ctan /macros/latex/contrib/achemso catalogue-license lppl1.3c other-free catalogue-topics chemistry journalpub bibtex-sty class -catalogue-version 3.13g +catalogue-version 3.13h name acmart category Package -revision 71406 +revision 73261 shortdesc Class for typesetting publications of ACM longdesc This package provides a class for typesetting publications of longdesc the Association for Computing Machinery (ACM). -docfiles size=3281 +docfiles size=3482 texmf-dist/doc/latex/acmart/README details="Readme" texmf-dist/doc/latex/acmart/acm-jdslogo.png texmf-dist/doc/latex/acmart/acmart.bib @@ -9025,6 +9121,9 @@ docfiles size=3281 texmf-dist/doc/latex/acmart/samples/sample-acmsmall-conf.tex texmf-dist/doc/latex/acmart/samples/sample-acmsmall-submission.pdf texmf-dist/doc/latex/acmart/samples/sample-acmsmall-submission.tex + texmf-dist/doc/latex/acmart/samples/sample-acmsmall-tagged-luamml-mathml.html + texmf-dist/doc/latex/acmart/samples/sample-acmsmall-tagged.pdf + texmf-dist/doc/latex/acmart/samples/sample-acmsmall-tagged.tex texmf-dist/doc/latex/acmart/samples/sample-acmsmall.pdf texmf-dist/doc/latex/acmart/samples/sample-acmsmall.tex texmf-dist/doc/latex/acmart/samples/sample-acmtog-conf.pdf @@ -9051,12 +9150,13 @@ docfiles size=3281 texmf-dist/doc/latex/acmart/samples/samples.ins texmf-dist/doc/latex/acmart/samples/sampleteaser.pdf texmf-dist/doc/latex/acmart/samples/software.bib -srcfiles size=75 +srcfiles size=76 texmf-dist/source/latex/acmart/Makefile texmf-dist/source/latex/acmart/acmart.dtx texmf-dist/source/latex/acmart/acmart.ins -runfiles size=68 +runfiles size=97 texmf-dist/bibtex/bst/acmart/ACM-Reference-Format.bst + texmf-dist/tex/latex/acmart/acmart-tagged.cls texmf-dist/tex/latex/acmart/acmart.cls texmf-dist/tex/latex/acmart/acmauthoryear.bbx texmf-dist/tex/latex/acmart/acmauthoryear.cbx @@ -9069,7 +9169,7 @@ 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 2.08 +catalogue-version 2.12 name acmconf category Package @@ -9160,28 +9260,28 @@ catalogue-version 3.8 name acronym category Package -revision 54758 +revision 73491 shortdesc Expand acronyms at least once longdesc This package ensures that all acronyms used in the text are longdesc spelled out in full at least once. It also provides an longdesc environment to build a list of acronyms used. The package is longdesc compatible with pdf bookmarks. The package requires the suffix longdesc package, which in turn requires that it runs under e-TeX. -docfiles size=73 +docfiles size=84 texmf-dist/doc/latex/acronym/CHANGES texmf-dist/doc/latex/acronym/README details="Package Readme" texmf-dist/doc/latex/acronym/acronym.pdf details="Package documentation" texmf-dist/doc/latex/acronym/acrotest.tex -srcfiles size=20 +srcfiles size=21 texmf-dist/source/latex/acronym/acronym.dtx texmf-dist/source/latex/acronym/acronym.ins -runfiles size=6 +runfiles size=7 texmf-dist/tex/latex/acronym/acronym.sty catalogue-also glossaries catalogue-ctan /macros/latex/contrib/acronym catalogue-license lppl1.3 catalogue-topics acronym -catalogue-version 1.47 +catalogue-version 1.50 name acroterm category Package @@ -9351,7 +9451,7 @@ catalogue-version 0.3 name addtoluatexpath category Package -revision 70655 +revision 73424 shortdesc Add paths to Lua packages and input TeX files longdesc This package provides a convenient way to add input and Lua longdesc package paths in your document. You may want this package, for @@ -9359,7 +9459,7 @@ longdesc example, if a .cls or .sty file is located on a network or longdesc cloud storage drive. docfiles size=1 texmf-dist/doc/luatex/addtoluatexpath/README.md details="Readme" -runfiles size=1 +runfiles size=2 texmf-dist/tex/luatex/addtoluatexpath/addtoluatexpath.sty catalogue-contact-repository https://github.com/kalekje/addtoluatexpath catalogue-ctan /macros/luatex/generic/addtoluatexpath @@ -9388,56 +9488,63 @@ catalogue-version 2.42 name adforn category Package -revision 54512 +revision 72484 shortdesc OrnementsADF font with TeX/LaTeX support longdesc The bundle provides the Ornements ADF font in PostScript type 1 longdesc format with TeX/LaTeX support files. The font is licensed under longdesc GPL v2 or later with font exception. (See NOTICE, COPYING, longdesc README.) The TeX/LaTeX support is licensed under LPPL. (See longdesc README, manifest.txt.) -execute addMap OrnementsADF.map -docfiles size=98 +execute addMap adforn.map +docfiles size=140 texmf-dist/doc/fonts/adforn/COPYING texmf-dist/doc/fonts/adforn/NOTICE - texmf-dist/doc/fonts/adforn/README details="Readme" + texmf-dist/doc/fonts/adforn/README.md details="Readme" + texmf-dist/doc/fonts/adforn/adforn-tables.pdf + texmf-dist/doc/fonts/adforn/adforn-tables.tex texmf-dist/doc/fonts/adforn/adforn.pdf details="Package documentation and font tables" - texmf-dist/doc/fonts/adforn/adforn.tex texmf-dist/doc/fonts/adforn/manifest.txt -runfiles size=17 +srcfiles size=12 + texmf-dist/source/fonts/adforn/adforn.dtx + texmf-dist/source/fonts/adforn/adforn.ins +runfiles size=18 texmf-dist/fonts/afm/arkandis/adforn/OrnementsADF.afm texmf-dist/fonts/enc/dvips/adforn/OrnementsADF.enc - texmf-dist/fonts/map/dvips/adforn/OrnementsADF.map + texmf-dist/fonts/map/dvips/adforn/adforn.map texmf-dist/fonts/tfm/arkandis/adforn/OrnementsADF.tfm texmf-dist/fonts/type1/arkandis/adforn/OrnementsADF.pfb texmf-dist/tex/latex/adforn/adforn.sty texmf-dist/tex/latex/adforn/uornementsadf.fd +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/adforn -catalogue-license lppl gpl2 +catalogue-license lppl1.3c gpl2 catalogue-topics font font-ornmnt font-type1 -catalogue-version 1.1b +catalogue-version 1.2 name adfsymbols category Package -revision 54512 +revision 72458 shortdesc SymbolsADF with TeX/LaTeX support longdesc The package provides Arkandis foundry's ArrowsADF and longdesc BulletsADF fonts in Adobe Type 1 format, together with longdesc TeX/LaTeX support files. -execute addMap ArrowsADF.map -execute addMap BulletsADF.map -docfiles size=104 +execute addMap adfsymbols.map +docfiles size=154 texmf-dist/doc/fonts/adfsymbols/COPYING texmf-dist/doc/fonts/adfsymbols/NOTICE - texmf-dist/doc/fonts/adfsymbols/README details="Readme" + texmf-dist/doc/fonts/adfsymbols/README.md details="Readme" texmf-dist/doc/fonts/adfsymbols/adfsymbols.pdf details="Package documentation" - texmf-dist/doc/fonts/adfsymbols/adfsymbols.tex texmf-dist/doc/fonts/adfsymbols/manifest.txt -runfiles size=19 +srcfiles size=19 + texmf-dist/source/fonts/adfsymbols/adfarrows.dtx + texmf-dist/source/fonts/adfsymbols/adfbullets.dtx + texmf-dist/source/fonts/adfsymbols/adfsymbols.dtx + texmf-dist/source/fonts/adfsymbols/adfsymbols.ins +runfiles size=18 texmf-dist/fonts/afm/arkandis/adfsymbols/ArrowsADF.afm texmf-dist/fonts/afm/arkandis/adfsymbols/BulletsADF.afm texmf-dist/fonts/enc/dvips/adfsymbols/SymbolsADF.enc - texmf-dist/fonts/map/dvips/adfsymbols/ArrowsADF.map - texmf-dist/fonts/map/dvips/adfsymbols/BulletsADF.map + texmf-dist/fonts/map/dvips/adfsymbols/adfsymbols.map texmf-dist/fonts/tfm/arkandis/adfsymbols/ArrowsADF.tfm texmf-dist/fonts/tfm/arkandis/adfsymbols/BulletsADF.tfm texmf-dist/fonts/type1/arkandis/adfsymbols/ArrowsADF.pfb @@ -9446,10 +9553,11 @@ runfiles size=19 texmf-dist/tex/latex/adfsymbols/adfbullets.sty texmf-dist/tex/latex/adfsymbols/uarrowsadf.fd texmf-dist/tex/latex/adfsymbols/ubulletsadf.fd +catalogue-contact-repository https://github.com/cfr42/nfssext catalogue-ctan /fonts/adfsymbols -catalogue-license lppl gpl2 +catalogue-license lppl1.3c gpl2+ catalogue-topics font font-symbol font-type1 font-supp -catalogue-version 1.2b +catalogue-version 1.3 name adhocfilelist category Package @@ -9640,7 +9748,7 @@ catalogue-version 1.5 name adjustbox category Package -revision 64967 +revision 72097 shortdesc Graphics package-alike macros for "general" boxes longdesc The package provides several macros to adjust boxed content. longdesc One purpose is to supplement the standard graphics package, @@ -9692,7 +9800,7 @@ 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-topics typesetting box-manip box-breaking catalogue-version 1.3a name adobemapping @@ -10433,133 +10541,109 @@ runfiles size=24 name afm2pl.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of afm2pl binfiles arch=aarch64-linux size=26 bin/aarch64-linux/afm2pl name afm2pl.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of afm2pl binfiles arch=amd64-freebsd size=30 bin/amd64-freebsd/afm2pl name afm2pl.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of afm2pl -binfiles arch=amd64-netbsd size=30 +binfiles arch=amd64-netbsd size=31 bin/amd64-netbsd/afm2pl name afm2pl.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of afm2pl -binfiles arch=armhf-linux size=21 +binfiles arch=armhf-linux size=18 bin/armhf-linux/afm2pl name afm2pl.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of afm2pl binfiles arch=i386-freebsd size=30 bin/i386-freebsd/afm2pl name afm2pl.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of afm2pl -binfiles arch=i386-linux size=28 +binfiles arch=i386-linux size=30 bin/i386-linux/afm2pl name afm2pl.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of afm2pl binfiles arch=i386-netbsd size=27 bin/i386-netbsd/afm2pl name afm2pl.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of afm2pl binfiles arch=i386-solaris size=24 bin/i386-solaris/afm2pl name afm2pl.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of afm2pl binfiles arch=universal-darwin size=75 bin/universal-darwin/afm2pl name afm2pl.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of afm2pl binfiles arch=windows size=9 bin/windows/afm2pl.exe name afm2pl.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of afm2pl binfiles arch=x86_64-cygwin size=8 bin/x86_64-cygwin/afm2pl.exe name afm2pl.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of afm2pl binfiles arch=x86_64-darwinlegacy size=24 bin/x86_64-darwinlegacy/afm2pl name afm2pl.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of afm2pl -binfiles arch=x86_64-linux size=25 +binfiles arch=x86_64-linux size=26 bin/x86_64-linux/afm2pl name afm2pl.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of afm2pl binfiles arch=x86_64-linuxmusl size=26 bin/x86_64-linuxmusl/afm2pl name afm2pl.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of afm2pl -binfiles arch=x86_64-solaris size=28 +binfiles arch=x86_64-solaris size=29 bin/x86_64-solaris/afm2pl -name afparticle -category Package -revision 35900 -shortdesc Typesetting articles for Archives of Forensic Psychology -longdesc This package provides a class for typesetting articles for the -longdesc open access journal Archives of Forensic Psychology. -docfiles size=165 - texmf-dist/doc/latex/afparticle/Makefile - texmf-dist/doc/latex/afparticle/README details="Readme" - texmf-dist/doc/latex/afparticle/afparticle.pdf details="Package documentation" - texmf-dist/doc/latex/afparticle/afpsample.bib - texmf-dist/doc/latex/afparticle/afpsample.pdf details="Example of usage" - texmf-dist/doc/latex/afparticle/afpsample.tex - texmf-dist/doc/latex/afparticle/vitruvian.jpg -srcfiles size=9 - texmf-dist/source/latex/afparticle/afparticle.dtx - texmf-dist/source/latex/afparticle/afparticle.ins -runfiles size=3 - texmf-dist/tex/latex/afparticle/afparticle.cls -catalogue-ctan /macros/latex/contrib/afparticle -catalogue-license lppl1.3 -catalogue-topics journalpub class article-like -catalogue-version 1.3 - name afthesis category Package revision 15878 @@ -10677,6 +10761,34 @@ catalogue-ctan /biblio/bibtex/contrib/misc/aichej.bst catalogue-license lppl catalogue-topics bibtex-sty journalpub +name aiplans +category Package +revision 72202 +shortdesc A TikZ-based library for drawing POCL plans +longdesc This TikZ library is designed for generating diagrams related +longdesc to Automated Planning, a subdiscipline of Artificial +longdesc Intelligence. It allows users to define a "domain model" for +longdesc actions, similar to PDDL and HDDL used in hierarchical +longdesc planning. The package is useful for researchers and students to +longdesc create diagrams that represent sequential action sequences or +longdesc partially ordered plans, including causal links and ordering +longdesc constraints (e.g., POCL plans). It is particularly suited for +longdesc presentations and scientific publications. +docfiles size=302 + texmf-dist/doc/latex/aiplans/Aiplans-Introduction-source-code.zip + texmf-dist/doc/latex/aiplans/Aiplans-Introduction.pdf details="Package documentation" + texmf-dist/doc/latex/aiplans/LICENSE.txt + texmf-dist/doc/latex/aiplans/README.md details="Readme" + texmf-dist/doc/latex/aiplans/README.pdf +runfiles size=2 + texmf-dist/tex/latex/aiplans/tikzlibraryaiplans.code.tex +catalogue-contact-bugs https://gitlab.cecs.anu.edu.au/u7166251/coding-ai-plans-in-latex-s2/-/issues +catalogue-contact-repository https://gitlab.cecs.anu.edu.au/u7166251 +catalogue-ctan /graphics/pgf/contrib/aiplans +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz automata +catalogue-version 1.0 + name ajl category Package revision 34016 @@ -10794,7 +10906,7 @@ catalogue-version 0.2 name albatross category Package -revision 69832 +revision 73436 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. @@ -15520,7 +15632,7 @@ catalogue-topics font font-body font-serif font-sans font-proportional font-t1en name aleph category Package -revision 70015 +revision 73850 shortdesc Extended TeX longdesc An development of omega, using most of the extensions of TeX longdesc itself developed for e-TeX. @@ -15546,70 +15658,70 @@ catalogue-topics engine omega name aleph.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of aleph binfiles arch=aarch64-linux size=162 bin/aarch64-linux/aleph name aleph.amd64-freebsd category Package -revision 70276 +revision 73792 shortdesc amd64-freebsd files of aleph binfiles arch=amd64-freebsd size=187 bin/amd64-freebsd/aleph name aleph.amd64-netbsd category Package -revision 70286 +revision 73802 shortdesc amd64-netbsd files of aleph -binfiles arch=amd64-netbsd size=193 +binfiles arch=amd64-netbsd size=194 bin/amd64-netbsd/aleph name aleph.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of aleph -binfiles arch=armhf-linux size=123 +binfiles arch=armhf-linux size=105 bin/armhf-linux/aleph name aleph.i386-freebsd category Package -revision 70276 +revision 73792 shortdesc i386-freebsd files of aleph binfiles arch=i386-freebsd size=187 bin/i386-freebsd/aleph name aleph.i386-linux category Package -revision 70276 +revision 73792 shortdesc i386-linux files of aleph -binfiles arch=i386-linux size=149 +binfiles arch=i386-linux size=164 bin/i386-linux/aleph name aleph.i386-netbsd category Package -revision 70286 +revision 73802 shortdesc i386-netbsd files of aleph -binfiles arch=i386-netbsd size=169 +binfiles arch=i386-netbsd size=170 bin/i386-netbsd/aleph name aleph.i386-solaris category Package -revision 70276 +revision 73792 shortdesc i386-solaris files of aleph -binfiles arch=i386-solaris size=138 +binfiles arch=i386-solaris size=139 bin/i386-solaris/aleph name aleph.universal-darwin category Package -revision 70274 +revision 73806 shortdesc universal-darwin files of aleph binfiles arch=universal-darwin size=425 bin/universal-darwin/aleph name aleph.windows category Package -revision 70576 +revision 73796 shortdesc windows files of aleph binfiles arch=windows size=130 bin/windows/aleph.dll @@ -15617,37 +15729,37 @@ binfiles arch=windows size=130 name aleph.x86_64-cygwin category Package -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of aleph -binfiles arch=x86_64-cygwin size=127 +binfiles arch=x86_64-cygwin size=128 bin/x86_64-cygwin/aleph.exe name aleph.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of aleph -binfiles arch=x86_64-darwinlegacy size=132 +binfiles arch=x86_64-darwinlegacy size=130 bin/x86_64-darwinlegacy/aleph name aleph.x86_64-linux category Package -revision 70276 +revision 73777 shortdesc x86_64-linux files of aleph -binfiles arch=x86_64-linux size=138 +binfiles arch=x86_64-linux size=145 bin/x86_64-linux/aleph name aleph.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of aleph -binfiles arch=x86_64-linuxmusl size=146 +binfiles arch=x86_64-linuxmusl size=145 bin/x86_64-linuxmusl/aleph name aleph.x86_64-solaris category Package -revision 70276 +revision 73792 shortdesc x86_64-solaris files of aleph -binfiles arch=x86_64-solaris size=153 +binfiles arch=x86_64-solaris size=154 bin/x86_64-solaris/aleph name alertmessage @@ -16104,25 +16216,26 @@ catalogue-version 1.1.2 name algxpar category Package -revision 67495 +revision 72657 shortdesc Support multiple lines of pseudocode longdesc This package extends the package algorithmicx to support long longdesc text which spans over multiple lines. -docfiles size=201 +docfiles size=224 texmf-dist/doc/latex/algxpar/README.md details="Readme" texmf-dist/doc/latex/algxpar/algxpar-doc.pdf details="Package documentation" texmf-dist/doc/latex/algxpar/algxpar-doc.tex - texmf-dist/doc/latex/algxpar/algxpar-lzw.tex -runfiles size=9 + texmf-dist/doc/latex/algxpar/license +runfiles size=13 texmf-dist/tex/latex/algxpar/algxpar-brazilian.kw.tex texmf-dist/tex/latex/algxpar/algxpar-english.kw.tex + texmf-dist/tex/latex/algxpar/algxpar-versionchanges.sty texmf-dist/tex/latex/algxpar/algxpar.sty catalogue-contact-bugs https://github.com/jandermoreira/algxpar/issues catalogue-contact-repository https://github.com/jandermoreira/algxpar catalogue-ctan /macros/latex/contrib/algxpar catalogue-license lppl1.3 catalogue-topics pseudocode expl3 -catalogue-version 0.99 +catalogue-version 0.99.2 name aligned-overset category Package @@ -17976,7 +18089,7 @@ catalogue-version 2.0 name amsmath category Package -revision 71408 +revision 72779 catalogue latex-amsmath shortdesc AMS mathematical facilities for LaTeX longdesc The package provides the principal packages in the AMS-LaTeX @@ -18043,6 +18156,7 @@ catalogue-contact-home http://www.ams.org/tex/amslatex.html catalogue-ctan /macros/latex/required/amsmath catalogue-license lppl1.3c catalogue-topics maths +catalogue-version 2024-11-01a name amsmath-it category Package @@ -18127,7 +18241,7 @@ catalogue-version 2.14 name amstex category Package -revision 70015 +revision 73848 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 @@ -18156,7 +18270,7 @@ depend pdftex 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 -docfiles size=203 +docfiles size=204 texmf-dist/doc/amstex/base/README details="Readme" texmf-dist/doc/amstex/base/amsguide.pdf details="User's guide and installation details" texmf-dist/doc/amstex/base/amsguide.tex @@ -18490,20 +18604,54 @@ catalogue-license ofl lppl catalogue-topics font font-sans font-cyrillic font-ttf font-type1 font-supp catalogue-version 6.101 +name anima +category Package +revision 73126 +shortdesc Create slideshows with simple animations +longdesc The idea for this package arose from noticing that including +longdesc the \pause command from the beamer class within the \foreach +longdesc loop command from the TikZ package creates a sequence of +longdesc frames, where each slide presents a step in the construction of +longdesc the image. The purpose of the anima class is to provide macros +longdesc that simplify the use of this effect for creating animated +longdesc slide presentations. Although the functionality of this class +longdesc can be compared to the transition effects of the beamer class, +longdesc it is not a dependency of the anima class. However, the class +longdesc makes extensive use of the image creation language provided by +longdesc the TikZ package. Lastly, it is worth noting a comparison +longdesc between this class and the animate package. The animate package +longdesc can create embedded animations within the document, while the +longdesc anima class produces an animation where each frame corresponds +longdesc to a page of the document. This distinction highlights the +longdesc different design goals of the anima class. +docfiles size=112 + texmf-dist/doc/latex/anima/README.txt details="Readme" + texmf-dist/doc/latex/anima/anima-doc.pdf details="Package documentation" + texmf-dist/doc/latex/anima/exemplo.tex +srcfiles size=11 + texmf-dist/source/latex/anima/anima.dtx + texmf-dist/source/latex/anima/anima.ins +runfiles size=3 + texmf-dist/tex/latex/anima/anima.cls +catalogue-ctan /macros/latex/contrib/anima +catalogue-license lppl1.3c +catalogue-topics presentation graphics-motion class presentation +catalogue-version 1.1 + name animate category Package -revision 67401 +revision 72548 shortdesc Create PDF and SVG animations from graphics files and inline graphics longdesc The package provides an interface to create portable, longdesc JavaScript driven PDF and SVG animations from sets of graphics longdesc files or from inline graphics, such as LaTeX picture longdesc environment, PSTricks or pgf/TikZ generated pictures, or just longdesc from typeset text. -docfiles size=930 +docfiles size=885 texmf-dist/doc/latex/animate/ChangeLog texmf-dist/doc/latex/animate/README.txt texmf-dist/doc/latex/animate/animate.pdf details="Package documentation" -srcfiles size=39 +srcfiles size=40 texmf-dist/source/latex/animate/animate.tex texmf-dist/source/latex/animate/files/bye_0.eps texmf-dist/source/latex/animate/files/bye_1.eps @@ -19547,14 +19695,13 @@ catalogue-version 1.01 name aomart category Package -revision 71469 +revision 73604 shortdesc Typeset articles for the Annals of Mathematics longdesc The package provides a class for typesetting articles for The longdesc Annals of Mathematics. +depend aomart.ARCH docfiles size=477 texmf-dist/doc/latex/aomart/README details="Readme" - texmf-dist/doc/latex/aomart/aom_orcid_logo.eps - texmf-dist/doc/latex/aomart/aom_orcid_logo.pdf texmf-dist/doc/latex/aomart/aomart.bib texmf-dist/doc/latex/aomart/aomart.pdf details="Package documentation" texmf-dist/doc/latex/aomart/aomfrench.pdf @@ -19564,19 +19711,130 @@ docfiles size=477 texmf-dist/doc/latex/aomart/aomsample.tex texmf-dist/doc/latex/aomart/aomsample1.pdf texmf-dist/doc/latex/aomart/aomsample1.tex - texmf-dist/doc/latex/aomart/fullref.pl -srcfiles size=23 + texmf-dist/doc/man/man1/aom-fullref.1 + texmf-dist/doc/man/man1/aom-fullref.man1.pdf +srcfiles size=25 texmf-dist/source/latex/aomart/Makefile texmf-dist/source/latex/aomart/aomart.dtx texmf-dist/source/latex/aomart/aomart.ins -runfiles size=21 +runfiles size=32 texmf-dist/bibtex/bst/aomart/aomalpha.bst texmf-dist/bibtex/bst/aomart/aomplain.bst + texmf-dist/scripts/aomart/aom-fullref.pl + texmf-dist/tex/latex/aomart/aom_orcid_logo.eps + texmf-dist/tex/latex/aomart/aom_orcid_logo.pdf + texmf-dist/tex/latex/aomart/aom_orcid_logo_bw.eps + texmf-dist/tex/latex/aomart/aom_orcid_logo_bw.pdf texmf-dist/tex/latex/aomart/aomart.cls catalogue-ctan /macros/latex/contrib/aomart catalogue-license lppl1.3 catalogue-topics journalpub class -catalogue-version 1.28 +catalogue-version 1.32 + +name aomart.aarch64-linux +category Package +revision 73378 +shortdesc aarch64-linux files of aomart +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/aom-fullref + +name aomart.amd64-freebsd +category Package +revision 73378 +shortdesc amd64-freebsd files of aomart +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/aom-fullref + +name aomart.amd64-netbsd +category Package +revision 73378 +shortdesc amd64-netbsd files of aomart +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/aom-fullref + +name aomart.armhf-linux +category Package +revision 73378 +shortdesc armhf-linux files of aomart +binfiles arch=armhf-linux size=1 + bin/armhf-linux/aom-fullref + +name aomart.i386-freebsd +category Package +revision 73378 +shortdesc i386-freebsd files of aomart +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/aom-fullref + +name aomart.i386-linux +category Package +revision 73378 +shortdesc i386-linux files of aomart +binfiles arch=i386-linux size=1 + bin/i386-linux/aom-fullref + +name aomart.i386-netbsd +category Package +revision 73378 +shortdesc i386-netbsd files of aomart +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/aom-fullref + +name aomart.i386-solaris +category Package +revision 73378 +shortdesc i386-solaris files of aomart +binfiles arch=i386-solaris size=1 + bin/i386-solaris/aom-fullref + +name aomart.universal-darwin +category Package +revision 73378 +shortdesc universal-darwin files of aomart +binfiles arch=universal-darwin size=1 + bin/universal-darwin/aom-fullref + +name aomart.windows +category Package +revision 73378 +shortdesc windows files of aomart +binfiles arch=windows size=2 + bin/windows/aom-fullref.exe + +name aomart.x86_64-cygwin +category Package +revision 73378 +shortdesc x86_64-cygwin files of aomart +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/aom-fullref + +name aomart.x86_64-darwinlegacy +category Package +revision 73378 +shortdesc x86_64-darwinlegacy files of aomart +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/aom-fullref + +name aomart.x86_64-linux +category Package +revision 73378 +shortdesc x86_64-linux files of aomart +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/aom-fullref + +name aomart.x86_64-linuxmusl +category Package +revision 73378 +shortdesc x86_64-linuxmusl files of aomart +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/aom-fullref + +name aomart.x86_64-solaris +category Package +revision 73378 +shortdesc x86_64-solaris files of aomart +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/aom-fullref name apa category Package @@ -20676,7 +20934,7 @@ catalogue-version 1.2.1 name aramaic-serto category Package -revision 30042 +revision 71991 shortdesc Fonts and LaTeX for Syriac written in Serto longdesc This package enables (La)TeX users to typeset words or phrases longdesc (e-TeX extensions are needed) in Syriac (Aramaic) using the @@ -20726,7 +20984,6 @@ runfiles size=78 texmf-dist/tex/latex/aramaic-serto/uassyr.fd texmf-dist/tex/latex/aramaic-serto/userto.fd catalogue-also syriac aramaic -catalogue-contact-home http://heinecke.pagesperso-orange.fr/serto/ catalogue-ctan /language/aramaic/serto catalogue-license lppl1.3 catalogue-topics font font-archaic font-mf font-type1 @@ -21825,21 +22082,21 @@ catalogue-topics font font-sans font-maths name argumentation category Package -revision 71471 +revision 73815 shortdesc Create abstract argumentation frameworks via TikZ longdesc This package provides commands for creating abstract longdesc argumentation frameworks via TikZ. -docfiles size=86 +docfiles size=154 texmf-dist/doc/latex/argumentation/README.md details="Readme" texmf-dist/doc/latex/argumentation/argumentation-doc.pdf details="Package documentation" texmf-dist/doc/latex/argumentation/argumentation-doc.tex -runfiles size=3 +runfiles size=6 texmf-dist/tex/latex/argumentation/argumentation.sty catalogue-contact-repository https://github.com/aig-hagen/tikz_argumentation catalogue-ctan /graphics/pgf/contrib/argumentation catalogue-license lppl1.3c catalogue-topics graphics diagram pgf-tikz -catalogue-version 1.2 +catalogue-version 1.5 name arimo category Package @@ -24163,11 +24420,11 @@ catalogue-version 0.2 name asmeconf category Package -revision 69742 +revision 73649 shortdesc A LaTeX template for ASME conference papers 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 2022. +longdesc fonts, headings, captions, and reference formats as of 2025. 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 @@ -24181,7 +24438,7 @@ 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. -docfiles size=2147 +docfiles size=7163 texmf-dist/doc/latex/asmeconf/README.md details="Readme" texmf-dist/doc/latex/asmeconf/asmeconf-sample.bib texmf-dist/doc/latex/asmeconf/asmeconf-template.pdf details="Example of use" @@ -24202,18 +24459,18 @@ docfiles size=2147 texmf-dist/doc/latex/asmeconf/sample-figure-1.pdf texmf-dist/doc/latex/asmeconf/sample-figure-2a.pdf texmf-dist/doc/latex/asmeconf/sample-figure-2b.pdf -runfiles size=32 +runfiles size=35 texmf-dist/bibtex/bst/asmeconf/asmeconf.bst texmf-dist/tex/latex/asmeconf/asmeconf.cls catalogue-contact-bugs 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.37 +catalogue-version 1.40 name asmejour category Package -revision 69722 +revision 73602 shortdesc A template for ASME journal papers longdesc The asmejour class provides a template to format preprints longdesc submitted to ASME journals. The layout and reference formats @@ -24240,13 +24497,13 @@ docfiles size=1609 texmf-dist/doc/latex/asmejour/sample-figure-1.pdf texmf-dist/doc/latex/asmejour/sample-figure-2a.pdf texmf-dist/doc/latex/asmejour/sample-figure-2b.pdf -runfiles size=23 +runfiles size=24 texmf-dist/bibtex/bst/asmejour/asmejour.bst texmf-dist/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.22 +catalogue-topics class journalpub scientific-docs bibtex-sty engineering expl3 +catalogue-version 1.24 name aspectratio category Package @@ -24433,7 +24690,7 @@ catalogue-version 2.20 name asy-overview category Package -revision 71432 +revision 72484 shortdesc A brief overview of the Asymptote language for drawing mathematical graphics longdesc Asymptote is a programming language for creating mathematical longdesc graphics. This document gives you a quick overview, @@ -24476,7 +24733,6 @@ catalogue-contact-repository https://gitlab.com/jim.hefferon/asy_tut catalogue-ctan /info/asy-overview catalogue-license cc-by-sa-4 catalogue-topics documentation graphics-doc docu-pkg -catalogue-version 1.04 name asyfig category Package @@ -24508,7 +24764,7 @@ catalogue-version 0.1c name asymptote category TLCore -revision 71609 +revision 74096 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 @@ -24516,7 +24772,7 @@ 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 -docfiles size=1308 +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 @@ -24860,7 +25116,7 @@ docfiles size=1308 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=666 +runfiles size=671 texmf-dist/asymptote/CAD.asy texmf-dist/asymptote/GUI/ContextWindow.py texmf-dist/asymptote/GUI/CustMatTransform.py @@ -24875,18 +25131,10 @@ runfiles size=666 texmf-dist/asymptote/GUI/Widg_editBezier.py texmf-dist/asymptote/GUI/Window1.py texmf-dist/asymptote/GUI/__init__.py + texmf-dist/asymptote/GUI/buildtool.py texmf-dist/asymptote/GUI/configs/xasyconfig.cson texmf-dist/asymptote/GUI/configs/xasykeymap.cson - texmf-dist/asymptote/GUI/icons_rc.py texmf-dist/asymptote/GUI/labelEditor.py - texmf-dist/asymptote/GUI/pyUIClass/custMatTransform.py - texmf-dist/asymptote/GUI/pyUIClass/labelTextEditor.py - texmf-dist/asymptote/GUI/pyUIClass/setCustomAnchor.py - texmf-dist/asymptote/GUI/pyUIClass/widg_addLabel.py - texmf-dist/asymptote/GUI/pyUIClass/widg_addPolyOpt.py - texmf-dist/asymptote/GUI/pyUIClass/widg_editBezier.py - texmf-dist/asymptote/GUI/pyUIClass/widgetPointEditor.py - texmf-dist/asymptote/GUI/pyUIClass/window1.py texmf-dist/asymptote/GUI/res/icons/anchor.svg texmf-dist/asymptote/GUI/res/icons/android-arrow-back.svg texmf-dist/asymptote/GUI/res/icons/android-arrow-forward.svg @@ -24943,7 +25191,19 @@ runfiles size=666 texmf-dist/asymptote/GUI/xasyTransform.py texmf-dist/asymptote/GUI/xasyUtils.py texmf-dist/asymptote/GUI/xasyValidator.py - texmf-dist/asymptote/GUI/xasyVersion.py + texmf-dist/asymptote/GUI/xasyicons/__init__.py + texmf-dist/asymptote/GUI/xasyicons/icons_rc.py + texmf-dist/asymptote/GUI/xasyqtui/__init__.py + texmf-dist/asymptote/GUI/xasyqtui/custMatTransform.py + texmf-dist/asymptote/GUI/xasyqtui/labelTextEditor.py + texmf-dist/asymptote/GUI/xasyqtui/setCustomAnchor.py + texmf-dist/asymptote/GUI/xasyqtui/widg_addLabel.py + texmf-dist/asymptote/GUI/xasyqtui/widg_addPolyOpt.py + texmf-dist/asymptote/GUI/xasyqtui/widg_editBezier.py + texmf-dist/asymptote/GUI/xasyqtui/widgetPointEditor.py + texmf-dist/asymptote/GUI/xasyqtui/window1.py + texmf-dist/asymptote/GUI/xasyversion/__init__.py + texmf-dist/asymptote/GUI/xasyversion/version.py texmf-dist/asymptote/animate.asy texmf-dist/asymptote/animation.asy texmf-dist/asymptote/annotate.asy @@ -25022,6 +25282,7 @@ runfiles size=666 texmf-dist/asymptote/shaders/vertex.glsl texmf-dist/asymptote/shaders/zero.glsl texmf-dist/asymptote/simplex.asy + texmf-dist/asymptote/simplex2.asy texmf-dist/asymptote/size10.asy texmf-dist/asymptote/size11.asy texmf-dist/asymptote/slide.asy @@ -25057,7 +25318,7 @@ catalogue-contact-repository https://github.com/vectorgraphics/asymptote catalogue-ctan /graphics/asymptote catalogue-license lgpl3 catalogue-topics graphics graphics-engn -catalogue-version 2.90 +catalogue-version 3.00 name asymptote-by-example-zh-cn category Package @@ -25240,9 +25501,9 @@ binfiles arch=aarch64-linux size=860 name asymptote.amd64-freebsd category TLCore -revision 70569 +revision 74097 shortdesc amd64-freebsd files of asymptote -binfiles arch=amd64-freebsd size=1715 +binfiles arch=amd64-freebsd size=1634 bin/amd64-freebsd/asy bin/amd64-freebsd/xasy @@ -25255,17 +25516,17 @@ binfiles arch=amd64-netbsd size=1 name asymptote.i386-freebsd category TLCore -revision 71441 +revision 74097 shortdesc i386-freebsd files of asymptote -binfiles arch=i386-freebsd size=1715 +binfiles arch=i386-freebsd size=1634 bin/i386-freebsd/asy bin/i386-freebsd/xasy name asymptote.i386-linux category TLCore -revision 70569 +revision 74097 shortdesc i386-linux files of asymptote -binfiles arch=i386-linux size=1538 +binfiles arch=i386-linux size=1373 bin/i386-linux/asy bin/i386-linux/xasy @@ -25279,26 +25540,26 @@ binfiles arch=i386-solaris size=1375 name asymptote.universal-darwin category TLCore -revision 70570 +revision 73942 shortdesc universal-darwin files of asymptote -binfiles arch=universal-darwin size=10862 +binfiles arch=universal-darwin size=3077 bin/universal-darwin/asy bin/universal-darwin/xasy name asymptote.windows category TLCore -revision 70502 +revision 74096 shortdesc windows files of asymptote -binfiles arch=windows size=2805 +binfiles arch=windows size=2000 bin/windows/asy.exe tlpkg/asymptote64/asy.exe tlpkg/asymptote64/cygwin1.dll name asymptote.x86_64-cygwin category TLCore -revision 70539 +revision 73919 shortdesc x86_64-cygwin files of asymptote -binfiles arch=x86_64-cygwin size=1079 +binfiles arch=x86_64-cygwin size=1246 bin/x86_64-cygwin/asy.exe bin/x86_64-cygwin/xasy @@ -25312,9 +25573,9 @@ binfiles arch=x86_64-darwinlegacy size=3379 name asymptote.x86_64-linux category TLCore -revision 70569 +revision 74097 shortdesc x86_64-linux files of asymptote -binfiles arch=x86_64-linux size=1451 +binfiles arch=x86_64-linux size=1295 bin/x86_64-linux/asy bin/x86_64-linux/xasy @@ -25328,7 +25589,7 @@ binfiles arch=x86_64-solaris size=1393 name asypictureb category Package -revision 33490 +revision 73611 shortdesc User-friendly integration of Asymptote into LaTeX longdesc The package is an unofficial alternative to the package longdesc provided with the Asymptote distribution, for including @@ -25338,7 +25599,7 @@ longdesc package is more user-friendly in several ways. Most notably, longdesc Asymptote errors are repackaged as LaTeX errors, making longdesc debugging less of a pain. It also has a more robust mechanism longdesc for identifying unchanged pictures that need not be recompiled. -docfiles size=157 +docfiles size=194 texmf-dist/doc/latex/asypictureb/README details="Readme" texmf-dist/doc/latex/asypictureb/asypictureB.pdf details="Package documentation" srcfiles size=15 @@ -25347,9 +25608,37 @@ srcfiles size=15 runfiles size=3 texmf-dist/tex/latex/asypictureb/asypictureB.sty catalogue-ctan /graphics/asypictureb -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics graphics-incl -catalogue-version 0.3 +catalogue-version 0.4 + +name atableau +category Package +revision 73576 +shortdesc A LaTeX package for symmetric group combinatorics +longdesc A LaTeX package for symmetric group combinatorics, with +longdesc commands for Young diagrams, tableaux, tabloids, skew tableaux, +longdesc shifted tableaux, ribbon tableaux, multitableaux, abacuses. +longdesc These commands are intended to be easy to use and easy to +longdesc customise. In particular, TikZ styling can be added to the +longdesc components of these diagrams and common conventions and idioms +longdesc are supported using a key-value interface. All diagrams can be +longdesc used as standalone commands or as part of tikzpicture +longdesc environments. +docfiles size=258 + texmf-dist/doc/latex/atableau/LICENSE + texmf-dist/doc/latex/atableau/README.md details="Readme" + texmf-dist/doc/latex/atableau/atableau.ini + texmf-dist/doc/latex/atableau/atableau.pdf details="Package documentation" + texmf-dist/doc/latex/atableau/atableau.tex +runfiles size=37 + texmf-dist/tex/latex/atableau/atableau.sty +catalogue-contact-bugs https://github.com/AndrewMathas/aTableau/issues +catalogue-contact-repository https://github.com/AndrewMathas/aTableau +catalogue-ctan /graphics/pgf/contrib/atableau +catalogue-license lppl1.3c +catalogue-topics diagram pgf-tikz expl3 +catalogue-version 2.1.0 name atbegshi category Package @@ -25820,27 +26109,23 @@ binfiles arch=x86_64-solaris size=1 name atveryend category Package -revision 53108 +revision 72507 shortdesc Hooks at the very end of a document -longdesc This LaTeX packages provides two hooks for \end{document} that -longdesc are executed after the hook of \AtEndDocument: -longdesc \AfterLastShipout can be used for code that is to be executed -longdesc right after the last \clearpage before the `.aux' file is -longdesc closed. \AtVeryEndDocument is used for code after closing and -longdesc final reading of the `.aux' file. -docfiles size=95 +longdesc This LaTeX package provides some wrapper commands around LaTeX +longdesc end document hooks. +docfiles size=72 texmf-dist/doc/latex/atveryend/README.md details="README" texmf-dist/doc/latex/atveryend/atveryend.pdf details="Package documentation" -srcfiles size=10 +srcfiles size=4 texmf-dist/source/latex/atveryend/atveryend.dtx -runfiles size=5 +runfiles size=1 texmf-dist/tex/latex/atveryend/atveryend.sty catalogue-contact-bugs https://github.com/ho-tex/atveryend/issues catalogue-contact-repository https://github.com/ho-tex/atveryend catalogue-ctan /macros/latex/contrib/atveryend -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics defer-stuff -catalogue-version 1.11 +catalogue-version 1.12 name aucklandthesis category Package @@ -26546,7 +26831,7 @@ catalogue-topics music name autosp.aarch64-linux category Package -revision 69782 +revision 73915 shortdesc aarch64-linux files of autosp binfiles arch=aarch64-linux size=17 bin/aarch64-linux/autosp @@ -26554,7 +26839,7 @@ binfiles arch=aarch64-linux size=17 name autosp.amd64-freebsd category Package -revision 71441 +revision 73792 shortdesc amd64-freebsd files of autosp binfiles arch=amd64-freebsd size=16 bin/amd64-freebsd/autosp @@ -26562,7 +26847,7 @@ binfiles arch=amd64-freebsd size=16 name autosp.amd64-netbsd category Package -revision 71441 +revision 73802 shortdesc amd64-netbsd files of autosp binfiles arch=amd64-netbsd size=16 bin/amd64-netbsd/autosp @@ -26570,15 +26855,15 @@ binfiles arch=amd64-netbsd size=16 name autosp.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of autosp -binfiles arch=armhf-linux size=14 +binfiles arch=armhf-linux size=13 bin/armhf-linux/autosp bin/armhf-linux/tex2aspc name autosp.i386-freebsd category Package -revision 71441 +revision 73792 shortdesc i386-freebsd files of autosp binfiles arch=i386-freebsd size=16 bin/i386-freebsd/autosp @@ -26586,15 +26871,15 @@ binfiles arch=i386-freebsd size=16 name autosp.i386-linux category Package -revision 71441 +revision 73792 shortdesc i386-linux files of autosp -binfiles arch=i386-linux size=17 +binfiles arch=i386-linux size=20 bin/i386-linux/autosp bin/i386-linux/tex2aspc name autosp.i386-netbsd category Package -revision 71441 +revision 73802 shortdesc i386-netbsd files of autosp binfiles arch=i386-netbsd size=16 bin/i386-netbsd/autosp @@ -26602,7 +26887,7 @@ binfiles arch=i386-netbsd size=16 name autosp.i386-solaris category Package -revision 71441 +revision 73792 shortdesc i386-solaris files of autosp binfiles arch=i386-solaris size=14 bin/i386-solaris/autosp @@ -26610,15 +26895,15 @@ binfiles arch=i386-solaris size=14 name autosp.universal-darwin category Package -revision 69807 +revision 73806 shortdesc universal-darwin files of autosp -binfiles arch=universal-darwin size=79 +binfiles arch=universal-darwin size=80 bin/universal-darwin/autosp bin/universal-darwin/tex2aspc name autosp.windows category Package -revision 70269 +revision 73796 shortdesc windows files of autosp binfiles arch=windows size=15 bin/windows/autosp.exe @@ -26626,7 +26911,7 @@ binfiles arch=windows size=15 name autosp.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of autosp binfiles arch=x86_64-cygwin size=16 bin/x86_64-cygwin/autosp.exe @@ -26634,7 +26919,7 @@ binfiles arch=x86_64-cygwin size=16 name autosp.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of autosp binfiles arch=x86_64-darwinlegacy size=15 bin/x86_64-darwinlegacy/autosp @@ -26642,7 +26927,7 @@ binfiles arch=x86_64-darwinlegacy size=15 name autosp.x86_64-linux category Package -revision 69782 +revision 73777 shortdesc x86_64-linux files of autosp binfiles arch=x86_64-linux size=15 bin/x86_64-linux/autosp @@ -26650,15 +26935,15 @@ binfiles arch=x86_64-linux size=15 name autosp.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of autosp -binfiles arch=x86_64-linuxmusl size=15 +binfiles arch=x86_64-linuxmusl size=16 bin/x86_64-linuxmusl/autosp bin/x86_64-linuxmusl/tex2aspc name autosp.x86_64-solaris category Package -revision 71441 +revision 73792 shortdesc x86_64-solaris files of autosp binfiles arch=x86_64-solaris size=16 bin/x86_64-solaris/autosp @@ -26916,7 +27201,7 @@ catalogue-topics font font-type1 font-collection name avremu category Package -revision 35373 +revision 71991 shortdesc An 8-Bit Microcontroller Simulator written in LaTeX longdesc A fully working package to simulate a Microprocessor in pure longdesc LaTeX. The simulator is able to calculate complex pictures, @@ -26954,7 +27239,6 @@ runfiles size=27 texmf-dist/tex/latex/avremu/avr.numbers.tex texmf-dist/tex/latex/avremu/avr.testsuite.tex texmf-dist/tex/latex/avremu/avremu.sty -catalogue-contact-repository https://gitlab.brokenpipe.de/stettberger/avremu catalogue-ctan /macros/latex/contrib/avremu catalogue-license lppl1.3 catalogue-topics emulation @@ -27063,107 +27347,107 @@ catalogue-version 2.1.1c name axodraw2.aarch64-linux category Package -revision 65927 +revision 73915 shortdesc aarch64-linux files of axodraw2 binfiles arch=aarch64-linux size=15 bin/aarch64-linux/axohelp name axodraw2.amd64-freebsd category Package -revision 71441 +revision 73792 shortdesc amd64-freebsd files of axodraw2 binfiles arch=amd64-freebsd size=20 bin/amd64-freebsd/axohelp name axodraw2.amd64-netbsd category Package -revision 71441 +revision 73802 shortdesc amd64-netbsd files of axodraw2 -binfiles arch=amd64-netbsd size=19 +binfiles arch=amd64-netbsd size=18 bin/amd64-netbsd/axohelp name axodraw2.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of axodraw2 binfiles arch=armhf-linux size=11 bin/armhf-linux/axohelp name axodraw2.i386-freebsd category Package -revision 71441 +revision 73792 shortdesc i386-freebsd files of axodraw2 binfiles arch=i386-freebsd size=20 bin/i386-freebsd/axohelp name axodraw2.i386-linux category Package -revision 71441 +revision 73792 shortdesc i386-linux files of axodraw2 -binfiles arch=i386-linux size=17 +binfiles arch=i386-linux size=19 bin/i386-linux/axohelp name axodraw2.i386-netbsd category Package -revision 71441 +revision 73802 shortdesc i386-netbsd files of axodraw2 binfiles arch=i386-netbsd size=16 bin/i386-netbsd/axohelp name axodraw2.i386-solaris category Package -revision 71441 +revision 73792 shortdesc i386-solaris files of axodraw2 binfiles arch=i386-solaris size=14 bin/i386-solaris/axohelp name axodraw2.universal-darwin category Package -revision 69807 +revision 73806 shortdesc universal-darwin files of axodraw2 binfiles arch=universal-darwin size=62 bin/universal-darwin/axohelp name axodraw2.windows category Package -revision 65891 +revision 73796 shortdesc windows files of axodraw2 -binfiles arch=windows size=54 +binfiles arch=windows size=58 bin/windows/axohelp.exe name axodraw2.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of axodraw2 -binfiles arch=x86_64-cygwin size=20 +binfiles arch=x86_64-cygwin size=19 bin/x86_64-cygwin/axohelp.exe name axodraw2.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of axodraw2 -binfiles arch=x86_64-darwinlegacy size=14 +binfiles arch=x86_64-darwinlegacy size=15 bin/x86_64-darwinlegacy/axohelp name axodraw2.x86_64-linux category Package -revision 69782 +revision 73777 shortdesc x86_64-linux files of axodraw2 -binfiles arch=x86_64-linux size=17 +binfiles arch=x86_64-linux size=20 bin/x86_64-linux/axohelp name axodraw2.x86_64-linuxmusl category Package -revision 62210 +revision 73792 shortdesc x86_64-linuxmusl files of axodraw2 -binfiles arch=x86_64-linuxmusl size=16 +binfiles arch=x86_64-linuxmusl size=18 bin/x86_64-linuxmusl/axohelp name axodraw2.x86_64-solaris category Package -revision 71441 +revision 73792 shortdesc x86_64-solaris files of axodraw2 -binfiles arch=x86_64-solaris size=17 +binfiles arch=x86_64-solaris size=18 bin/x86_64-solaris/axohelp name b1encoding @@ -27190,7 +27474,7 @@ catalogue-version 1.0 name babel category Package -revision 71656 +revision 73985 shortdesc Multilingual support for LaTeX, LuaLaTeX, XeLaTeX, and Plain TeX longdesc This package manages culturally-determined typographical (and longdesc other) rules for a wide range of languages. A document may @@ -27203,17 +27487,17 @@ longdesc about 300 languages from around the World, including many longdesc written in non-Latin and RTL scripts. Many of them work with longdesc pdfLaTeX, as well as with XeLaTeX and LuaLaTeX, out of the box. longdesc A few even work with plain formats. -docfiles size=264 +docfiles size=316 texmf-dist/doc/latex/babel/README.md details="Readme" texmf-dist/doc/latex/babel/babel-code.pdf details="Code documentation" texmf-dist/doc/latex/babel/babel.pdf details="User guide" -srcfiles size=473 +srcfiles size=485 texmf-dist/source/latex/babel/babel.dtx texmf-dist/source/latex/babel/babel.ins texmf-dist/source/latex/babel/bbcompat.dtx texmf-dist/source/latex/babel/bbidxglo.dtx texmf-dist/source/latex/babel/locale.zip -runfiles size=1268 +runfiles size=1313 texmf-dist/makeindex/babel/bbglo.ist texmf-dist/makeindex/babel/bbind.ist texmf-dist/tex/generic/babel/UKenglish.sty @@ -27323,6 +27607,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/arc/babel-arc-Nbat.ini texmf-dist/tex/generic/babel/locale/arc/babel-arc-Palm.ini texmf-dist/tex/generic/babel/locale/arc/babel-arc.ini + texmf-dist/tex/generic/babel/locale/arq/babel-algerianarabic.tex + texmf-dist/tex/generic/babel/locale/arq/babel-arq.ini texmf-dist/tex/generic/babel/locale/arz/babel-arz.ini texmf-dist/tex/generic/babel/locale/arz/babel-egyptianarabic.tex texmf-dist/tex/generic/babel/locale/as/babel-as.ini @@ -27359,6 +27645,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/be/babel-belarusian.tex texmf-dist/tex/generic/babel/locale/bem/babel-bem.ini texmf-dist/tex/generic/babel/locale/bem/babel-bemba.tex + texmf-dist/tex/generic/babel/locale/bew/babel-betawi.tex + texmf-dist/tex/generic/babel/locale/bew/babel-bew.ini texmf-dist/tex/generic/babel/locale/bez/babel-bena.tex texmf-dist/tex/generic/babel/locale/bez/babel-bez.ini texmf-dist/tex/generic/babel/locale/bg/babel-bg.ini @@ -27521,6 +27809,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/es/babel-spanish.tex texmf-dist/tex/generic/babel/locale/et/babel-estonian.tex texmf-dist/tex/generic/babel/locale/et/babel-et.ini + texmf-dist/tex/generic/babel/locale/ett/babel-etruscan.tex + texmf-dist/tex/generic/babel/locale/ett/babel-ett.ini texmf-dist/tex/generic/babel/locale/eu/babel-basque.tex texmf-dist/tex/generic/babel/locale/eu/babel-eu.ini texmf-dist/tex/generic/babel/locale/ewo/babel-ewo.ini @@ -27623,6 +27913,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/inh/babel-inh.ini texmf-dist/tex/generic/babel/locale/is/babel-icelandic.tex texmf-dist/tex/generic/babel/locale/is/babel-is.ini + texmf-dist/tex/generic/babel/locale/isv/babel-interslavic.tex + texmf-dist/tex/generic/babel/locale/isv/babel-isv.ini texmf-dist/tex/generic/babel/locale/it/babel-it.ini texmf-dist/tex/generic/babel/locale/it/babel-italian.tex texmf-dist/tex/generic/babel/locale/iu/babel-inuktitut.tex @@ -27691,6 +27983,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/ksf/babel-ksf.ini texmf-dist/tex/generic/babel/locale/ksh/babel-colognian.tex texmf-dist/tex/generic/babel/locale/ksh/babel-ksh.ini + texmf-dist/tex/generic/babel/locale/ku/babel-ku.ini + texmf-dist/tex/generic/babel/locale/ku/babel-kurdish.tex texmf-dist/tex/generic/babel/locale/kv/babel-komi.tex texmf-dist/tex/generic/babel/locale/kv/babel-kv.ini texmf-dist/tex/generic/babel/locale/kw/babel-cornish.tex @@ -27848,6 +28142,10 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/or/babel-oriya.tex texmf-dist/tex/generic/babel/locale/os/babel-os.ini texmf-dist/tex/generic/babel/locale/os/babel-ossetic.tex + texmf-dist/tex/generic/babel/locale/osa/babel-osa.ini + texmf-dist/tex/generic/babel/locale/osa/babel-osage.tex + texmf-dist/tex/generic/babel/locale/oui/babel-olduighur.tex + texmf-dist/tex/generic/babel/locale/oui/babel-oui.ini texmf-dist/tex/generic/babel/locale/pa/babel-pa-Arab.ini texmf-dist/tex/generic/babel/locale/pa/babel-pa-Guru.ini texmf-dist/tex/generic/babel/locale/pa/babel-pa.ini @@ -27860,6 +28158,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/pap/babel-papiamento.tex texmf-dist/tex/generic/babel/locale/pcm/babel-nigerianpidgin.tex texmf-dist/tex/generic/babel/locale/pcm/babel-pcm.ini + texmf-dist/tex/generic/babel/locale/peo/babel-oldpersian.tex + texmf-dist/tex/generic/babel/locale/peo/babel-peo.ini texmf-dist/tex/generic/babel/locale/phn/babel-phn.ini texmf-dist/tex/generic/babel/locale/phn/babel-phoenician.tex texmf-dist/tex/generic/babel/locale/pl/babel-pl.ini @@ -27958,6 +28258,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/ses/babel-ses.ini texmf-dist/tex/generic/babel/locale/sg/babel-sango.tex texmf-dist/tex/generic/babel/locale/sg/babel-sg.ini + texmf-dist/tex/generic/babel/locale/sga/babel-oldirish.tex + texmf-dist/tex/generic/babel/locale/sga/babel-sga.ini texmf-dist/tex/generic/babel/locale/shi/babel-shi-Latn.ini texmf-dist/tex/generic/babel/locale/shi/babel-shi-Tfng.ini texmf-dist/tex/generic/babel/locale/shi/babel-shi.ini @@ -28072,6 +28374,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/tzm/babel-tzm.ini texmf-dist/tex/generic/babel/locale/ug/babel-ug.ini texmf-dist/tex/generic/babel/locale/ug/babel-uyghur.tex + texmf-dist/tex/generic/babel/locale/uga/babel-uga.ini + texmf-dist/tex/generic/babel/locale/uga/babel-ugaritic.tex texmf-dist/tex/generic/babel/locale/uk/babel-uk.ini texmf-dist/tex/generic/babel/locale/uk/babel-ukrainian.tex texmf-dist/tex/generic/babel/locale/ur/babel-ur.ini @@ -28097,8 +28401,12 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/vai/babel-vai.tex texmf-dist/tex/generic/babel/locale/ve/babel-ve.ini texmf-dist/tex/generic/babel/locale/ve/babel-venda.tex + texmf-dist/tex/generic/babel/locale/vec/babel-vec.ini + texmf-dist/tex/generic/babel/locale/vec/babel-venetian.tex texmf-dist/tex/generic/babel/locale/vi/babel-vi.ini texmf-dist/tex/generic/babel/locale/vi/babel-vietnamese.tex + texmf-dist/tex/generic/babel/locale/vmw/babel-makhuwa.tex + texmf-dist/tex/generic/babel/locale/vmw/babel-vmw.ini texmf-dist/tex/generic/babel/locale/vo/babel-vo.ini texmf-dist/tex/generic/babel/locale/vo/babel-volapuk.tex texmf-dist/tex/generic/babel/locale/vun/babel-vun.ini @@ -28111,10 +28419,20 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/war/babel-waray.tex texmf-dist/tex/generic/babel/locale/wo/babel-wo.ini texmf-dist/tex/generic/babel/locale/wo/babel-wolof.tex + texmf-dist/tex/generic/babel/locale/xcr/babel-carian.tex + texmf-dist/tex/generic/babel/locale/xcr/babel-xcr.ini texmf-dist/tex/generic/babel/locale/xh/babel-xh.ini texmf-dist/tex/generic/babel/locale/xh/babel-xhosa.tex + texmf-dist/tex/generic/babel/locale/xlc/babel-lycian.tex + texmf-dist/tex/generic/babel/locale/xlc/babel-xlc.ini + texmf-dist/tex/generic/babel/locale/xld/babel-lydian.tex + texmf-dist/tex/generic/babel/locale/xld/babel-xld.ini + texmf-dist/tex/generic/babel/locale/xnr/babel-kangri.tex + texmf-dist/tex/generic/babel/locale/xnr/babel-xnr.ini texmf-dist/tex/generic/babel/locale/xog/babel-soga.tex texmf-dist/tex/generic/babel/locale/xog/babel-xog.ini + texmf-dist/tex/generic/babel/locale/xsa/babel-sabaean.tex + texmf-dist/tex/generic/babel/locale/xsa/babel-xsa.ini texmf-dist/tex/generic/babel/locale/yav/babel-yangben.tex texmf-dist/tex/generic/babel/locale/yav/babel-yav.ini texmf-dist/tex/generic/babel/locale/yi/babel-yi.ini @@ -28125,6 +28443,8 @@ runfiles size=1268 texmf-dist/tex/generic/babel/locale/yrl/babel-yrl.ini texmf-dist/tex/generic/babel/locale/yue/babel-cantonese.tex texmf-dist/tex/generic/babel/locale/yue/babel-yue.ini + texmf-dist/tex/generic/babel/locale/za/babel-za.ini + texmf-dist/tex/generic/babel/locale/za/babel-zhuang.tex texmf-dist/tex/generic/babel/locale/zgh/babel-standardmoroccantamazight.tex texmf-dist/tex/generic/babel/locale/zgh/babel-zgh.ini texmf-dist/tex/generic/babel/locale/zh/babel-chinese-hans-hk.tex @@ -28185,7 +28505,7 @@ catalogue-contact-repository https://github.com/latex3/babel catalogue-ctan /macros/latex/required/babel/base catalogue-license lppl1.3 catalogue-topics multilingual expl3 -catalogue-version 24.7 +catalogue-version 25.4 name babel-albanian category Package @@ -28515,7 +28835,7 @@ catalogue-version 1.3s name babel-french category Package -revision 71737 +revision 71907 shortdesc Babel contributed support for French longdesc The package, formerly known as frenchb, establishes French longdesc conventions in a document (or a subset of the conventions, if @@ -28538,7 +28858,7 @@ catalogue-contact-home http://daniel.flipo.free.fr/babel-french catalogue-ctan /macros/latex/contrib/babel-contrib/french catalogue-license lppl1.3c catalogue-topics french multilingual-addon -catalogue-version 3.6b +catalogue-version 3.6c name babel-friulan category Package @@ -28599,7 +28919,7 @@ catalogue-version 2.2 name babel-german category Package -revision 69506 +revision 73094 shortdesc Babel support for documents written in German longdesc This bundle is an extension to the babel package for longdesc multilingual typesetting. It provides all the necessary macros, @@ -28607,11 +28927,11 @@ longdesc definitions and settings to typeset German documents. The longdesc bundle includes support for the traditional and reformed German longdesc orthography as well as for the Austrian and Swiss varieties of longdesc German. -docfiles size=197 +docfiles size=198 texmf-dist/doc/generic/babel-german/README details="Readme" texmf-dist/doc/generic/babel-german/germanb.pdf details="Package documentation (traditional orthography)" texmf-dist/doc/generic/babel-german/ngermanb.pdf details="Package documentation (new orthography)" -srcfiles size=23 +srcfiles size=24 texmf-dist/source/generic/babel-german/german.ins texmf-dist/source/generic/babel-german/germanb.dtx texmf-dist/source/generic/babel-german/ngermanb.dtx @@ -28628,7 +28948,7 @@ catalogue-contact-repository https://github.com/jspitz/babel-german catalogue-ctan /macros/latex/contrib/babel-contrib/german catalogue-license lppl1.3 catalogue-topics german multilingual-addon -catalogue-version 2.14 +catalogue-version 2.15 name babel-greek category Package @@ -28802,20 +29122,20 @@ catalogue-version 1.0h name babel-italian category Package -revision 69298 +revision 72520 shortdesc Babel support for Italian text longdesc The package provides language definitions for use in babel. docfiles size=125 texmf-dist/doc/generic/babel-italian/README.txt details="Readme" texmf-dist/doc/generic/babel-italian/italian.pdf details="Package documentation" -srcfiles size=20 +srcfiles size=21 texmf-dist/source/generic/babel-italian/italian.dtx runfiles size=3 texmf-dist/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.5.00 +catalogue-version 1.5.01 name babel-japanese category Package @@ -29402,7 +29722,7 @@ catalogue-version 1.4 name babel-welsh category Package -revision 71109 +revision 73855 shortdesc Babel support for Welsh longdesc The package provides the language definition file for Welsh. longdesc (Mostly Welsh-language versions of the standard names in a @@ -29418,7 +29738,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/babel-contrib/welsh catalogue-license lppl1.3 catalogue-topics welsh multilingual-addon -catalogue-version 1.1b +catalogue-version 1.1c name babelbib category Package @@ -29616,13 +29936,13 @@ catalogue-version 2.1 name bangorcsthesis category Package -revision 61770 +revision 73173 shortdesc Typeset a thesis at Bangor University 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. -docfiles size=75 +docfiles size=76 texmf-dist/doc/latex/bangorcsthesis/README details="Readme" texmf-dist/doc/latex/bangorcsthesis/bangorcsthesis.pdf details="Package documentation" srcfiles size=65 @@ -29633,7 +29953,7 @@ runfiles size=61 catalogue-ctan /macros/latex/contrib/bangorcsthesis catalogue-license lppl1.3 catalogue-topics dissertation class -catalogue-version 1.5.5 +catalogue-version 1.5.6 name bangorexam category Package @@ -30135,10 +30455,9 @@ catalogue-license lppl1.3 catalogue-topics arithmetic calculation catalogue-version 1.1 -name baskervald +name baskervaldadf category Package -revision 19490 -catalogue baskervaldadf +revision 72484 shortdesc Baskervald ADF fonts collection with TeX/LaTeX support longdesc Baskervald ADF is a serif family with lining figures designed longdesc as a substitute for Baskerville. The family currently includes @@ -30151,105 +30470,119 @@ longdesc "standard" or default characters while the other supports longdesc additional ligatures. The included package files provide access longdesc to these features in LaTeX. execute addMap ybv.map -docfiles size=76 - texmf-dist/doc/fonts/baskervald/COPYING - texmf-dist/doc/fonts/baskervald/NOTICE.txt - texmf-dist/doc/fonts/baskervald/README details="Readme" - texmf-dist/doc/fonts/baskervald/baskervaldadf.pdf details="Package documentation" - texmf-dist/doc/fonts/baskervald/baskervaldadf.tex - texmf-dist/doc/fonts/baskervald/manifest.txt -srcfiles size=25 - texmf-dist/source/fonts/baskervald/reglyph-ybv.tex - texmf-dist/source/fonts/baskervald/supp-ybv.etx - texmf-dist/source/fonts/baskervald/t1-baskervald-lig.etx - texmf-dist/source/fonts/baskervald/t1-baskervald.etx - texmf-dist/source/fonts/baskervald/ts1-baskervald.etx - texmf-dist/source/fonts/baskervald/ybv-drv.tex - texmf-dist/source/fonts/baskervald/ybv-map.tex -runfiles size=274 - texmf-dist/fonts/afm/arkandis/baskervald/ybvb8a.afm - texmf-dist/fonts/afm/arkandis/baskervald/ybvbi8a.afm - texmf-dist/fonts/afm/arkandis/baskervald/ybvh8a.afm - texmf-dist/fonts/afm/arkandis/baskervald/ybvho8a.afm - texmf-dist/fonts/afm/arkandis/baskervald/ybvr8a.afm - texmf-dist/fonts/afm/arkandis/baskervald/ybvri8a.afm - texmf-dist/fonts/enc/dvips/baskervald/supp-ybv.enc - texmf-dist/fonts/map/dvips/baskervald/ybv.map - texmf-dist/fonts/tfm/arkandis/baskervald/ybvb8c.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvb8r.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvb8s.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvb8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvbi8c.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvbi8r.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvbi8s.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvbi8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvbiw8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvbw8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvh8c.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvh8r.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvh8s.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvh8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvho8c.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvho8r.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvho8s.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvho8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvhow8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvhw8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvr8c.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvr8r.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvr8s.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvr8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvri8c.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvri8r.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvri8s.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvri8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvriw8t.tfm - texmf-dist/fonts/tfm/arkandis/baskervald/ybvrw8t.tfm - texmf-dist/fonts/type1/arkandis/baskervald/ybvb8a.pfb - texmf-dist/fonts/type1/arkandis/baskervald/ybvb8a.pfm - texmf-dist/fonts/type1/arkandis/baskervald/ybvbi8a.pfb - texmf-dist/fonts/type1/arkandis/baskervald/ybvbi8a.pfm - texmf-dist/fonts/type1/arkandis/baskervald/ybvh8a.pfb - texmf-dist/fonts/type1/arkandis/baskervald/ybvh8a.pfm - texmf-dist/fonts/type1/arkandis/baskervald/ybvho8a.pfb - texmf-dist/fonts/type1/arkandis/baskervald/ybvho8a.pfm - texmf-dist/fonts/type1/arkandis/baskervald/ybvr8a.pfb - texmf-dist/fonts/type1/arkandis/baskervald/ybvr8a.pfm - texmf-dist/fonts/type1/arkandis/baskervald/ybvri8a.pfb - texmf-dist/fonts/type1/arkandis/baskervald/ybvri8a.pfm - texmf-dist/fonts/vf/arkandis/baskervald/ybvb8c.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvb8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvbi8c.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvbi8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvbiw8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvbw8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvh8c.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvh8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvho8c.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvho8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvhow8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvhw8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvr8c.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvr8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvri8c.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvri8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvriw8t.vf - texmf-dist/fonts/vf/arkandis/baskervald/ybvrw8t.vf - texmf-dist/tex/latex/baskervald/baskervald.sty - texmf-dist/tex/latex/baskervald/t1ybv.fd - texmf-dist/tex/latex/baskervald/t1ybvw.fd - texmf-dist/tex/latex/baskervald/ts1ybv.fd - texmf-dist/tex/latex/baskervald/ts1ybvw.fd +docfiles size=361 + texmf-dist/doc/fonts/baskervaldadf/COPYING + texmf-dist/doc/fonts/baskervaldadf/NOTICE.txt + texmf-dist/doc/fonts/baskervaldadf/README.md details="Readme" + texmf-dist/doc/fonts/baskervaldadf/baskervald-ybv-example.pdf + texmf-dist/doc/fonts/baskervaldadf/baskervald-ybv-example.tex + texmf-dist/doc/fonts/baskervaldadf/baskervaldadf-build.pdf + texmf-dist/doc/fonts/baskervaldadf/baskervaldadf-tables.pdf + texmf-dist/doc/fonts/baskervaldadf/baskervaldadf-tables.tex + texmf-dist/doc/fonts/baskervaldadf/baskervaldadf.pdf details="Package documentation" + texmf-dist/doc/fonts/baskervaldadf/manifest.txt + texmf-dist/doc/fonts/baskervaldadf/reglyph-ybv.tex + texmf-dist/doc/fonts/baskervaldadf/ybv-drv.tex + texmf-dist/doc/fonts/baskervaldadf/ybv-map.tex +srcfiles size=53 + texmf-dist/source/fonts/baskervaldadf/baskervaldadf-build.dtx + texmf-dist/source/fonts/baskervaldadf/baskervaldadf.dtx + texmf-dist/source/fonts/baskervaldadf/baskervaldadf.ins + texmf-dist/source/fonts/baskervaldadf/supp-ybv.etx + texmf-dist/source/fonts/baskervaldadf/t1-baskervald-lig.etx + texmf-dist/source/fonts/baskervaldadf/t1-baskervald.etx + texmf-dist/source/fonts/baskervaldadf/ts1-baskervald.etx +runfiles size=280 + texmf-dist/fonts/afm/public/baskervaldadf/ybvb8a.afm + texmf-dist/fonts/afm/public/baskervaldadf/ybvbi8a.afm + texmf-dist/fonts/afm/public/baskervaldadf/ybvh8a.afm + texmf-dist/fonts/afm/public/baskervaldadf/ybvho8a.afm + texmf-dist/fonts/afm/public/baskervaldadf/ybvr8a.afm + texmf-dist/fonts/afm/public/baskervaldadf/ybvri8a.afm + texmf-dist/fonts/enc/dvips/baskervaldadf/supp-ybv.enc + texmf-dist/fonts/map/dvips/baskervaldadf/ybv.map + texmf-dist/fonts/tfm/public/baskervaldadf/ybvb8c.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvb8r.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvb8s.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvb8sr.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvb8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvbi8c.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvbi8r.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvbi8s.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvbi8sr.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvbi8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvbiw8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvbw8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvh8c.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvh8r.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvh8s.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvh8sr.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvh8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvho8c.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvho8r.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvho8s.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvho8sr.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvho8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvhow8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvhw8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvr8c.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvr8r.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvr8s.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvr8sr.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvr8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvri8c.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvri8r.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvri8s.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvri8sr.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvri8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvriw8t.tfm + texmf-dist/fonts/tfm/public/baskervaldadf/ybvrw8t.tfm + texmf-dist/fonts/type1/public/baskervaldadf/ybvb8a.pfb + texmf-dist/fonts/type1/public/baskervaldadf/ybvb8a.pfm + texmf-dist/fonts/type1/public/baskervaldadf/ybvbi8a.pfb + texmf-dist/fonts/type1/public/baskervaldadf/ybvbi8a.pfm + texmf-dist/fonts/type1/public/baskervaldadf/ybvh8a.pfb + texmf-dist/fonts/type1/public/baskervaldadf/ybvh8a.pfm + texmf-dist/fonts/type1/public/baskervaldadf/ybvho8a.pfb + texmf-dist/fonts/type1/public/baskervaldadf/ybvho8a.pfm + texmf-dist/fonts/type1/public/baskervaldadf/ybvr8a.pfb + texmf-dist/fonts/type1/public/baskervaldadf/ybvr8a.pfm + texmf-dist/fonts/type1/public/baskervaldadf/ybvri8a.pfb + texmf-dist/fonts/type1/public/baskervaldadf/ybvri8a.pfm + texmf-dist/fonts/vf/public/baskervaldadf/ybvb8c.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvb8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvbi8c.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvbi8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvbiw8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvbw8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvh8c.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvh8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvho8c.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvho8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvhow8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvhw8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvr8c.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvr8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvri8c.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvri8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvriw8t.vf + texmf-dist/fonts/vf/public/baskervaldadf/ybvrw8t.vf + texmf-dist/tex/latex/baskervaldadf/baskervald.sty + texmf-dist/tex/latex/baskervaldadf/t1ybv.fd + texmf-dist/tex/latex/baskervaldadf/t1ybvw.fd + texmf-dist/tex/latex/baskervaldadf/ts1ybv.fd + texmf-dist/tex/latex/baskervaldadf/ts1ybvw.fd catalogue-also baskervaldx catalogue-contact-home http://arkandis.tuxfamily.org/ +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/baskervaldadf -catalogue-license lppl +catalogue-license lppl1.3c gpl2 catalogue-topics font font-type1 font-serif -catalogue-version 1.016 +catalogue-version 1.1 name baskervaldx category Package -revision 71145 +revision 73362 shortdesc Extension and modification of BaskervaldADF with LaTeX support longdesc Extends and modifies the BaskervaldADF font (a Baskerville longdesc substitute) with more accented glyphs, with small caps and @@ -30263,7 +30596,7 @@ docfiles size=65 texmf-dist/doc/fonts/baskervaldx/baskervaldx-doc.pdf details="Package documentation" texmf-dist/doc/fonts/baskervaldx/baskervaldx-doc.tex texmf-dist/doc/fonts/baskervaldx/baskervaldxmatheg-crop.pdf -runfiles size=1347 +runfiles size=1350 texmf-dist/fonts/afm/public/baskervaldx/Baskervaldx-Bol.afm texmf-dist/fonts/afm/public/baskervaldx/Baskervaldx-BolIta.afm texmf-dist/fonts/afm/public/baskervaldx/Baskervaldx-Ita.afm @@ -30829,14 +31162,17 @@ runfiles size=1347 texmf-dist/tex/latex/baskervaldx/TS1Baskervaldx-TLF.fd texmf-dist/tex/latex/baskervaldx/TS1Baskervaldx-TOsF.fd texmf-dist/tex/latex/baskervaldx/baskervaldx.fontspec + texmf-dist/tex/latex/baskervaldx/ly1minbaskervaldx.fd + texmf-dist/tex/latex/baskervaldx/ot1minbaskervaldx.fd + texmf-dist/tex/latex/baskervaldx/t1minbaskervaldx.fd catalogue-ctan /fonts/baskervaldx catalogue-license gpl2+ lppl1.3 catalogue-topics font font-body font-proportional font-serif font-otf font-type1 font-supp font-t1enc -catalogue-version 1.078 +catalogue-version 1.08 name baskervillef category Package -revision 55475 +revision 73381 shortdesc Fry's Baskerville look-alike, with math support longdesc BaskervilleF is a fork from the Libre Baskerville fonts (Roman, longdesc Italic, Bold only) released under the OFL by Paolo Impallari @@ -30846,14 +31182,14 @@ longdesc usage, normally destined for production of pdf files. A bold longdesc italic style was added and mathematical support is offered as longdesc an option to newtxmath. execute addMap BaskervilleF.map -docfiles size=66 +docfiles size=67 texmf-dist/doc/fonts/baskervillef/FONTLOG.txt texmf-dist/doc/fonts/baskervillef/OFL-FAQ.txt texmf-dist/doc/fonts/baskervillef/OFL.txt texmf-dist/doc/fonts/baskervillef/README details="Readme" texmf-dist/doc/fonts/baskervillef/baskervillef-doc.pdf details="Package documentation" texmf-dist/doc/fonts/baskervillef/baskervillef-doc.tex -runfiles size=1689 +runfiles size=1692 texmf-dist/fonts/enc/dvips/baskervillef/zba_23ismr.enc texmf-dist/fonts/enc/dvips/baskervillef/zba_2hmbf5.enc texmf-dist/fonts/enc/dvips/baskervillef/zba_2j2bbt.enc @@ -31367,11 +31703,14 @@ runfiles size=1689 texmf-dist/tex/latex/baskervillef/TS1BaskervilleF-TOsF.fd texmf-dist/tex/latex/baskervillef/baskervillef.fontspec texmf-dist/tex/latex/baskervillef/baskervillef.sty + texmf-dist/tex/latex/baskervillef/ly1minbaskervillef.fd texmf-dist/tex/latex/baskervillef/omlzbami.fd + texmf-dist/tex/latex/baskervillef/ot1minbaskervillef.fd + texmf-dist/tex/latex/baskervillef/t1minbaskervillef.fd catalogue-ctan /fonts/baskervillef catalogue-license ofl lppl1.3 catalogue-topics font font-serif font-otf font-type1 font-t1enc -catalogue-version 1.051 +catalogue-version 1.052 name basque-book category Package @@ -31926,7 +32265,7 @@ catalogue-version 3.15 name beamer category Package -revision 69316 +revision 73735 shortdesc A LaTeX class for producing presentations and slides longdesc The beamer LaTeX class can be used for producing slides. The longdesc class works in both PostScript and direct PDF output modes, @@ -31955,7 +32294,7 @@ depend iftex depend pgf depend translator depend xcolor -docfiles size=1095 +docfiles size=1097 texmf-dist/doc/latex/beamer/AUTHORS.md texmf-dist/doc/latex/beamer/CHANGELOG.md texmf-dist/doc/latex/beamer/LICENSE.md @@ -32028,7 +32367,7 @@ docfiles size=1095 texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.tex texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.tex texmf-dist/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.fr.tex -runfiles size=256 +runfiles size=257 texmf-dist/tex/latex/beamer/beamer.cls texmf-dist/tex/latex/beamer/beamerarticle.sty texmf-dist/tex/latex/beamer/beamerbasearticle.sty @@ -32163,7 +32502,7 @@ 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.71 +catalogue-version 3.72 name beamer-fuberlin category Package @@ -32283,7 +32622,7 @@ catalogue-version 0.2 name beamer2thesis category Package -revision 27539 +revision 72949 shortdesc Thesis presentations using beamer longdesc The package specifies a beamer theme for presenting a thesis. docfiles size=99 @@ -32305,7 +32644,8 @@ runfiles size=88 texmf-dist/tex/latex/beamer2thesis/beamerouterthemetorinoth.sty texmf-dist/tex/latex/beamer2thesis/beamerthemeTorinoTh.sty texmf-dist/tex/latex/beamer2thesis/logopolito.jpg -catalogue-contact-home http://claudiofiandrino.altervista.org/latex_projects.html +catalogue-contact-home https://cfiandra.github.io/Beamer2Thesis/ +catalogue-contact-repository https://github.com/cfiandra/Beamer2Thesis catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer2thesis catalogue-license lppl catalogue-topics dissertation presentation @@ -32721,23 +33061,77 @@ catalogue-license gpl3 catalogue-topics presentation catalogue-version 3.4.0 +name beamertheme-gotham +category Package +revision 73931 +shortdesc A versatile and extendable beamer theme based on Metropolis +longdesc This package provides a modern, minimal-ish, versatile and +longdesc extendable yet robust Beamer theme using LaTeX3 with some +longdesc gathered or borrowed lines of code. It uses the l3build system +longdesc to both build and verify (Test-Driven Development) the +longdesc delivered code. "Gotham" tries to bring higher flexibility +longdesc thanks to LaTeX3 implementation on top of the good-looking +longdesc Metropolis theme. +docfiles size=815 + texmf-dist/doc/latex/beamertheme-gotham/MANIFEST.md + texmf-dist/doc/latex/beamertheme-gotham/README.md details="Readme" + texmf-dist/doc/latex/beamertheme-gotham/ctan.ann + texmf-dist/doc/latex/beamertheme-gotham/ctan.note + texmf-dist/doc/latex/beamertheme-gotham/gotham-blueprint.pdf + texmf-dist/doc/latex/beamertheme-gotham/gotham-dev-impl.pdf + texmf-dist/doc/latex/beamertheme-gotham/gotham-dev-impl.tex + texmf-dist/doc/latex/beamertheme-gotham/gotham-doc.pdf details="User manual" + texmf-dist/doc/latex/beamertheme-gotham/gotham-doc.tex + texmf-dist/doc/latex/beamertheme-gotham/gotham-example169transp.pdf details="Example of use (transparent)" + texmf-dist/doc/latex/beamertheme-gotham/gotham-example169transp.tex + texmf-dist/doc/latex/beamertheme-gotham/gotham-example43dark.pdf details="Example of use (dark)" + texmf-dist/doc/latex/beamertheme-gotham/gotham-example43dark.tex + texmf-dist/doc/latex/beamertheme-gotham/gotham-exampleSimple.pdf details="Example of use (simple)" + texmf-dist/doc/latex/beamertheme-gotham/gotham-exampleSimple.tex + texmf-dist/doc/latex/beamertheme-gotham/gotham-layout.pdf + texmf-dist/doc/latex/beamertheme-gotham/gotham-logo.pdf + texmf-dist/doc/latex/beamertheme-gotham/gotham-safetybox.pdf + texmf-dist/doc/latex/beamertheme-gotham/gotham-user-cmds.pdf + texmf-dist/doc/latex/beamertheme-gotham/gotham-user-cmds.tex + texmf-dist/doc/latex/beamertheme-gotham/gotham.pdf details="Complete package documentation" + texmf-dist/doc/latex/beamertheme-gotham/section-Beamer.tex + texmf-dist/doc/latex/beamertheme-gotham/section-Conclusion.tex + texmf-dist/doc/latex/beamertheme-gotham/section-Gotham.tex +srcfiles size=83 + texmf-dist/source/latex/beamertheme-gotham/gotham.dtx + texmf-dist/source/latex/beamertheme-gotham/gotham.ins +runfiles size=45 + texmf-dist/tex/latex/beamertheme-gotham/beamercolorthemegotham.sty + texmf-dist/tex/latex/beamertheme-gotham/beamerfontthemegotham.sty + texmf-dist/tex/latex/beamertheme-gotham/beamerinnerthemegotham.sty + texmf-dist/tex/latex/beamertheme-gotham/beamerouterthemegotham.sty + texmf-dist/tex/latex/beamertheme-gotham/beamerthemegotham.sty +catalogue-contact-home https://gitlab.com/RomainNOEL/beamertheme-gotham/ +catalogue-contact-repository https://gitlab.com/RomainNOEL/beamertheme-gotham/ +catalogue-contact-support https://gitlab.com/RomainNOEL/beamertheme-gotham/issues +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-gotham +catalogue-license lppl1.3c cc-by-sa-4 +catalogue-topics presentation expl3 +catalogue-version 1.2.1.c + name beamertheme-light category Package -revision 49867 +revision 73158 shortdesc A minimal beamer style longdesc The LaTeX package beamertheme-light provides an aesthetic and longdesc minimal beamer style by redefining colors and fonts. -docfiles size=26 +docfiles size=15 texmf-dist/doc/latex/beamertheme-light/README details="Readme" texmf-dist/doc/latex/beamertheme-light/beamertheme-light-example.pdf details="Example of use" texmf-dist/doc/latex/beamertheme-light/beamertheme-light-example.tex -runfiles size=2 +runfiles size=3 texmf-dist/tex/latex/beamertheme-light/beamertheme-light.sty + texmf-dist/tex/latex/beamertheme-light/beamerthemelight.sty catalogue-also beamertheme-focus catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-light catalogue-license gpl3 catalogue-topics presentation -catalogue-version 1.0 +catalogue-version 1.2 name beamertheme-metropolis category Package @@ -32776,6 +33170,36 @@ catalogue-license other-free catalogue-topics presentation catalogue-version 1.2 +name beamertheme-mirage +category Package +revision 73516 +shortdesc A beamer theme with dark and light colour schemes +longdesc A beamer theme inspired by the album art of Zhou Shen's song +longdesc Mirage, with a default dark and alternative light mode. Sample +longdesc .tex files for beamer presentations and posters are provided. +docfiles size=397 + texmf-dist/doc/latex/beamertheme-mirage/LICENSE + texmf-dist/doc/latex/beamertheme-mirage/README.md details="Readme" + texmf-dist/doc/latex/beamertheme-mirage/beamertheme-mirage-doc.pdf details="Package documentation" language="en,zh" + texmf-dist/doc/latex/beamertheme-mirage/beamertheme-mirage-doc.tex + texmf-dist/doc/latex/beamertheme-mirage/mirage-beamer-en.pdf details="Example of the beamer theme (English)" + texmf-dist/doc/latex/beamertheme-mirage/mirage-beamer-en.tex + texmf-dist/doc/latex/beamertheme-mirage/mirage-beamer-zh.pdf details="Example of the beamer theme (Chinese)" language="zh" + texmf-dist/doc/latex/beamertheme-mirage/mirage-beamer-zh.tex + texmf-dist/doc/latex/beamertheme-mirage/mirage-poster-en.pdf details="Example of the poster theme (English)" + texmf-dist/doc/latex/beamertheme-mirage/mirage-poster-en.tex + texmf-dist/doc/latex/beamertheme-mirage/mirage-poster-zh.pdf details="Example of the poster theme (Chinese)" language="zh" + texmf-dist/doc/latex/beamertheme-mirage/mirage-poster-zh.tex + texmf-dist/doc/latex/beamertheme-mirage/miragesup.png + texmf-dist/doc/latex/beamertheme-mirage/sample-refs.bib +runfiles size=2 + texmf-dist/tex/latex/beamertheme-mirage/beamerthemeMirage.sty +catalogue-contact-repository https://github.com/liantze/beamerthemeMirage +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-mirage +catalogue-license lppl1.3c +catalogue-topics presentation +catalogue-version 1.1.1 + name beamertheme-npbt category Package revision 54512 @@ -32876,26 +33300,26 @@ catalogue-version 2.0.0 name beamertheme-rainbow category Package -revision 71110 +revision 72864 shortdesc A beamer colour theme which alternates theme colours on every frame longdesc This package provides a beamer colour theme which alternates longdesc theme colours on every frame. depend beamer depend tools -docfiles size=45 +docfiles size=50 texmf-dist/doc/latex/beamertheme-rainbow/DEPENDS.txt texmf-dist/doc/latex/beamertheme-rainbow/README.md details="Readme" + texmf-dist/doc/latex/beamertheme-rainbow/beamertheme-rainbow-doc-settings.sty texmf-dist/doc/latex/beamertheme-rainbow/beamertheme-rainbow-doc.pdf details="Package documentation" texmf-dist/doc/latex/beamertheme-rainbow/beamertheme-rainbow-doc.tex -runfiles size=3 +runfiles size=1 texmf-dist/tex/latex/beamertheme-rainbow/beamercolorthemerainbow.sty - texmf-dist/tex/latex/beamertheme-rainbow/beamertheme-rainbow-doc-settings.sty catalogue-contact-repository https://github.com/samcarter/beamertheme-rainbow catalogue-contact-support https://github.com/samcarter/beamertheme-rainbow/issues catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-rainbow catalogue-license lppl1.3c catalogue-topics presentation -catalogue-version 0.2 +catalogue-version 1.0 name beamertheme-saintpetersburg category Package @@ -32935,54 +33359,61 @@ catalogue-topics presentation name beamertheme-simpledarkblue category Package -revision 60061 +revision 73454 shortdesc Template for a simple presentation -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. -docfiles size=15 +longdesc This package provides a simple and clear LaTeX template for +longdesc creating professional presentations. Featuring dark blue as its +longdesc primary color, the theme prioritizes clarity and readability, +longdesc making it an excellent choice for researchers, educators, and +longdesc students. +docfiles size=37 texmf-dist/doc/latex/beamertheme-simpledarkblue/LICENSE texmf-dist/doc/latex/beamertheme-simpledarkblue/README.md details="Readme" texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.pdf details="Example of use" texmf-dist/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.tex -runfiles size=3 + texmf-dist/doc/latex/beamertheme-simpledarkblue/reference.bib +runfiles size=4 texmf-dist/tex/latex/beamertheme-simpledarkblue/beamercolorthemeSimpleDarkBlue.sty texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerfontthemeSimpleDarkBlue.sty + texmf-dist/tex/latex/beamertheme-simpledarkblue/beamerinnerthemeSimpleDarkBlue.sty texmf-dist/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-contact-bugs https://github.com/pm25/SimpleDarkBlue-BeamerTheme/issues +catalogue-contact-development https://pm25.github.io +catalogue-contact-repository https://github.com/pm25/SimpleDarkBlue-BeamerTheme catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-simpledarkblue catalogue-license pd catalogue-topics presentation +catalogue-version 1.1 name beamertheme-simpleplus category Package -revision 64770 +revision 73362 shortdesc A simple and clean theme for LaTeX beamer longdesc This package provides a simple and clean theme for LaTeX longdesc Beamer. It can be used for academic and scientific longdesc presentations. -docfiles size=14 +docfiles size=33 texmf-dist/doc/latex/beamertheme-simpleplus/LICENSE texmf-dist/doc/latex/beamertheme-simpleplus/README.md details="Readme" texmf-dist/doc/latex/beamertheme-simpleplus/beamertheme-simpleplus-sample.pdf details="Example of use" texmf-dist/doc/latex/beamertheme-simpleplus/beamertheme-simpleplus-sample.tex + texmf-dist/doc/latex/beamertheme-simpleplus/reference.bib runfiles size=4 texmf-dist/tex/latex/beamertheme-simpleplus/beamercolorthemeSimplePlus.sty texmf-dist/tex/latex/beamertheme-simpleplus/beamerfontthemeSimplePlus.sty texmf-dist/tex/latex/beamertheme-simpleplus/beamerinnerthemeSimplePlus.sty texmf-dist/tex/latex/beamertheme-simpleplus/beamerthemeSimplePlus.sty -catalogue-contact-bugs https://github.com/PM25/SimplePlus-BeamerTheme/issues +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-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 +catalogue-version 1.1 name beamertheme-tcolorbox category Package -revision 71124 +revision 73705 shortdesc A beamer inner theme which reproduces standard beamer blocks using tcolorboxes longdesc This package provides an inner theme for beamer which longdesc reproduces standard beamer blocks using tcolorboxes. The look @@ -32992,7 +33423,7 @@ depend beamer depend tcolorbox depend tikzfill depend tools -docfiles size=50 +docfiles size=51 texmf-dist/doc/latex/beamertheme-tcolorbox/DEPENDS.txt texmf-dist/doc/latex/beamertheme-tcolorbox/README.md details="Readme" texmf-dist/doc/latex/beamertheme-tcolorbox/beamertheme-tcolorbox-doc-settings.sty @@ -33005,7 +33436,7 @@ catalogue-contact-support https://github.com/samcarter/beamertheme-tcolorbox/iss catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-tcolorbox catalogue-license lppl1.3c catalogue-topics presentation -catalogue-version 0.7 +catalogue-version 0.9 name beamertheme-trigon category Package @@ -33114,6 +33545,39 @@ catalogue-license lppl1.3 catalogue-topics presentation catalogue-version 1.3 +name beamerthemecelestia +category Package +revision 73370 +shortdesc A modern and elegant Beamer theme +longdesc A modern and elegant Beamer theme designed for academic and +longdesc professional presentations. It offers customizable footer +longdesc styles (quarter-circle, full bar, classic), decorative elements +longdesc that can be enabled/disabled, and enhanced typography options +longdesc for headers. The theme includes special layouts for code +longdesc listings, section pages, and standout frames. Color scheme can +longdesc be customized through theme options, with support for both main +longdesc and accent colors. The typography system supports both serif +longdesc and sans-serif variants, and provides flexible font styling +longdesc across different elements. Focused on readability and visual +longdesc appeal, Celestia offers a clean and professional look for +longdesc presentations. +docfiles size=166 + texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.pdf details="Example of use (French)" language="fr" + texmf-dist/doc/latex/beamerthemecelestia/Celestia-fr.tex + texmf-dist/doc/latex/beamerthemecelestia/Celestia.pdf details="Example of use (English)" + texmf-dist/doc/latex/beamerthemecelestia/Celestia.tex + texmf-dist/doc/latex/beamerthemecelestia/README.md details="Readme" + texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.pdf details="Package documentation (French)" language="fr" + texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia-fr.tex + texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.pdf details="Package documentation (English)" + texmf-dist/doc/latex/beamerthemecelestia/beamerthemeCelestia.tex +runfiles size=10 + texmf-dist/tex/latex/beamerthemecelestia/beamerthemeCelestia.sty +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemecelestia +catalogue-license lppl1.3c +catalogue-topics presentation +catalogue-version 1.0.0 + name beamerthemeconcrete category Package revision 69528 @@ -33237,6 +33701,31 @@ catalogue-license lppl1.3c catalogue-topics presentation catalogue-version 0.2.0 +name beamertools +category Package +revision 73371 +shortdesc A collection of programming tools for beamer +longdesc This packages provides a collection of programming tools for +longdesc beamer. Currently, it provides the control sequence +longdesc \redefbeamertemplate for redefining a predefined beamer +longdesc template. +docfiles size=48 + texmf-dist/doc/latex/beamertools/README details="Readme" + texmf-dist/doc/latex/beamertools/beamertools.pdf details="Package documentation" +srcfiles size=4 + texmf-dist/source/latex/beamertools/beamertools.dtx + texmf-dist/source/latex/beamertools/beamertools.ins +runfiles size=1 + texmf-dist/tex/latex/beamertools/beamertools.sty +catalogue-contact-announce https://github.com/xepersian/beamertools/discussions/categories/announcements +catalogue-contact-bugs https://github.com/xepersian/beamertools/issues +catalogue-contact-repository https://github.com/xepersian/beamertools +catalogue-contact-support https://github.com/xepersian/beamertools/discussions +catalogue-ctan /macros/latex/contrib/beamertools +catalogue-license lppl1.3c +catalogue-topics macro-supp presentation +catalogue-version 0.1 + name bearwear category Package revision 54826 @@ -33385,13 +33874,13 @@ catalogue-topics book-pub class doc-templ expl3 name beebe category Package -revision 71712 +revision 72450 catalogue biblio shortdesc A collection of bibliographies 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. -runfiles size=2283 +runfiles size=2291 texmf-dist/bibtex/bib/beebe/epodd.bib texmf-dist/bibtex/bib/beebe/font.bib texmf-dist/bibtex/bib/beebe/printing-history.bib @@ -33681,28 +34170,31 @@ catalogue-topics font font-serif font-sans font-proportional font-mono font-type name berenisadf category Package -revision 32215 +revision 72484 shortdesc Berenis ADF fonts and TeX/LaTeX support longdesc The bundle provides the BerenisADF Pro font collection, in longdesc OpenType and PostScript Type 1 formats, together with support longdesc files to use the fonts in TeXnANSI (LY1) and LaTeX standard T1 longdesc and TS1 encodings. execute addMap ybd.map -docfiles size=118 +docfiles size=630 texmf-dist/doc/fonts/berenisadf/COPYING - texmf-dist/doc/fonts/berenisadf/COPYING.unix - texmf-dist/doc/fonts/berenisadf/Makefile.source texmf-dist/doc/fonts/berenisadf/NOTICE.txt - texmf-dist/doc/fonts/berenisadf/README.doc + texmf-dist/doc/fonts/berenisadf/README.md details="Readme" + texmf-dist/doc/fonts/berenisadf/berenisadf-tables.pdf + texmf-dist/doc/fonts/berenisadf/berenisadf-tables.tex texmf-dist/doc/fonts/berenisadf/berenisadf.pdf details="Package documentation" - texmf-dist/doc/fonts/berenisadf/berenisadf.tex - texmf-dist/doc/fonts/berenisadf/cfr.gwneud.cyhoeddus texmf-dist/doc/fonts/berenisadf/ff-ybd.pe texmf-dist/doc/fonts/berenisadf/manifest.txt texmf-dist/doc/fonts/berenisadf/ybd-8t.lig texmf-dist/doc/fonts/berenisadf/ybd-8y.lig + texmf-dist/doc/fonts/berenisadf/ybd-encs.tex texmf-dist/doc/fonts/berenisadf/ybd.nam -runfiles size=1517 +srcfiles size=76 + texmf-dist/source/fonts/berenisadf/Makefile.make + texmf-dist/source/fonts/berenisadf/berenisadf.dtx + texmf-dist/source/fonts/berenisadf/berenisadf.ins +runfiles size=1623 texmf-dist/fonts/afm/arkandis/berenisadf/ybdb.afm texmf-dist/fonts/afm/arkandis/berenisadf/ybdbc.afm texmf-dist/fonts/afm/arkandis/berenisadf/ybdbci.afm @@ -33926,6 +34418,13 @@ runfiles size=1517 texmf-dist/fonts/type1/arkandis/berenisadf/ybdrc.pfb texmf-dist/fonts/type1/arkandis/berenisadf/ybdrci.pfb texmf-dist/fonts/type1/arkandis/berenisadf/ybdri.pfb + texmf-dist/fonts/type1/arkandis/berenisadf/yrdd8a.pfb + texmf-dist/fonts/type1/arkandis/berenisadf/yrddc8a.pfb + texmf-dist/fonts/type1/arkandis/berenisadf/yrddi8a.pfb + texmf-dist/fonts/type1/arkandis/berenisadf/yrdr8a.pfb + texmf-dist/fonts/type1/arkandis/berenisadf/yrdrc8a.pfb + texmf-dist/fonts/type1/arkandis/berenisadf/yrdri8a.pfb + texmf-dist/fonts/type1/arkandis/berenisadf/yrdriw8a.pfb texmf-dist/tex/latex/berenisadf/berenis.sty texmf-dist/tex/latex/berenisadf/ly1ybd.fd texmf-dist/tex/latex/berenisadf/ly1ybd0.fd @@ -33948,11 +34447,16 @@ runfiles size=1517 texmf-dist/tex/latex/berenisadf/ts1ybd1.fd texmf-dist/tex/latex/berenisadf/ts1ybd2.fd texmf-dist/tex/latex/berenisadf/ts1ybd2j.fd + texmf-dist/tex/latex/berenisadf/ts1ybd2jw.fd + texmf-dist/tex/latex/berenisadf/ts1ybd2w.fd texmf-dist/tex/latex/berenisadf/ts1ybdj.fd + texmf-dist/tex/latex/berenisadf/ts1ybdjw.fd + texmf-dist/tex/latex/berenisadf/ts1ybdw.fd +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/berenisadf -catalogue-license other-free +catalogue-license lppl1.3c gpl2 catalogue-topics font font-serif font-type1 font-otf -catalogue-version 1.004 +catalogue-version 2.1 name besjournals category Package @@ -34148,7 +34652,7 @@ catalogue-version 1.1b name bezierplot category Package -revision 70723 +revision 72750 shortdesc Approximate smooth function graphs with cubic bezier splines for use with TikZ or MetaPost longdesc This package consists of a Lua program as well as a (Lua)LaTeX longdesc .sty file. Given a smooth function, bezierplot returns a smooth @@ -34158,7 +34662,7 @@ longdesc polynomial functions of degree [?] 3 and their inverses the longdesc approximation is exact (up to numeric precision). bezierplot longdesc also finds special points such as extreme points and inflection longdesc points and reduces the number of used points. -docfiles size=70 +docfiles size=71 texmf-dist/doc/lualatex/bezierplot/README details="Readme" texmf-dist/doc/lualatex/bezierplot/bezierplot-doc.pdf details="Package documentation" texmf-dist/doc/lualatex/bezierplot/bezierplot-doc.tex @@ -34169,7 +34673,7 @@ catalogue-contact-repository https://github.com/linusromer/bezierplot catalogue-ctan /macros/luatex/latex/bezierplot catalogue-license lppl1.3c catalogue-topics luatex use-lua graphics-plot graphics-plotfn -catalogue-version 1.5 +catalogue-version 1.6 name bfh-ci category Package @@ -34477,20 +34981,21 @@ catalogue-version 0.4 name bhcexam category Package -revision 64093 +revision 72638 shortdesc An exam class for mathematics teachers in China -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). -docfiles size=119 +longdesc BHCexam.cls is a LaTeX document class designed for typesetting +longdesc exams. It is currently used by the Mathcrowd Problem Database +longdesc to generate exam PDF files. The class supports the following +longdesc features: Support for configuring whether to display answers. +longdesc Ability to set whether the document is formatted in multiple +longdesc columns. Alignment customization options. Automatic alignment +longdesc of option lengths to a grid. Ability to adjust the width of +longdesc blank lines based on the length of fill-in-the-blank answers. +longdesc Option to display or hide scores for question groups. +longdesc Customizable answer space for each question. Ability to restart +longdesc numbering in question groups. Support for sub-questions and +longdesc nested sub-questions in short-answer questions. +docfiles size=110 texmf-dist/doc/xelatex/bhcexam/README-zh.md details="Readme (Chinese)" language="zh" texmf-dist/doc/xelatex/bhcexam/README.md details="Readme (English)" texmf-dist/doc/xelatex/bhcexam/examples/To7VxKXpZaOWO5Qq9qzeZGtlwYTwJ5KF.jpg @@ -34499,18 +35004,16 @@ docfiles size=119 texmf-dist/doc/xelatex/bhcexam/examples/example_teacher_paper.pdf details="Example of use (teacher paper)" language="zh" texmf-dist/doc/xelatex/bhcexam/examples/example_teacher_paper.tex texmf-dist/doc/xelatex/bhcexam/examples/logo.png - texmf-dist/doc/xelatex/bhcexam/examples/naive.pdf - texmf-dist/doc/xelatex/bhcexam/examples/naive.tex - texmf-dist/doc/xelatex/bhcexam/examples/qrcode.png -runfiles size=4 +runfiles size=3 texmf-dist/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-home https://lab.mathcrowd.cn/bhcexam 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 +catalogue-version 1.8 name bib-fr category Package @@ -34542,7 +35045,7 @@ catalogue-version 1.5 name bib2gls category Package -revision 69635 +revision 73766 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 @@ -34560,17 +35063,17 @@ longdesc containing definitions (\newglossaryentry etc.) to the .bib longdesc format required by bib2gls. depend bib2gls.ARCH depend glossaries-extra -docfiles size=2027 +docfiles size=2101 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/man/man1/datatool2bib.1 + texmf-dist/doc/man/man1/datatool2bib.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-extra-en.xml - texmf-dist/doc/support/bib2gls/bib2gls-extra-nl.xml texmf-dist/doc/support/bib2gls/bib2gls.pdf details="Package documentation" texmf-dist/doc/support/bib2gls/examples/animals.bib texmf-dist/doc/support/bib2gls/examples/bacteria.bib @@ -34638,23 +35141,29 @@ docfiles size=2027 texmf-dist/doc/support/bib2gls/examples/unaryoperators.bib texmf-dist/doc/support/bib2gls/examples/usergroups.bib texmf-dist/doc/support/bib2gls/examples/vegetables.bib -srcfiles size=946 - 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=563 +srcfiles size=1020 + texmf-dist/source/support/bib2gls/bib2gls-begin.tex + texmf-dist/source/support/bib2gls/bib2gls-cite.bib + texmf-dist/source/support/bib2gls/bib2gls-src.zip + texmf-dist/source/support/bib2gls/bib2gls-terms.bib + texmf-dist/source/support/bib2gls/bib2gls.bib + texmf-dist/source/support/bib2gls/bib2gls.pod + texmf-dist/source/support/bib2gls/bib2gls.tex + texmf-dist/source/support/bib2gls/convertgls2bib.pod + texmf-dist/source/support/bib2gls/datatool2bib.pod + texmf-dist/source/support/bib2gls/texparser-src.zip + texmf-dist/source/support/bib2gls/version.tex +runfiles size=630 texmf-dist/scripts/bib2gls/bib2gls.jar texmf-dist/scripts/bib2gls/bib2gls.sh + texmf-dist/scripts/bib2gls/bibglscommon.jar texmf-dist/scripts/bib2gls/convertgls2bib.jar texmf-dist/scripts/bib2gls/convertgls2bib.sh + texmf-dist/scripts/bib2gls/datatool2bib.jar + texmf-dist/scripts/bib2gls/datatool2bib.sh texmf-dist/scripts/bib2gls/resources/bib2gls-en.xml + texmf-dist/scripts/bib2gls/resources/bib2gls-extra-en.xml + texmf-dist/scripts/bib2gls/resources/bib2gls-extra-nl.xml texmf-dist/scripts/bib2gls/texparserlib.jar catalogue-contact-bugs https://github.com/nlct/bib2gls/issues catalogue-contact-home https://www.dickimaw-books.com/software/bib2gls/ @@ -34662,127 +35171,166 @@ catalogue-contact-repository https://github.com/nlct/bib2gls catalogue-ctan /support/bib2gls catalogue-license gpl3+ catalogue-topics bibtex-util glossary -catalogue-version 3.9 +catalogue-version 4.4 name bib2gls.aarch64-linux category Package -revision 46228 +revision 73132 shortdesc aarch64-linux files of bib2gls -binfiles arch=aarch64-linux size=2 +binfiles arch=aarch64-linux size=3 bin/aarch64-linux/bib2gls bin/aarch64-linux/convertgls2bib + bin/aarch64-linux/datatool2bib name bib2gls.amd64-freebsd category Package -revision 45266 +revision 73132 shortdesc amd64-freebsd files of bib2gls -binfiles arch=amd64-freebsd size=2 +binfiles arch=amd64-freebsd size=3 bin/amd64-freebsd/bib2gls bin/amd64-freebsd/convertgls2bib + bin/amd64-freebsd/datatool2bib name bib2gls.amd64-netbsd category Package -revision 45266 +revision 73132 shortdesc amd64-netbsd files of bib2gls -binfiles arch=amd64-netbsd size=2 +binfiles arch=amd64-netbsd size=3 bin/amd64-netbsd/bib2gls bin/amd64-netbsd/convertgls2bib + bin/amd64-netbsd/datatool2bib name bib2gls.armhf-linux category Package -revision 45266 +revision 73132 shortdesc armhf-linux files of bib2gls -binfiles arch=armhf-linux size=2 +binfiles arch=armhf-linux size=3 bin/armhf-linux/bib2gls bin/armhf-linux/convertgls2bib + bin/armhf-linux/datatool2bib name bib2gls.i386-freebsd category Package -revision 45266 +revision 73132 shortdesc i386-freebsd files of bib2gls -binfiles arch=i386-freebsd size=2 +binfiles arch=i386-freebsd size=3 bin/i386-freebsd/bib2gls bin/i386-freebsd/convertgls2bib + bin/i386-freebsd/datatool2bib name bib2gls.i386-linux category Package -revision 45266 +revision 73132 shortdesc i386-linux files of bib2gls -binfiles arch=i386-linux size=2 +binfiles arch=i386-linux size=3 bin/i386-linux/bib2gls bin/i386-linux/convertgls2bib + bin/i386-linux/datatool2bib name bib2gls.i386-netbsd category Package -revision 45266 +revision 73132 shortdesc i386-netbsd files of bib2gls -binfiles arch=i386-netbsd size=2 +binfiles arch=i386-netbsd size=3 bin/i386-netbsd/bib2gls bin/i386-netbsd/convertgls2bib + bin/i386-netbsd/datatool2bib name bib2gls.i386-solaris category Package -revision 45266 +revision 73132 shortdesc i386-solaris files of bib2gls -binfiles arch=i386-solaris size=2 +binfiles arch=i386-solaris size=3 bin/i386-solaris/bib2gls bin/i386-solaris/convertgls2bib + bin/i386-solaris/datatool2bib name bib2gls.universal-darwin category Package -revision 57908 +revision 73132 shortdesc universal-darwin files of bib2gls -binfiles arch=universal-darwin size=2 +binfiles arch=universal-darwin size=3 bin/universal-darwin/bib2gls bin/universal-darwin/convertgls2bib + bin/universal-darwin/datatool2bib name bib2gls.windows category Package -revision 65891 +revision 73151 shortdesc windows files of bib2gls -binfiles arch=windows size=4 +binfiles arch=windows size=6 bin/windows/bib2gls.exe bin/windows/convertgls2bib.exe + bin/windows/datatool2bib.exe name bib2gls.x86_64-cygwin category Package -revision 45266 +revision 73132 shortdesc x86_64-cygwin files of bib2gls -binfiles arch=x86_64-cygwin size=2 +binfiles arch=x86_64-cygwin size=3 bin/x86_64-cygwin/bib2gls bin/x86_64-cygwin/convertgls2bib + bin/x86_64-cygwin/datatool2bib name bib2gls.x86_64-darwinlegacy category Package -revision 45266 +revision 73132 shortdesc x86_64-darwinlegacy files of bib2gls -binfiles arch=x86_64-darwinlegacy size=2 +binfiles arch=x86_64-darwinlegacy size=3 bin/x86_64-darwinlegacy/bib2gls bin/x86_64-darwinlegacy/convertgls2bib + bin/x86_64-darwinlegacy/datatool2bib name bib2gls.x86_64-linux category Package -revision 45266 +revision 73132 shortdesc x86_64-linux files of bib2gls -binfiles arch=x86_64-linux size=2 +binfiles arch=x86_64-linux size=3 bin/x86_64-linux/bib2gls bin/x86_64-linux/convertgls2bib + bin/x86_64-linux/datatool2bib name bib2gls.x86_64-linuxmusl category Package -revision 46840 +revision 73132 shortdesc x86_64-linuxmusl files of bib2gls -binfiles arch=x86_64-linuxmusl size=2 +binfiles arch=x86_64-linuxmusl size=3 bin/x86_64-linuxmusl/bib2gls bin/x86_64-linuxmusl/convertgls2bib + bin/x86_64-linuxmusl/datatool2bib name bib2gls.x86_64-solaris category Package -revision 45266 +revision 73132 shortdesc x86_64-solaris files of bib2gls -binfiles arch=x86_64-solaris size=2 +binfiles arch=x86_64-solaris size=3 bin/x86_64-solaris/bib2gls bin/x86_64-solaris/convertgls2bib + bin/x86_64-solaris/datatool2bib + +name bib2qr +category Package +revision 71940 +shortdesc Cite BibTeX entries with QR codes +longdesc This package provides functionality to cite BibTeX entries with +longdesc QR codes for easy sharing and referencing. The target of the QR +longdesc code is the entry's digital object identifier (DOI), or URL if +longdesc no DOI exists. It is realised via the LaTeX packages biblatex +longdesc and qrcode. +docfiles size=126 + texmf-dist/doc/latex/bib2qr/README.md details="Readme" + texmf-dist/doc/latex/bib2qr/bib2qr.pdf details="Package documentation" +srcfiles size=7 + texmf-dist/source/latex/bib2qr/bib2qr.dtx + texmf-dist/source/latex/bib2qr/bib2qr.ins +runfiles size=1 + texmf-dist/tex/latex/bib2qr/bib2qr.sty +catalogue-contact-home https://codeberg.org/Cs137/bib2qr +catalogue-contact-repository https://codeberg.org/Cs137/bib2qr.git +catalogue-ctan /macros/latex/contrib/bib2qr +catalogue-license lppl1.3c +catalogue-topics qrcode biblatex +catalogue-version 0.2 name bibarts category Package @@ -34825,7 +35373,7 @@ catalogue-version 2.6 name bibcop category Package -revision 71186 +revision 73562 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 @@ -34836,7 +35384,7 @@ longdesc Windows. depend bibcop.ARCH depend iexec depend pgfopts -docfiles size=95 +docfiles size=76 texmf-dist/doc/bibtex/bibcop/DEPENDS.txt texmf-dist/doc/bibtex/bibcop/LICENSE.txt texmf-dist/doc/bibtex/bibcop/README.md details="Readme" @@ -34854,7 +35402,7 @@ 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.21 +catalogue-version 0.0.25 name bibcop.aarch64-linux category Package @@ -35627,11 +36175,11 @@ catalogue-version 3.20 name biblatex-abnt category Package -revision 49179 +revision 72565 shortdesc BibLaTeX style for Brazil's ABNT rules longdesc This package offers a BibLaTeX style for Brazil's ABNT longdesc (Brazilian Association of Technical Norms) rules. -docfiles size=256 +docfiles size=359 texmf-dist/doc/latex/biblatex-abnt/CHANGELOG.md texmf-dist/doc/latex/biblatex-abnt/NBR10520-2002.bib texmf-dist/doc/latex/biblatex-abnt/NBR10520-2002.tex @@ -35641,14 +36189,19 @@ docfiles size=256 texmf-dist/doc/latex/biblatex-abnt/NBR6023-2002.tex texmf-dist/doc/latex/biblatex-abnt/NBR6023-2002_reference.pdf texmf-dist/doc/latex/biblatex-abnt/NBR6023-2002_test.tex + texmf-dist/doc/latex/biblatex-abnt/NBR6023-2018.bib + texmf-dist/doc/latex/biblatex-abnt/NBR6023-2018.tex + texmf-dist/doc/latex/biblatex-abnt/NBR6023-2018_reference.pdf + texmf-dist/doc/latex/biblatex-abnt/NBR6023-2018_test.tex texmf-dist/doc/latex/biblatex-abnt/README.md details="Readme" language="pt-br" texmf-dist/doc/latex/biblatex-abnt/biblatex-abnt.bib texmf-dist/doc/latex/biblatex-abnt/biblatex-abnt.pdf details="Package documentation" language="pt-br" texmf-dist/doc/latex/biblatex-abnt/biblatex-abnt.tex + texmf-dist/doc/latex/biblatex-abnt/results.tex texmf-dist/doc/latex/biblatex-abnt/test.sh texmf-dist/doc/latex/biblatex-abnt/tests/README.md details="Readme" language="pt-br" texmf-dist/doc/latex/biblatex-abnt/texlive.sh -runfiles size=50 +runfiles size=56 texmf-dist/tex/latex/biblatex-abnt/abnt-ibid.bbx texmf-dist/tex/latex/biblatex-abnt/abnt-ibid.cbx texmf-dist/tex/latex/biblatex-abnt/abnt-numeric.bbx @@ -35662,6 +36215,9 @@ runfiles size=50 texmf-dist/tex/latex/biblatex-abnt/british-abnt.lbx texmf-dist/tex/latex/biblatex-abnt/canadian-abnt.lbx texmf-dist/tex/latex/biblatex-abnt/english-abnt.lbx + texmf-dist/tex/latex/biblatex-abnt/french-abnt.lbx + texmf-dist/tex/latex/biblatex-abnt/german-abnt.lbx + texmf-dist/tex/latex/biblatex-abnt/italian-abnt.lbx texmf-dist/tex/latex/biblatex-abnt/portuges-abnt.lbx texmf-dist/tex/latex/biblatex-abnt/portuguese-abnt.lbx texmf-dist/tex/latex/biblatex-abnt/spanish-abnt.lbx @@ -35670,7 +36226,51 @@ catalogue-contact-repository https://github.com/abntex/biblatex-abnt catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-abnt catalogue-license lppl1.3c catalogue-topics biblatex journalpub portuguese-br -catalogue-version 3.4 +catalogue-version 4.0 + +name biblatex-accursius +category Package +revision 72942 +shortdesc Citing features for Italian jurists +longdesc This style is primarily aimed at Italian legal jurists and +longdesc provides them with the ability to cite legal materials, such as +longdesc legislative acts, regulations, soft law, treaties and case law. +longdesc Additionally, the style codifies the most prevalent citation +longdesc practices amongst Italian legal scholars. Specifically, with +longdesc regard to the citation of legal materials, this style, instead +longdesc of developing the entry types @jurisdiction, @legal, and +longdesc @legislation, creates a new one: @itprov, which can describe a +longdesc wide range of legal sources. Furthermore, it creates a second +longdesc new entry type: @notetoprov, which is used specifically to cite +longdesc so-called "note a sentenza" (notes to judgement), which closely +longdesc mirrors @itprov, but is literature and, therefore, is intended +longdesc to have the same treatment as standard entry types. The +longdesc citation commands are the standard ones. The @itprov entry type +longdesc comprises the list institution to indicate which authority +longdesc adopted the cited act; the kindprov, nprov, provtitle (or +longdesc titleparties) fields to indicate the minimal 'ID' of the act +longdesc and many others. Finally, the entry type allows to specify +longdesc where the cited act was consulted, whether from an official +longdesc bulletin (the ofbull field), an official portal or a private +longdesc database (the ofportal field), or a journal or collection. +docfiles size=162 + texmf-dist/doc/latex/biblatex-accursius/README.md details="Readme" + texmf-dist/doc/latex/biblatex-accursius/accursius.bib + texmf-dist/doc/latex/biblatex-accursius/biblatex-accursius.lol + texmf-dist/doc/latex/biblatex-accursius/biblatex-accursius.pdf details="Package documentation" +srcfiles size=64 + texmf-dist/source/latex/biblatex-accursius/biblatex-accursius.dtx +runfiles size=23 + texmf-dist/tex/latex/biblatex-accursius/accursius.bbx + texmf-dist/tex/latex/biblatex-accursius/accursius.cbx + texmf-dist/tex/latex/biblatex-accursius/english-accursius.lbx + texmf-dist/tex/latex/biblatex-accursius/french-accursius.lbx + texmf-dist/tex/latex/biblatex-accursius/italian-accursius.lbx +catalogue-contact-repository https://github.com/francesco-contini/biblatex-accursius +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-accursius +catalogue-license lppl1.3 +catalogue-topics biblatex italian legal +catalogue-version 1.0 name biblatex-ajc2020unofficial category Package @@ -36644,6 +37244,40 @@ catalogue-license lppl1.3 catalogue-topics biblatex catalogue-version 1.2.1 +name biblatex-cse +category Package +revision 73262 +shortdesc Council of Science Editors (CSE) style file for BibLaTeX +longdesc This is a BibLaTeX style that implements the bibliography style +longdesc of the Council of Science Editors (CSE) for BibLaTeX. I did +longdesc this style file by request of a user of my LaTeX template +longdesc novathesis. He was quite thorough, double and triple checking +longdesc that the output was conforming to the requirements of his +longdesc University (Faculty of Veterinary from the University of +longdesc Lisbon). Although this biblatex-cse style served the +longdesc requirements from his University, there may still be some +longdesc unconformities to the CSE style. If you find any, please open +longdesc an issue in the project's page on GitHub or, even better, +longdesc submit a pull request. +docfiles size=40 + texmf-dist/doc/latex/biblatex-cse/README.md details="Readme" + texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.pdf details="Package documentation" + texmf-dist/doc/latex/biblatex-cse/biblatex-cse-doc.tex + texmf-dist/doc/latex/biblatex-cse/bibliography.bib +runfiles size=2 + texmf-dist/tex/latex/biblatex-cse/biblatex-cse.bbx + texmf-dist/tex/latex/biblatex-cse/biblatex-cse.cbx +catalogue-contact-announce https://github.com/joaomlourenco/biblatex-cse +catalogue-contact-bugs https://github.com/joaomlourenco/biblatex-cse/issues +catalogue-contact-development https://github.com/joaomlourenco/biblatex-cse +catalogue-contact-home https://github.com/joaomlourenco/biblatex-cse +catalogue-contact-repository https://github.com/joaomlourenco/biblatex-cse +catalogue-contact-support https://github.com/joaomlourenco/biblatex-cse/discussions +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-cse +catalogue-license lppl1.3c +catalogue-topics biblatex +catalogue-version 1.1.0 + name biblatex-cv category Package revision 59433 @@ -36724,7 +37358,7 @@ catalogue-version 1.7b name biblatex-enc category Package -revision 44627 +revision 73019 shortdesc BibLaTeX style for the Ecole nationale des chartes (Paris) longdesc This package provides a citation and bibliography style for use longdesc with BibLaTeX. It conforms to the bibliographic standards used @@ -36734,7 +37368,7 @@ longdesc The package was initially derived from historische-zeitschrift, longdesc with the necessary modifications. docfiles size=2 texmf-dist/doc/latex/biblatex-enc/README details="Readme" -runfiles size=13 +runfiles size=14 texmf-dist/tex/latex/biblatex-enc/enc.bbx texmf-dist/tex/latex/biblatex-enc/enc.cbx catalogue-contact-bugs https://github.com/Jean-Baptiste-Camps/biblatex-enc/issues @@ -36742,7 +37376,7 @@ catalogue-contact-repository https://github.com/Jean-Baptiste-Camps/biblatex-enc catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-enc catalogue-license lppl1.3 catalogue-topics biblatex french humanities journalpub -catalogue-version 1.0 +catalogue-version 1.1 name biblatex-ext category Package @@ -36896,14 +37530,14 @@ catalogue-version 1.7 name biblatex-gb7714-2015 category Package -revision 71329 +revision 72863 shortdesc A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users longdesc This package provides an implementation of the GBT7714-2015 longdesc bibliography style. This implementation follows the longdesc GBT7714-2015 standard and can be used by simply loading longdesc BibLaTeX with the appropriate option. A demonstration database longdesc is provided to show how to format input for the style. -docfiles size=558 +docfiles size=625 texmf-dist/doc/latex/biblatex-gb7714-2015/README.md details="Readme" texmf-dist/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015-preamble.tex texmf-dist/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf details="Package documentation (Chinese)" language="zh" @@ -36911,7 +37545,11 @@ docfiles size=558 texmf-dist/doc/latex/biblatex-gb7714-2015/example.bib texmf-dist/doc/latex/biblatex-gb7714-2015/gb7714texttobib.pl texmf-dist/doc/latex/biblatex-gb7714-2015/makeall.py -runfiles size=223 +runfiles size=250 + texmf-dist/tex/latex/biblatex-gb7714-2015/chinese-cajhss.bbx + texmf-dist/tex/latex/biblatex-gb7714-2015/chinese-cajhss.cbx + texmf-dist/tex/latex/biblatex-gb7714-2015/chinese-cajhssay.bbx + texmf-dist/tex/latex/biblatex-gb7714-2015/chinese-cajhssay.cbx texmf-dist/tex/latex/biblatex-gb7714-2015/chinese-css.bbx texmf-dist/tex/latex/biblatex-gb7714-2015/chinese-css.cbx texmf-dist/tex/latex/biblatex-gb7714-2015/chinese-erj.bbx @@ -36945,7 +37583,7 @@ catalogue-contact-repository https://github.com/hushidong/biblatex-gb7714-2015 catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gb7714-2015 catalogue-license lppl1.3c catalogue-topics biblatex chinese -catalogue-version 1.1r +catalogue-version 1.1s name biblatex-german-legal category Package @@ -37065,7 +37703,7 @@ catalogue-version 0.4 name biblatex-ieee category Package -revision 61243 +revision 73468 shortdesc IEEE style files for BibLaTeX longdesc This is a BibLaTeX style that implements the bibliography style longdesc of the IEEE for BibLaTeX. The implementation follows standard @@ -37075,23 +37713,24 @@ 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. -docfiles size=182 +docfiles size=183 texmf-dist/doc/latex/biblatex-ieee/README.md details="Readme" texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.pdf texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.tex texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee.bib texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee.pdf details="Package documentation" texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee.tex -runfiles size=10 +runfiles size=11 texmf-dist/tex/latex/biblatex-ieee/ieee-alphabetic.bbx texmf-dist/tex/latex/biblatex-ieee/ieee-alphabetic.cbx + texmf-dist/tex/latex/biblatex-ieee/ieee-comp.cbx texmf-dist/tex/latex/biblatex-ieee/ieee.bbx texmf-dist/tex/latex/biblatex-ieee/ieee.cbx texmf-dist/tex/latex/biblatex-ieee/magyar-ieee.lbx catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ieee catalogue-license lppl1.3c catalogue-topics biblatex journalpub -catalogue-version 1.3f +catalogue-version 1.4c name biblatex-ijsra category Package @@ -37240,7 +37879,7 @@ catalogue-version 0.7 name biblatex-lni category Package -revision 68755 +revision 73625 shortdesc LNI style for BibLaTeX longdesc BibLaTeX style for the Lecture Notes in Informatics, which is longdesc published by the Gesellschaft fur Informatik (GI e.V.). @@ -37263,7 +37902,7 @@ 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 -catalogue-version 0.6 +catalogue-version 0.7 name biblatex-luh-ipw category Package @@ -37856,7 +38495,7 @@ catalogue-version 1.9.0 name biblatex-oxref category Package -revision 68950 +revision 72164 shortdesc BibLaTeX styles inspired by the Oxford Guide to Style longdesc This bundle provides four BibLaTeX styles that implement (many longdesc of) the stipulations and examples provided by the 2014 New @@ -37871,7 +38510,7 @@ 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. -docfiles size=799 +docfiles size=809 texmf-dist/doc/latex/biblatex-oxref/README.md details="Readme" texmf-dist/doc/latex/biblatex-oxref/oxalph-doc.pdf details="Style documentation for oxalph" texmf-dist/doc/latex/biblatex-oxref/oxalph-doc.tex @@ -37883,11 +38522,11 @@ docfiles size=799 texmf-dist/doc/latex/biblatex-oxref/oxref.pdf details="Package documentation" texmf-dist/doc/latex/biblatex-oxref/oxyear-doc.pdf details="Style documentation for oxyear" texmf-dist/doc/latex/biblatex-oxref/oxyear-doc.tex -srcfiles size=128 +srcfiles size=134 texmf-dist/source/latex/biblatex-oxref/Makefile texmf-dist/source/latex/biblatex-oxref/oxref.dtx texmf-dist/source/latex/biblatex-oxref/oxref.ins -runfiles size=77 +runfiles size=81 texmf-dist/tex/latex/biblatex-oxref/american-oxref.lbx texmf-dist/tex/latex/biblatex-oxref/british-oxref.lbx texmf-dist/tex/latex/biblatex-oxref/english-oxref.lbx @@ -37922,13 +38561,14 @@ runfiles size=77 texmf-dist/tex/latex/biblatex-oxref/oxyear.bbx texmf-dist/tex/latex/biblatex-oxref/oxyear.cbx texmf-dist/tex/latex/biblatex-oxref/oxyear.dbx + texmf-dist/tex/latex/biblatex-oxref/polish-oxref.lbx texmf-dist/tex/latex/biblatex-oxref/spanish-oxref.lbx catalogue-contact-bugs https://github.com/alex-ball/biblatex-oxref/issues catalogue-contact-repository 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 3.2 +catalogue-version 3.3 name biblatex-philosophy category Package @@ -37969,7 +38609,7 @@ catalogue-version 1.9.8g name biblatex-phys category Package -revision 55643 +revision 71905 shortdesc A BibLaTeX implementation of the AIP and APS bibliography style longdesc The package provides an implementation of the bibliography longdesc styles of both the AIP and the APS for BibLaTeX. This @@ -37979,7 +38619,7 @@ longdesc \usepackage[style=phys]{biblatex} A demonstration database is longdesc provided to show how to format input for the style. Style longdesc options are provided to cover the minor formatting variations longdesc between the AIP and APS bibliography styles. -docfiles size=118 +docfiles size=126 texmf-dist/doc/latex/biblatex-phys/README.md details="Readme" texmf-dist/doc/latex/biblatex-phys/biblatex-phys.bib texmf-dist/doc/latex/biblatex-phys/biblatex-phys.pdf details="Package documentation" @@ -37991,11 +38631,11 @@ runfiles size=6 catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-phys catalogue-license lppl1.3 catalogue-topics physics biblatex -catalogue-version 1.1b +catalogue-version 1.1c name biblatex-publist category Package -revision 71686 +revision 72079 shortdesc BibLaTeX bibliography support for publication lists longdesc The package provides a BibLaTeX bibliography style file (*.bbx) longdesc for publication lists. The style file draws on BibLaTeX's @@ -38003,11 +38643,26 @@ 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. -docfiles size=124 +docfiles size=127 texmf-dist/doc/latex/biblatex-publist/README details="Readme" texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf details="Package documentation" texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex -runfiles size=20 +runfiles size=36 + texmf-dist/tex/latex/biblatex-publist/lbx/UKenglish-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/USenglish-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/american-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/australian-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/austrian-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/british-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/canadian-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/english-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/french-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/german-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/naustrian-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/newzealand-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/ngerman-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/nswissgerman-publist.lbx + texmf-dist/tex/latex/biblatex-publist/lbx/swissgerman-publist.lbx texmf-dist/tex/latex/biblatex-publist/publist.bbx texmf-dist/tex/latex/biblatex-publist/publist.cbx texmf-dist/tex/latex/biblatex-publist/publist.dbx @@ -38016,7 +38671,7 @@ 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 2.11 +catalogue-version 2.13 name biblatex-readbbl category Package @@ -38185,16 +38840,16 @@ catalogue-version 0.0.1 name biblatex-software category Package -revision 64030 +revision 73321 shortdesc BibLaTeX stylefiles for software products longdesc This package implements software entry types for BibLaTeX in longdesc the form of a bibliography style extension. It requires the longdesc Biber backend. -docfiles size=94 - texmf-dist/doc/latex/biblatex-software/Changes +docfiles size=97 texmf-dist/doc/latex/biblatex-software/LICENSE texmf-dist/doc/latex/biblatex-software/README.md details="Readme" texmf-dist/doc/latex/biblatex-software/biblio.bib + texmf-dist/doc/latex/biblatex-software/history.tex texmf-dist/doc/latex/biblatex-software/manual.bib texmf-dist/doc/latex/biblatex-software/mkbiblatexstubs.sh texmf-dist/doc/latex/biblatex-software/sample-content.tex @@ -38218,7 +38873,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-5 +catalogue-version 1.2-6 name biblatex-source-division category Package @@ -38659,7 +39314,7 @@ catalogue-topics bibtex-util name bibtex category Package -revision 70015 +revision 73848 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 @@ -38674,7 +39329,7 @@ longdesc (independently developed) biber program, used with the BibLaTeX longdesc package to typeset its output. depend bibtex.ARCH depend kpathsea -docfiles size=133 +docfiles size=134 texmf-dist/doc/bibtex/base/README texmf-dist/doc/bibtex/base/btxbst.doc texmf-dist/doc/bibtex/base/btxdoc.bib @@ -38707,107 +39362,107 @@ catalogue-version 0.99d name bibtex.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of bibtex binfiles arch=aarch64-linux size=51 bin/aarch64-linux/bibtex name bibtex.amd64-freebsd category Package -revision 70276 +revision 73792 shortdesc amd64-freebsd files of bibtex binfiles arch=amd64-freebsd size=54 bin/amd64-freebsd/bibtex name bibtex.amd64-netbsd category Package -revision 70286 +revision 73802 shortdesc amd64-netbsd files of bibtex binfiles arch=amd64-netbsd size=53 bin/amd64-netbsd/bibtex name bibtex.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of bibtex -binfiles arch=armhf-linux size=38 +binfiles arch=armhf-linux size=32 bin/armhf-linux/bibtex name bibtex.i386-freebsd category Package -revision 70276 +revision 73792 shortdesc i386-freebsd files of bibtex binfiles arch=i386-freebsd size=54 bin/i386-freebsd/bibtex name bibtex.i386-linux category Package -revision 70276 +revision 73792 shortdesc i386-linux files of bibtex -binfiles arch=i386-linux size=49 +binfiles arch=i386-linux size=53 bin/i386-linux/bibtex name bibtex.i386-netbsd category Package -revision 70286 +revision 73802 shortdesc i386-netbsd files of bibtex binfiles arch=i386-netbsd size=50 bin/i386-netbsd/bibtex name bibtex.i386-solaris category Package -revision 70276 +revision 73792 shortdesc i386-solaris files of bibtex -binfiles arch=i386-solaris size=45 +binfiles arch=i386-solaris size=46 bin/i386-solaris/bibtex name bibtex.universal-darwin category Package -revision 70274 +revision 73806 shortdesc universal-darwin files of bibtex binfiles arch=universal-darwin size=138 bin/universal-darwin/bibtex name bibtex.windows category Package -revision 70576 +revision 73796 shortdesc windows files of bibtex binfiles arch=windows size=29 bin/windows/bibtex.exe name bibtex.x86_64-cygwin category Package -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of bibtex binfiles arch=x86_64-cygwin size=28 bin/x86_64-cygwin/bibtex.exe name bibtex.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of bibtex binfiles arch=x86_64-darwinlegacy size=44 bin/x86_64-darwinlegacy/bibtex name bibtex.x86_64-linux category Package -revision 70276 +revision 73777 shortdesc x86_64-linux files of bibtex -binfiles arch=x86_64-linux size=43 +binfiles arch=x86_64-linux size=46 bin/x86_64-linux/bibtex name bibtex.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of bibtex -binfiles arch=x86_64-linuxmusl size=45 +binfiles arch=x86_64-linuxmusl size=46 bin/x86_64-linuxmusl/bibtex name bibtex.x86_64-solaris category Package -revision 70276 +revision 73792 shortdesc x86_64-solaris files of bibtex -binfiles arch=x86_64-solaris size=53 +binfiles arch=x86_64-solaris size=54 bin/x86_64-solaris/bibtex name bibtex8 @@ -38854,112 +39509,112 @@ catalogue-version 3.72 name bibtex8.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of bibtex8 binfiles arch=aarch64-linux size=56 bin/aarch64-linux/bibtex8 name bibtex8.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of bibtex8 binfiles arch=amd64-freebsd size=63 bin/amd64-freebsd/bibtex8 name bibtex8.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of bibtex8 binfiles arch=amd64-netbsd size=62 bin/amd64-netbsd/bibtex8 name bibtex8.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of bibtex8 -binfiles arch=armhf-linux size=44 +binfiles arch=armhf-linux size=37 bin/armhf-linux/bibtex8 name bibtex8.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of bibtex8 binfiles arch=i386-freebsd size=63 bin/i386-freebsd/bibtex8 name bibtex8.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of bibtex8 -binfiles arch=i386-linux size=56 +binfiles arch=i386-linux size=61 bin/i386-linux/bibtex8 name bibtex8.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of bibtex8 -binfiles arch=i386-netbsd size=58 +binfiles arch=i386-netbsd size=59 bin/i386-netbsd/bibtex8 name bibtex8.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of bibtex8 binfiles arch=i386-solaris size=50 bin/i386-solaris/bibtex8 name bibtex8.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of bibtex8 binfiles arch=universal-darwin size=130 bin/universal-darwin/bibtex8 name bibtex8.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of bibtex8 binfiles arch=windows size=101 bin/windows/bibtex8.exe name bibtex8.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of bibtex8 binfiles arch=x86_64-cygwin size=34 bin/x86_64-cygwin/bibtex8.exe name bibtex8.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of bibtex8 binfiles arch=x86_64-darwinlegacy size=51 bin/x86_64-darwinlegacy/bibtex8 name bibtex8.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of bibtex8 binfiles arch=x86_64-linux size=50 bin/x86_64-linux/bibtex8 name bibtex8.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of bibtex8 -binfiles arch=x86_64-linuxmusl size=51 +binfiles arch=x86_64-linuxmusl size=52 bin/x86_64-linuxmusl/bibtex8 name bibtex8.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of bibtex8 binfiles arch=x86_64-solaris size=59 bin/x86_64-solaris/bibtex8 name bibtexperllibs category Package -revision 68910 +revision 72184 shortdesc BibTeX Perl Libraries longdesc This package provides BibTeX related Perl libraries by Gerhard longdesc Gossen, repacked by Boris Veytsman, for TeX Live and other @@ -38971,7 +39626,7 @@ depend bibtexperllibs.ARCH docfiles size=7 texmf-dist/doc/man/man1/ltx2unitxt.1 texmf-dist/doc/man/man1/ltx2unitxt.man1.pdf -srcfiles size=112 +srcfiles size=126 texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/Changes texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/LICENSE texmf-dist/source/support/bibtexperllibs/BibTeX-Parser/MANIFEST @@ -39016,6 +39671,9 @@ srcfiles size=112 texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/Changes texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/LICENSE texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/MANIFEST + texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/MYMETA.json + texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/MYMETA.yml + texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/Makefile texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/Makefile.PL texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/Makefile.TDS texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/README @@ -39030,7 +39688,7 @@ srcfiles size=112 texmf-dist/source/support/bibtexperllibs/LaTeX-ToUnicode/weaver.ini texmf-dist/source/support/bibtexperllibs/Makefile texmf-dist/source/support/bibtexperllibs/README -runfiles size=23 +runfiles size=24 texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm @@ -39040,10 +39698,10 @@ runfiles size=23 catalogue-contact-bugs https://github.com/borisveytsman/BibTeXPerlLibs/issues catalogue-contact-development https://github.com/borisveytsman/BibTeXPerlLibs/pulls catalogue-contact-repository https://github.com/borisveytsman/BibTeXPerlLibs -catalogue-ctan /support/bibtexperllibs +catalogue-ctan /biblio/bibtex/utils/bibtexperllibs catalogue-license gpl1 artistic pd catalogue-topics bibtex-supp -catalogue-version 1.9 +catalogue-version 1.91 name bibtexperllibs.aarch64-linux category Package @@ -39178,107 +39836,107 @@ catalogue-version 3.72 name bibtexu.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of bibtexu -binfiles arch=aarch64-linux size=5412 +binfiles arch=aarch64-linux size=5678 bin/aarch64-linux/bibtexu name bibtexu.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of bibtexu -binfiles arch=amd64-freebsd size=5460 +binfiles arch=amd64-freebsd size=5849 bin/amd64-freebsd/bibtexu name bibtexu.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of bibtexu -binfiles arch=amd64-netbsd size=5452 +binfiles arch=amd64-netbsd size=5654 bin/amd64-netbsd/bibtexu name bibtexu.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of bibtexu -binfiles arch=armhf-linux size=5314 +binfiles arch=armhf-linux size=5517 bin/armhf-linux/bibtexu name bibtexu.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of bibtexu -binfiles arch=i386-freebsd size=5460 +binfiles arch=i386-freebsd size=5849 bin/i386-freebsd/bibtexu name bibtexu.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of bibtexu -binfiles arch=i386-linux size=5564 +binfiles arch=i386-linux size=5637 bin/i386-linux/bibtexu name bibtexu.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of bibtexu -binfiles arch=i386-netbsd size=5412 +binfiles arch=i386-netbsd size=5613 bin/i386-netbsd/bibtexu name bibtexu.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of bibtexu -binfiles arch=i386-solaris size=5451 +binfiles arch=i386-solaris size=5666 bin/i386-solaris/bibtexu name bibtexu.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of bibtexu -binfiles arch=universal-darwin size=10794 +binfiles arch=universal-darwin size=11347 bin/universal-darwin/bibtexu name bibtexu.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of bibtexu -binfiles arch=windows size=364 +binfiles arch=windows size=372 bin/windows/bibtexu.exe name bibtexu.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of bibtexu -binfiles arch=x86_64-cygwin size=5346 +binfiles arch=x86_64-cygwin size=5715 bin/x86_64-cygwin/bibtexu.exe name bibtexu.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of bibtexu -binfiles arch=x86_64-darwinlegacy size=5333 +binfiles arch=x86_64-darwinlegacy size=5524 bin/x86_64-darwinlegacy/bibtexu name bibtexu.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of bibtexu -binfiles arch=x86_64-linux size=5586 +binfiles arch=x86_64-linux size=5627 bin/x86_64-linux/bibtexu name bibtexu.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of bibtexu -binfiles arch=x86_64-linuxmusl size=5515 +binfiles arch=x86_64-linuxmusl size=5792 bin/x86_64-linuxmusl/bibtexu name bibtexu.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of bibtexu -binfiles arch=x86_64-solaris size=5493 +binfiles arch=x86_64-solaris size=5697 bin/x86_64-solaris/bibtexu name bibtools @@ -39416,14 +40074,13 @@ catalogue-version 2.2 name bidi category Package -revision 67798 +revision 73698 shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX 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. -docfiles size=1168 +docfiles size=1146 texmf-dist/doc/xelatex/bidi/README details="Readme" - texmf-dist/doc/xelatex/bidi/bidi-bibitem.pdf texmf-dist/doc/xelatex/bidi/bidi-doc.pdf details="Package user documentation" texmf-dist/doc/xelatex/bidi/bidi-logo.tex texmf-dist/doc/xelatex/bidi/bidi.pdf details="Package source documentation" @@ -39446,7 +40103,7 @@ docfiles size=1168 texmf-dist/doc/xelatex/bidi/test2-colortbl.tex texmf-dist/doc/xelatex/bidi/test2-wrapfig.tex texmf-dist/doc/xelatex/bidi/test3-wrapfig.tex -srcfiles size=288 +srcfiles size=281 texmf-dist/source/xelatex/bidi/bidi-doc-intro.ltx texmf-dist/source/xelatex/bidi/bidi-doc-latex-basics.ltx texmf-dist/source/xelatex/bidi/bidi-doc-latex-pkgs.ltx @@ -39459,7 +40116,7 @@ srcfiles size=288 texmf-dist/source/xelatex/bidi/bidi-doc.ltx texmf-dist/source/xelatex/bidi/bidi.dtx texmf-dist/source/xelatex/bidi/bidi.ins -runfiles size=367 +runfiles size=361 texmf-dist/tex/xelatex/bidi/adjmulticol-xetex-bidi.def texmf-dist/tex/xelatex/bidi/algorithm2e-xetex-bidi.def texmf-dist/tex/xelatex/bidi/amsart-xetex-bidi.def @@ -39504,6 +40161,7 @@ runfiles size=367 texmf-dist/tex/xelatex/bidi/beamerouterthemetree-xetex-bidi.def texmf-dist/tex/xelatex/bidi/beamerthemeHannover-xetex-bidi.def texmf-dist/tex/xelatex/bidi/beamerthemeSingapore-xetex-bidi.def + texmf-dist/tex/xelatex/bidi/bidi-bibitem.pdf texmf-dist/tex/xelatex/bidi/bidi-logo.pdf texmf-dist/tex/xelatex/bidi/bidi-media9.sty texmf-dist/tex/xelatex/bidi/bidi-perpage.sty @@ -39571,11 +40229,11 @@ runfiles size=367 texmf-dist/tex/xelatex/bidi/lettrine-xetex-bidi.def texmf-dist/tex/xelatex/bidi/lineno-xetex-bidi.def texmf-dist/tex/xelatex/bidi/listings-xetex-bidi.def - texmf-dist/tex/xelatex/bidi/loadingorder-xetex-bidi.def texmf-dist/tex/xelatex/bidi/longtable-xetex-bidi.def texmf-dist/tex/xelatex/bidi/lscape-xetex-bidi.def texmf-dist/tex/xelatex/bidi/mathtools-xetex-bidi.def texmf-dist/tex/xelatex/bidi/mdframed-xetex-bidi.def + texmf-dist/tex/xelatex/bidi/media9-xetex-bidi.def texmf-dist/tex/xelatex/bidi/memoir-xetex-bidi.def texmf-dist/tex/xelatex/bidi/midfloat-xetex-bidi.def texmf-dist/tex/xelatex/bidi/minitoc-xetex-bidi.def @@ -39591,7 +40249,7 @@ runfiles size=367 texmf-dist/tex/xelatex/bidi/pdflscape-xetex-bidi.def texmf-dist/tex/xelatex/bidi/pdfpages-xetex-bidi.def texmf-dist/tex/xelatex/bidi/pgfcorescopes.code-xetex-bidi.def - texmf-dist/tex/xelatex/bidi/pgfsys.code-xetex-bidi.def + texmf-dist/tex/xelatex/bidi/pgfsys-xetex-bidi.def texmf-dist/tex/xelatex/bidi/picinpar-xetex-bidi.def texmf-dist/tex/xelatex/bidi/plain-xetex-bidi.def texmf-dist/tex/xelatex/bidi/pstricks-xetex-bidi.def @@ -39612,7 +40270,7 @@ runfiles size=367 texmf-dist/tex/xelatex/bidi/tabls-xetex-bidi.def texmf-dist/tex/xelatex/bidi/tabularx-xetex-bidi.def texmf-dist/tex/xelatex/bidi/tabulary-xetex-bidi.def - texmf-dist/tex/xelatex/bidi/tc-xetex-bidi.def + texmf-dist/tex/xelatex/bidi/tc-xetex-xetex-bidi.def texmf-dist/tex/xelatex/bidi/tcolorbox-xetex-bidi.def texmf-dist/tex/xelatex/bidi/titlesec-xetex-bidi.def texmf-dist/tex/xelatex/bidi/titletoc-xetex-bidi.def @@ -39624,14 +40282,16 @@ runfiles size=367 texmf-dist/tex/xelatex/bidi/wrapfig-xetex-bidi.def texmf-dist/tex/xelatex/bidi/xcolor-xetex-bidi.def texmf-dist/tex/xelatex/bidi/xltxtra-xetex-bidi.def -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-contact-announce https://github.com/xepersian/bidi/discussions/categories/announcements +catalogue-contact-bugs https://github.com/xepersian/bidi/issues +catalogue-contact-development https://github.com/sponsors/xepersian +catalogue-contact-home https://github.com/xepersian +catalogue-contact-repository https://github.com/xepersian/bidi +catalogue-contact-support https://github.com/xepersian/bidi/discussions catalogue-ctan /macros/xetex/latex/bidi catalogue-license lppl1.3c catalogue-topics typesetting xetex bidi class -catalogue-version 39.8 +catalogue-version 25.2.2 name bidi-atbegshi category Package @@ -40018,12 +40678,12 @@ catalogue-version 0.1 name bithesis category Package -revision 71392 +revision 73285 shortdesc Templates for the Beijing Institute of Technology longdesc This package establishes a simple and easy-to-use LaTeX longdesc template for Beijing Institute of Technology dissertations, longdesc including general undergraduate theses and master theses. -docfiles size=190 +docfiles size=195 texmf-dist/doc/latex/bithesis/README.md details="Readme" texmf-dist/doc/latex/bithesis/bithesis.pdf details="Package documentation" language="zh" texmf-dist/doc/latex/bithesis/contributing-zh.md @@ -40044,7 +40704,7 @@ 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.7.9 +catalogue-version 3.8.1 name bitpattern category Package @@ -40542,7 +41202,7 @@ catalogue-version 2.0.0 name bmstu-iu8 category Package -revision 61937 +revision 73813 shortdesc A class for IU8 reports longdesc This package consists of a class file and style files for longdesc writing reports at the IU8 department of IU faculty of BMSTU @@ -40550,43 +41210,83 @@ 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. +depend algorithm2e +depend amscls +depend anyfontsize +depend babel +depend biblatex +depend bookmark +depend caption +depend chngcntr +depend csquotes +depend enumitem +depend fancyhdr +depend float +depend fontspec +depend geometry +depend glossaries +depend glossaries-extra +depend graphics +depend ifoddpage +depend koma-script +depend lastpage +depend lineno +depend listings +depend ltablex +depend multirow +depend nowidow +depend oberdiek +depend relsize +depend setspace +depend stackengine +depend tabto-ltx +depend titlesec +depend tools +depend totcount +depend ulem +depend xassoccnt +depend xcolor +depend xltabular +depend xstring docfiles size=59 + texmf-dist/doc/latex/bmstu-iu8/DEPENDS.txt texmf-dist/doc/latex/bmstu-iu8/README.md details="Readme" texmf-dist/doc/latex/bmstu-iu8/bmstu-example.pdf details="Example of use" language="ru" texmf-dist/doc/latex/bmstu-iu8/bmstu-example.tex texmf-dist/doc/latex/bmstu-iu8/bmstu.png -runfiles size=26 - texmf-dist/tex/latex/bmstu-iu8/01-IU8-base.sty - texmf-dist/tex/latex/bmstu-iu8/02-IU8-construction.sty - texmf-dist/tex/latex/bmstu-iu8/03-IU8-numbering.sty - texmf-dist/tex/latex/bmstu-iu8/04-IU8-section-numbering.sty - texmf-dist/tex/latex/bmstu-iu8/05-IU8-figures.sty - texmf-dist/tex/latex/bmstu-iu8/06-IU8-tables.sty - texmf-dist/tex/latex/bmstu-iu8/07-IU8-footnotes.sty - texmf-dist/tex/latex/bmstu-iu8/08-IU8-formulas.sty - texmf-dist/tex/latex/bmstu-iu8/09-IU8-cites.sty - texmf-dist/tex/latex/bmstu-iu8/10-IU8-titlepage.sty - texmf-dist/tex/latex/bmstu-iu8/11-IU8-performers.sty - texmf-dist/tex/latex/bmstu-iu8/12-IU8-abstract.sty - texmf-dist/tex/latex/bmstu-iu8/13-IU8-contents.sty - texmf-dist/tex/latex/bmstu-iu8/14-IU8-terms-and-definitions.sty - texmf-dist/tex/latex/bmstu-iu8/15-IU8-list-of-abbreviations.sty - texmf-dist/tex/latex/bmstu-iu8/16-IU8-references.sty - texmf-dist/tex/latex/bmstu-iu8/17-IU8-appendices.sty - texmf-dist/tex/latex/bmstu-iu8/18-IU8-extra.sty - texmf-dist/tex/latex/bmstu-iu8/19-IU8-counters.sty - texmf-dist/tex/latex/bmstu-iu8/20-IU8-listing.sty - texmf-dist/tex/latex/bmstu-iu8/21-IU8-math.sty - texmf-dist/tex/latex/bmstu-iu8/22-IU8-algorithms.sty +runfiles size=27 texmf-dist/tex/latex/bmstu-iu8/BMSTU-IU8.cls + texmf-dist/tex/latex/bmstu-iu8/IU8-01-base.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-02-construction.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-03-numbering.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-04-section-numbering.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-05-figures.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-06-tables.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-07-footnotes.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-08-formulas.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-09-cites.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-10-titlepage.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-11-performers.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-12-abstract.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-13-contents.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-14-terms-and-definitions.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-15-list-of-abbreviations.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-16-references.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-17-appendices.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-18-extra.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-19-counters.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-20-listing.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-21-math.sty + texmf-dist/tex/latex/bmstu-iu8/IU8-22-algorithms.sty catalogue-also bmstu catalogue-contact-bugs https://github.com/CatInCosmicSpace/latex-template/issues +catalogue-contact-home https://github.com/CatInCosmicSpace/latex-template 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 +catalogue-version 1.6 name bnumexpr category Package @@ -40612,7 +41312,7 @@ catalogue-version 1.5 name bodegraph category Package -revision 68785 +revision 72949 shortdesc Draw Bode, Nyquist and Black plots with gnuplot and TikZ longdesc The package provides facilities to draw Bode, Nyquist and Black longdesc plots using Gnuplot and Tikz. Elementary Transfer Functions and @@ -40812,7 +41512,6 @@ docfiles size=354 runfiles size=19 texmf-dist/tex/latex/bodegraph/bodegraph.sty catalogue-also bodeplot -catalogue-contact-home https://sciences-indus-cpge.papanicola.info/Bode-Black-et-Nyquist-avec-Tikz catalogue-ctan /graphics/pgf/contrib/bodegraph catalogue-license lppl catalogue-topics engineering graphics-plot pgf-tikz @@ -41115,6 +41814,24 @@ catalogue-license lppl1.3 catalogue-topics diagram pgf-tikz catalogue-version 1.0.1 +name bonum-otf +category Package +revision 71894 +shortdesc Support for the OpenType font Bonum +longdesc Support for the OpenType font Bonum (text and math) of the +longdesc TeXGyre Fonts. +docfiles size=127 + texmf-dist/doc/fonts/bonum-otf/Changes + texmf-dist/doc/fonts/bonum-otf/README.md details="Readme" + texmf-dist/doc/fonts/bonum-otf/bonum-otf-doc.pdf details="Package documentation" + texmf-dist/doc/fonts/bonum-otf/bonum-otf-doc.tex +runfiles size=3 + texmf-dist/tex/fonts/bonum-otf/bonum-otf.sty +catalogue-ctan /fonts/bonum-otf +catalogue-license lppl1.3 +catalogue-topics font +catalogue-version 0.01 + name book-of-common-prayer category Package revision 62240 @@ -41139,10 +41856,10 @@ catalogue-version 1.1.0 name bookcover category Package -revision 70872 +revision 72461 shortdesc A class for book covers and dust jackets longdesc This class helps typesetting book covers and dust jackets. -docfiles size=924 +docfiles size=928 texmf-dist/doc/latex/bookcover/README details="Readme" texmf-dist/doc/latex/bookcover/bookcover-example1.pdf details="Examples of use 1" texmf-dist/doc/latex/bookcover/bookcover-example1.tex @@ -41162,6 +41879,7 @@ docfiles size=924 texmf-dist/doc/latex/bookcover/figures/bookcover-pi.pdf texmf-dist/doc/latex/bookcover/figures/bookcover-ruler.pdf texmf-dist/doc/latex/bookcover/figures/bookcover-scheme-foldingmargin.pdf + texmf-dist/doc/latex/bookcover/figures/bookcover-scheme-widthflaps.pdf texmf-dist/doc/latex/bookcover/figures/bookcover-scheme-withflaps.pdf texmf-dist/doc/latex/bookcover/figures/bookcover-scheme-withoutflaps.pdf texmf-dist/doc/latex/bookcover/figures/bookcover-tikz.pdf @@ -41175,7 +41893,7 @@ runfiles size=14 catalogue-ctan /macros/latex/contrib/bookcover catalogue-license lppl1.2 catalogue-topics class covers -catalogue-version 3.6 +catalogue-version 3.7 name bookdb category Package @@ -41858,28 +42576,165 @@ catalogue-version 1.31 name bookshelf category Package -revision 55475 +revision 72521 shortdesc Create a nice image from a BibTeX file longdesc This package turns a BibTeX bibliography file into a longdesc randomly-coloured, randomly-sized shelf of books, with the longdesc title and author in a randomly-chosen typeface. -docfiles size=486 - texmf-dist/doc/latex/bookshelf/MANIFEST +depend bookshelf.ARCH +docfiles size=3478 + texmf-dist/doc/latex/bookshelf/LICENSE + texmf-dist/doc/latex/bookshelf/Makefile + texmf-dist/doc/latex/bookshelf/Makefile.doc + texmf-dist/doc/latex/bookshelf/Makefile.scripts texmf-dist/doc/latex/bookshelf/README.md details="Readme" - texmf-dist/doc/latex/bookshelf/VERSION + texmf-dist/doc/latex/bookshelf/allfonts + texmf-dist/doc/latex/bookshelf/bookshelf-listallfonts.pdf + texmf-dist/doc/latex/bookshelf/bookshelf-mkfontsel.pdf + texmf-dist/doc/latex/bookshelf/bookshelf.bib + texmf-dist/doc/latex/bookshelf/bookshelf.dtx + texmf-dist/doc/latex/bookshelf/bookshelf.ins texmf-dist/doc/latex/bookshelf/bookshelf.pdf details="Package documentation" - texmf-dist/doc/latex/bookshelf/myshelf.jpg - texmf-dist/doc/latex/bookshelf/prepdata.sh - texmf-dist/doc/latex/bookshelf/test.tex -srcfiles size=27 - texmf-dist/source/latex/bookshelf/bookshelf.dtx - texmf-dist/source/latex/bookshelf/bookshelf.ins -runfiles size=4 + texmf-dist/doc/latex/bookshelf/excluded_patterns + texmf-dist/doc/latex/bookshelf/features + texmf-dist/doc/latex/bookshelf/sample.bib + texmf-dist/doc/latex/bookshelf/spines.pdf + texmf-dist/doc/latex/bookshelf/spines.tex + texmf-dist/doc/latex/bookshelf/svgnam.sh + texmf-dist/doc/man/man1/bookshelf-listallfonts.1 + texmf-dist/doc/man/man1/bookshelf-listallfonts.man1.pdf + texmf-dist/doc/man/man1/bookshelf-mkfontsel.1 + texmf-dist/doc/man/man1/bookshelf-mkfontsel.man1.pdf +runfiles size=9 + texmf-dist/bibtex/bst/bookshelf/bookshelf.bst + texmf-dist/scripts/bookshelf/bookshelf-listallfonts + texmf-dist/scripts/bookshelf/bookshelf-mkfontsel + texmf-dist/tex/latex/bookshelf/bookshelf-svgnam.tex texmf-dist/tex/latex/bookshelf/bookshelf.cls catalogue-ctan /graphics/bookshelf -catalogue-license lppl1.3 -catalogue-topics amusements decoration graphics-use -catalogue-version 0.5 +catalogue-license lppl1.3c +catalogue-topics amusements decoration graphics-use luatex +catalogue-version 1.2 + +name bookshelf.aarch64-linux +category Package +revision 72501 +shortdesc aarch64-linux files of bookshelf +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/bookshelf-listallfonts + bin/aarch64-linux/bookshelf-mkfontsel + +name bookshelf.amd64-freebsd +category Package +revision 72501 +shortdesc amd64-freebsd files of bookshelf +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/bookshelf-listallfonts + bin/amd64-freebsd/bookshelf-mkfontsel + +name bookshelf.amd64-netbsd +category Package +revision 72501 +shortdesc amd64-netbsd files of bookshelf +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/bookshelf-listallfonts + bin/amd64-netbsd/bookshelf-mkfontsel + +name bookshelf.armhf-linux +category Package +revision 72501 +shortdesc armhf-linux files of bookshelf +binfiles arch=armhf-linux size=2 + bin/armhf-linux/bookshelf-listallfonts + bin/armhf-linux/bookshelf-mkfontsel + +name bookshelf.i386-freebsd +category Package +revision 72501 +shortdesc i386-freebsd files of bookshelf +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/bookshelf-listallfonts + bin/i386-freebsd/bookshelf-mkfontsel + +name bookshelf.i386-linux +category Package +revision 72501 +shortdesc i386-linux files of bookshelf +binfiles arch=i386-linux size=2 + bin/i386-linux/bookshelf-listallfonts + bin/i386-linux/bookshelf-mkfontsel + +name bookshelf.i386-netbsd +category Package +revision 72501 +shortdesc i386-netbsd files of bookshelf +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/bookshelf-listallfonts + bin/i386-netbsd/bookshelf-mkfontsel + +name bookshelf.i386-solaris +category Package +revision 72501 +shortdesc i386-solaris files of bookshelf +binfiles arch=i386-solaris size=2 + bin/i386-solaris/bookshelf-listallfonts + bin/i386-solaris/bookshelf-mkfontsel + +name bookshelf.universal-darwin +category Package +revision 72501 +shortdesc universal-darwin files of bookshelf +binfiles arch=universal-darwin size=2 + bin/universal-darwin/bookshelf-listallfonts + bin/universal-darwin/bookshelf-mkfontsel + +name bookshelf.windows +category Package +revision 72501 +shortdesc windows files of bookshelf +binfiles arch=windows size=4 + bin/windows/bookshelf-listallfonts.exe + bin/windows/bookshelf-mkfontsel.exe + +name bookshelf.x86_64-cygwin +category Package +revision 72501 +shortdesc x86_64-cygwin files of bookshelf +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/bookshelf-listallfonts + bin/x86_64-cygwin/bookshelf-mkfontsel + +name bookshelf.x86_64-darwinlegacy +category Package +revision 72501 +shortdesc x86_64-darwinlegacy files of bookshelf +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/bookshelf-listallfonts + bin/x86_64-darwinlegacy/bookshelf-mkfontsel + +name bookshelf.x86_64-linux +category Package +revision 72501 +shortdesc x86_64-linux files of bookshelf +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/bookshelf-listallfonts + bin/x86_64-linux/bookshelf-mkfontsel + +name bookshelf.x86_64-linuxmusl +category Package +revision 72501 +shortdesc x86_64-linuxmusl files of bookshelf +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/bookshelf-listallfonts + bin/x86_64-linuxmusl/bookshelf-mkfontsel + +name bookshelf.x86_64-solaris +category Package +revision 72501 +shortdesc x86_64-solaris files of bookshelf +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/bookshelf-listallfonts + bin/x86_64-solaris/bookshelf-mkfontsel name booktabs category Package @@ -43020,6 +43875,43 @@ catalogue-license mit catalogue-topics japanese catalogue-version 0.5 +name bxcoloremoji +category Package +revision 72896 +shortdesc Use color emojis more conveniently +longdesc This package lets users output color emojis in LaTeX documents. +longdesc Compared to other packages with similar functionality, this +longdesc package has the following merits: It supports all major LaTeX +longdesc engines. Emojis can be entered as the characters themselves, as +longdesc their Unicode code values, or as their short names. It works +longdesc reasonably well in PDF strings when using hyperref. Emojis can +longdesc be handled properly even in Japanese typesetting environments. +longdesc This package has been widely used among the Japanese LaTeX +longdesc community, but there are already many emoji packages on CTAN +longdesc and in TeX Live. To avoid uploading a large amount of emoji +longdesc image data that are essentially identical, the package was +longdesc revised in version 1.0 so that the image output was delegated +longdesc to the twmojis package. Therefore, this package now contains no +longdesc image data. +docfiles size=877 + texmf-dist/doc/latex/bxcoloremoji/LICENSE + texmf-dist/doc/latex/bxcoloremoji/README-ja.md details="Readme (Japanese)" language="ja" + texmf-dist/doc/latex/bxcoloremoji/README.md details="Readme (English)" + texmf-dist/doc/latex/bxcoloremoji/bxcoloremoji-en.pdf details="Package documentation (English)" + texmf-dist/doc/latex/bxcoloremoji/bxcoloremoji-en.tex + texmf-dist/doc/latex/bxcoloremoji/bxcoloremoji-ja.pdf details="Package documentation (Japanese)" language="ja" + texmf-dist/doc/latex/bxcoloremoji/bxcoloremoji-ja.tex + texmf-dist/doc/latex/bxcoloremoji/bxcoloremoji-shortnames.pdf details="List of Emoji Short Names" + texmf-dist/doc/latex/bxcoloremoji/bxcoloremoji-shortnames.tex +runfiles size=56 + texmf-dist/tex/latex/bxcoloremoji/bxcoloremoji-names.def + texmf-dist/tex/latex/bxcoloremoji/bxcoloremoji.sty +catalogue-contact-repository https://github.com/zr-tex8r/BXcoloremoji +catalogue-ctan /macros/latex/contrib/bxcoloremoji +catalogue-license mit +catalogue-topics text-symbol +catalogue-version 1.0a + name bxdpx-beamer category Package revision 41813 @@ -43189,7 +44081,7 @@ catalogue-version 0.4a name bxjatoucs category Package -revision 52509 +revision 71870 shortdesc Convert Japanese character code to Unicode longdesc This package is meant for macro/package developers: It provides longdesc function-like (fully-expandable) macros that convert a @@ -43200,19 +44092,20 @@ longdesc glyph set. docfiles size=2 texmf-dist/doc/latex/bxjatoucs/LICENSE texmf-dist/doc/latex/bxjatoucs/README.md details="Readme" -runfiles size=34 +runfiles size=58 texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-cid.tfm texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-jis.tfm + texmf-dist/fonts/tfm/public/bxjatoucs/bxjatoucs-tojis.tfm texmf-dist/tex/latex/bxjatoucs/bxjatoucs.sty catalogue-contact-repository https://github.com/zr-tex8r/BXjatoucs catalogue-ctan /language/japanese/BX/bxjatoucs catalogue-license mit catalogue-topics japanese unicode macro-supp -catalogue-version 0.2 +catalogue-version 0.3a name bxjscls category Package -revision 69637 +revision 71848 shortdesc Japanese document class collection for all major engines longdesc This package provides an extended version of the Japanese longdesc document class collection provided by jsclasses. While the @@ -43220,17 +44113,17 @@ 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. -docfiles size=348 +docfiles size=349 texmf-dist/doc/latex/bxjscls/LICENSE texmf-dist/doc/latex/bxjscls/README-ja.md details="Readme (Japanese)" language="ja" texmf-dist/doc/latex/bxjscls/README.md details="Readme" texmf-dist/doc/latex/bxjscls/bxjscls-manual.pdf details="User guide (Japanese)" language="ja" texmf-dist/doc/latex/bxjscls/bxjscls-manual.tex texmf-dist/doc/latex/bxjscls/bxjscls.pdf details="Package documentation (Japanese)" language="ja" -srcfiles size=115 +srcfiles size=116 texmf-dist/source/latex/bxjscls/bxjscls.dtx texmf-dist/source/latex/bxjscls/bxjscls.ins -runfiles size=111 +runfiles size=112 texmf-dist/tex/latex/bxjscls/bxjsarticle.cls texmf-dist/tex/latex/bxjscls/bxjsbook.cls texmf-dist/tex/latex/bxjscls/bxjscjkcat.sty @@ -43247,7 +44140,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.9b +catalogue-version 2.9c name bxnewfont category Package @@ -43313,24 +44206,24 @@ catalogue-version 0.6 name bxpdfver category Package -revision 63185 +revision 74105 shortdesc Specify version and compression level of output PDF files longdesc This package enables users to specify in their sources the longdesc following settings on the PDF document to output: PDF version longdesc (1.4, 1.5 etc.); whether or not to compress streams; whether or longdesc not to use object streams. This package supports all major longdesc PDF-output engines and dvipdfmx. -docfiles size=6 +docfiles size=7 texmf-dist/doc/latex/bxpdfver/LICENSE texmf-dist/doc/latex/bxpdfver/README-ja.md details="Readme" language="ja" texmf-dist/doc/latex/bxpdfver/README.md details="Readme" texmf-dist/doc/latex/bxpdfver/sample-bxpdfver.tex -runfiles size=8 +runfiles size=9 texmf-dist/tex/latex/bxpdfver/bxpdfver.sty catalogue-ctan /macros/latex/contrib/bxpdfver catalogue-license mit catalogue-topics pdf-feat -catalogue-version 0.6 +catalogue-version 0.8a name bxtexlogo category Package @@ -44272,6 +45165,25 @@ catalogue-license lppl1.3 catalogue-topics calculation maths catalogue-version 2.1 +name calculatoritems +category Package +revision 73716 +shortdesc Insert menus/items for classic calculators +longdesc Insert inline (based on tcolorbox, graphicx and calc packages) +longdesc items/menus for classic calculators (numworks, casio, texas +longdesc instruments, hp). +docfiles size=263 + texmf-dist/doc/latex/calculatoritems/README.md details="Readme" + texmf-dist/doc/latex/calculatoritems/calculatoritems-doc.pdf details="Package documentation" + texmf-dist/doc/latex/calculatoritems/calculatoritems-docctan.zip +runfiles size=10 + texmf-dist/tex/latex/calculatoritems/calculatoritems.sty +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-ctan /macros/latex/contrib/calculatoritems +catalogue-license lppl1.3c +catalogue-topics graphics teaching maths +catalogue-version 0.1.3 + name calligra category Package revision 15878 @@ -44328,6 +45240,31 @@ catalogue-ctan /graphics/pgf/contrib/callouts catalogue-license lppl catalogue-topics graphics pgf-tikz +name callouts-box +category Package +revision 74039 +shortdesc Provides visually appealing callout boxes +longdesc This package provides a collection of visually appealing, +longdesc structured callout boxes for LaTeX documents. These boxes are +longdesc useful for highlighting important information such as warnings, +longdesc errors, notes, and success messages. The package is built on +longdesc top of tcolorbox for highly customizable, breakable callout +longdesc boxes and xcolor for predefined color schemes. +docfiles size=43 + texmf-dist/doc/latex/callouts-box/LICENCE + texmf-dist/doc/latex/callouts-box/README.md details="Readme" + texmf-dist/doc/latex/callouts-box/callouts-box.pdf details="Package documentation" +srcfiles size=3 + texmf-dist/source/latex/callouts-box/callouts-box.dtx + texmf-dist/source/latex/callouts-box/callouts-box.ins +runfiles size=2 + texmf-dist/tex/latex/callouts-box/callouts-box-colors.sty + texmf-dist/tex/latex/callouts-box/callouts-box.sty +catalogue-ctan /graphics/callouts-box +catalogue-license lppl1.3c +catalogue-topics boxing +catalogue-version 1.0 + name calrsfs category Package revision 17125 @@ -44503,7 +45440,7 @@ catalogue-version 2.4.2 name calxxxx-yyyy category Package -revision 69266 +revision 73249 shortdesc Print a calendar for a group of years longdesc The package prints a calendar for two or more years, according longdesc to a language selection. The package is also "culture @@ -44511,11 +45448,11 @@ 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. -docfiles size=112 +docfiles size=113 texmf-dist/doc/latex/calxxxx-yyyy/README details="Readme" - texmf-dist/doc/latex/calxxxx-yyyy/cal2024-2041_DE.pdf - texmf-dist/doc/latex/calxxxx-yyyy/cal2024-2041_DK.pdf - texmf-dist/doc/latex/calxxxx-yyyy/cal2024-2041_EN.pdf + texmf-dist/doc/latex/calxxxx-yyyy/cal2025-2042_DE.pdf + texmf-dist/doc/latex/calxxxx-yyyy/cal2025-2042_DK.pdf + texmf-dist/doc/latex/calxxxx-yyyy/cal2025-2042_EN.pdf texmf-dist/doc/latex/calxxxx-yyyy/calxxxx-yyyy-doc.pdf details="Package documentation" runfiles size=5 texmf-dist/tex/latex/calxxxx-yyyy/calxxxx-yyyy-doc.tex @@ -44524,7 +45461,7 @@ catalogue-also calxxxx catalogue-ctan /macros/latex/contrib/calxxxx-yyyy catalogue-license lppl1.3c catalogue-topics calendar -catalogue-version 20.24a +catalogue-version 20.25a name cancel category Package @@ -46390,6 +47327,37 @@ catalogue-license ofl lppl catalogue-topics font font-mono font-sans font-otf font-type1 font-supp font-t1enc catalogue-version 0.0.2 +name cascadiamono-otf +category Package +revision 73392 +shortdesc Fontspec support for the OpenType font CascadiaMono +longdesc Support for the OpenType font CascadiaMono (so with +longdesc LuaLaTeX/XeTeX and fontspec), which is a variant of +longdesc CascadiaCode, but without ligatures. \setmonofont{CascadiaMono} +longdesc for regular version, \setmonofont{CascadiaMono-SemiLight} for +longdesc semilight version. \setmonofont{CascadiaMono-Light} for light +longdesc version, \setmonofont{CascadiaMono-ExtraLight} for extralight +longdesc version. +docfiles size=44 + texmf-dist/doc/fonts/cascadiamono-otf/README.md details="Readme" + texmf-dist/doc/fonts/cascadiamono-otf/cascadiamono-otf-doc.pdf details="Package documentation" + texmf-dist/doc/fonts/cascadiamono-otf/cascadiamono-otf-doc.tex +runfiles size=9 + texmf-dist/tex/fonts/cascadiamono-otf/CascadiaMono-ExtraLight.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/CascadiaMono-Light.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/CascadiaMono-SemiLight.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/CascadiaMono.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/cascadiacode-extralight.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/cascadiacode-light.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/cascadiacode-semilight.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/cascadiacode.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/cascadiamono-otf.sty +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-ctan /fonts/cascadiamono-otf +catalogue-license lppl1.3 +catalogue-topics font-supp font-otf font-mono +catalogue-version 0.3 + name cascadilla category Package revision 25144 @@ -46581,27 +47549,25 @@ catalogue-version 0.2.7i name catppuccinpalette category Package -revision 71320 +revision 72060 shortdesc Provides (x)colors of catppuccin theme longdesc "Catppuccin" is a nice pastel theme in four flavours/styles longdesc (Latte, Frappe, Macchiato, Mocha). This package defines these longdesc themes as xcolor colors. -docfiles size=53 +docfiles size=56 texmf-dist/doc/latex/catppuccinpalette/README.md details="Readme" texmf-dist/doc/latex/catppuccinpalette/catppuccinpalette.pdf details="Package documentation" -srcfiles size=5 +srcfiles size=7 texmf-dist/source/latex/catppuccinpalette/catppuccinpalette.dtx texmf-dist/source/latex/catppuccinpalette/catppuccinpalette.ins -runfiles size=2 +runfiles size=4 texmf-dist/tex/latex/catppuccinpalette/catppuccinpalette.sty -catalogue-contact-announce https://github.com/atticus-sullivan/catppuccinPalette/issues/1 -catalogue-contact-bugs https://github.com/atticus-sullivan/catppuccinPalette/issues -catalogue-contact-repository https://github.com/atticus-sullivan/catppuccinPalette/ -catalogue-contact-support https://github.com/atticus-sullivan/catppuccinPalette/discussions/categories/q-a +catalogue-contact-bugs https://github.com/catppuccin/latex/issues +catalogue-contact-repository https://github.com/catppuccin/latex catalogue-ctan /macros/latex/contrib/catppuccinpalette -catalogue-license lppl1.3 +catalogue-license mit catalogue-topics colour -catalogue-version 1.0.2 +catalogue-version 1.1.0 name causets category Package @@ -50118,11 +51084,10 @@ shortdesc LaTeX packages for use of initials 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 (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. +longdesc TeX StackExchange requesting sample package files for others to +longdesc copy. I had previously assumed these were too trivial to be of +longdesc interest, but if they would be useful, then I would prefer them +longdesc to be generally available via CTAN. docfiles size=171 texmf-dist/doc/latex/cfr-initials/README details="Readme" texmf-dist/doc/latex/cfr-initials/cfr-initials.pdf details="Package documentation" @@ -50159,7 +51124,7 @@ catalogue-version 1.01 name cfr-lm category Package -revision 36195 +revision 73888 shortdesc Enhanced support for the Latin Modern fonts longdesc The package supports a number of features of the Latin Modern longdesc fonts which are not easily accessible via the default (La)TeX @@ -50183,23 +51148,25 @@ longdesc and TS1 encodings are supported for text fonts. The set up of longdesc fonts for mathematics is identical to that provided by Latin longdesc Modern. execute addMap clm.map -docfiles size=670 - texmf-dist/doc/fonts/cfr-lm/README details="Readme" +docfiles size=1709 + texmf-dist/doc/fonts/cfr-lm/README.md details="Readme" + texmf-dist/doc/fonts/cfr-lm/cfr-lm-build.pdf + texmf-dist/doc/fonts/cfr-lm/cfr-lm-tables.pdf details="Font tables" texmf-dist/doc/fonts/cfr-lm/cfr-lm.pdf details="Package documentation" - texmf-dist/doc/fonts/cfr-lm/cfr-lm.tex - texmf-dist/doc/fonts/cfr-lm/clm-test.pdf details="Samples from available fonts" - texmf-dist/doc/fonts/cfr-lm/clm-test.tex + texmf-dist/doc/fonts/cfr-lm/clm-map.tex + texmf-dist/doc/fonts/cfr-lm/clm-t1-drv.tex + texmf-dist/doc/fonts/cfr-lm/clm-ts1-drv.tex texmf-dist/doc/fonts/cfr-lm/manifest.txt -srcfiles size=37 - texmf-dist/source/fonts/cfr-lm/clm-map.tex - texmf-dist/source/fonts/cfr-lm/clm-t1-drv.tex - texmf-dist/source/fonts/cfr-lm/clm-ts1-drv.tex +srcfiles size=73 + texmf-dist/source/fonts/cfr-lm/cfr-lm-build.dtx + texmf-dist/source/fonts/cfr-lm/cfr-lm.dtx + texmf-dist/source/fonts/cfr-lm/cfr-lm.ins texmf-dist/source/fonts/cfr-lm/dotdigits.etx texmf-dist/source/fonts/cfr-lm/dotoldstyle.etx texmf-dist/source/fonts/cfr-lm/dotprop.etx texmf-dist/source/fonts/cfr-lm/dottaboldstyle.etx texmf-dist/source/fonts/cfr-lm/t1-clm.etx -runfiles size=1536 +runfiles size=1537 texmf-dist/fonts/enc/dvips/cfr-lm/dotdigits-clm.enc texmf-dist/fonts/enc/dvips/cfr-lm/t1-clm.enc texmf-dist/fonts/map/dvips/cfr-lm/clm.map @@ -51084,14 +52051,15 @@ runfiles size=1536 texmf-dist/tex/latex/cfr-lm/uclms.fd texmf-dist/tex/latex/cfr-lm/uclmt.fd texmf-dist/tex/latex/cfr-lm/uclmv.fd +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/cfr-lm -catalogue-license lppl1.3 -catalogue-topics font-supp -catalogue-version 1.5 +catalogue-license lppl1.3c +catalogue-topics font-supp expl3 +catalogue-version 1.8a name changebar category Package -revision 69367 +revision 71847 shortdesc Generate changebars in LaTeX documents longdesc Identify areas of text to be marked with changebars with the longdesc \cbstart and \cbend commands; the bars may be coloured. The @@ -51119,7 +52087,7 @@ catalogue-also chbar xechangebar backgrnd catalogue-ctan /macros/latex/contrib/changebar catalogue-license lppl1.3 catalogue-topics editorial -catalogue-version 3.7d +catalogue-version 3.7e name changelayout category Package @@ -51141,7 +52109,7 @@ catalogue-version 1.0 name changelog category Package -revision 65861 +revision 73157 shortdesc Typesetting keepachangelog.com style changelogs longdesc This package provides a changelog environment (which itself longdesc provides a version environment) to represent a changelog. The @@ -51155,14 +52123,14 @@ docfiles size=57 texmf-dist/doc/latex/changelog/example.pdf texmf-dist/doc/latex/changelog/example.tex texmf-dist/doc/latex/changelog/screenshot.png -runfiles size=3 +runfiles size=4 texmf-dist/tex/latex/changelog/changelog.sty catalogue-contact-bugs https://github.com/9999years/latex-changelog/issues catalogue-contact-repository https://github.com/9999years/latex-changelog catalogue-ctan /macros/latex/contrib/changelog catalogue-license lppl1.3c catalogue-topics version-control doc-mgmt expl3 -catalogue-version 2.5.0 +catalogue-version 2.6.0 name changepage category Package @@ -51833,7 +52801,7 @@ catalogue-version 0.8 name checkcites category Package -revision 70397 +revision 73120 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 @@ -51850,7 +52818,7 @@ catalogue-contact-repository https://gitlab.com/islandoftex/checkcites catalogue-ctan /support/checkcites catalogue-license lppl1.3 catalogue-topics debug-supp -catalogue-version 2.7 +catalogue-version 2.8 name checkcites.aarch64-linux category Package @@ -52308,7 +53276,7 @@ catalogue-version 4.17 name chemformula-ru category Package -revision 71764 +revision 71883 shortdesc Using the chemformula package with babel-russian settings longdesc The chemformula package and babel-russian settings longdesc (russian.ldf) both define macros named "\ch". The package @@ -52319,7 +53287,7 @@ longdesc and/or defines a new macro \Ch for that purpose. docfiles size=45 texmf-dist/doc/latex/chemformula-ru/README.md details="Readme (English)" texmf-dist/doc/latex/chemformula-ru/README.ru details="Readme (Russian)" language="ru" - texmf-dist/doc/latex/chemformula-ru/chemformula-ru.pdf details="Package documentation" + texmf-dist/doc/latex/chemformula-ru/chemformula-ru.pdf details="Package documentation (English and Russian)" texmf-dist/doc/latex/chemformula-ru/chemformula-ru.tex runfiles size=1 texmf-dist/tex/latex/chemformula-ru/chemformula-ru.sty @@ -52636,12 +53604,12 @@ catalogue-version 1.2 name chess-problem-diagrams category Package -revision 63708 +revision 72556 shortdesc A package for typesetting chess problem diagrams 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. -docfiles size=89 +docfiles size=90 texmf-dist/doc/latex/chess-problem-diagrams/README details="Readme" texmf-dist/doc/latex/chess-problem-diagrams/diagram.pdf details="Package documentation" srcfiles size=28 @@ -52653,11 +53621,11 @@ runfiles size=16 catalogue-ctan /macros/latex/contrib/chess-problem-diagrams catalogue-license lppl1.2 catalogue-topics games -catalogue-version 1.21 +catalogue-version 1.22 name chessboard category Package -revision 56833 +revision 72795 shortdesc Print chess boards longdesc This package offers commands to print chessboards. It can print longdesc partial boards, hide pieces and fields, color the boards and @@ -52666,7 +53634,7 @@ longdesc place pieces on the board. Using exotic pieces (e.g., for fairy longdesc chess) is possible. The documentation includes an example of an longdesc animated chessboard, for those whose PDF viewer can display longdesc animations. -docfiles size=641 +docfiles size=217 texmf-dist/doc/latex/chessboard/README.md details="Readme" texmf-dist/doc/latex/chessboard/brett.jpg texmf-dist/doc/latex/chessboard/chessboard-skakps.pdf @@ -52690,7 +53658,7 @@ catalogue-contact-support https://github.com/u-fischer/chessboard/issues catalogue-ctan /macros/latex/contrib/chessboard catalogue-license lppl catalogue-topics games -catalogue-version 1.9 +catalogue-version 2.0 name chessfss category Package @@ -54789,13 +55757,13 @@ binfiles arch=x86_64-solaris size=1 name chktex category TLCore -revision 71205 +revision 73776 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 -docfiles size=112 +docfiles size=125 texmf-dist/doc/chktex/ChkTeX.pdf details="System documentation" texmf-dist/doc/man/man1/chktex.1 texmf-dist/doc/man/man1/chktex.man1.pdf @@ -54818,7 +55786,7 @@ catalogue-version 1.7.9 name chktex.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of chktex binfiles arch=aarch64-linux size=39 bin/aarch64-linux/chktex @@ -54827,7 +55795,7 @@ binfiles arch=aarch64-linux size=39 name chktex.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of chktex binfiles arch=amd64-freebsd size=45 bin/amd64-freebsd/chktex @@ -54836,7 +55804,7 @@ binfiles arch=amd64-freebsd size=45 name chktex.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of chktex binfiles arch=amd64-netbsd size=44 bin/amd64-netbsd/chktex @@ -54845,16 +55813,16 @@ binfiles arch=amd64-netbsd size=44 name chktex.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of chktex -binfiles arch=armhf-linux size=31 +binfiles arch=armhf-linux size=28 bin/armhf-linux/chktex bin/armhf-linux/chkweb bin/armhf-linux/deweb name chktex.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of chktex binfiles arch=i386-freebsd size=45 bin/i386-freebsd/chktex @@ -54863,16 +55831,16 @@ binfiles arch=i386-freebsd size=45 name chktex.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of chktex -binfiles arch=i386-linux size=40 +binfiles arch=i386-linux size=44 bin/i386-linux/chktex bin/i386-linux/chkweb bin/i386-linux/deweb name chktex.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of chktex binfiles arch=i386-netbsd size=41 bin/i386-netbsd/chktex @@ -54881,7 +55849,7 @@ binfiles arch=i386-netbsd size=41 name chktex.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of chktex binfiles arch=i386-solaris size=36 bin/i386-solaris/chktex @@ -54890,7 +55858,7 @@ binfiles arch=i386-solaris size=36 name chktex.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of chktex binfiles arch=universal-darwin size=90 bin/universal-darwin/chktex @@ -54899,7 +55867,7 @@ binfiles arch=universal-darwin size=90 name chktex.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of chktex binfiles arch=windows size=31 bin/windows/chktex.exe @@ -54907,7 +55875,7 @@ binfiles arch=windows size=31 name chktex.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of chktex binfiles arch=x86_64-cygwin size=20 bin/x86_64-cygwin/chktex.exe @@ -54916,7 +55884,7 @@ binfiles arch=x86_64-cygwin size=20 name chktex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of chktex binfiles arch=x86_64-darwinlegacy size=37 bin/x86_64-darwinlegacy/chktex @@ -54925,7 +55893,7 @@ binfiles arch=x86_64-darwinlegacy size=37 name chktex.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of chktex binfiles arch=x86_64-linux size=38 bin/x86_64-linux/chktex @@ -54934,7 +55902,7 @@ binfiles arch=x86_64-linux size=38 name chktex.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of chktex binfiles arch=x86_64-linuxmusl size=40 bin/x86_64-linuxmusl/chktex @@ -54943,7 +55911,7 @@ binfiles arch=x86_64-linuxmusl size=40 name chktex.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of chktex binfiles arch=x86_64-solaris size=42 bin/x86_64-solaris/chktex @@ -55161,6 +56129,29 @@ catalogue-license mit catalogue-topics churchslavonic multilingual-addon catalogue-version 0.2.4 +name chuushaku +category Package +revision 73263 +shortdesc Flexible book notes in Japanese +longdesc This style file is designed for compiling book notes in +longdesc Japanese as part of the body text. ("Chuushaku" means +longdesc "booknotes" in Japanese.) The "remember picture" feature +longdesc automatically calculates coordinates, eliminating the need for +longdesc manual adjustment of note positions. The main packages used in +longdesc chuushaku.sty are TikZ, amsmath, framed, and calc. +docfiles size=47 + texmf-dist/doc/latex/chuushaku/README.txt details="Readme" + texmf-dist/doc/latex/chuushaku/chuushaku-sample.pdf details="Example of use" language="ja" + texmf-dist/doc/latex/chuushaku/chuushaku-sample.tex + texmf-dist/doc/latex/chuushaku/chuushaku.pdf details="Package documentation" language="ja" + texmf-dist/doc/latex/chuushaku/chuushaku.tex +runfiles size=1 + texmf-dist/tex/latex/chuushaku/chuushaku.sty +catalogue-ctan /macros/latex/contrib/chuushaku +catalogue-license lppl1.3c +catalogue-topics notes japanese +catalogue-version 1.0.1 + name cidarticle category Package revision 68976 @@ -55375,7 +56366,7 @@ catalogue-version 1.3.3 name circledtext category Package -revision 63166 +revision 72238 shortdesc Create circled text longdesc This LaTeX package provides a macro \circledtext to typeset longdesc circled text. Its starred version can produce an inverted @@ -55385,7 +56376,7 @@ docfiles size=61 texmf-dist/doc/latex/circledtext/build.sh texmf-dist/doc/latex/circledtext/circledtext.pdf details="Package documentation" language="zh,en" texmf-dist/doc/latex/circledtext/circledtext.tex -runfiles size=9 +runfiles size=11 texmf-dist/tex/latex/circledtext/circledtext.sty catalogue-also circledsteps catalogue-contact-bugs https://github.com/registor/circledtext/issues @@ -55393,11 +56384,11 @@ 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 +catalogue-version 1.1.1 name circuit-macros category Package -revision 71389 +revision 73012 shortdesc M4 macros for electric circuit diagrams longdesc A set of m4 macros for drawing high-quality electric circuits longdesc containing fundamental elements, amplifiers, transistors, and @@ -55414,7 +56405,7 @@ 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. -docfiles size=1622 +docfiles size=1641 texmf-dist/doc/latex/circuit-macros/CHANGES texmf-dist/doc/latex/circuit-macros/Copying texmf-dist/doc/latex/circuit-macros/INSTALL @@ -55566,6 +56557,7 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/Inclpdf.m4 texmf-dist/doc/latex/circuit-macros/examples/Inductors.m4 texmf-dist/doc/latex/circuit-macros/examples/Jack.m4 + texmf-dist/doc/latex/circuit-macros/examples/LT3724.m4 texmf-dist/doc/latex/circuit-macros/examples/Lettering.m4def texmf-dist/doc/latex/circuit-macros/examples/Logic.m4 texmf-dist/doc/latex/circuit-macros/examples/Loglog.m4 @@ -55578,6 +56570,7 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/NLG.m4 texmf-dist/doc/latex/circuit-macros/examples/NPDT.m4 texmf-dist/doc/latex/circuit-macros/examples/Nport.m4 + texmf-dist/doc/latex/circuit-macros/examples/OneLine.m4 texmf-dist/doc/latex/circuit-macros/examples/Opamp.m4 texmf-dist/doc/latex/circuit-macros/examples/Optoiso.m4 texmf-dist/doc/latex/circuit-macros/examples/Pconn.m4 @@ -55592,6 +56585,7 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/Schottky.m4 texmf-dist/doc/latex/circuit-macros/examples/Sevensegment.m4 texmf-dist/doc/latex/circuit-macros/examples/Shadowed.m4 + texmf-dist/doc/latex/circuit-macros/examples/Shapedefs.m4 texmf-dist/doc/latex/circuit-macros/examples/ShiftR.m4 texmf-dist/doc/latex/circuit-macros/examples/Sierpinski.m4 texmf-dist/doc/latex/circuit-macros/examples/Sixpole.m4 @@ -55663,6 +56657,8 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/dpv/InclepsDPV.m4 texmf-dist/doc/latex/circuit-macros/examples/dpv/InductorsDPV.m4 texmf-dist/doc/latex/circuit-macros/examples/dpv/JackDPV.m4 + texmf-dist/doc/latex/circuit-macros/examples/dpv/LT3724DPV.m4 + texmf-dist/doc/latex/circuit-macros/examples/dpv/LT3757DPV.m4 texmf-dist/doc/latex/circuit-macros/examples/dpv/LgateDPV.m4 texmf-dist/doc/latex/circuit-macros/examples/dpv/LogicDPV.m4 texmf-dist/doc/latex/circuit-macros/examples/dpv/LoglogDPV.m4 @@ -55753,11 +56749,10 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/dpv/windows.m4 texmf-dist/doc/latex/circuit-macros/examples/dpv/wormDPV.m4 texmf-dist/doc/latex/circuit-macros/examples/ex01.m4 - texmf-dist/doc/latex/circuit-macros/examples/ex02.m4 + texmf-dist/doc/latex/circuit-macros/examples/ex02.tex texmf-dist/doc/latex/circuit-macros/examples/ex03.m4 texmf-dist/doc/latex/circuit-macros/examples/ex04.m4 texmf-dist/doc/latex/circuit-macros/examples/ex05.m4 - texmf-dist/doc/latex/circuit-macros/examples/ex06.m4 texmf-dist/doc/latex/circuit-macros/examples/ex08.m4 texmf-dist/doc/latex/circuit-macros/examples/ex09.m4 texmf-dist/doc/latex/circuit-macros/examples/ex10.m4 @@ -55794,6 +56789,7 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/extras/Floor.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Flow2.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/HSV.m4 + texmf-dist/doc/latex/circuit-macros/examples/extras/HSVS.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Hexagon.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Highgain.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/IC10107.m4 @@ -55801,7 +56797,6 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/extras/Makefile texmf-dist/doc/latex/circuit-macros/examples/extras/Metamodel.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Obliq.m4 - texmf-dist/doc/latex/circuit-macros/examples/extras/OneLine.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/OpAmpFilter.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Optics.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Orbits.m4 @@ -55819,7 +56814,6 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/extras/SPM.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/SampleFlow.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/ShadeSector.m4 - texmf-dist/doc/latex/circuit-macros/examples/extras/Shadow.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Shaky.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Spec555.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Squiggle.m4 @@ -55831,6 +56825,7 @@ docfiles size=1622 texmf-dist/doc/latex/circuit-macros/examples/extras/Wheat.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Wheel.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/Zcos.m4 + texmf-dist/doc/latex/circuit-macros/examples/extras/ex02.m4 texmf-dist/doc/latex/circuit-macros/examples/extras/ex17.m4 texmf-dist/doc/latex/circuit-macros/examples/fet.m4 texmf-dist/doc/latex/circuit-macros/examples/files.tex @@ -55900,11 +56895,11 @@ catalogue-contact-repository https://gitlab.com/aplevich/circuit_macros catalogue-ctan /graphics/circuit_macros catalogue-license lppl1.3c catalogue-topics diagram-circ electronic -catalogue-version 10.6 +catalogue-version 10.7 name circuitikz category Package -revision 71455 +revision 73395 shortdesc Draw electrical networks with TikZ longdesc The package provides a set of macros for naturally typesetting longdesc electrical and (somewhat less naturally, perhaps) electronic @@ -55912,7 +56907,7 @@ 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. -docfiles size=770 +docfiles size=790 texmf-dist/doc/context/third/circuitikz/circuitikz-context.pdf texmf-dist/doc/context/third/circuitikz/circuitikz-context.tex texmf-dist/doc/generic/circuitikz/CHANGELOG.md @@ -55922,7 +56917,7 @@ docfiles size=770 texmf-dist/doc/latex/circuitikz/circuitikzmanual.tex texmf-dist/doc/latex/circuitikz/compatibility.tex texmf-dist/doc/latex/circuitikz/ctikzmanutils.sty -runfiles size=3398 +runfiles size=3405 texmf-dist/tex/context/third/circuitikz/t-circuitikz-0.8.3.tex texmf-dist/tex/context/third/circuitikz/t-circuitikz-0.9.3.tex texmf-dist/tex/context/third/circuitikz/t-circuitikz-0.9.6.tex @@ -55973,11 +56968,11 @@ 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.6.9 +catalogue-version 1.7.1 name circularglyphs category Package -revision 68476 +revision 73069 shortdesc A circular glyphs alphabet longdesc Circular Glyphs is a graphic alphabet of substitution based on longdesc a geometric construction using circles and arcs on a grid. The @@ -55993,8 +56988,6 @@ docfiles size=51 runfiles size=5 texmf-dist/tex/latex/circularglyphs/circularglyphs.sty catalogue-also fundus-startrek -catalogue-contact-bugs https://github.com/cpierquet/circularglyphs/issues -catalogue-contact-repository https://github.com/cpierquet/circularglyphs catalogue-ctan /graphics/pgf/contrib/circularglyphs catalogue-license lppl1.3c other-free catalogue-topics font pgf-tikz @@ -56002,7 +56995,7 @@ catalogue-version 0.1.1 name citation-style-language category Package -revision 71468 +revision 73596 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 @@ -56016,15 +57009,15 @@ 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-tinyyaml depend lua-uca depend lualibs depend luatex depend luaxml depend url -docfiles size=73 +docfiles size=75 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" @@ -56032,7 +57025,7 @@ docfiles size=73 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=4207 +runfiles size=2710 texmf-dist/scripts/citation-style-language/citeproc-bibtex-data.lua texmf-dist/scripts/citation-style-language/citeproc-bibtex-parser.lua texmf-dist/scripts/citation-style-language/citeproc-bibtex2csl.lua @@ -56042,11 +57035,10 @@ runfiles size=4207 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-journal-data.lua - texmf-dist/scripts/citation-style-language/citeproc-latex-core.lua texmf-dist/scripts/citation-style-language/citeproc-latex-data.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-manager.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 @@ -56094,6 +57086,7 @@ runfiles size=4207 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-gl-ES.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 @@ -56111,6 +57104,7 @@ runfiles size=4207 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-pa-PK.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 @@ -56145,7 +57139,7 @@ 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 expl3 -catalogue-version 0.5.0 +catalogue-version 0.6.8 name citation-style-language.aarch64-linux category Package @@ -57056,7 +58050,7 @@ catalogue-version 4.8.5 name cjkutils.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of cjkutils binfiles arch=aarch64-linux size=57 bin/aarch64-linux/bg5+latex @@ -57083,7 +58077,7 @@ binfiles arch=aarch64-linux size=57 name cjkutils.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of cjkutils binfiles arch=amd64-freebsd size=61 bin/amd64-freebsd/bg5+latex @@ -57110,7 +58104,7 @@ binfiles arch=amd64-freebsd size=61 name cjkutils.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of cjkutils binfiles arch=amd64-netbsd size=61 bin/amd64-netbsd/bg5+latex @@ -57137,9 +58131,9 @@ binfiles arch=amd64-netbsd size=61 name cjkutils.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of cjkutils -binfiles arch=armhf-linux size=49 +binfiles arch=armhf-linux size=45 bin/armhf-linux/bg5+latex bin/armhf-linux/bg5+pdflatex bin/armhf-linux/bg5conv @@ -57164,7 +58158,7 @@ binfiles arch=armhf-linux size=49 name cjkutils.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of cjkutils binfiles arch=i386-freebsd size=61 bin/i386-freebsd/bg5+latex @@ -57191,9 +58185,9 @@ binfiles arch=i386-freebsd size=61 name cjkutils.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of cjkutils -binfiles arch=i386-linux size=56 +binfiles arch=i386-linux size=70 bin/i386-linux/bg5+latex bin/i386-linux/bg5+pdflatex bin/i386-linux/bg5conv @@ -57218,9 +58212,9 @@ binfiles arch=i386-linux size=56 name cjkutils.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of cjkutils -binfiles arch=i386-netbsd size=55 +binfiles arch=i386-netbsd size=56 bin/i386-netbsd/bg5+latex bin/i386-netbsd/bg5+pdflatex bin/i386-netbsd/bg5conv @@ -57245,7 +58239,7 @@ binfiles arch=i386-netbsd size=55 name cjkutils.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of cjkutils binfiles arch=i386-solaris size=52 bin/i386-solaris/bg5+latex @@ -57272,7 +58266,7 @@ binfiles arch=i386-solaris size=52 name cjkutils.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of cjkutils binfiles arch=universal-darwin size=264 bin/universal-darwin/bg5+latex @@ -57299,7 +58293,7 @@ binfiles arch=universal-darwin size=264 name cjkutils.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of cjkutils binfiles arch=windows size=57 bin/windows/bg5conv.exe @@ -57324,7 +58318,7 @@ binfiles arch=windows size=57 name cjkutils.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of cjkutils binfiles arch=x86_64-cygwin size=42 bin/x86_64-cygwin/bg5+latex @@ -57351,7 +58345,7 @@ binfiles arch=x86_64-cygwin size=42 name cjkutils.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of cjkutils binfiles arch=x86_64-darwinlegacy size=58 bin/x86_64-darwinlegacy/bg5+latex @@ -57378,7 +58372,7 @@ binfiles arch=x86_64-darwinlegacy size=58 name cjkutils.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of cjkutils binfiles arch=x86_64-linux size=66 bin/x86_64-linux/bg5+latex @@ -57405,9 +58399,9 @@ binfiles arch=x86_64-linux size=66 name cjkutils.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of cjkutils -binfiles arch=x86_64-linuxmusl size=56 +binfiles arch=x86_64-linuxmusl size=67 bin/x86_64-linuxmusl/bg5+latex bin/x86_64-linuxmusl/bg5+pdflatex bin/x86_64-linuxmusl/bg5conv @@ -57432,9 +58426,9 @@ binfiles arch=x86_64-linuxmusl size=56 name cjkutils.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of cjkutils -binfiles arch=x86_64-solaris size=59 +binfiles arch=x86_64-solaris size=63 bin/x86_64-solaris/bg5+latex bin/x86_64-solaris/bg5+pdflatex bin/x86_64-solaris/bg5conv @@ -57459,30 +58453,29 @@ binfiles arch=x86_64-solaris size=59 name cjs-rcs-article category Package -revision 69006 +revision 71936 shortdesc Article class for The Canadian Journal of Statistics longdesc The document class cjs-rcs-article and its companion longdesc bibliographic styles cjs-rcs-en and cjs-rcs-fr typeset longdesc manuscripts immediately in accordance with the presentation longdesc rules of The Canadian Journal of Statistics. -docfiles size=164 +docfiles size=94 texmf-dist/doc/latex/cjs-rcs-article/README.md details="Readme" texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-article-fr.pdf details="Package documentation (French)" language="fr" - texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-article-fr.tex texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-article.pdf details="Package documentation (English)" - texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-bst-en.dbj - texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-bst-fr.dbj - texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-class.dbj - texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-english.mbs - texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-french.mbs - texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-merlin.mbs texmf-dist/doc/latex/cjs-rcs-article/cjs-rcs-merlin.pdf details="Documentation of bibliographic style" texmf-dist/doc/latex/cjs-rcs-article/cjs-template.tex texmf-dist/doc/latex/cjs-rcs-article/rcs-gabarit.tex -srcfiles size=49 +srcfiles size=128 texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-article.dtx texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-article.ins -runfiles size=25 + texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-bst-en.dbj + texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-bst-fr.dbj + texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-class.dbj + texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-english.mbs + texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-french.mbs + texmf-dist/source/latex/cjs-rcs-article/cjs-rcs-merlin.mbs +runfiles size=26 texmf-dist/bibtex/bst/cjs-rcs-article/cjs-rcs-en.bst texmf-dist/bibtex/bst/cjs-rcs-article/cjs-rcs-fr.bst texmf-dist/tex/latex/cjs-rcs-article/cjs-rcs-article.cls @@ -57493,7 +58486,7 @@ catalogue-contact-repository https://gitlab.com/cjs-rcs/cjs-rcs-article catalogue-ctan /macros/latex/contrib/cjs-rcs-article catalogue-license lppl1.3c cc-by-sa-4 catalogue-topics journalpub article-like class doc-templ bibtex-sty -catalogue-version 1.0 +catalogue-version 1.1a name clara category Package @@ -57829,14 +58822,14 @@ catalogue-version 0.1a name classicthesis category Package -revision 48041 +revision 73676 shortdesc A "classically styled" thesis package longdesc This package provides an elegant layout designed in homage to longdesc Bringhurst's "The Elements of Typographic Style". It makes use longdesc of a range of techniques to get the best results achievable longdesc using TeX. Included in the bundle are templates to make thesis longdesc writing easier. -docfiles size=228 +docfiles size=250 texmf-dist/doc/latex/classicthesis/AMiede_Publications.bib texmf-dist/doc/latex/classicthesis/Bibliography.bib texmf-dist/doc/latex/classicthesis/CHANGES @@ -57846,9 +58839,7 @@ docfiles size=228 texmf-dist/doc/latex/classicthesis/Chapters/Chapter03.tex texmf-dist/doc/latex/classicthesis/Chapters/Chapter0A.tex texmf-dist/doc/latex/classicthesis/ClassicThesis.pdf details="Package documentation" - texmf-dist/doc/latex/classicthesis/ClassicThesis.tcp texmf-dist/doc/latex/classicthesis/ClassicThesis.tex - texmf-dist/doc/latex/classicthesis/ClassicThesis.tps texmf-dist/doc/latex/classicthesis/Examples/classicthesis-arsclassica-book.pdf texmf-dist/doc/latex/classicthesis/Examples/classicthesis-arsclassica-book.tex texmf-dist/doc/latex/classicthesis/Examples/classicthesis-article.pdf @@ -57878,8 +58869,10 @@ docfiles size=228 texmf-dist/doc/latex/classicthesis/gfx/example_2.jpg texmf-dist/doc/latex/classicthesis/gfx/example_3.jpg texmf-dist/doc/latex/classicthesis/gfx/example_4.jpg -runfiles size=9 +runfiles size=11 texmf-dist/tex/latex/classicthesis/classicthesis-arsclassica.sty + texmf-dist/tex/latex/classicthesis/classicthesis-linedheaders.sty + texmf-dist/tex/latex/classicthesis/classicthesis-plain.sty texmf-dist/tex/latex/classicthesis/classicthesis.sty catalogue-contact-bugs https://bitbucket.org/amiede/classicthesis/issues catalogue-contact-home https://bitbucket.org/amiede/classicthesis/wiki/Home @@ -57887,7 +58880,7 @@ catalogue-contact-repository https://bitbucket.org/amiede/classicthesis catalogue-ctan /macros/latex/contrib/classicthesis catalogue-license gpl2+ catalogue-topics dissertation -catalogue-version 4.6 +catalogue-version 4.8 name classpack category Package @@ -58206,13 +59199,13 @@ catalogue-version 0.4.0 name clicks category Package -revision 64602 +revision 73208 shortdesc Slide Deck Animation 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 +depend pgfopts docfiles size=63 texmf-dist/doc/latex/clicks/DEPENDS.txt texmf-dist/doc/latex/clicks/LICENSE.txt @@ -58227,7 +59220,7 @@ 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 +catalogue-version 0.4.3 name clipboard category Package @@ -63969,7 +64962,7 @@ catalogue-version 1.0.4 name codedescribe category Package -revision 69943 +revision 73930 shortdesc LaTeX code description and documentation longdesc This package aims to document both document level (i.e. final longdesc user) commands, as well package/class level commands. It is @@ -63989,7 +64982,7 @@ catalogue-contact-repository https://github.com/alceu-frigeri/codedescribe catalogue-ctan /macros/latex/contrib/codedescribe catalogue-license lppl1.3c gpl catalogue-topics doc-supp expl3 -catalogue-version 1.4 +catalogue-version 1.5b name codedoc category Package @@ -64019,7 +65012,7 @@ catalogue-version 0.3 name codehigh category Package -revision 65787 +revision 74004 shortdesc Highlight code and demos with l3regex and lpeg longdesc This package uses the l3regex package from the LaTeX3 longdesc Programming Layer to parse and highlight source code and demos. @@ -64028,7 +65021,7 @@ 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. -docfiles size=34 +docfiles size=28 texmf-dist/doc/latex/codehigh/README.txt details="Readme" texmf-dist/doc/latex/codehigh/codehigh.pdf details="Package documentation" texmf-dist/doc/latex/codehigh/codehigh.tex @@ -64040,7 +65033,7 @@ 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 +catalogue-version 2025B name codepage category Package @@ -64893,7 +65886,7 @@ catalogue-version 0.4c name collection-basic category Collection -revision 59159 +revision 72890 shortdesc Essential programs and files longdesc These files are regarded as basic for any TeX system, covering longdesc plain TeX macros, Computer Modern fonts, and configuration for @@ -64908,6 +65901,7 @@ depend ec depend enctex depend etex depend etex-pkg +depend extractbb depend glyphlist depend graphics-def depend hyph-utf8 @@ -64941,7 +65935,7 @@ depend xdvi name collection-bibtexextra category Collection -revision 70554 +revision 73262 shortdesc BibTeX additional styles longdesc Additional BibTeX styles and bibliography data(bases), notably longdesc including BibLaTeX. @@ -64959,6 +65953,7 @@ depend beebe depend besjournals depend bestpapers depend bib2gls +depend bib2qr depend bibarts depend bibcop depend biber @@ -64981,6 +65976,7 @@ depend biblatex-caspervector depend biblatex-chem depend biblatex-chicago depend biblatex-claves +depend biblatex-cse depend biblatex-cv depend biblatex-dw depend biblatex-enc @@ -65114,7 +66110,7 @@ depend zootaxa-bst name collection-binextra category Collection -revision 70681 +revision 73049 shortdesc TeX auxiliary programs longdesc Myriad additional TeX-related support programs. Includes longdesc programs and macros for DVI file manipulation, literate @@ -65155,6 +66151,7 @@ depend dvipng depend dvipos depend dvisvgm depend easydtx +depend expltools depend findhyph depend fragmaster depend git-latexdiff @@ -65199,6 +66196,7 @@ depend pythontex depend runtexshebang depend seetexk depend spix +depend sqltex depend srcredact depend sty2dtx depend synctex @@ -65232,14 +66230,16 @@ depend xpdfopen name collection-context category Collection -revision 71515 +revision 72727 shortdesc ConTeXt and packages longdesc Hans Hagen's powerful ConTeXt system, https://pragma-ade.com. longdesc Also includes third-party ConTeXt packages. depend collection-basic depend context depend context-calendar-examples +depend context-chat depend context-collating-marks +depend context-companion-fonts depend context-cyrillicnumbers depend context-filter depend context-gnuplot @@ -65262,7 +66262,7 @@ depend luajittex name collection-fontsextra category Collection -revision 71729 +revision 73401 shortdesc Additional fonts depend aboensis depend academicons @@ -65297,7 +66297,7 @@ depend auncial-new depend aurical depend b1encoding depend barcodes -depend baskervald +depend baskervaldadf depend baskervaldx depend baskervillef depend bbding @@ -65314,6 +66314,7 @@ depend bguq depend bitter depend blacklettert1 depend boisik +depend bonum-otf depend bookhands depend boondox depend braille @@ -65326,6 +66327,7 @@ depend cantarell depend carlito depend carolmin-ps depend cascadia-code +depend cascadiamono-otf depend ccicons depend cfr-initials depend cfr-lm @@ -65353,7 +66355,6 @@ depend comfortaa depend comicneue depend concmath-fonts depend concmath-otf -depend context-companion-fonts depend cookingsymbols depend cooperhewitt depend cormorantgaramond @@ -65392,7 +66393,7 @@ depend eczar depend eiad depend eiad-ltx depend ektype-tanka -depend electrum +depend electrumadf depend elvish depend epigrafica depend epsdice @@ -65419,6 +66420,7 @@ depend fontawesome depend fontawesome5 depend fontmfizz depend fonts-churchslavonic +depend fontscripts depend forum depend fourier depend fouriernc @@ -65430,7 +66432,8 @@ depend garamond-math depend gelasio depend gelasiomath depend genealogy -depend gentium-tug +depend gentium-otf +depend gentium-sil depend gfsartemisia depend gfsbodoni depend gfscomplutum @@ -65469,6 +66472,7 @@ depend ipaex-type1 depend iwona depend jablantile depend jamtimes +depend jetbrainsmono-otf depend josefin depend junicode depend junicodevf @@ -65496,6 +66500,7 @@ depend lineara depend linguisticspro depend lobster2 depend logix +depend luwiantype depend lxfonts depend ly1 depend magra @@ -65507,6 +66512,7 @@ depend mdputu depend mdsymbol depend merriweather depend metsymb +depend mfb-oldstyle depend miama depend mintspirit depend missaali @@ -65563,7 +66569,7 @@ depend raleway depend recycle depend rit-fonts depend roboto -depend romande +depend romandeadf depend rosario depend rsfso depend ruscap @@ -65698,7 +66704,7 @@ depend ttfutils name collection-formatsextra category Collection -revision 70875 +revision 72250 shortdesc Additional formats longdesc Collected TeX `formats', i.e., large-scale macro packages longdesc designed to be dumped into .fmt files -- excluding the most @@ -65709,7 +66715,6 @@ depend aleph depend antomega depend collection-basic depend collection-latex -depend edmac depend eplain depend hitex depend jadetex @@ -65728,7 +66733,7 @@ depend xmltex name collection-games category Collection -revision 71129 +revision 73533 shortdesc Games typesetting longdesc Setups for typesetting various games, including chess. depend bartel-chess-fonts @@ -65781,6 +66786,7 @@ depend sudoku depend sudokubundle depend tangramtikz depend thematicpuzzle +depend tikz-triminos depend trivialpursuit depend twoxtwogame depend wargame @@ -65791,7 +66797,7 @@ depend xskak name collection-humanities category Collection -revision 68465 +revision 72692 shortdesc Humanities packages longdesc Packages for law, linguistics, social sciences, humanities, longdesc etc. @@ -65807,12 +66813,15 @@ depend dramatist depend dvgloss depend ecltree depend edfnotes +depend edmac depend eledform depend eledmac depend expex depend expex-glossonly depend gb4e +depend gb4e-next depend gmverse +depend interlinear depend jura depend juraabbrev depend juramisc @@ -65893,7 +66902,7 @@ depend xindy-persian name collection-langchinese category Collection -revision 70738 +revision 72136 shortdesc Chinese longdesc Support for Chinese; additional packages in collection-langcjk. depend arphic @@ -65919,6 +66928,7 @@ depend njurepo depend pgfornament-han depend qyxf-book depend sjtutex +depend suanpan-l3 depend texlive-zh-cn depend texproposal depend tlmgr-intro-zh-cn @@ -66039,7 +67049,7 @@ depend vlna name collection-langenglish category Collection -revision 71432 +revision 74022 shortdesc US and UK English longdesc Support for, and documentation in, English. depend amiweb2c-guide @@ -66102,7 +67112,6 @@ depend tds depend tex-font-errors-cheatsheet depend tex-nutshell depend tex-overview -depend tex-refs depend tex-vpat depend texbytopic depend texonly @@ -66114,12 +67123,13 @@ depend typstfun depend undergradmath depend visualfaq depend webguide +depend wrapstuff-doc-en depend xetexref depend yet-another-guide-latex2e name collection-langeuropean category Collection -revision 66432 +revision 73414 shortdesc Other European languages longdesc Support for a number of European languages; others (Greek, longdesc German, French, ...) have their own collections, depending @@ -66159,6 +67169,7 @@ depend gloss-occitan depend hrlatex depend huaz depend hulipsum +depend hyphen-albanian depend hyphen-croatian depend hyphen-danish depend hyphen-dutch @@ -66197,7 +67208,7 @@ depend turkmen name collection-langfrench category Collection -revision 71182 +revision 72499 shortdesc French longdesc Support for French and Basque. depend aeguill @@ -66220,6 +67231,7 @@ depend epslatex-fr depend expose-expl3-dunkerque-2019 depend facture depend faq-fr +depend faq-fr-gutenberg depend formation-latex-ul depend frenchmath depend frletter @@ -66337,7 +67349,7 @@ depend yannisgr name collection-langitalian category Collection -revision 55129 +revision 72943 shortdesc Italian longdesc Support for Italian. depend amsldoc-it @@ -66345,6 +67357,7 @@ depend amsmath-it depend amsthdoc-it depend antanilipsum depend babel-italian +depend biblatex-accursius depend codicefiscaleitaliano depend collection-basic depend fancyhdr-it @@ -66362,7 +67375,7 @@ depend verifica name collection-langjapanese category Collection -revision 70738 +revision 73551 shortdesc Japanese longdesc Support for Japanese; additional packages are in longdesc collection-langcjk. @@ -66371,6 +67384,7 @@ depend asternote depend babel-japanese depend bxbase depend bxcjkjatype +depend bxcoloremoji depend bxghost depend bxjaholiday depend bxjalipsum @@ -66379,8 +67393,10 @@ depend bxjatoucs depend bxjscls depend bxorigcapt depend bxwareki +depend chuushaku depend collection-langcjk depend convbkmk +depend convert-jpfonts depend endnotesj depend gckanbun depend gentombow @@ -66452,7 +67468,7 @@ depend unfonts-extra name collection-langother category Collection -revision 68719 +revision 74031 shortdesc Other languages longdesc Support for languages not otherwise listed, including Indic, longdesc Thai, Vietnamese, Hebrew, Indonesian, African languages, and @@ -66495,12 +67511,14 @@ depend hyphen-coptic depend hyphen-esperanto depend hyphen-ethiopic depend hyphen-georgian +depend hyphen-hebrew depend hyphen-indic depend hyphen-indonesian depend hyphen-interlingua depend hyphen-sanskrit depend hyphen-thai depend hyphen-turkmen +depend hyphen-vietnamese depend latex-mr depend latexbangla depend latino-sine-flexione @@ -66508,7 +67526,6 @@ depend lshort-thai depend lshort-vietnamese depend marathi depend ntheorem-vn -depend padauk depend quran-bn depend quran-id depend quran-ur @@ -66550,9 +67567,9 @@ depend utf8mex name collection-langportuguese category Collection -revision 67125 +revision 73303 shortdesc Portuguese -longdesc Support for Portuguese. +longdesc Support for Portuguese and Brazilian Portuguese. depend babel-portuges depend beamer-tut-pt depend collection-basic @@ -66565,11 +67582,12 @@ depend lshort-portuguese depend numberpt depend ordinalpt depend ptlatexcommands +depend tabularray-abnt depend xypic-tut-pt name collection-langspanish category Collection -revision 67307 +revision 72203 shortdesc Spanish longdesc Support for Spanish. depend antique-spanish-units @@ -66585,11 +67603,12 @@ depend l2tabu-spanish depend latex2e-help-texinfo-spanish depend latexcheat-esmx depend lshort-spanish +depend quran-es depend texlive-es name collection-latex category Collection -revision 69131 +revision 73720 shortdesc LaTeX fundamental packages longdesc These packages are either mandated by the core LaTeX team, or longdesc very widely used and strongly recommended in practice. @@ -66610,6 +67629,7 @@ depend collection-basic depend colortbl depend epstopdf-pkg depend etexcmds +depend etoolbox depend fancyhdr depend firstaid depend fix2col @@ -66620,6 +67640,7 @@ depend graphics-cfg depend grfext depend hopatch depend hycolor +depend hypcap depend hyperref depend intcalc depend kvdefinekeys @@ -66655,7 +67676,7 @@ depend url name collection-latexextra category Collection -revision 71526 +revision 74035 shortdesc LaTeX additional packages longdesc A very large collection of add-on packages for LaTeX. depend 2up @@ -66690,6 +67711,7 @@ depend alterqcm depend altfont depend altsubsup depend amsaddr +depend anima depend animate depend anonchap depend answers @@ -66742,8 +67764,10 @@ depend beamertheme-cuerna depend beamertheme-detlevcm depend beamertheme-epyt depend beamertheme-focus +depend beamertheme-gotham depend beamertheme-light depend beamertheme-metropolis +depend beamertheme-mirage depend beamertheme-npbt depend beamertheme-phnompenh depend beamertheme-pure-minimalistic @@ -66755,11 +67779,13 @@ depend beamertheme-tcolorbox depend beamertheme-trigon depend beamertheme-upenn-bc depend beamerthemeamurmaple +depend beamerthemecelestia depend beamerthemeconcrete depend beamerthemejltree depend beamerthemelalic depend beamerthemenirma depend beamerthemenord +depend beamertools depend bearwear depend beaulivre depend beautybook @@ -66807,6 +67833,7 @@ depend bxtexlogo depend calcage depend calctab depend calculator +depend calculatoritems depend calrsfs depend cals depend calxxxx-yyyy @@ -66899,6 +67926,7 @@ depend combelow depend combine depend comma depend commado +depend commalists-tools depend commedit depend comment depend commonunicode @@ -67041,6 +68069,7 @@ depend doctools depend documentation depend docutils depend doi +depend doibanner depend dotarrow depend dotlessi depend dotseqn @@ -67103,9 +68132,11 @@ depend engpron depend engrec depend enotez depend ensps-colorscheme +depend enumext depend enumitem depend enumitem-zref depend envbig +depend enverb depend environ depend envlab depend epcqrcode @@ -67132,6 +68163,7 @@ depend etl depend etoc depend eukdate depend eulerpx +depend euromoney depend europasscv depend europecv depend everyhook @@ -67159,6 +68191,7 @@ depend export depend exsheets depend exsol depend extract +depend ezedits depend facsimile depend factura depend fail-fast @@ -67185,6 +68218,8 @@ depend filecontentsdef depend filedate depend fileinfo depend filemod +depend fillpages +depend fillwith depend fink depend finstrut depend fistrum @@ -67237,6 +68272,7 @@ depend formular depend fragments depend frame depend framed +depend framedsyntax depend frankenstein depend frege depend froufrou @@ -67304,6 +68340,7 @@ depend graphicscache depend graphicx-psmin depend graphicxbox depend graphpaper +depend gratzer-color-scheme depend grayhints depend grfpaste depend grid @@ -67326,6 +68363,7 @@ depend harnon-cv depend harpoon depend hc depend he-she +depend hebdomon depend hep-acronym depend hep-float depend hep-math @@ -67379,6 +68417,7 @@ depend incgraph depend indextools depend inline-images depend inlinedef +depend inlinegraphicx depend inlinelabel depend inputenx depend inputtrc @@ -67481,8 +68520,7 @@ depend listingsutf8 depend listlbls depend listliketab depend listofsymbols -depend litebook -depend litesolution +depend listparskip depend litetable depend lkproof depend lmake @@ -67631,6 +68669,7 @@ depend namespc depend ncclatex depend ncctools depend needspace +depend neoschool depend nestquot depend newcommand depend newenviron @@ -67649,6 +68688,7 @@ depend nidanfloat depend ninecolors depend nlctdoc depend noconflict +depend nodepthtext depend noindentafter depend noitcrul depend nolbreaks @@ -67691,6 +68731,7 @@ depend outlines depend outlining depend overlays depend overpic +depend packdoc depend padcount depend pagecolor depend pagecont @@ -67715,6 +68756,7 @@ depend parselines depend pas-cours depend pas-cv depend pas-tableur +depend passopt depend patch depend patchcmd depend pauldoc @@ -67743,6 +68785,7 @@ depend pdfsync depend pdfwin depend pdfx depend pecha +depend pegmatch depend perltex depend permute depend petiteannonce @@ -67792,6 +68835,7 @@ depend program depend progress depend progressbar depend projlib +depend pronunciation depend proofread depend properties depend prosper @@ -67816,6 +68860,7 @@ depend quoting depend quotmark depend ran_toks depend randexam +depend randintlist depend randtext depend rccol depend rcs-multi @@ -67874,11 +68919,13 @@ depend savetrees depend scale depend scalebar depend scalerel +depend scaletextbullet depend scanpages depend schedule depend schooldocs depend scontents depend scrambledenvs +depend scrhack depend scrlayer-fancyhdr depend scrlttr2copy depend scrwfile @@ -67968,6 +69015,7 @@ depend stdclsdv depend stdpage depend stealcaps depend stex +depend stocksize depend storebox depend storecmd depend stringstrings @@ -68027,6 +69075,7 @@ depend tcolorbox depend tdclock depend technics depend ted +depend telprint depend templatetools depend termcal depend termlist @@ -68056,6 +69105,7 @@ depend thumb depend thumbs depend thumby depend ticket +depend timeop depend tipauni depend titlecaps depend titlefoot @@ -68154,6 +69204,7 @@ depend warning depend warpcol depend was depend webquiz +depend whatsnote depend widetable depend widows-and-orphans depend williams @@ -68195,6 +69246,7 @@ depend xpatch depend xpeek depend xprintlen depend xpunctuate +depend xreview depend xsavebox depend xsim depend xstring @@ -68216,12 +69268,13 @@ depend zref depend zref-check depend zref-clever depend zref-vario +depend zugferd depend zwgetfdate depend zwpagelayout name collection-latexrecommended category Collection -revision 71527 +revision 73720 shortdesc LaTeX recommended packages longdesc A collection of recommended add-on packages for LaTeX which longdesc have widespread use. @@ -68237,7 +69290,6 @@ depend collection-latex depend crop depend ctable depend eso-pic -depend etoolbox depend euenc depend euler depend everysel @@ -68300,7 +69352,7 @@ depend xunicode name collection-luatex category Collection -revision 71743 +revision 74062 shortdesc LuaTeX packages longdesc Packages for LuaTeX, a TeX engine using Lua as an embedded longdesc scripting and extension language, with native support for @@ -68362,6 +69414,7 @@ depend lualibs depend lualinalg depend luamathalign depend luamaths +depend luamml depend luamodulartables depend luamplib depend luaoptions @@ -68372,14 +69425,17 @@ depend luaprogtable depend luaquotes depend luarandom depend luaset +depend luatbls depend luatex85 depend luatexbase depend luatexko depend luatextra +depend luatikz depend luatruthtable depend luavlna depend luaxml depend lutabulartools +depend marginalia depend minim depend minim-math depend minim-mp @@ -68411,15 +69467,17 @@ depend texfindpkg depend truthtable depend tsvtemplate depend typewriter +depend unibidi-lua depend uninormalize depend yamlvars name collection-mathscience category Collection -revision 71466 +revision 73955 shortdesc Mathematics, natural sciences, computer science packages depend 12many depend accents +depend aiplans depend alg depend algobox depend algorithm2e @@ -68432,6 +69490,7 @@ depend amscdx depend amstex depend annotate-equations depend apxproof +depend atableau depend autobreak depend axodraw2 depend backnaur @@ -68477,14 +69536,17 @@ depend coloredtheorem depend commath depend commutative-diagrams depend complexity +depend complexpolylongdiv depend computational-complexity depend concmath depend concrete depend conteq +depend cora-macs depend correctmathalign depend cryptocode depend cs-techrep depend csassignments +depend csthm depend cvss depend decision-table depend delim @@ -68494,6 +69556,7 @@ depend derivative depend diffcoeff depend digiconfigs depend dijkstra +depend domaincoloring depend drawmatrix depend drawstack depend dyntree @@ -68508,6 +69571,7 @@ depend eolang depend eqexpl depend eqnarray depend eqnnumwarn +depend euclidean-lattice depend euclideangeometry depend extarrows depend extpfeil @@ -68548,6 +69612,7 @@ depend jupynotex depend karnaugh depend karnaugh-map depend karnaughmap +depend keytheorems depend kvmap depend letterswitharrows depend lie-hasse @@ -68578,6 +69643,7 @@ depend mhchem depend mhequ depend miller depend mismath +depend moremath depend multiobjective depend naive-ebnf depend namedtensor @@ -68587,6 +69653,7 @@ depend nchairx depend nicematrix depend nuc depend nucleardata +depend numbersets depend numerica depend numerica-plus depend numerica-tables @@ -68601,6 +69668,7 @@ depend perfectcut depend pfdicons depend physconst depend physics +depend physics-patch depend physics2 depend physunits depend pinoutikz @@ -68666,6 +69734,7 @@ depend sympytexpackage depend synproof depend t-angles depend tablor +depend temporal-logic depend tensind depend tensor depend tex-ewd @@ -68673,7 +69742,6 @@ depend textgreek depend textopo depend thermodynamics depend thmbox -depend thmlist depend thmtools depend tiscreen depend turnstile @@ -68690,7 +69758,7 @@ depend zx-calculus name collection-metapost category Collection -revision 71319 +revision 73627 shortdesc MetaPost and Metafont packages depend automata depend bbcard @@ -68724,6 +69792,8 @@ depend metauml depend mfpic depend mfpic4ode depend minim-hatching +depend mp-geom2d +depend mp-neuralnetwork depend mp3d depend mparrows depend mpattern @@ -68745,7 +69815,7 @@ depend threeddice name collection-music category Collection -revision 69613 +revision 73288 shortdesc Music packages longdesc Music-related fonts and packages. depend abc @@ -68765,6 +69835,7 @@ depend guitartabs depend harmony depend latex4musicians depend leadsheets +depend liederbuch depend lilyglyphs depend lyluatex depend m-tx @@ -68788,7 +69859,7 @@ depend xpiano name collection-pictures category Collection -revision 71241 +revision 74039 shortdesc Graphics, pictures, diagrams longdesc Including TikZ, pict, etc., but MetaPost and PStricks are longdesc separate. @@ -68813,6 +69884,7 @@ depend byo-twemojis depend byrne depend cachepic depend callouts +depend callouts-box depend celtic depend chemfig depend circuit-macros @@ -68884,6 +69956,7 @@ depend luamesh depend luasseq depend maker depend makeshape +depend maritime depend mathspic depend memoize depend mercatormap @@ -68916,6 +69989,7 @@ depend pgfmorepages depend pgfopts depend pgfornament depend pgfplots +depend pgfplotsthemebeamer depend picinpar depend pict2e depend pictex @@ -68926,9 +70000,11 @@ depend pixelart depend pixelarttikz depend pmgraph depend polyhedra +depend polyomino depend postage depend postit depend prerex +depend prisma-flow-diagram depend productbox depend ptolemaicastronomy depend puyotikz @@ -68957,6 +70033,7 @@ depend smartdiagram depend spath3 depend spectralsequences depend strands +depend sunpath depend swimgraf depend syntaxdi depend table-fct @@ -68967,7 +70044,9 @@ depend tikz-among-us depend tikz-bagua depend tikz-bayesnet depend tikz-bbox +depend tikz-bpmn depend tikz-cd +depend tikz-decofonts depend tikz-dependency depend tikz-dimline depend tikz-ext @@ -69023,6 +70102,7 @@ depend tikztosvg depend tikzviolinplots depend tile-graphic depend tilings +depend timechart depend timing-diagrams depend tipfr depend tkz-base @@ -69056,7 +70136,7 @@ depend xypic name collection-plaingeneric category Collection -revision 71220 +revision 72878 shortdesc Plain (La)TeX packages longdesc Add-on packages and macros that work with plain TeX, often longdesc LaTeX, and occasionally other formats. @@ -69167,6 +70247,7 @@ depend tracklang depend transparent-io depend treetex depend trigonometry +depend tuple depend ulem depend upca depend varisize @@ -69299,7 +70380,7 @@ depend vocaltract name collection-publishers category Collection -revision 71601 +revision 74102 shortdesc Publisher styles, theses, etc. depend aastex depend abnt @@ -69309,7 +70390,6 @@ depend acmart depend acmconf depend active-conf depend adfathesis -depend afparticle depend afthesis depend aguplus depend aiaa @@ -69364,6 +70444,7 @@ depend dithesis depend ebook depend ebsthesis depend ecothesis +depend edmaths depend ejpecp depend ekaia depend elbioimp @@ -69392,6 +70473,7 @@ depend gzt depend h2020proposal depend hagenberg-thesis depend har2nat +depend hduthesis depend hecthese depend hep-paper depend heria @@ -69466,12 +70548,13 @@ depend njuvisual depend nostarch depend novel depend nrc +depend nstc-proposal depend nwafuthesis depend nwejm depend nxuthesis +depend omgtudoc-asoiu depend onrannual depend opteng -depend osda depend oststud depend oup-authoring-template depend philosophersimprint @@ -69486,6 +70569,7 @@ depend prtec depend ptptex depend qrbill depend quantumarticle +depend rebuttal depend regulatory depend resphilosophica depend resumecls @@ -69516,6 +70600,7 @@ depend sphdthesis depend spie depend sr-vorl depend srdp-mathematik +depend sshrc-insight depend stellenbosch depend stellenbosch-2 depend suftesi @@ -69546,6 +70631,7 @@ depend tui depend turabian depend uaclasses depend uafthesis +depend ualberta depend uantwerpendocs depend ucalgmthesis depend ucbthesis @@ -69555,6 +70641,7 @@ depend ucsmonograph depend ucthesis depend udepcolor depend udes-genie-these +depend udiss depend uestcthesis depend ufrgscca depend uhhassignment @@ -69742,7 +70829,7 @@ catalogue-version 1.1 name colorblind category Package -revision 71253 +revision 73199 shortdesc Easy colorblind-safe typesetting longdesc In colorblind-safe documents, the contents are presented in a longdesc way that the same information is conveyed to readers regardless @@ -69756,21 +70843,20 @@ longdesc sequential schemes are included which can be used for encoding longdesc quantitative information using colors. This package longdesc incorporates colorblind-safeness into the writing process, longdesc making it both less cumbersome and less error-prone. -docfiles size=33 +docfiles size=40 texmf-dist/doc/latex/colorblind/ChangeLog texmf-dist/doc/latex/colorblind/README.md details="Readme" texmf-dist/doc/latex/colorblind/bib.bib - texmf-dist/doc/latex/colorblind/documentation.pdf details="Package documentation" - texmf-dist/doc/latex/colorblind/documentation.tex -runfiles size=3 + texmf-dist/doc/latex/colorblind/colorblind_doc.pdf details="Package documentation" + texmf-dist/doc/latex/colorblind/colorblind_doc.tex +runfiles size=4 texmf-dist/tex/latex/colorblind/colorblind.sty catalogue-contact-bugs https://github.com/simon-pfahler/colorblind/issues -catalogue-contact-home https://github.com/simon-pfahler/colorblind catalogue-contact-repository https://github.com/simon-pfahler/colorblind catalogue-ctan /macros/latex/contrib/colorblind catalogue-license lppl1.3c catalogue-topics typesetting colour -catalogue-version 1.0 +catalogue-version 1.1 name colordoc category Package @@ -69798,44 +70884,50 @@ catalogue-topics doc-supp name coloredbelts category Package -revision 68747 -shortdesc Insert colored belts (vectorial format) in documents (to presetn skills, for example) -longdesc The package provides command (english and french version) to +revision 73069 +shortdesc Insert colored belts in documents (to present skills, for example) +longdesc The package provides commands (English and French version) to longdesc insert 'colored belts' (in vectorial format) to present skills, longdesc for example. -docfiles size=260 +docfiles size=271 texmf-dist/doc/latex/coloredbelts/README.md details="Readme" texmf-dist/doc/latex/coloredbelts/coloredbelts-doc-en.pdf details="Package documentation" language="en" texmf-dist/doc/latex/coloredbelts/coloredbelts-doc-en.tex texmf-dist/doc/latex/coloredbelts/coloredbelts-doc-fr.pdf details="coloredbelts" language="fr" texmf-dist/doc/latex/coloredbelts/coloredbelts-doc-fr.tex -runfiles size=24 +runfiles size=32 texmf-dist/tex/latex/coloredbelts/coloredbelts.sty texmf-dist/tex/latex/coloredbelts/judobelt-black.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-blue-brown.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-blue-purple.pdf texmf-dist/tex/latex/coloredbelts/judobelt-blue.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-brown-black.pdf texmf-dist/tex/latex/coloredbelts/judobelt-brown.pdf texmf-dist/tex/latex/coloredbelts/judobelt-gray.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-green-blue.pdf texmf-dist/tex/latex/coloredbelts/judobelt-green.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-orange-green.pdf texmf-dist/tex/latex/coloredbelts/judobelt-orange.pdf texmf-dist/tex/latex/coloredbelts/judobelt-pink.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-purple-brown.pdf texmf-dist/tex/latex/coloredbelts/judobelt-purple.pdf texmf-dist/tex/latex/coloredbelts/judobelt-red.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-white-yellow.pdf texmf-dist/tex/latex/coloredbelts/judobelt-white.pdf + texmf-dist/tex/latex/coloredbelts/judobelt-yellow-orange.pdf texmf-dist/tex/latex/coloredbelts/judobelt-yellow.pdf -catalogue-contact-bugs https://github.com/cpierquet/coloredbelts/issues -catalogue-contact-repository https://github.com/cpierquet/coloredbelts catalogue-ctan /macros/latex/contrib/coloredbelts catalogue-license lppl1.3c cc-by-sa-3 catalogue-topics colour typesetting logo graphics-use -catalogue-version 0.1.0 +catalogue-version 0.1.1 name coloredtheorem category Package -revision 70865 +revision 73397 shortdesc A colourful boxed theorem environment longdesc This packages provides a colourful boxed theorem environment, longdesc combining tcolorbox and breakable boxes. -docfiles size=63 +docfiles size=70 texmf-dist/doc/latex/coloredtheorem/LICENSE texmf-dist/doc/latex/coloredtheorem/README.md details="Readme" texmf-dist/doc/latex/coloredtheorem/coloredtheorem-doc.pdf details="Package documentation" @@ -69848,8 +70940,8 @@ catalogue-contact-home https://github.com/joaomlourenco/coloredtheorem catalogue-contact-support https://github.com/joaomlourenco/coloredtheorem/discussions catalogue-ctan /macros/latex/contrib/coloredtheorem catalogue-license lppl1.3c -catalogue-topics maths-theorem decoration -catalogue-version 1.0.2 +catalogue-topics maths-theorem decoration boxing box-breaking colour +catalogue-version 1.1.1 name colorframed category Package @@ -70014,7 +71106,7 @@ catalogue-version 1.0 name colortbl category Package -revision 71734 +revision 71883 shortdesc Add colour to LaTeX tables longdesc The package allows rows and columns to be coloured, and even longdesc individual cells. @@ -70032,7 +71124,7 @@ catalogue-also xcolor catalogue-ctan /macros/latex/contrib/colortbl catalogue-license lppl catalogue-topics colour table -catalogue-version 1.0h +catalogue-version 1.0i name colorwav category Package @@ -70682,6 +71774,23 @@ catalogue-license lppl1.3 catalogue-topics macro-supp catalogue-version r0.11a +name commalists-tools +category Package +revision 73069 +shortdesc Manipulate numeral comma separated lists +longdesc This package provides some macros for the basic manipulation of +longdesc comma-separated lists (adding, removing, counting, etc.) +docfiles size=24 + texmf-dist/doc/latex/commalists-tools/README.md details="Readme" + texmf-dist/doc/latex/commalists-tools/commalists-tools-doc.pdf details="Package documentation" + texmf-dist/doc/latex/commalists-tools/commalists-tools-doc.tex +runfiles size=2 + texmf-dist/tex/latex/commalists-tools/commalists-tools.sty +catalogue-ctan /macros/latex/contrib/commalists-tools +catalogue-license lppl1.3c +catalogue-topics data-manip list-supp expl3 +catalogue-version 0.1.4 + name commath category Package revision 15878 @@ -70898,6 +72007,29 @@ catalogue-license lppl1.3c catalogue-topics graphics-symb catalogue-version 0.81a +name complexpolylongdiv +category Package +revision 73238 +shortdesc Typesetting (complex) polynomial long division +longdesc This package provides a simple interface for typesetting +longdesc (complex) polynomial long division. +docfiles size=54 + texmf-dist/doc/latex/complexpolylongdiv/README details="Readme" + texmf-dist/doc/latex/complexpolylongdiv/complexpolylongdiv.pdf details="Package documentation" +srcfiles size=4 + texmf-dist/source/latex/complexpolylongdiv/complexpolylongdiv.dtx + texmf-dist/source/latex/complexpolylongdiv/complexpolylongdiv.ins +runfiles size=1 + texmf-dist/tex/latex/complexpolylongdiv/complexpolylongdiv.sty +catalogue-contact-announce https://github.com/xepersian/complexpolylongdiv/discussions/categories/announcements +catalogue-contact-bugs https://github.com/xepersian/complexpolylongdiv/issues +catalogue-contact-repository https://github.com/xepersian/complexpolylongdiv +catalogue-contact-support https://github.com/xepersian/complexpolylongdiv/discussions +catalogue-ctan /macros/latex/contrib/complexpolylongdiv +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 0.2 + name components category Package revision 63184 @@ -71182,13 +72314,13 @@ catalogue-topics font font-mf font-maths name concmath-otf category Package -revision 70294 +revision 74005 shortdesc Concrete based OpenType Math font 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. -docfiles size=505 +docfiles size=497 texmf-dist/doc/fonts/concmath-otf/README.md details="Readme" texmf-dist/doc/fonts/concmath-otf/concmath-otf.ltx texmf-dist/doc/fonts/concmath-otf/concmath-otf.pdf details="Package documentation" @@ -71199,9 +72331,9 @@ runfiles size=133 texmf-dist/fonts/opentype/public/concmath-otf/Concrete-Math.otf texmf-dist/tex/latex/concmath-otf/concmath-otf.sty catalogue-ctan /fonts/concmath-otf -catalogue-license ofl lppl1.3 +catalogue-license ofl lppl1.3c catalogue-topics font font-otf font-maths font-supp -catalogue-version 0.63 +catalogue-version 0.65 name concprog category Package @@ -71489,7 +72621,7 @@ catalogue-version 0.1.1 name context category Package -revision 70360 +revision 72745 shortdesc The ConTeXt macro package longdesc A full featured, parameter driven macro package, which fully longdesc supports advanced interactive documents. See the ConTeXt garden @@ -72939,7 +74071,7 @@ docfiles size=28441 texmf-dist/doc/man/man1/mtx-youless.man1.pdf texmf-dist/doc/man/man1/mtxrun.1 texmf-dist/doc/man/man1/mtxrun.man1.pdf -runfiles size=14451 +runfiles size=14475 texmf-dist/context/data/scite/context/documents/scite-context-readme.pdf texmf-dist/context/data/scite/context/documents/scite-context-readme.tex texmf-dist/context/data/scite/context/documents/scite-context-visual.pdf @@ -75076,6 +76208,7 @@ runfiles size=14451 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/kpfonts-text.lfg texmf-dist/tex/context/fonts/mkiv/kurier-math.lfg @@ -75083,6 +76216,9 @@ runfiles size=14451 texmf-dist/tex/context/fonts/mkiv/libertinus-text.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-math.lfg + texmf-dist/tex/context/fonts/mkiv/lucida-text.lfg + texmf-dist/tex/context/fonts/mkiv/lucida-typeone-math.lfg texmf-dist/tex/context/fonts/mkiv/mathtimes-math.lfg texmf-dist/tex/context/fonts/mkiv/mdbch-math.lfg texmf-dist/tex/context/fonts/mkiv/mdici-math.lfg @@ -75112,6 +76248,7 @@ runfiles size=14451 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-arsenal.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 @@ -75138,6 +76275,7 @@ runfiles size=14451 texmf-dist/tex/context/fonts/mkiv/type-imp-informal.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-ipaex.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-iwona.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-koeielettersot.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-kpfonts.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-kurier.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-latinmodern.mkiv @@ -75146,6 +76284,8 @@ runfiles size=14451 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-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 @@ -75163,6 +76303,7 @@ runfiles size=14451 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-uprightonly.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 @@ -75171,6 +76312,7 @@ runfiles size=14451 texmf-dist/tex/context/fonts/mkiv/xcharter-text.lfg texmf-dist/tex/context/fonts/mkiv/xits-math.lfg texmf-dist/tex/context/fonts/mkxl/bhai.lfg + texmf-dist/tex/context/fonts/mkxl/notosans-math.lfg texmf-dist/tex/context/fonts/mkxl/shobhika.lfg texmf-dist/tex/context/fonts/mkxl/type-imp-bengali.mkxl texmf-dist/tex/context/fonts/mkxl/type-imp-braille.mkxl @@ -75180,6 +76322,7 @@ runfiles size=14451 texmf-dist/tex/context/fonts/mkxl/type-imp-indic.mkxl texmf-dist/tex/context/fonts/mkxl/type-imp-kannada.mkxl texmf-dist/tex/context/fonts/mkxl/type-imp-malayalam.mkxl + texmf-dist/tex/context/fonts/mkxl/type-imp-noto.mkxl texmf-dist/tex/context/fonts/mkxl/type-imp-tamil.mkxl texmf-dist/tex/context/fonts/mkxl/type-imp-telugu.mkxl texmf-dist/tex/context/interface/mkiv/context-en.xml @@ -76027,6 +77170,17 @@ catalogue-ctan /macros/context/contrib/context-calendar-examples catalogue-license pd catalogue-topics calendar calculation context +name context-chat +category ConTeXt +revision 72010 +depend context +docfiles size=11 + texmf-dist/doc/context/third/chat/LICENSE + texmf-dist/doc/context/third/chat/README.md + texmf-dist/doc/context/third/chat/VERSION +runfiles size=2 + texmf-dist/tex/context/third/chat/t-chat.mkiv + name context-collating-marks category ConTeXt revision 68696 @@ -76050,18 +77204,20 @@ catalogue-topics book-pub context name context-companion-fonts category Package -revision 71648 +revision 72732 shortdesc companion fonts with fixes for ConTeXt longdesc From longdesc https://github.com/contextgarden/context-distribution-fonts/tre longdesc e/main/fonts/data/cms/companion Should be on CTAN eventually. -runfiles size=54 - texmf-dist/fonts/opentype/public/context-companion-fonts/LatinModernMath-Companion.otf - texmf-dist/fonts/opentype/public/context-companion-fonts/RalphSmithsFormalScript-Companion.otf - texmf-dist/fonts/opentype/public/context-companion-fonts/TeXGyreBonumMath-Companion.otf - texmf-dist/fonts/opentype/public/context-companion-fonts/TeXGyrePagellaMath-Companion.otf - texmf-dist/fonts/opentype/public/context-companion-fonts/TeXGyreTermesMath-Companion.otf - texmf-dist/fonts/opentype/public/context-companion-fonts/XITSMath-Companion.otf +docfiles size=1 + texmf-dist/doc/fonts/context-companion-fonts/readme.txt +runfiles size=55 + texmf-dist/fonts/opentype/public/context-companion-fonts/LatinModernMathCompanion-Regular.otf + texmf-dist/fonts/opentype/public/context-companion-fonts/RalphSmithsFormalScriptCompanion-Regular.otf + texmf-dist/fonts/opentype/public/context-companion-fonts/TeXGyreBonumMathCompanion-Regular.otf + texmf-dist/fonts/opentype/public/context-companion-fonts/TeXGyrePagellaMathCompanion-Regular.otf + texmf-dist/fonts/opentype/public/context-companion-fonts/TeXGyreTermesMathCompanion-Regular.otf + texmf-dist/fonts/opentype/public/context-companion-fonts/XITSMathCompanion-Regular.otf name context-cyrillicnumbers category ConTeXt @@ -77311,7 +78467,7 @@ catalogue-topics chinese-doc name context-pocketdiary category ConTeXt -revision 66953 +revision 73164 shortdesc A personal organiser longdesc PocketDiary is a calendar module, enabling to prepare various longdesc calendars from day- to week, month- and year-calendars based on @@ -77320,7 +78476,7 @@ longdesc A4 single-sided printed sheet of paper. The module comes with longdesc different templates for notes etc. The module provides sun and longdesc moon data calculations depend context -docfiles size=58 +docfiles size=48 texmf-dist/doc/context/third/pocketdiary/LICENSE texmf-dist/doc/context/third/pocketdiary/README.md texmf-dist/doc/context/third/pocketdiary/VERSION @@ -77808,9 +78964,9 @@ binfiles arch=windows size=2408 name context.x86_64-cygwin category Package -revision 70250 +revision 73902 shortdesc x86_64-cygwin files of context -binfiles arch=x86_64-cygwin size=775 +binfiles arch=x86_64-cygwin size=795 bin/x86_64-cygwin/context bin/x86_64-cygwin/context.lua bin/x86_64-cygwin/luametatex.exe @@ -78104,6 +79260,25 @@ shortdesc x86_64-solaris files of convbkmk binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/convbkmk +name convert-jpfonts +category Package +revision 73551 +shortdesc Convert half-width Japanese to full-width beautifully +longdesc This style file is designed for converting Japanese half-width +longdesc characters to full-width characters beautifully. This is useful +longdesc when alphabet characters don't render properly in a Japanese +longdesc font. +docfiles size=133 + texmf-dist/doc/latex/convert-jpfonts/README.txt details="Readme" + texmf-dist/doc/latex/convert-jpfonts/convert-jpfonts.pdf details="Package documentation" language="ja" + texmf-dist/doc/latex/convert-jpfonts/convert-jpfonts.tex +runfiles size=2 + texmf-dist/tex/latex/convert-jpfonts/convert-jpfonts.sty +catalogue-ctan /macros/latex/contrib/convert-jpfonts +catalogue-license lppl1.3c +catalogue-topics japanese +catalogue-version 1.0.1 + name cooking category Package revision 15878 @@ -78753,6 +79928,61 @@ catalogue-license lppl catalogue-topics typesetting catalogue-version 0.1 +name cora-macs +category Package +revision 73101 +shortdesc Macros for continuous sets and neural networks in the context of cyber-physical systems +longdesc This LaTeX package has been designed to assist in the +longdesc representation and manipulation of continuous sets, operations, +longdesc neural networks, and color schemes tailored for use in the +longdesc context of cyber-physical systems. It provides a comprehensive +longdesc set of macros that streamline the process of documenting +longdesc complex mathematical objects and operations. +docfiles size=257 + texmf-dist/doc/latex/cora-macs/LICENSE + texmf-dist/doc/latex/cora-macs/README.md details="Readme" + texmf-dist/doc/latex/cora-macs/cora-macs-doc.pdf details="Package documentation" + texmf-dist/doc/latex/cora-macs/cora-macs-doc.tex + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabfigure_animated-animate-1.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabfigure_animated-animate-2.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabfigure_animated-animate-3.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabfigure_animated-animate-4.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabgroupfigure_animated-animate-1.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabgroupfigure_animated-animate-2.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabgroupfigure_animated-animate-3.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabgroupfigure_animated-animate-4.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/mymatlabgroupfigure_animated-animate-5.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/neural-network_animated-animate-1.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/neural-network_animated-animate-2.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/neural-network_animated-animate-3.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/externalize/figures/neural-network_animated-animate-4.pdf + texmf-dist/doc/latex/cora-macs/examples/figures/mymatlabfigure_animated.tikz + texmf-dist/doc/latex/cora-macs/examples/figures/mymatlabgroupfigure_animated.tikz + texmf-dist/doc/latex/cora-macs/examples/figures/mymatlabgroupfigure_animated_11.tikz + texmf-dist/doc/latex/cora-macs/examples/figures/mymatlabgroupfigure_animated_12.tikz + texmf-dist/doc/latex/cora-macs/examples/figures/mymatlabgroupfigure_animated_13.tikz + texmf-dist/doc/latex/cora-macs/examples/figures/neural-network_animated.tikz + texmf-dist/doc/latex/cora-macs/examples/presentation.pdf + texmf-dist/doc/latex/cora-macs/examples/presentation.tex + texmf-dist/doc/latex/cora-macs/figures/coraLogo.eps + texmf-dist/doc/latex/cora-macs/figures/externalize/figures/mymatlabfigure.pdf + texmf-dist/doc/latex/cora-macs/figures/externalize/figures/mymatlabgroupfigure.pdf + texmf-dist/doc/latex/cora-macs/figures/externalize/figures/mytikzfigure.pdf + texmf-dist/doc/latex/cora-macs/figures/externalize/figures/neural-network.pdf + texmf-dist/doc/latex/cora-macs/figures/mymatlabfigure.tikz + texmf-dist/doc/latex/cora-macs/figures/mymatlabgroupfigure.tikz + texmf-dist/doc/latex/cora-macs/figures/mymatlabgroupfigure_11.tikz + texmf-dist/doc/latex/cora-macs/figures/mymatlabgroupfigure_12.tikz + texmf-dist/doc/latex/cora-macs/figures/mymatlabgroupfigure_13.tikz + texmf-dist/doc/latex/cora-macs/figures/mytikzfigure.tikz + texmf-dist/doc/latex/cora-macs/figures/neural-network.tikz +runfiles size=4 + texmf-dist/tex/latex/cora-macs/cora-macs.sty +catalogue-contact-home https://cora.in.tum.de/ +catalogue-ctan /macros/latex/contrib/cora-macs +catalogue-license mit +catalogue-topics physics maths + name cormorantgaramond category Package revision 71057 @@ -79819,7 +81049,7 @@ catalogue-version 1.1 name couleurs-fr category Package -revision 67901 +revision 73069 shortdesc French version of colour definitions from xcolor longdesc This package provides provides colours with French names, based longdesc on xcolor (svgnames, dvipsnames) and xkcd. @@ -79831,8 +81061,6 @@ docfiles size=73 texmf-dist/doc/latex/couleurs-fr/couleurs-fr-doc.tex runfiles size=12 texmf-dist/tex/latex/couleurs-fr/couleurs-fr.sty -catalogue-contact-bugs https://github.com/cpierquet/couleurs-fr/issues -catalogue-contact-repository https://github.com/cpierquet/couleurs-fr catalogue-ctan /macros/latex/contrib/couleurs-fr catalogue-license lppl1.3c catalogue-topics colour french @@ -80430,7 +81658,7 @@ catalogue-version 0.1 name create-theorem category Package -revision 70177 +revision 72830 shortdesc Initializing and configuring theorem-like environments, with multilingual support longdesc This package provides commands for naming, initializing and longdesc configuring theorem-like environments. These commands have @@ -80456,24 +81684,22 @@ catalogue-topics multilingual maths maths-theorem expl3 name creationboites category Package -revision 68087 +revision 73443 shortdesc Macros to create simple tcolorbox with some customizations longdesc This package provides provides some macros to create longdesc sampleboxes with tcolorbox : a macro \CreationBoite to create longdesc the box; a macro \ParamBoites to modify some parameters; longdesc possibility to modify 'deeply' the boxes. -docfiles size=45 +docfiles size=47 texmf-dist/doc/latex/creationboites/CreationBoites-doc.pdf details="Package documentation" texmf-dist/doc/latex/creationboites/CreationBoites-doc.tex texmf-dist/doc/latex/creationboites/README.md details="Readme" runfiles size=2 texmf-dist/tex/latex/creationboites/CreationBoites.sty -catalogue-contact-bugs https://github.com/cpierquet/CreationBoites/issues -catalogue-contact-home https://github.com/cpierquet/CreationBoites catalogue-ctan /macros/latex/contrib/creationboites catalogue-license lppl1.3c catalogue-topics boxing colour -catalogue-version 0.1.0 +catalogue-version 0.1.1 name crefthe category Package @@ -80501,7 +81727,7 @@ catalogue-topics label-ref expl3 name crimson category Package -revision 64559 +revision 73074 shortdesc Crimson fonts with LaTeX support longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX longdesc support for the Crimson family of fonts, designed by Sebastian @@ -80509,38 +81735,84 @@ longdesc Kosch. The Crimson family is for book production in the longdesc tradition of beautiful oldstyle typefaces, inspired longdesc particularly by the work of people like Jan Tschichold (Sabon), longdesc Robert Slimbach (Arno, Minion), and Jonathan Hoefler (Hoefler -longdesc Text). Support for small caps and old-style numerals is still -longdesc "under construction"; these features are not supported by this -longdesc version of the package. +longdesc Text). Small caps and old-style numerals are mostly available, +longdesc except old-style numerals are not supported in Bold or +longdesc Semibold. execute addMap crimson.map -docfiles size=12 +docfiles size=47 texmf-dist/doc/fonts/crimson/OFL.txt texmf-dist/doc/fonts/crimson/README details="Readme" texmf-dist/doc/fonts/crimson/crimson-samples.pdf details="Font samples" texmf-dist/doc/fonts/crimson/crimson-samples.tex -runfiles size=655 +runfiles size=996 + texmf-dist/fonts/enc/dvips/crimson/crm_25ecww.enc + texmf-dist/fonts/enc/dvips/crimson/crm_2bk2kf.enc + texmf-dist/fonts/enc/dvips/crimson/crm_2vwhzr.enc + texmf-dist/fonts/enc/dvips/crimson/crm_36b5o4.enc texmf-dist/fonts/enc/dvips/crimson/crm_3bejww.enc - texmf-dist/fonts/enc/dvips/crimson/crm_axwm4k.enc + texmf-dist/fonts/enc/dvips/crimson/crm_47fe7g.enc + texmf-dist/fonts/enc/dvips/crimson/crm_4df3hz.enc + texmf-dist/fonts/enc/dvips/crimson/crm_4wbvex.enc + texmf-dist/fonts/enc/dvips/crimson/crm_5iushh.enc + texmf-dist/fonts/enc/dvips/crimson/crm_64bq2b.enc + texmf-dist/fonts/enc/dvips/crimson/crm_6cvwjz.enc + texmf-dist/fonts/enc/dvips/crimson/crm_7vbuna.enc + texmf-dist/fonts/enc/dvips/crimson/crm_7wq2t4.enc texmf-dist/fonts/enc/dvips/crimson/crm_ayvnmf.enc - texmf-dist/fonts/enc/dvips/crimson/crm_bchha2.enc - texmf-dist/fonts/enc/dvips/crimson/crm_fllea6.enc - texmf-dist/fonts/enc/dvips/crimson/crm_g4bzis.enc - texmf-dist/fonts/enc/dvips/crimson/crm_izufyi.enc + texmf-dist/fonts/enc/dvips/crimson/crm_b5atsz.enc + texmf-dist/fonts/enc/dvips/crimson/crm_bmqojb.enc + texmf-dist/fonts/enc/dvips/crimson/crm_bsm2ek.enc + texmf-dist/fonts/enc/dvips/crimson/crm_bxc7kq.enc + texmf-dist/fonts/enc/dvips/crimson/crm_cuvbeg.enc + texmf-dist/fonts/enc/dvips/crimson/crm_cxrmm4.enc + texmf-dist/fonts/enc/dvips/crimson/crm_d6nadx.enc + texmf-dist/fonts/enc/dvips/crimson/crm_dcyrwq.enc + texmf-dist/fonts/enc/dvips/crimson/crm_dk7p24.enc + texmf-dist/fonts/enc/dvips/crimson/crm_dl3wd7.enc + texmf-dist/fonts/enc/dvips/crimson/crm_dvqsdk.enc + texmf-dist/fonts/enc/dvips/crimson/crm_efj2rd.enc + texmf-dist/fonts/enc/dvips/crimson/crm_fi53q6.enc + texmf-dist/fonts/enc/dvips/crimson/crm_fvnjct.enc + texmf-dist/fonts/enc/dvips/crimson/crm_g3s64i.enc + texmf-dist/fonts/enc/dvips/crimson/crm_gkepkr.enc + texmf-dist/fonts/enc/dvips/crimson/crm_hbjel3.enc + texmf-dist/fonts/enc/dvips/crimson/crm_hhp6ae.enc + texmf-dist/fonts/enc/dvips/crimson/crm_hnx34u.enc + texmf-dist/fonts/enc/dvips/crimson/crm_hw76il.enc + texmf-dist/fonts/enc/dvips/crimson/crm_ihwzbi.enc + texmf-dist/fonts/enc/dvips/crimson/crm_j3frfl.enc + texmf-dist/fonts/enc/dvips/crimson/crm_j6wyjb.enc texmf-dist/fonts/enc/dvips/crimson/crm_jdlmpi.enc - texmf-dist/fonts/enc/dvips/crimson/crm_kwsa5r.enc - texmf-dist/fonts/enc/dvips/crimson/crm_myjoho.enc - texmf-dist/fonts/enc/dvips/crimson/crm_n3gbj7.enc + texmf-dist/fonts/enc/dvips/crimson/crm_kigpiz.enc + texmf-dist/fonts/enc/dvips/crimson/crm_kyf4gw.enc + texmf-dist/fonts/enc/dvips/crimson/crm_lienqd.enc + texmf-dist/fonts/enc/dvips/crimson/crm_ltoc2m.enc + texmf-dist/fonts/enc/dvips/crimson/crm_lxm2kp.enc + texmf-dist/fonts/enc/dvips/crimson/crm_m6va3v.enc + texmf-dist/fonts/enc/dvips/crimson/crm_n3yyou.enc + texmf-dist/fonts/enc/dvips/crimson/crm_n44da6.enc + texmf-dist/fonts/enc/dvips/crimson/crm_ndtoxh.enc texmf-dist/fonts/enc/dvips/crimson/crm_odbuza.enc - texmf-dist/fonts/enc/dvips/crimson/crm_ory2k7.enc - texmf-dist/fonts/enc/dvips/crimson/crm_qrsm2e.enc - texmf-dist/fonts/enc/dvips/crimson/crm_qst7o4.enc - texmf-dist/fonts/enc/dvips/crimson/crm_tyw3ea.enc - texmf-dist/fonts/enc/dvips/crimson/crm_uafi7a.enc - texmf-dist/fonts/enc/dvips/crimson/crm_ue2axx.enc - texmf-dist/fonts/enc/dvips/crimson/crm_vcz7kx.enc - texmf-dist/fonts/enc/dvips/crimson/crm_wef5am.enc - texmf-dist/fonts/enc/dvips/crimson/crm_wsbs26.enc - texmf-dist/fonts/enc/dvips/crimson/crm_wttfgh.enc + texmf-dist/fonts/enc/dvips/crimson/crm_plxyu3.enc + texmf-dist/fonts/enc/dvips/crimson/crm_qvosxj.enc + texmf-dist/fonts/enc/dvips/crimson/crm_qx2olb.enc + texmf-dist/fonts/enc/dvips/crimson/crm_r6xrf3.enc + texmf-dist/fonts/enc/dvips/crimson/crm_r76pbb.enc + texmf-dist/fonts/enc/dvips/crimson/crm_rbmipx.enc + texmf-dist/fonts/enc/dvips/crimson/crm_rybvc4.enc + texmf-dist/fonts/enc/dvips/crimson/crm_st6vdm.enc + texmf-dist/fonts/enc/dvips/crimson/crm_tbj74c.enc + texmf-dist/fonts/enc/dvips/crimson/crm_tlhunq.enc + texmf-dist/fonts/enc/dvips/crimson/crm_tswdwf.enc + texmf-dist/fonts/enc/dvips/crimson/crm_uoxeaf.enc + texmf-dist/fonts/enc/dvips/crimson/crm_uoygek.enc + texmf-dist/fonts/enc/dvips/crimson/crm_uwd2sh.enc + texmf-dist/fonts/enc/dvips/crimson/crm_vd5n6o.enc + texmf-dist/fonts/enc/dvips/crimson/crm_vjfyui.enc + texmf-dist/fonts/enc/dvips/crimson/crm_wp5ef6.enc + texmf-dist/fonts/enc/dvips/crimson/crm_z6yvvc.enc + texmf-dist/fonts/enc/dvips/crimson/crm_zjsegd.enc + texmf-dist/fonts/enc/dvips/crimson/crm_zk5yn7.enc texmf-dist/fonts/map/dvips/crimson/crimson.map texmf-dist/fonts/opentype/kosch/crimson/Crimson-Bold.otf texmf-dist/fonts/opentype/kosch/crimson/Crimson-BoldItalic.otf @@ -80551,10 +81823,30 @@ runfiles size=655 texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ly1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ly1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-sc-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-t1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ts1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Bold-tlf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-lf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-lf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-lf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-lf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-lf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-lf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-lf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-osf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-osf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-osf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-osf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-osf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-osf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-osf-ts1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ly1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ly1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ot1.tfm @@ -80562,19 +81854,120 @@ runfiles size=655 texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ts1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tlf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tosf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tosf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tosf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tosf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tosf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tosf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-BoldItalic-tosf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-sc-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-lf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-sc-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-osf-ts1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ly1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ly1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-sc-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-t1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ts1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tlf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-sc-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Italic-tosf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-sc-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-lf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-sc-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-osf-ts1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ly1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-sc-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-t1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ts1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tlf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-sc-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-sc-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-sc-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-sc-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Roman-tosf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-lf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-lf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-lf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-lf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-lf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-lf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-lf-ts1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ly1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ly1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ot1.tfm @@ -80582,6 +81975,13 @@ runfiles size=655 texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-t1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ts1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-Semibold-tlf-ts1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-lf-ly1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-lf-ly1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-lf-ot1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-lf-t1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-lf-t1.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-lf-ts1--base.tfm + texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-lf-ts1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1--base.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1.tfm texmf-dist/fonts/tfm/kosch/crimson/Crimson-SemiboldItalic-tlf-ot1.tfm @@ -80596,26 +81996,95 @@ runfiles size=655 texmf-dist/fonts/type1/kosch/crimson/Crimson-Semibold.pfb texmf-dist/fonts/type1/kosch/crimson/Crimson-SemiboldItalic.pfb texmf-dist/fonts/vf/kosch/crimson/Crimson-Bold-tlf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Bold-tlf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Bold-tlf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Bold-tlf-sc-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Bold-tlf-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Bold-tlf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-lf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-lf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-lf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-osf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-osf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-osf-ts1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-ly1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-tlf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-tosf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-tosf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-BoldItalic-tosf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-lf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-lf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-lf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-lf-sc-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-lf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-lf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-osf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-osf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-osf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-osf-sc-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-osf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-osf-ts1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tlf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tlf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tlf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tlf-sc-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tlf-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tlf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tosf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tosf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tosf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tosf-sc-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tosf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Italic-tosf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-lf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-lf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-lf-sc-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-lf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-lf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-osf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-osf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-osf-sc-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-osf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-osf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tlf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tlf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tlf-sc-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tlf-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tlf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tosf-sc-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tosf-sc-ot1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tosf-sc-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tosf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Roman-tosf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Semibold-lf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Semibold-lf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-Semibold-lf-ts1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-ly1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-Semibold-tlf-ts1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-lf-ly1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-lf-t1.vf + texmf-dist/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-lf-ts1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-ly1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-t1.vf texmf-dist/fonts/vf/kosch/crimson/Crimson-SemiboldItalic-tlf-ts1.vf + texmf-dist/tex/latex/crimson/LY1Crimson-LF.fd + texmf-dist/tex/latex/crimson/LY1Crimson-OsF.fd texmf-dist/tex/latex/crimson/LY1Crimson-TLF.fd + texmf-dist/tex/latex/crimson/LY1Crimson-TOsF.fd + texmf-dist/tex/latex/crimson/OT1Crimson-LF.fd + texmf-dist/tex/latex/crimson/OT1Crimson-OsF.fd texmf-dist/tex/latex/crimson/OT1Crimson-TLF.fd + texmf-dist/tex/latex/crimson/OT1Crimson-TOsF.fd + texmf-dist/tex/latex/crimson/T1Crimson-LF.fd + texmf-dist/tex/latex/crimson/T1Crimson-OsF.fd texmf-dist/tex/latex/crimson/T1Crimson-TLF.fd + texmf-dist/tex/latex/crimson/T1Crimson-TOsF.fd + texmf-dist/tex/latex/crimson/TS1Crimson-LF.fd + texmf-dist/tex/latex/crimson/TS1Crimson-OsF.fd texmf-dist/tex/latex/crimson/TS1Crimson-TLF.fd + texmf-dist/tex/latex/crimson/TS1Crimson-TOsF.fd texmf-dist/tex/latex/crimson/crimson.sty catalogue-also crimsonpro catalogue-ctan /fonts/crimson @@ -81705,7 +83174,7 @@ catalogue-version 1.0 name crossrefware category Package -revision 69700 +revision 72217 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 @@ -81716,7 +83185,7 @@ 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 -docfiles size=114 +docfiles size=115 texmf-dist/doc/man/man1/bbl2bib.1 texmf-dist/doc/man/man1/bbl2bib.man1.pdf texmf-dist/doc/man/man1/bibdoiadd.1 @@ -81734,7 +83203,7 @@ docfiles size=114 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=19 +runfiles size=20 texmf-dist/scripts/crossrefware/bbl2bib.pl texmf-dist/scripts/crossrefware/bibdoiadd.pl texmf-dist/scripts/crossrefware/bibmradd.pl @@ -81932,7 +83401,7 @@ binfiles arch=x86_64-solaris size=6 name crossword category Package -revision 64375 +revision 73579 shortdesc Typeset crossword puzzles longdesc An extended grid-based puzzle package, designed to take all longdesc input (both grid and clues) from the same file. The package can @@ -81966,7 +83435,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.11 +catalogue-version 1.13 name crosswrd category Package @@ -82486,25 +83955,22 @@ catalogue-topics czech slovak font font-mf name cs-techrep category Package -revision 70915 +revision 73507 shortdesc Technical Reports in Computer Science and Software Engineering longdesc This package provides a class for the creation of technical longdesc reports in computer science and software engineering. The style longdesc is a two-column format similar to IEEE. It is intended for lab longdesc reports and provides a beginner-friendly template example. -docfiles size=107 +docfiles size=91 texmf-dist/doc/latex/cs-techrep/COPYING texmf-dist/doc/latex/cs-techrep/README details="Readme" texmf-dist/doc/latex/cs-techrep/_cpn_copyIntoExamplesFolder_cls.cmd texmf-dist/doc/latex/cs-techrep/cs-techrep.pdf details="Package documentation" texmf-dist/doc/latex/cs-techrep/docstrip.cfg texmf-dist/doc/latex/cs-techrep/template/cpn_all_all.bib - texmf-dist/doc/latex/cs-techrep/template/cpn_supervised_all.bib - texmf-dist/doc/latex/cs-techrep/template/cs-techrep-example-neumann.pdf + texmf-dist/doc/latex/cs-techrep/template/cs-techrep-example-neumann.pdf details="Example of use" texmf-dist/doc/latex/cs-techrep/template/cs-techrep-example-neumann.tex - texmf-dist/doc/latex/cs-techrep/template/selfref.bib - texmf-dist/doc/latex/cs-techrep/template/webdev_commons.bib -srcfiles size=7 +srcfiles size=8 texmf-dist/source/latex/cs-techrep/cs-techrep.dtx texmf-dist/source/latex/cs-techrep/cs-techrep.ins runfiles size=3 @@ -82513,7 +83979,7 @@ catalogue-contact-repository https://github.com/cyberlytics/cs-techrep catalogue-ctan /macros/latex/contrib/cs-techrep catalogue-license lppl1.3c catalogue-topics class doc-templ report-like -catalogue-version 0.2 +catalogue-version 0.6 name csassignments category Package @@ -83014,6 +84480,41 @@ catalogue-ctan /macros/cstex catalogue-license other-free catalogue-topics distribution +name csthm +category Package +revision 73506 +shortdesc Customized theorem environments for computer science documents +longdesc This package provides customized theorem-like environments +longdesc specifically designed for computer science documents. It offers +longdesc a set of pre-defined theorem styles and environments to +longdesc streamline the creation of theorems, definitions, remarks, and +longdesc other common structures in computer science papers and +longdesc documents. Features: Predefined theorem styles tailored for +longdesc computer science Environments for theorems, lemmas, +longdesc definitions, examples, remarks, and more Special environments +longdesc for cases and axioms Customizable accent color Optional +longdesc cleveref support for enhanced cross-referencing The package +longdesc requires the following packages to be installed: amsmath, +longdesc amssymb, amsthm, enumitem, and thmtools. If using the cleveref +longdesc option, hyperref and cleveref are also required. +docfiles size=29 + texmf-dist/doc/latex/csthm/README.md details="Readme" + texmf-dist/doc/latex/csthm/csthm-example.pdf details="Package documentation and example of use" + texmf-dist/doc/latex/csthm/csthm-example.tex +srcfiles size=4 + texmf-dist/source/latex/csthm/csthm.dtx + texmf-dist/source/latex/csthm/csthm.ins +runfiles size=2 + texmf-dist/tex/latex/csthm/csthm.sty +catalogue-contact-development https://github.com/agni-datta/csLaTeX/ +catalogue-contact-home https://github.com/agni-datta/csLaTeX/ +catalogue-contact-repository https://github.com/agni-datta/csLaTeX/ +catalogue-contact-support https://github.com/agni-datta/csLaTeX/ +catalogue-ctan /macros/latex/contrib/csthm +catalogue-license lppl1.3c +catalogue-topics comp-sci maths-theorem +catalogue-version 1.3 + name cstypo category Package revision 41986 @@ -83064,7 +84565,7 @@ catalogue-version 1.0 name csvsimple category Package -revision 71274 +revision 72484 shortdesc Simple CSV file processing longdesc The package provides a simple LaTeX interface for the longdesc processing of files with comma separated values (CSV); it @@ -83102,7 +84603,7 @@ catalogue-also csvtools datatool catalogue-ctan /macros/latex/contrib/csvsimple catalogue-license lppl1.3 catalogue-topics data-import data-disp csv-support expl3 -catalogue-version 2.6.1 +catalogue-version 2.7.0 name ctable category Package @@ -83922,12 +85423,12 @@ catalogue-topics tibetan name ctie category TLCore -revision 70015 +revision 73848 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 -docfiles size=6 +docfiles size=7 texmf-dist/doc/man/man1/ctie.1 texmf-dist/doc/man/man1/ctie.man1.pdf catalogue-ctan /web/c_cpp/ctie @@ -83937,107 +85438,107 @@ catalogue-version 1.1 name ctie.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of ctie binfiles arch=aarch64-linux size=22 bin/aarch64-linux/ctie name ctie.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of ctie binfiles arch=amd64-freebsd size=27 bin/amd64-freebsd/ctie name ctie.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of ctie binfiles arch=amd64-netbsd size=26 bin/amd64-netbsd/ctie name ctie.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of ctie -binfiles arch=armhf-linux size=18 +binfiles arch=armhf-linux size=15 bin/armhf-linux/ctie name ctie.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of ctie binfiles arch=i386-freebsd size=27 bin/i386-freebsd/ctie name ctie.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of ctie -binfiles arch=i386-linux size=25 +binfiles arch=i386-linux size=27 bin/i386-linux/ctie name ctie.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of ctie binfiles arch=i386-netbsd size=24 bin/i386-netbsd/ctie name ctie.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of ctie binfiles arch=i386-solaris size=21 bin/i386-solaris/ctie name ctie.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of ctie binfiles arch=universal-darwin size=63 bin/universal-darwin/ctie name ctie.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of ctie binfiles arch=windows size=4 bin/windows/ctie.exe name ctie.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of ctie binfiles arch=x86_64-cygwin size=5 bin/x86_64-cygwin/ctie.exe name ctie.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of ctie binfiles arch=x86_64-darwinlegacy size=21 bin/x86_64-darwinlegacy/ctie name ctie.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of ctie binfiles arch=x86_64-linux size=23 bin/x86_64-linux/ctie name ctie.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of ctie -binfiles arch=x86_64-linuxmusl size=22 +binfiles arch=x86_64-linuxmusl size=24 bin/x86_64-linuxmusl/ctie name ctie.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of ctie -binfiles arch=x86_64-solaris size=24 +binfiles arch=x86_64-solaris size=25 bin/x86_64-solaris/ctie name cuisine @@ -84691,7 +86192,7 @@ catalogue-version 1.16 name curve2e category Package -revision 67599 +revision 72842 shortdesc Extensions for package pict2e longdesc The package extends the drawing capacities of the pict2e that longdesc serves as a LaTeX2e replacement for picture mode. In @@ -84700,20 +86201,20 @@ 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. -docfiles size=346 +docfiles size=361 texmf-dist/doc/latex/curve2e/README.txt details="Readme" texmf-dist/doc/latex/curve2e/curve2e-manual.pdf details="User manual" texmf-dist/doc/latex/curve2e/curve2e-manual.tex texmf-dist/doc/latex/curve2e/curve2e.pdf details="Code documentation" -srcfiles size=47 +srcfiles size=49 texmf-dist/source/latex/curve2e/curve2e.dtx -runfiles size=15 +runfiles size=16 texmf-dist/tex/latex/curve2e/curve2e-v161.sty texmf-dist/tex/latex/curve2e/curve2e.sty catalogue-ctan /macros/latex/contrib/curve2e catalogue-license lppl1.3c catalogue-topics graphics graphics-in-tex graphics-curve -catalogue-version 2.3.1 +catalogue-version 2.6.0 name curves category Package @@ -84815,11 +86316,11 @@ catalogue-version 1.1 name customenvs category Package -revision 71415 +revision 73961 shortdesc Custom environments (MCQ, list with picked items, ...) longdesc The package provides some custom environments (Multiple Choice, longdesc list with chosen items, ...) based on existing environments. -docfiles size=466 +docfiles size=520 texmf-dist/doc/latex/customenvs/README.md details="Readme" texmf-dist/doc/latex/customenvs/customenvs-doc-en.pdf details="Package documentation (English)" texmf-dist/doc/latex/customenvs/customenvs-doc-en.tex @@ -84827,14 +86328,13 @@ docfiles size=466 texmf-dist/doc/latex/customenvs/customenvs-doc-fr.tex texmf-dist/doc/latex/customenvs/envtexo_exemples.pdf texmf-dist/doc/latex/customenvs/envtexo_exemples.tex -runfiles size=19 +runfiles size=39 texmf-dist/tex/latex/customenvs/customenvs.sty -catalogue-contact-bugs https://github.com/cpierquet/customenvs/issues -catalogue-contact-repository https://github.com/cpierquet/customenvs +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex catalogue-ctan /macros/latex/contrib/customenvs catalogue-license lppl1.3c cc-by-sa-4 catalogue-topics list table -catalogue-version 0.1.7 +catalogue-version 0.3.1 name cutwin category Package @@ -84938,7 +86438,7 @@ catalogue-version 1.1.0 name cweb category Package -revision 71359 +revision 73848 catalogue cwebbin shortdesc CWEB for ANSI-C/C++ compilers longdesc A highly portable and extended version of Levy/Knuth CWEB 3.64c @@ -84958,7 +86458,7 @@ longdesc the package's github repository for more information. depend cweb.ARCH depend iftex depend kpathsea -docfiles size=84 +docfiles size=88 texmf-dist/doc/man/man1/ctangle.1 texmf-dist/doc/man/man1/ctangle.man1.pdf texmf-dist/doc/man/man1/ctwill-proofsort.1 @@ -84977,7 +86477,7 @@ docfiles size=84 texmf-dist/doc/man/man1/twill-refsort.man1.pdf texmf-dist/doc/man/man1/twill.1 texmf-dist/doc/man/man1/twill.man1.pdf -runfiles size=66 +runfiles size=65 texmf-dist/tex/plain/cweb/ctproofmac.tex texmf-dist/tex/plain/cweb/cttwinxmac.tex texmf-dist/tex/plain/cweb/ctwimac.tex @@ -85111,7 +86611,7 @@ runfiles size=16 name cweb.aarch64-linux category Package -revision 70577 +revision 73915 shortdesc aarch64-linux files of cweb binfiles arch=aarch64-linux size=158 bin/aarch64-linux/ctangle @@ -85125,7 +86625,7 @@ binfiles arch=aarch64-linux size=158 name cweb.amd64-freebsd category Package -revision 70571 +revision 73792 shortdesc amd64-freebsd files of cweb binfiles arch=amd64-freebsd size=182 bin/amd64-freebsd/ctangle @@ -85139,9 +86639,9 @@ binfiles arch=amd64-freebsd size=182 name cweb.amd64-netbsd category Package -revision 71441 +revision 73802 shortdesc amd64-netbsd files of cweb -binfiles arch=amd64-netbsd size=182 +binfiles arch=amd64-netbsd size=183 bin/amd64-netbsd/ctangle bin/amd64-netbsd/ctwill bin/amd64-netbsd/ctwill-proofsort @@ -85153,9 +86653,9 @@ binfiles arch=amd64-netbsd size=182 name cweb.armhf-linux category Package -revision 70588 +revision 73793 shortdesc armhf-linux files of cweb -binfiles arch=armhf-linux size=128 +binfiles arch=armhf-linux size=110 bin/armhf-linux/ctangle bin/armhf-linux/ctwill bin/armhf-linux/ctwill-proofsort @@ -85167,7 +86667,7 @@ binfiles arch=armhf-linux size=128 name cweb.i386-freebsd category Package -revision 70571 +revision 73792 shortdesc i386-freebsd files of cweb binfiles arch=i386-freebsd size=182 bin/i386-freebsd/ctangle @@ -85181,9 +86681,9 @@ binfiles arch=i386-freebsd size=182 name cweb.i386-linux category Package -revision 70571 +revision 73792 shortdesc i386-linux files of cweb -binfiles arch=i386-linux size=159 +binfiles arch=i386-linux size=178 bin/i386-linux/ctangle bin/i386-linux/ctwill bin/i386-linux/ctwill-proofsort @@ -85195,9 +86695,9 @@ binfiles arch=i386-linux size=159 name cweb.i386-netbsd category Package -revision 71441 +revision 73802 shortdesc i386-netbsd files of cweb -binfiles arch=i386-netbsd size=166 +binfiles arch=i386-netbsd size=167 bin/i386-netbsd/ctangle bin/i386-netbsd/ctwill bin/i386-netbsd/ctwill-proofsort @@ -85209,9 +86709,9 @@ binfiles arch=i386-netbsd size=166 name cweb.i386-solaris category Package -revision 70571 +revision 73792 shortdesc i386-solaris files of cweb -binfiles arch=i386-solaris size=143 +binfiles arch=i386-solaris size=144 bin/i386-solaris/ctangle bin/i386-solaris/ctwill bin/i386-solaris/ctwill-proofsort @@ -85223,9 +86723,9 @@ binfiles arch=i386-solaris size=143 name cweb.universal-darwin category Package -revision 70570 +revision 73806 shortdesc universal-darwin files of cweb -binfiles arch=universal-darwin size=478 +binfiles arch=universal-darwin size=479 bin/universal-darwin/ctangle bin/universal-darwin/ctwill bin/universal-darwin/ctwill-proofsort @@ -85237,7 +86737,7 @@ binfiles arch=universal-darwin size=478 name cweb.windows category Package -revision 70576 +revision 73796 shortdesc windows files of cweb binfiles arch=windows size=84 bin/windows/ctangle.exe @@ -85253,7 +86753,7 @@ binfiles arch=windows size=84 name cweb.x86_64-cygwin category Package -revision 71441 +revision 74094 shortdesc x86_64-cygwin files of cweb binfiles arch=x86_64-cygwin size=84 bin/x86_64-cygwin/ctangle.exe @@ -85267,9 +86767,9 @@ binfiles arch=x86_64-cygwin size=84 name cweb.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of cweb -binfiles arch=x86_64-darwinlegacy size=144 +binfiles arch=x86_64-darwinlegacy size=143 bin/x86_64-darwinlegacy/ctangle bin/x86_64-darwinlegacy/ctwill bin/x86_64-darwinlegacy/ctwill-proofsort @@ -85281,9 +86781,9 @@ binfiles arch=x86_64-darwinlegacy size=144 name cweb.x86_64-linux category Package -revision 70571 +revision 73777 shortdesc x86_64-linux files of cweb -binfiles arch=x86_64-linux size=157 +binfiles arch=x86_64-linux size=161 bin/x86_64-linux/ctangle bin/x86_64-linux/ctwill bin/x86_64-linux/ctwill-proofsort @@ -85295,9 +86795,9 @@ binfiles arch=x86_64-linux size=157 name cweb.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of cweb -binfiles arch=x86_64-linuxmusl size=153 +binfiles arch=x86_64-linuxmusl size=160 bin/x86_64-linuxmusl/ctangle bin/x86_64-linuxmusl/ctwill bin/x86_64-linuxmusl/ctwill-proofsort @@ -85309,9 +86809,9 @@ binfiles arch=x86_64-linuxmusl size=153 name cweb.x86_64-solaris category Package -revision 70571 +revision 73792 shortdesc x86_64-solaris files of cweb -binfiles arch=x86_64-solaris size=168 +binfiles arch=x86_64-solaris size=169 bin/x86_64-solaris/ctangle bin/x86_64-solaris/ctwill bin/x86_64-solaris/ctwill-proofsort @@ -86308,22 +87808,23 @@ catalogue-version 1.3 name dashrulex category Package -revision 70762 +revision 73736 shortdesc Draw dashed rules longdesc This package package provides a flexible solution for drawing longdesc dashed rules in the body. It currently provides two commands, longdesc \hdashrule and \hanyrule. It is written in LaTeX3 and can be longdesc used as an alternative to the dashrule package. -docfiles size=18 +docfiles size=17 texmf-dist/doc/latex/dashrulex/README.md details="Readme" texmf-dist/doc/latex/dashrulex/dashrulex.pdf details="Package documentation" texmf-dist/doc/latex/dashrulex/dashrulex.tex runfiles size=1 texmf-dist/tex/latex/dashrulex/dashrulex.sty +catalogue-contact-repository https://github.com/texno3/dashrulex catalogue-ctan /macros/latex/contrib/dashrulex catalogue-license cc-by-4 catalogue-topics rule line-patt expl3 -catalogue-version 1.00c +catalogue-version 1.02d name dashundergaps category Package @@ -87793,7 +89294,7 @@ catalogue-version 1.5 name dccpaper category Package -revision 67890 +revision 72097 shortdesc Typeset papers for the International Journal of Digital Curation longdesc The LaTeX class ijdc-v14 produces camera-ready papers and longdesc articles suitable for inclusion in the International Journal of @@ -87805,12 +89306,12 @@ longdesc Conference, beginning with the 2015 conference. As of August longdesc 2023 these classes are no longer officially supported for new longdesc submissions to the IJDC and IDCC, but nevertheless they longdesc continue to be maintained to support existing documents. -docfiles size=90 +docfiles size=91 texmf-dist/doc/latex/dccpaper/README.md details="Readme" texmf-dist/doc/latex/dccpaper/dccpaper-apacite.bib texmf-dist/doc/latex/dccpaper/dccpaper-biblatex.bib texmf-dist/doc/latex/dccpaper/dccpaper.pdf details="Package documentation" -srcfiles size=26 +srcfiles size=27 texmf-dist/source/latex/dccpaper/Makefile texmf-dist/source/latex/dccpaper/dccpaper.dtx runfiles size=28 @@ -87825,7 +89326,7 @@ catalogue-contact-repository https://github.com/alex-ball/dccpaper catalogue-ctan /macros/latex/contrib/dccpaper catalogue-license lppl1.3c cc-by-4 catalogue-topics journalpub confproc class -catalogue-version 2.4 +catalogue-version 2.5 name dcpic category Package @@ -88180,7 +89681,7 @@ catalogue-topics german hyphenation name dehyph-exptl category Package -revision 70233 +revision 72949 shortdesc Experimental hyphenation patterns for the German language longdesc The package provides experimental hyphenation patterns for the longdesc German language, covering both traditional and reformed @@ -88211,7 +89712,7 @@ runfiles size=206 texmf-dist/tex/generic/dehyph-exptl/dehypht-x-2024-02-28.tex texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2024-02-28.pat texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2024-02-28.tex -catalogue-contact-home https://projekte.dante.de/Trennmuster/WebHome +catalogue-contact-home https://wiki.dante.de/doku.php?id=trennmuster:trennmuster catalogue-contact-repository https://repo.or.cz/w/wortliste.git catalogue-contact-support mailto:trennmuster@dante.de catalogue-ctan /language/hyphenation/dehyph-exptl @@ -88826,13 +90327,13 @@ catalogue-version 2.34 name dejavu-otf category Package -revision 45991 +revision 73003 shortdesc Support for the ttf and otf DejaVu fonts -longdesc Package dejavu-otf supports the free ttf-fonts from the DejaVu +longdesc This package supports the free ttf-fonts from the DejaVu longdesc project which are available from GitHub or already part of your -longdesc system (Windows/Linux/...) and the OpenType version of the -longdesc TeXGyre Math, which is part of any TeX distribution.. Following -longdesc font files are supported: DejaVuSans-BoldOblique.ttf +longdesc system (Windows/Linux/...), and the OpenType version of TeXGyre +longdesc Math, which is part of any TeX distribution. The following font +longdesc files are supported: DejaVuSans-BoldOblique.ttf longdesc DejaVuSans-Bold.ttf DejaVuSansCondensed-BoldOblique.ttf longdesc DejaVuSansCondensed-Bold.ttf DejaVuSansCondensed-Oblique.ttf longdesc DejaVuSansCondensed.ttf DejaVuSans-ExtraLight.ttf @@ -88844,19 +90345,19 @@ longdesc DejaVuSerifCondensed-BoldItalic.ttf longdesc DejaVuSerifCondensed-Bold.ttf DejaVuSerifCondensed-Italic.ttf longdesc DejaVuSerifCondensed.ttf DejaVuSerif-Italic.ttf DejaVuSerif.ttf longdesc texgyredejavu-math.otf -docfiles size=89 +docfiles size=98 texmf-dist/doc/fonts/dejavu-otf/Changes texmf-dist/doc/fonts/dejavu-otf/README.md details="Readme" texmf-dist/doc/fonts/dejavu-otf/dejavu-otf-doc.bib texmf-dist/doc/fonts/dejavu-otf/dejavu-otf-doc.fonts texmf-dist/doc/fonts/dejavu-otf/dejavu-otf-doc.pdf details="Package documentation" texmf-dist/doc/fonts/dejavu-otf/dejavu-otf-doc.tex -runfiles size=2 +runfiles size=3 texmf-dist/tex/latex/dejavu-otf/dejavu-otf.sty catalogue-ctan /fonts/dejavu-otf catalogue-license lppl1.3 catalogue-topics font-absent font-otf font-ttf font-sans font-serif font-mono -catalogue-version 0.04 +catalogue-version 0.06 name delim category Package @@ -88902,25 +90403,25 @@ catalogue-version 2.0 name delimset category Package -revision 49544 +revision 73319 shortdesc Typeset and declare sets of delimiters with convenient size control longdesc delimset is a LaTeX2e package to typeset and declare sets of longdesc delimiters in math mode whose size can be adjusted longdesc conveniently. -docfiles size=83 +docfiles size=93 texmf-dist/doc/latex/delimset/README.txt details="Readme" texmf-dist/doc/latex/delimset/delimset.pdf details="Package documentation" texmf-dist/doc/latex/delimset/dlmssamp.tex -srcfiles size=12 +srcfiles size=18 texmf-dist/source/latex/delimset/delimset.dtx texmf-dist/source/latex/delimset/delimset.ins -runfiles size=2 +runfiles size=3 texmf-dist/tex/latex/delimset/delimset.sty catalogue-also delim delimseasy catalogue-ctan /macros/latex/contrib/delimset catalogue-license lppl1.3 catalogue-topics maths -catalogue-version 1.1 +catalogue-version 2.1 name delimtxt category Package @@ -89039,105 +90540,105 @@ catalogue-topics plain-text obsolete name detex.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of detex binfiles arch=aarch64-linux size=32 bin/aarch64-linux/detex name detex.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of detex binfiles arch=amd64-freebsd size=35 bin/amd64-freebsd/detex name detex.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of detex binfiles arch=amd64-netbsd size=34 bin/amd64-netbsd/detex name detex.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of detex -binfiles arch=armhf-linux size=27 +binfiles arch=armhf-linux size=24 bin/armhf-linux/detex name detex.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of detex binfiles arch=i386-freebsd size=35 bin/i386-freebsd/detex name detex.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of detex -binfiles arch=i386-linux size=35 +binfiles arch=i386-linux size=37 bin/i386-linux/detex name detex.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of detex binfiles arch=i386-netbsd size=32 bin/i386-netbsd/detex name detex.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of detex binfiles arch=i386-solaris size=31 bin/i386-solaris/detex name detex.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of detex binfiles arch=universal-darwin size=83 bin/universal-darwin/detex name detex.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of detex binfiles arch=windows size=11 bin/windows/detex.exe name detex.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of detex binfiles arch=x86_64-cygwin size=14 bin/x86_64-cygwin/detex.exe name detex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of detex binfiles arch=x86_64-darwinlegacy size=29 bin/x86_64-darwinlegacy/detex name detex.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of detex binfiles arch=x86_64-linux size=33 bin/x86_64-linux/detex name detex.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of detex -binfiles arch=x86_64-linuxmusl size=32 +binfiles arch=x86_64-linuxmusl size=34 bin/x86_64-linuxmusl/detex name detex.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of detex binfiles arch=x86_64-solaris size=36 bin/x86_64-solaris/detex @@ -89795,7 +91296,7 @@ catalogue-version 5.4 name digestif category Package -revision 65223 +revision 72163 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 @@ -89807,7 +91308,7 @@ docfiles size=7 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 +runfiles size=158 texmf-dist/scripts/digestif/digestif.texlua texmf-dist/scripts/digestif/digestif.zip catalogue-contact-bugs https://github.com/astoff/digestif/issues @@ -89815,7 +91316,7 @@ 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 +catalogue-version 0.6 name digestif.aarch64-linux category Package @@ -90896,6 +92397,26 @@ catalogue-ctan /macros/latex/contrib/doi catalogue-license lppl catalogue-topics hyper +name doibanner +category Package +revision 71919 +shortdesc Generate DOI banners and links +longdesc A LaTeX package to generate DOI banners and links. +docfiles size=74 + texmf-dist/doc/latex/doibanner/README.md details="Readme" + texmf-dist/doc/latex/doibanner/doibanner.pdf details="Package documentation" +srcfiles size=5 + texmf-dist/source/latex/doibanner/doibanner.dtx + texmf-dist/source/latex/doibanner/doibanner.ins +runfiles size=1 + texmf-dist/tex/latex/doibanner/doibanner.sty +catalogue-contact-home https://codeberg.org/Cs137/doibanner +catalogue-contact-repository https://codeberg.org/Cs137/doibanner.git +catalogue-ctan /macros/latex/contrib/doibanner +catalogue-license lppl1.3c +catalogue-topics scientific-docs +catalogue-version 0.3 + name doipubmed category Package revision 15878 @@ -90919,6 +92440,35 @@ catalogue-license lppl catalogue-topics cite-supp catalogue-version 1.01 +name domaincoloring +category Package +revision 72176 +shortdesc Draw colored represenations of complex functions +longdesc Domain coloring is a technique to visualize complex functions +longdesc by assigning a color to each point of the complex plane z=x+iy. +longdesc This package calculates with the help of Lua any complex +longdesc function to visualize its behaviour. The value of the complex +longdesc function(z) can be described by radius and angle which can be +longdesc two values of the hsv-color model, which then defines the color +longdesc of each point in the complex plane z=x+iy. +docfiles size=1152 + texmf-dist/doc/lualatex/domaincoloring/Changes + texmf-dist/doc/lualatex/domaincoloring/README.md details="Readme" + texmf-dist/doc/lualatex/domaincoloring/domaincoloring-doc.bib + texmf-dist/doc/lualatex/domaincoloring/domaincoloring-doc.pdf details="Example of use" language="de" + texmf-dist/doc/lualatex/domaincoloring/domaincoloring-doc.tex + texmf-dist/doc/lualatex/domaincoloring/hsv.png + texmf-dist/doc/lualatex/domaincoloring/titleImg.png +runfiles size=7 + texmf-dist/tex/lualatex/domaincoloring/domaincoloring-complex-numbers.lua + texmf-dist/tex/lualatex/domaincoloring/domaincoloring-functions.lua + texmf-dist/tex/lualatex/domaincoloring/domaincoloring.lua + texmf-dist/tex/lualatex/domaincoloring/domaincoloring.sty +catalogue-ctan /macros/luatex/latex/domaincoloring +catalogue-license lppl1.3 +catalogue-topics maths graphics colour luatex graphics-epspdf graphics-incl graphics-plot graphics-plotfn +catalogue-version 0.05 + name domitian category Package revision 55286 @@ -92441,123 +93991,56 @@ catalogue-topics graphics-in-tex name drawing-with-metapost category Package -revision 66846 +revision 72705 shortdesc How to draw technical diagrams with MetaPost longdesc This project provides a document that discusses how to draw longdesc technical diagrams with John Hobby's MetaPost language. It longdesc includes over 200 illustrations created with MetaPost, complete longdesc with source code as inspiration and examples. -docfiles size=6149 +docfiles size=5612 texmf-dist/doc/metapost/drawing-with-metapost/Drawing-with-Metapost.pdf details="The document itself" texmf-dist/doc/metapost/drawing-with-metapost/README.md details="Readme" texmf-dist/doc/metapost/drawing-with-metapost/src/Drawing-with-Metapost.tex - texmf-dist/doc/metapost/drawing-with-metapost/src/angles-lines.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/angles-lines.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/apollonius.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/apollonius.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arbelos.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arbelos.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-3-4-3-4.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-3-4-3-4.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-3-4-6-4.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-3-4-6-4.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-4-6-12.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-4-6-12.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-4-8-8-parts.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-4-8-8-parts.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-4-8-8.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-4-8-8.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-hexagon.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-hst.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-hst.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-snub-hex-parts.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-snub-hexagon-unit.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-snub-hexagon-unit.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-snub-hexagon.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-snub-hexagon.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-snub-square.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-snub-square.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-square.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/arch-triangle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/archimedean-tools.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/archimedes.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/archimedes.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/area-under-graph.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/area-under-graph.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/axis-of-similitude.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/axis-of-similitude.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/automatic-grid.mp texmf-dist/doc/metapost/drawing-with-metapost/src/basedate.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/bisection-euclidean.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/bisection-euclidean.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/bisection-interior.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/bisection-interior.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/bisection-vector.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/bisection-vector.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/bisection.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/blended-color-circles.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/blended-color-circles.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/border-dashed.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/border-shadow.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/border.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/border.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/braces.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/braces.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/brachisto.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/brachisto.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/brexit-map.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/brexit-map.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/brown3a.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/callout.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/callout.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/circumcircle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/circumcircle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/cd-tikzcd-example.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/cd-tikzcd-example.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/cd-xypic-example.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/cd-xypic-example.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/clocks.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-antireuleaux-set.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-antireuleaux-set.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-fixed-polygon.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-fixed-polygon.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-points.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-points.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-polygon-chain.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-polygon-chain.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-polygon-tops.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-polygon-tops.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-polygons.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-polygons.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-reuleaux-geometry.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-reuleaux-geometry.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-reuleaux-set.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-reuleaux-set.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-standards.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-standards.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-triangles.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/closed-triangles.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/color-blend-toy.mp texmf-dist/doc/metapost/drawing-with-metapost/src/color-blend-toy.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/color-blended-circles.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/color-blended-circles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/color-brexit-map.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/color-brexit-map.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/color-grey-escher.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/color-grey-escher.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/color-grey-shadows.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/color-grey-shadows.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/color-hsv-bathymetric.mp texmf-dist/doc/metapost/drawing-with-metapost/src/color-hsv-bathymetric.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/color-hsv-gamut.mp texmf-dist/doc/metapost/drawing-with-metapost/src/color-hsv-gamut.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/color-hsv-macro.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/compass-rose.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/complex-inverse-and-sqrt.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/complex-inverse-and-sqrt.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/complex-operators.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/complex-operators.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/conway.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/conway.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/corners.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/corners.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-astroid-construction.mp texmf-dist/doc/metapost/drawing-with-metapost/src/curves-astroid-construction.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-astroid-family.mp texmf-dist/doc/metapost/drawing-with-metapost/src/curves-astroid-family.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-astroid.mp texmf-dist/doc/metapost/drawing-with-metapost/src/curves-astroid.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-brachisto.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-brachisto.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cardioid-construction.mp texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cardioid-construction.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cardioid-simple.mp texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cardioid-simple.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cycloids-extra.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cycloids-extra.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cycloids.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-cycloids.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-ellipse-family.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/curves-ellipse-family.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-ellipse-tangents.mp texmf-dist/doc/metapost/drawing-with-metapost/src/curves-ellipse-tangents.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-ellipse.mp @@ -92582,27 +94065,9 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/curves-spiral-gnomon-sq.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/curves-spiral-gnomon-trig.mp texmf-dist/doc/metapost/drawing-with-metapost/src/curves-spiral-gnomon-trig.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/cycloids-code.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/cycloids-extra-code.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/cycloids-extra.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/cycloids-extra.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/cycloids.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/cycloids.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/desargues.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/desargues.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/dice.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/dice.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/double-angle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/double-angle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/double-dragon.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/double-dragon.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/draw-picture.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/draw-picture.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/drawing-circles.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/drawing-circles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/deco-borders.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/deco-borders.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/dwmpcode.sty - texmf-dist/doc/metapost/drawing-with-metapost/src/dynamic-labels.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/dynamic-labels.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/eggs-357.mp texmf-dist/doc/metapost/drawing-with-metapost/src/eggs-357.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/eggs-common.mp @@ -92628,18 +94093,10 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/eggs-super.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/eggs-thom.mp texmf-dist/doc/metapost/drawing-with-metapost/src/eggs-thom.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/escher.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/escher.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/euler-sampler.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/euler-sampler.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/excircle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/excircle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/explode.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/explode.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/fake-transparency.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/fake-transparency.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-addition-of-sines.mp texmf-dist/doc/metapost/drawing-with-metapost/src/func-addition-of-sines.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/func-angles-lines.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/func-angles-lines.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-cuberoot.mp texmf-dist/doc/metapost/drawing-with-metapost/src/func-cuberoot.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-epi-v-pie.mp @@ -92648,10 +94105,16 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/func-exponential.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-lemniscate.mp texmf-dist/doc/metapost/drawing-with-metapost/src/func-lemniscate.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/func-linear-graph.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/func-linear-graph.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-maurer-rose.mp texmf-dist/doc/metapost/drawing-with-metapost/src/func-maurer-rose.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/func-numbered-axes.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/func-numbered-axes.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-parametric.mp texmf-dist/doc/metapost/drawing-with-metapost/src/func-parametric.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/func-plain-axes.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/func-plain-axes.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-powers.mp texmf-dist/doc/metapost/drawing-with-metapost/src/func-powers.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-pulse.mp @@ -92662,23 +94125,79 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/func-sines.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/func-stress.mp texmf-dist/doc/metapost/drawing-with-metapost/src/func-stress.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/gaussian.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/gaussian.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-apollonius.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-apollonius.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-arbelos.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-arbelos.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-axis-of-similitude.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-axis-of-similitude.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-bisection-euclidean.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-bisection-euclidean.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-bisection-interior.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-bisection-interior.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-bisection-vector.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-bisection-vector.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-bisection.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-circumcircle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-circumcircle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-drawing-circles.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-drawing-circles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-desargues.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-desargues.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-napoleon.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-napoleon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-projections.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-projections.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-trisections.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-examples-trisections.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-excircle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-excircle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-incircle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-incircle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-AB-or-BA.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-AB-or-BA.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-algorithm.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-algorithm.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-all-three.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-all-three.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-only-two.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-intersection-only-two.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-magic-square-14.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-magic-square-14.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-mediation-pitfall.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-mediation-pitfall.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-mediation-sallows.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-mediation-sallows.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-mediation-shapes.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-mediation-shapes.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-nine-point-circle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-nine-point-circle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-parallel.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-parallel.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-pole-and-polar.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-pole-and-polar.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-radical-axis.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-radical-axis.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangent-times-on-circle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangent-times-on-circle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangent-times.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-on-path.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-on-path.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-point-to-circle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-point-to-circle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-two-circles-exterior.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-two-circles-exterior.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-two-circles-interior.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-tangents-two-circles-interior.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-triangles-on-circle.mp texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-triangles-on-circle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-trisection-classical.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-trisection-classical.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-trisection-simple.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-trisection-simple.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-whatever.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/geometry-whatever.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/glenshiel.jpg - texmf-dist/doc/metapost/drawing-with-metapost/src/gons.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/gons.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/graph-paper.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/graph-paper.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/greek-default-encoding.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/greek-default-encoding.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/greek-gfs-encoding.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/greek-gfs-encoding.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/greek-homer.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/greek-homer.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/icosahedron.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/icosahedron.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/ifs-heigh-open.mp texmf-dist/doc/metapost/drawing-with-metapost/src/ifs-heigh-open.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/ifs-heigh.mp @@ -92686,100 +94205,174 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/ifs-heighway-stages.mp texmf-dist/doc/metapost/drawing-with-metapost/src/ifs-heighway-stages.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-cafe-wall.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-cafe-wall.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-cubes.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-fraser-spiral.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-impossible-ring.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-cubes.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-fraser-spiral.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-impossible-ring.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-impossible-triangle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-impossible-triangle.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-pinna.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-pinna.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-shaded-diamonds.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-shaded-diamonds.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-wonky-grid.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/incircle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/incircle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/infont-annotated.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/infont-annotated.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/infont-example.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/infont-example.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-AB-or-BA.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-AB-or-BA.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-algorithm.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-algorithm.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-all-three.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-all-three.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-only-two.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/intersection-only-two.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/illusions-wonky-grid.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/lemniscate-as-function.mp texmf-dist/doc/metapost/drawing-with-metapost/src/lemniscate-as-function.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/line-caps-and-joins.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/line-caps-and-joins.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/linear-graph.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/linear-graph.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/little-hexagon.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/little-hexagon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/listex.py texmf-dist/doc/metapost/drawing-with-metapost/src/london-boroughs.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/magic-square-14.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/magic-square-14.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/marked-up-photo-with-grid.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/marked-up-photo.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/marked-up-photo.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/mediation-pitfall.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/mediation-pitfall.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/mediation-sallows.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/mediation-sallows.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/mediation-shapes.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/mediation-shapes.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/minus.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/minus.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/multi-line-labels.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/multi-line-labels.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/neo-labels-tte.mp texmf-dist/doc/metapost/drawing-with-metapost/src/neo-labels-tte.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/neo-labels.mp texmf-dist/doc/metapost/drawing-with-metapost/src/neo-labels.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/nine-point-circle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/nine-point-circle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/numbered-axes.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/numbered-axes.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/open-triangle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/open-triangle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/overlaps-default-fillers.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/overlaps-default-fillers.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/overlaps-missing-filler.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/overlaps-missing-filler.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/overlaps.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/overlaps.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/parallel.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/parallel.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/penrose-P3.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/penrose-P3.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/penrose-stages.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/penrose-stages.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/penrose.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-marked-up-photo-grid.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-marked-up-photo-grid.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-marked-up-photo.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-marked-up-photo.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-multi-line-labels.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-multi-line-labels.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-reference-grid.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-simple-circle-labels.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-simple-circle-labels.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-simple-number-line.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-simple-number-line.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-unicode.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/neo-unicode.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/new-fangled-transparency.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/new-fangled-transparency.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/new-fangled-trilobe.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/new-fangled-trilobe.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-complex-inverse-and-sqrt.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-complex-inverse-and-sqrt.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-complex-operators.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-complex-operators.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-double-dragon.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-double-dragon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-random-function.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-random-function.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-random-selection.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pairs-random-selection.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-antireuleaux-set.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-antireuleaux-set.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-area-under-graph.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-area-under-graph.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-fixed-polygon.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-fixed-polygon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-little-hexagon.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-little-hexagon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-open-triangle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-open-triangle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-overlaps-default-fillers.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-overlaps-default-fillers.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-overlaps-missing-filler.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-overlaps-missing-filler.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-overlaps.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-overlaps.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-points.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-points.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-polygon-chain.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-polygon-chain.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-polygon-tops.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-polygon-tops.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-polygons.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-polygons.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-reuleaux-geometry.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-reuleaux-geometry.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-reuleaux-set.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-reuleaux-set.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-saturn.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-saturn.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-schlafli-polygons.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-schlafli-polygons.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-standards.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-standards.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-superellipses.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-superellipses.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-triangles.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/paths-triangles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-arrow-styles.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-arrow-styles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-besides.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-besides.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-crossings.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-crossings.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-curly.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-curly.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-feynmp-styles.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-feynmp-styles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-fleuron.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-fleuron.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-greek-meander.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-greek-meander.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-highway.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-highway.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-line-caps-and-joins.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-line-caps-and-joins.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-pen-oddity.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-pen-oddity.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-strokes.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-strokes.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-tubes.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pens-tubes.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-border-common.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-border-dashed.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-border-dashed.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-border-rope.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-border-rope.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-border-shadow.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-border-shadow.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-corners.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-corners.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-double-angle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-double-angle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-draw-picture.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-draw-picture.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-fake-transparency.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-fake-transparency.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-graph-paper-5mm.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-graph-paper-cm.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-graph-paper-example.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-graph-paper-example.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-graph-paper-inch.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-graph-paper.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-icosahedron.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-icosahedron.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-shady-circles.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-shady-circles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-twister.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-twister.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-youth.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/pics-youth.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/picture_frame.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/pinwheel.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/pinwheel.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/plain-axes.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/plain-axes.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/pole-and-polar.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/pole-and-polar.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/porson.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/porson.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/projections-code.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/projections.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/projections.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/qed.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/qed.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/radical-axis.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/radical-axis.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-dice.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-dice.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-explosions.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-explosions.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-exponential-test.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-exponential-test.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/random-freehand-circumcircle.mp texmf-dist/doc/metapost/drawing-with-metapost/src/random-freehand-circumcircle.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/random-freehand-through.mp texmf-dist/doc/metapost/drawing-with-metapost/src/random-freehand-through.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/random-function.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/random-function.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/random-selection.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/random-selection.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-gaussian.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-gaussian.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-other-distributions.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-qed.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-qed.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/random-shapes.mp texmf-dist/doc/metapost/drawing-with-metapost/src/random-shapes.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-torn-edge-circle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-torn-edge-circle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-torn-edge.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-torn-straight-edge.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-torn-straight-edge.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-two-dimensional-brownian.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-two-dimensional-brownian.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-walks-normal-bridge.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-walks-normal-bridge.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/random-walks-normal.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/random-walks-normal.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/random-walks-red-blue.mp texmf-dist/doc/metapost/drawing-with-metapost/src/random-walks-red-blue.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/rec-bush.mp @@ -92792,6 +94385,7 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/rec-flowsnake-construction.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/rec-flowsnake.mp texmf-dist/doc/metapost/drawing-with-metapost/src/rec-flowsnake.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/rec-gcd-comparison.mp texmf-dist/doc/metapost/drawing-with-metapost/src/rec-general-tree-deviate.mp texmf-dist/doc/metapost/drawing-with-metapost/src/rec-general-tree-deviate.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/rec-general-tree.mp @@ -92804,8 +94398,8 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/rec-koch-steps.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/rec-mink-sausage.mp texmf-dist/doc/metapost/drawing-with-metapost/src/rec-mink-sausage.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/rec-sierpinski-pentagon.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/rec-sierpinski-pentagon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/rec-sierpinski-garlands.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/rec-sierpinski-garlands.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/rec-sierpinski-triangle.mp texmf-dist/doc/metapost/drawing-with-metapost/src/rec-sierpinski-triangle.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/rec-simple-tree.mp @@ -92813,94 +94407,129 @@ docfiles size=6149 texmf-dist/doc/metapost/drawing-with-metapost/src/rope.mp texmf-dist/doc/metapost/drawing-with-metapost/src/ruler-cm.mp texmf-dist/doc/metapost/drawing-with-metapost/src/ruler-inch.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/ruler-pt.mp texmf-dist/doc/metapost/drawing-with-metapost/src/ruler.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/saturn-code.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/saturn.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/saturn.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/shadows.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/shadows.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/shady-circles.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/shady-circles.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/simple-circle-labels.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/simple-circle-labels.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/simple-number-line.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/simple-number-line.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/split-labels.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/split-labels.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/tangent-times-on-circle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tangent-times-on-circle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/tangent-times.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-on-path.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-on-path.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-point-to-circle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-point-to-circle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-two-circles-exterior.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-two-circles-exterior.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-two-circles-interior.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tangents-two-circles-interior.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/tikzcd-example.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tikzcd-example.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/show_name.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann-bounded.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann-bounded.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann-procedures.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann-substitutions-bounded.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann-substitutions-bounded.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann-substitutions-overlapping.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann-substitutions-overlapping.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-ammann.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-3-4-3-4.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-3-4-3-4.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-3-4-6-4.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-3-4-6-4.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-4-6-12.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-4-6-12.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-4-8-8-parts.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-4-8-8-parts.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-4-8-8.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-4-8-8.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-hexagon.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-hexagon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-hst.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-hst.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-snub-hex-parts.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-snub-hexagon-unit.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-snub-hexagon-unit.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-snub-hexagon.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-snub-hexagon.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-snub-square.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-arch-snub-square.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-archimedes.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-archimedes.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-conway.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-conway.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-hex-trig.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-hex-trig.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-kepler-k.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-kepler-k.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-kepler-x.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-kepler-x.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-kepler-y.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-kepler-y.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p2-kite-dart-construction.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p2-kite-dart-construction.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p2-kite-dart.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p2-kite-dart.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p3-rhombs-construction.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p3-rhombs-construction.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p3-rhombs.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-penrose-tatham-p3-rhombs.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-pinwheel-macro.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-pp48a.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-pp48a.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-simple.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-simple.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/tiling.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/tiling.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/torn-edge-circle.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/torn-edge-circle.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/torn-edge-straight.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/torn-edge-straight.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/torn-edge.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-subs-pinwheel.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-subs-pinwheel.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-subs-triangle.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tiling-subs-triangle.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-braces.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-braces.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-callout.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-callout.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-dynamic-labels.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-dynamic-labels.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-euler-sampler.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-euler-sampler.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/trad-font-changes.mp texmf-dist/doc/metapost/drawing-with-metapost/src/trad-font-changes.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/trad-font-samples.mp texmf-dist/doc/metapost/drawing-with-metapost/src/trad-font-samples.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/trad-font-tables.mp texmf-dist/doc/metapost/drawing-with-metapost/src/trad-font-tables.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/trisection-classical.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/trisection-classical.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/trisection-simple.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/trisection-simple.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/trisection-triangles.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/trisection-triangles.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-greek-default-encoding.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-greek-default-encoding.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-greek-gfs-encoding.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-greek-gfs-encoding.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-greek-homer.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-greek-homer.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-infont-annotated.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-infont-annotated.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-infont-example.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-infont-example.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-minus.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-minus.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-porson.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-porson.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-split-labels.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-split-labels.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-utf8.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-utf8.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-verbatim-listing.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-verbatim-listing.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-verbatim-with-infont.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/trad-verbatim-with-infont.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/trigonometry-functions.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-budget.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-budget.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-currency.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-currency.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-manila-paper.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-mpg.mp texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-mpg.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/twister.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/twister.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/unicode.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/unicode.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/utf8.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/utf8.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/verbatim-listing.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/verbatim-listing.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/verbatim-with-infont.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/verbatim-with-infont.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/whatever.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/whatever.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-snow.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-snow.pdf + texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-srm-damage.mp + texmf-dist/doc/metapost/drawing-with-metapost/src/tufte-srm-damage.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/workflow-plain.mp texmf-dist/doc/metapost/drawing-with-metapost/src/workflow-plain.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/workflow.mp texmf-dist/doc/metapost/drawing-with-metapost/src/workflow.pdf - texmf-dist/doc/metapost/drawing-with-metapost/src/xypic-example.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/xypic-example.pdf texmf-dist/doc/metapost/drawing-with-metapost/src/youth.jpg - texmf-dist/doc/metapost/drawing-with-metapost/src/youth.mp - texmf-dist/doc/metapost/drawing-with-metapost/src/youth.pdf catalogue-contact-bugs https://github.com/thruston/Drawing-with-Metapost/issues +catalogue-contact-development https://github.com/thruston/Drawing-with-Metapost +catalogue-contact-home https://github.com/thruston/Drawing-with-Metapost catalogue-contact-repository https://github.com/thruston/Drawing-with-Metapost -catalogue-contact-support https://tex.stackexchange.com/questions/tagged/metapost +catalogue-contact-support https://github.com/thruston/Drawing-with-Metapost/discussions catalogue-ctan /info/drawing-with-metapost catalogue-license opl catalogue-topics mp-doc tutorial +catalogue-version 2.0 name drawmatrix category Package @@ -95293,7 +96922,7 @@ catalogue-version 1.031 name dtk category Package -revision 70112 +revision 71776 shortdesc Document class for the journal of DANTE longdesc The bundle provides a class and style file for typesetting "Die longdesc TeXnische Komodie" -- the communications of the German TeX @@ -95324,20 +96953,20 @@ catalogue-contact-repository https://github.com/rolfn/dtk catalogue-ctan /usergrps/dante/dtk catalogue-license lppl1.3c catalogue-topics journalpub class -catalogue-version 2.10e +catalogue-version 2.10f name dtk-bibliography category Package -revision 70506 +revision 73293 shortdesc Bibliography of "Die TeXnische Komodie" 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. -docfiles size=73 +docfiles size=74 texmf-dist/doc/bibtex/dtk-bibliography/README.md details="Readme" texmf-dist/doc/bibtex/dtk-bibliography/dtk-bibliography.pdf details="The document itself" texmf-dist/doc/bibtex/dtk-bibliography/dtk-bibliography.tex -runfiles size=140 +runfiles size=143 texmf-dist/bibtex/bib/dtk-bibliography/dtk-bibliography.bib texmf-dist/tex/latex/dtk-bibliography/dtk-authoryear.bbx texmf-dist/tex/latex/dtk-bibliography/dtk-authoryear.dbx @@ -95348,7 +96977,7 @@ 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 2024-01 +catalogue-version 2024-04 name dtl category TLCore @@ -95373,7 +97002,7 @@ catalogue-version 0.6.1 name dtl.aarch64-linux category TLCore -revision 69782 +revision 73915 shortdesc aarch64-linux files of dtl binfiles arch=aarch64-linux size=20 bin/aarch64-linux/dt2dv @@ -95381,7 +97010,7 @@ binfiles arch=aarch64-linux size=20 name dtl.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of dtl binfiles arch=amd64-freebsd size=19 bin/amd64-freebsd/dt2dv @@ -95389,7 +97018,7 @@ binfiles arch=amd64-freebsd size=19 name dtl.amd64-netbsd category TLCore -revision 69797 +revision 73802 shortdesc amd64-netbsd files of dtl binfiles arch=amd64-netbsd size=19 bin/amd64-netbsd/dt2dv @@ -95397,15 +97026,15 @@ binfiles arch=amd64-netbsd size=19 name dtl.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of dtl -binfiles arch=armhf-linux size=14 +binfiles arch=armhf-linux size=13 bin/armhf-linux/dt2dv bin/armhf-linux/dv2dt name dtl.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of dtl binfiles arch=i386-freebsd size=19 bin/i386-freebsd/dt2dv @@ -95413,15 +97042,15 @@ binfiles arch=i386-freebsd size=19 name dtl.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of dtl -binfiles arch=i386-linux size=19 +binfiles arch=i386-linux size=21 bin/i386-linux/dt2dv bin/i386-linux/dv2dt name dtl.i386-netbsd category TLCore -revision 69797 +revision 73802 shortdesc i386-netbsd files of dtl binfiles arch=i386-netbsd size=17 bin/i386-netbsd/dt2dv @@ -95429,15 +97058,15 @@ binfiles arch=i386-netbsd size=17 name dtl.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of dtl -binfiles arch=i386-solaris size=16 +binfiles arch=i386-solaris size=17 bin/i386-solaris/dt2dv bin/i386-solaris/dv2dt name dtl.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of dtl binfiles arch=universal-darwin size=80 bin/universal-darwin/dt2dv @@ -95445,7 +97074,7 @@ binfiles arch=universal-darwin size=80 name dtl.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of dtl binfiles arch=windows size=14 bin/windows/dt2dv.exe @@ -95453,7 +97082,7 @@ binfiles arch=windows size=14 name dtl.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dtl binfiles arch=x86_64-cygwin size=15 bin/x86_64-cygwin/dt2dv.exe @@ -95461,31 +97090,31 @@ binfiles arch=x86_64-cygwin size=15 name dtl.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dtl -binfiles arch=x86_64-darwinlegacy size=19 +binfiles arch=x86_64-darwinlegacy size=18 bin/x86_64-darwinlegacy/dt2dv bin/x86_64-darwinlegacy/dv2dt name dtl.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of dtl -binfiles arch=x86_64-linux size=19 +binfiles arch=x86_64-linux size=21 bin/x86_64-linux/dt2dv bin/x86_64-linux/dv2dt name dtl.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dtl -binfiles arch=x86_64-linuxmusl size=19 +binfiles arch=x86_64-linuxmusl size=22 bin/x86_64-linuxmusl/dt2dv bin/x86_64-linuxmusl/dv2dt name dtl.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of dtl binfiles arch=x86_64-solaris size=21 bin/x86_64-solaris/dt2dv @@ -95959,127 +97588,127 @@ catalogue-version 6.0.0 name dvi2tty.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of dvi2tty -binfiles arch=aarch64-linux size=71 +binfiles arch=aarch64-linux size=75 bin/aarch64-linux/disdvi bin/aarch64-linux/dvi2tty name dvi2tty.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of dvi2tty -binfiles arch=amd64-freebsd size=80 +binfiles arch=amd64-freebsd size=85 bin/amd64-freebsd/disdvi bin/amd64-freebsd/dvi2tty name dvi2tty.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of dvi2tty -binfiles arch=amd64-netbsd size=79 +binfiles arch=amd64-netbsd size=84 bin/amd64-netbsd/disdvi bin/amd64-netbsd/dvi2tty name dvi2tty.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of dvi2tty -binfiles arch=armhf-linux size=59 +binfiles arch=armhf-linux size=53 bin/armhf-linux/disdvi bin/armhf-linux/dvi2tty name dvi2tty.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of dvi2tty -binfiles arch=i386-freebsd size=80 +binfiles arch=i386-freebsd size=85 bin/i386-freebsd/disdvi bin/i386-freebsd/dvi2tty name dvi2tty.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of dvi2tty -binfiles arch=i386-linux size=77 +binfiles arch=i386-linux size=86 bin/i386-linux/disdvi bin/i386-linux/dvi2tty name dvi2tty.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of dvi2tty -binfiles arch=i386-netbsd size=72 +binfiles arch=i386-netbsd size=78 bin/i386-netbsd/disdvi bin/i386-netbsd/dvi2tty name dvi2tty.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of dvi2tty -binfiles arch=i386-solaris size=66 +binfiles arch=i386-solaris size=71 bin/i386-solaris/disdvi bin/i386-solaris/dvi2tty name dvi2tty.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of dvi2tty -binfiles arch=universal-darwin size=179 +binfiles arch=universal-darwin size=191 bin/universal-darwin/disdvi bin/universal-darwin/dvi2tty name dvi2tty.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of dvi2tty -binfiles arch=windows size=21 +binfiles arch=windows size=23 bin/windows/disdvi.exe bin/windows/dvi2tty.exe name dvi2tty.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dvi2tty -binfiles arch=x86_64-cygwin size=21 +binfiles arch=x86_64-cygwin size=20 bin/x86_64-cygwin/disdvi.exe bin/x86_64-cygwin/dvi2tty.exe name dvi2tty.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dvi2tty -binfiles arch=x86_64-darwinlegacy size=67 +binfiles arch=x86_64-darwinlegacy size=71 bin/x86_64-darwinlegacy/disdvi bin/x86_64-darwinlegacy/dvi2tty name dvi2tty.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of dvi2tty -binfiles arch=x86_64-linux size=73 +binfiles arch=x86_64-linux size=81 bin/x86_64-linux/disdvi bin/x86_64-linux/dvi2tty name dvi2tty.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dvi2tty -binfiles arch=x86_64-linuxmusl size=71 +binfiles arch=x86_64-linuxmusl size=78 bin/x86_64-linuxmusl/disdvi bin/x86_64-linuxmusl/dvi2tty name dvi2tty.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of dvi2tty -binfiles arch=x86_64-solaris size=79 +binfiles arch=x86_64-solaris size=85 bin/x86_64-solaris/disdvi bin/x86_64-solaris/dvi2tty name dviasm category Package -revision 68043 +revision 71902 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 @@ -96090,7 +97719,7 @@ docfiles size=10 texmf-dist/doc/latex/dviasm/README details="Readme" texmf-dist/doc/man/man1/dviasm.1 texmf-dist/doc/man/man1/dviasm.man1.pdf -runfiles size=11 +runfiles size=12 texmf-dist/scripts/dviasm/dviasm.py catalogue-also dtl catalogue-contact-bugs https://github.com/aminophen/dviasm/issues @@ -96206,7 +97835,7 @@ binfiles arch=x86_64-solaris size=1 name dvicopy category TLCore -revision 70015 +revision 73848 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 @@ -96226,105 +97855,105 @@ catalogue-version 1.5 name dvicopy.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of dvicopy binfiles arch=aarch64-linux size=36 bin/aarch64-linux/dvicopy name dvicopy.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of dvicopy binfiles arch=amd64-freebsd size=42 bin/amd64-freebsd/dvicopy name dvicopy.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of dvicopy binfiles arch=amd64-netbsd size=40 bin/amd64-netbsd/dvicopy name dvicopy.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of dvicopy -binfiles arch=armhf-linux size=27 +binfiles arch=armhf-linux size=23 bin/armhf-linux/dvicopy name dvicopy.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of dvicopy binfiles arch=i386-freebsd size=42 bin/i386-freebsd/dvicopy name dvicopy.i386-linux category TLCore -revision 70571 +revision 73792 shortdesc i386-linux files of dvicopy -binfiles arch=i386-linux size=35 +binfiles arch=i386-linux size=38 bin/i386-linux/dvicopy name dvicopy.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of dvicopy binfiles arch=i386-netbsd size=37 bin/i386-netbsd/dvicopy name dvicopy.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of dvicopy binfiles arch=i386-solaris size=33 bin/i386-solaris/dvicopy name dvicopy.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of dvicopy binfiles arch=universal-darwin size=92 bin/universal-darwin/dvicopy name dvicopy.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of dvicopy binfiles arch=windows size=15 bin/windows/dvicopy.exe name dvicopy.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of dvicopy binfiles arch=x86_64-cygwin size=14 bin/x86_64-cygwin/dvicopy.exe name dvicopy.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dvicopy binfiles arch=x86_64-darwinlegacy size=31 bin/x86_64-darwinlegacy/dvicopy name dvicopy.x86_64-linux category TLCore -revision 70571 +revision 73777 shortdesc x86_64-linux files of dvicopy binfiles arch=x86_64-linux size=32 bin/x86_64-linux/dvicopy name dvicopy.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dvicopy -binfiles arch=x86_64-linuxmusl size=33 +binfiles arch=x86_64-linuxmusl size=34 bin/x86_64-linuxmusl/dvicopy name dvicopy.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of dvicopy binfiles arch=x86_64-solaris size=38 bin/x86_64-solaris/dvicopy @@ -96346,107 +97975,107 @@ catalogue-topics dvi-proc name dvidvi.aarch64-linux category TLCore -revision 69782 +revision 73915 shortdesc aarch64-linux files of dvidvi binfiles arch=aarch64-linux size=6 bin/aarch64-linux/dvidvi name dvidvi.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of dvidvi binfiles arch=amd64-freebsd size=6 bin/amd64-freebsd/dvidvi name dvidvi.amd64-netbsd category TLCore -revision 69797 +revision 73802 shortdesc amd64-netbsd files of dvidvi binfiles arch=amd64-netbsd size=6 bin/amd64-netbsd/dvidvi name dvidvi.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of dvidvi binfiles arch=armhf-linux size=5 bin/armhf-linux/dvidvi name dvidvi.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of dvidvi binfiles arch=i386-freebsd size=6 bin/i386-freebsd/dvidvi name dvidvi.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of dvidvi -binfiles arch=i386-linux size=5 +binfiles arch=i386-linux size=6 bin/i386-linux/dvidvi name dvidvi.i386-netbsd category TLCore -revision 69797 +revision 73802 shortdesc i386-netbsd files of dvidvi binfiles arch=i386-netbsd size=5 bin/i386-netbsd/dvidvi name dvidvi.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of dvidvi binfiles arch=i386-solaris size=5 bin/i386-solaris/dvidvi name dvidvi.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of dvidvi binfiles arch=universal-darwin size=38 bin/universal-darwin/dvidvi name dvidvi.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of dvidvi binfiles arch=windows size=6 bin/windows/dvidvi.exe name dvidvi.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dvidvi binfiles arch=x86_64-cygwin size=6 bin/x86_64-cygwin/dvidvi.exe name dvidvi.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dvidvi binfiles arch=x86_64-darwinlegacy size=6 bin/x86_64-darwinlegacy/dvidvi name dvidvi.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of dvidvi binfiles arch=x86_64-linux size=6 bin/x86_64-linux/dvidvi name dvidvi.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dvidvi -binfiles arch=x86_64-linuxmusl size=5 +binfiles arch=x86_64-linuxmusl size=6 bin/x86_64-linuxmusl/dvidvi name dvidvi.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of dvidvi -binfiles arch=x86_64-solaris size=6 +binfiles arch=x86_64-solaris size=7 bin/x86_64-solaris/dvidvi name dviincl @@ -96628,7 +98257,7 @@ catalogue-topics dvi-print name dviljk.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of dviljk binfiles arch=aarch64-linux size=131 bin/aarch64-linux/dvihp @@ -96640,7 +98269,7 @@ binfiles arch=aarch64-linux size=131 name dviljk.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of dviljk binfiles arch=amd64-freebsd size=153 bin/amd64-freebsd/dvihp @@ -96652,7 +98281,7 @@ binfiles arch=amd64-freebsd size=153 name dviljk.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of dviljk binfiles arch=amd64-netbsd size=155 bin/amd64-netbsd/dvihp @@ -96664,9 +98293,9 @@ binfiles arch=amd64-netbsd size=155 name dviljk.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of dviljk -binfiles arch=armhf-linux size=109 +binfiles arch=armhf-linux size=92 bin/armhf-linux/dvihp bin/armhf-linux/dvilj bin/armhf-linux/dvilj2p @@ -96676,7 +98305,7 @@ binfiles arch=armhf-linux size=109 name dviljk.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of dviljk binfiles arch=i386-freebsd size=153 bin/i386-freebsd/dvihp @@ -96688,9 +98317,9 @@ binfiles arch=i386-freebsd size=153 name dviljk.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of dviljk -binfiles arch=i386-linux size=147 +binfiles arch=i386-linux size=157 bin/i386-linux/dvihp bin/i386-linux/dvilj bin/i386-linux/dvilj2p @@ -96700,7 +98329,7 @@ binfiles arch=i386-linux size=147 name dviljk.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of dviljk binfiles arch=i386-netbsd size=141 bin/i386-netbsd/dvihp @@ -96712,9 +98341,9 @@ binfiles arch=i386-netbsd size=141 name dviljk.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of dviljk -binfiles arch=i386-solaris size=123 +binfiles arch=i386-solaris size=127 bin/i386-solaris/dvihp bin/i386-solaris/dvilj bin/i386-solaris/dvilj2p @@ -96724,7 +98353,7 @@ binfiles arch=i386-solaris size=123 name dviljk.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of dviljk binfiles arch=universal-darwin size=355 bin/universal-darwin/dvihp @@ -96736,7 +98365,7 @@ binfiles arch=universal-darwin size=355 name dviljk.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of dviljk binfiles arch=windows size=58 bin/windows/dvihp.exe @@ -96748,7 +98377,7 @@ binfiles arch=windows size=58 name dviljk.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dviljk binfiles arch=x86_64-cygwin size=57 bin/x86_64-cygwin/dvihp @@ -96760,7 +98389,7 @@ binfiles arch=x86_64-cygwin size=57 name dviljk.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dviljk binfiles arch=x86_64-darwinlegacy size=123 bin/x86_64-darwinlegacy/dvihp @@ -96772,9 +98401,9 @@ binfiles arch=x86_64-darwinlegacy size=123 name dviljk.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of dviljk -binfiles arch=x86_64-linux size=131 +binfiles arch=x86_64-linux size=133 bin/x86_64-linux/dvihp bin/x86_64-linux/dvilj bin/x86_64-linux/dvilj2p @@ -96784,9 +98413,9 @@ binfiles arch=x86_64-linux size=131 name dviljk.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dviljk -binfiles arch=x86_64-linuxmusl size=131 +binfiles arch=x86_64-linuxmusl size=135 bin/x86_64-linuxmusl/dvihp bin/x86_64-linuxmusl/dvilj bin/x86_64-linuxmusl/dvilj2p @@ -96796,7 +98425,7 @@ binfiles arch=x86_64-linuxmusl size=131 name dviljk.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of dviljk binfiles arch=x86_64-solaris size=147 bin/x86_64-solaris/dvihp @@ -96818,71 +98447,71 @@ docfiles size=14 name dviout-util.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of dviout-util -binfiles arch=aarch64-linux size=46 +binfiles arch=aarch64-linux size=47 bin/aarch64-linux/chkdvifont bin/aarch64-linux/dvispc name dviout-util.amd64-freebsd category Package -revision 70276 +revision 73792 shortdesc amd64-freebsd files of dviout-util -binfiles arch=amd64-freebsd size=51 +binfiles arch=amd64-freebsd size=53 bin/amd64-freebsd/chkdvifont bin/amd64-freebsd/dvispc name dviout-util.amd64-netbsd category Package -revision 71441 +revision 73802 shortdesc amd64-netbsd files of dviout-util -binfiles arch=amd64-netbsd size=49 +binfiles arch=amd64-netbsd size=51 bin/amd64-netbsd/chkdvifont bin/amd64-netbsd/dvispc name dviout-util.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of dviout-util -binfiles arch=armhf-linux size=36 +binfiles arch=armhf-linux size=34 bin/armhf-linux/chkdvifont bin/armhf-linux/dvispc name dviout-util.i386-freebsd category Package -revision 70276 +revision 73792 shortdesc i386-freebsd files of dviout-util -binfiles arch=i386-freebsd size=51 +binfiles arch=i386-freebsd size=53 bin/i386-freebsd/chkdvifont bin/i386-freebsd/dvispc name dviout-util.i386-linux category Package -revision 70276 +revision 73792 shortdesc i386-linux files of dviout-util -binfiles arch=i386-linux size=46 +binfiles arch=i386-linux size=55 bin/i386-linux/chkdvifont bin/i386-linux/dvispc name dviout-util.i386-netbsd category Package -revision 71441 +revision 73802 shortdesc i386-netbsd files of dviout-util -binfiles arch=i386-netbsd size=45 +binfiles arch=i386-netbsd size=48 bin/i386-netbsd/chkdvifont bin/i386-netbsd/dvispc name dviout-util.i386-solaris category Package -revision 70276 +revision 73792 shortdesc i386-solaris files of dviout-util -binfiles arch=i386-solaris size=42 +binfiles arch=i386-solaris size=45 bin/i386-solaris/chkdvifont bin/i386-solaris/dvispc name dviout-util.universal-darwin category Package -revision 70274 +revision 73806 shortdesc universal-darwin files of dviout-util binfiles arch=universal-darwin size=138 bin/universal-darwin/chkdvifont @@ -96890,15 +98519,15 @@ binfiles arch=universal-darwin size=138 name dviout-util.windows category Package -revision 70269 +revision 73796 shortdesc windows files of dviout-util -binfiles arch=windows size=22 +binfiles arch=windows size=23 bin/windows/chkdvifont.exe bin/windows/dvispc.exe name dviout-util.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dviout-util binfiles arch=x86_64-cygwin size=18 bin/x86_64-cygwin/chkdvifont.exe @@ -96906,33 +98535,33 @@ binfiles arch=x86_64-cygwin size=18 name dviout-util.x86_64-darwinlegacy category Package -revision 70380 +revision 73943 shortdesc x86_64-darwinlegacy files of dviout-util -binfiles arch=x86_64-darwinlegacy size=41 +binfiles arch=x86_64-darwinlegacy size=43 bin/x86_64-darwinlegacy/chkdvifont bin/x86_64-darwinlegacy/dvispc name dviout-util.x86_64-linux category Package -revision 70276 +revision 73777 shortdesc x86_64-linux files of dviout-util -binfiles arch=x86_64-linux size=45 +binfiles arch=x86_64-linux size=48 bin/x86_64-linux/chkdvifont bin/x86_64-linux/dvispc name dviout-util.x86_64-linuxmusl category Package -revision 70276 +revision 73792 shortdesc x86_64-linuxmusl files of dviout-util -binfiles arch=x86_64-linuxmusl size=44 +binfiles arch=x86_64-linuxmusl size=49 bin/x86_64-linuxmusl/chkdvifont bin/x86_64-linuxmusl/dvispc name dviout-util.x86_64-solaris category Package -revision 70276 +revision 73792 shortdesc x86_64-solaris files of dviout-util -binfiles arch=x86_64-solaris size=48 +binfiles arch=x86_64-solaris size=50 bin/x86_64-solaris/chkdvifont bin/x86_64-solaris/dvispc @@ -97174,7 +98803,7 @@ catalogue-version 3.19.0 name dvipdfmx category TLCore -revision 71746 +revision 74096 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 @@ -97189,10 +98818,11 @@ longdesc longer available as a separate package. For download, support, 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 extractbb depend glyphlist depend texlive-scripts-extra postaction script file=tlpkg/tlpostcode/dvipdfmx.pl -docfiles size=992 +docfiles size=987 texmf-dist/doc/dvipdfm/Makefile texmf-dist/doc/dvipdfm/dvipdfm.pdf texmf-dist/doc/dvipdfm/dvipdfm.tex @@ -97224,11 +98854,9 @@ docfiles size=992 texmf-dist/doc/man/man1/dvipdft.man1.pdf texmf-dist/doc/man/man1/ebb.1 texmf-dist/doc/man/man1/ebb.man1.pdf - texmf-dist/doc/man/man1/extractbb.1 - texmf-dist/doc/man/man1/extractbb.man1.pdf texmf-dist/doc/man/man1/xdvipdfmx.1 texmf-dist/doc/man/man1/xdvipdfmx.man1.pdf -runfiles size=43 +runfiles size=41 texmf-dist/dvipdfmx/dvipdfmx-unsafe.cfg texmf-dist/dvipdfmx/dvipdfmx.cfg texmf-dist/fonts/cmap/dvipdfmx/EUC-UCS2 @@ -97236,7 +98864,6 @@ runfiles size=43 texmf-dist/fonts/cmap/dvipdfmx/UTF8-UCS2 texmf-dist/fonts/map/dvipdfmx/cid-x.map texmf-dist/fonts/map/dvipdfmx/ckx.map - texmf-dist/scripts/texlive/extractbb.lua tlpkg/tlpostcode/dvipdfmx.pl catalogue-alias xdvipdfmx catalogue-contact-bugs https://lists.tug.org/dvipdfmx @@ -97248,187 +98875,171 @@ catalogue-topics dvi-pdf name dvipdfmx.aarch64-linux category TLCore -revision 71749 +revision 73916 shortdesc aarch64-linux files of dvipdfmx -binfiles arch=aarch64-linux size=278 +binfiles arch=aarch64-linux size=277 bin/aarch64-linux/dvipdfm bin/aarch64-linux/dvipdfmx bin/aarch64-linux/dvipdft bin/aarch64-linux/ebb - bin/aarch64-linux/extractbb bin/aarch64-linux/xdvipdfmx name dvipdfmx.amd64-freebsd category TLCore -revision 71749 +revision 73916 shortdesc amd64-freebsd files of dvipdfmx -binfiles arch=amd64-freebsd size=347 +binfiles arch=amd64-freebsd size=348 bin/amd64-freebsd/dvipdfm bin/amd64-freebsd/dvipdfmx bin/amd64-freebsd/dvipdft bin/amd64-freebsd/ebb - bin/amd64-freebsd/extractbb bin/amd64-freebsd/xdvipdfmx name dvipdfmx.amd64-netbsd category TLCore -revision 71749 +revision 73916 shortdesc amd64-netbsd files of dvipdfmx -binfiles arch=amd64-netbsd size=346 +binfiles arch=amd64-netbsd size=348 bin/amd64-netbsd/dvipdfm bin/amd64-netbsd/dvipdfmx bin/amd64-netbsd/dvipdft bin/amd64-netbsd/ebb - bin/amd64-netbsd/extractbb bin/amd64-netbsd/xdvipdfmx name dvipdfmx.armhf-linux category TLCore -revision 71749 +revision 73916 shortdesc armhf-linux files of dvipdfmx binfiles arch=armhf-linux size=183 bin/armhf-linux/dvipdfm bin/armhf-linux/dvipdfmx bin/armhf-linux/dvipdft bin/armhf-linux/ebb - bin/armhf-linux/extractbb bin/armhf-linux/xdvipdfmx name dvipdfmx.i386-freebsd category TLCore -revision 71749 +revision 73916 shortdesc i386-freebsd files of dvipdfmx -binfiles arch=i386-freebsd size=347 +binfiles arch=i386-freebsd size=348 bin/i386-freebsd/dvipdfm bin/i386-freebsd/dvipdfmx bin/i386-freebsd/dvipdft bin/i386-freebsd/ebb - bin/i386-freebsd/extractbb bin/i386-freebsd/xdvipdfmx name dvipdfmx.i386-linux category TLCore -revision 71749 +revision 73916 shortdesc i386-linux files of dvipdfmx -binfiles arch=i386-linux size=300 +binfiles arch=i386-linux size=320 bin/i386-linux/dvipdfm bin/i386-linux/dvipdfmx bin/i386-linux/dvipdft bin/i386-linux/ebb - bin/i386-linux/extractbb bin/i386-linux/xdvipdfmx name dvipdfmx.i386-netbsd category TLCore -revision 71749 +revision 73916 shortdesc i386-netbsd files of dvipdfmx -binfiles arch=i386-netbsd size=318 +binfiles arch=i386-netbsd size=322 bin/i386-netbsd/dvipdfm bin/i386-netbsd/dvipdfmx bin/i386-netbsd/dvipdft bin/i386-netbsd/ebb - bin/i386-netbsd/extractbb bin/i386-netbsd/xdvipdfmx name dvipdfmx.i386-solaris category TLCore -revision 71749 +revision 73916 shortdesc i386-solaris files of dvipdfmx -binfiles arch=i386-solaris size=254 +binfiles arch=i386-solaris size=256 bin/i386-solaris/dvipdfm bin/i386-solaris/dvipdfmx bin/i386-solaris/dvipdft bin/i386-solaris/ebb - bin/i386-solaris/extractbb bin/i386-solaris/xdvipdfmx name dvipdfmx.universal-darwin category TLCore -revision 71749 +revision 73916 shortdesc universal-darwin files of dvipdfmx -binfiles arch=universal-darwin size=535 +binfiles arch=universal-darwin size=534 bin/universal-darwin/dvipdfm bin/universal-darwin/dvipdfmx bin/universal-darwin/dvipdft bin/universal-darwin/ebb - bin/universal-darwin/extractbb bin/universal-darwin/xdvipdfmx name dvipdfmx.windows category TLCore -revision 71749 +revision 73949 shortdesc windows files of dvipdfmx -binfiles arch=windows size=300 +binfiles arch=windows size=298 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 71749 +revision 74094 shortdesc x86_64-cygwin files of dvipdfmx -binfiles arch=x86_64-cygwin size=249 +binfiles arch=x86_64-cygwin size=247 bin/x86_64-cygwin/dvipdfm bin/x86_64-cygwin/dvipdfmx bin/x86_64-cygwin/dvipdft bin/x86_64-cygwin/ebb - bin/x86_64-cygwin/extractbb bin/x86_64-cygwin/xdvipdfmx.exe name dvipdfmx.x86_64-darwinlegacy category TLCore -revision 71749 +revision 73943 shortdesc x86_64-darwinlegacy files of dvipdfmx -binfiles arch=x86_64-darwinlegacy size=246 +binfiles arch=x86_64-darwinlegacy size=248 bin/x86_64-darwinlegacy/dvipdfm bin/x86_64-darwinlegacy/dvipdfmx bin/x86_64-darwinlegacy/dvipdft bin/x86_64-darwinlegacy/ebb - bin/x86_64-darwinlegacy/extractbb bin/x86_64-darwinlegacy/xdvipdfmx name dvipdfmx.x86_64-linux category TLCore -revision 71749 +revision 73916 shortdesc x86_64-linux files of dvipdfmx -binfiles arch=x86_64-linux size=264 +binfiles arch=x86_64-linux size=271 bin/x86_64-linux/dvipdfm bin/x86_64-linux/dvipdfmx bin/x86_64-linux/dvipdft bin/x86_64-linux/ebb - bin/x86_64-linux/extractbb bin/x86_64-linux/xdvipdfmx name dvipdfmx.x86_64-linuxmusl category TLCore -revision 71749 +revision 73916 shortdesc x86_64-linuxmusl files of dvipdfmx -binfiles arch=x86_64-linuxmusl size=287 +binfiles arch=x86_64-linuxmusl size=289 bin/x86_64-linuxmusl/dvipdfm bin/x86_64-linuxmusl/dvipdfmx bin/x86_64-linuxmusl/dvipdft bin/x86_64-linuxmusl/ebb - bin/x86_64-linuxmusl/extractbb bin/x86_64-linuxmusl/xdvipdfmx name dvipdfmx.x86_64-solaris category TLCore -revision 71749 +revision 73916 shortdesc x86_64-solaris files of dvipdfmx -binfiles arch=x86_64-solaris size=289 +binfiles arch=x86_64-solaris size=292 bin/x86_64-solaris/dvipdfm bin/x86_64-solaris/dvipdfmx bin/x86_64-solaris/dvipdft bin/x86_64-solaris/ebb - bin/x86_64-solaris/extractbb bin/x86_64-solaris/xdvipdfmx name dvipng category TLCore -revision 70015 +revision 73848 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: @@ -97454,87 +99065,88 @@ docfiles size=121 texmf-dist/doc/man/man1/dvipng.1 texmf-dist/doc/man/man1/dvipng.man1.pdf catalogue-also dvi2bitmap +catalogue-contact-home https://www.nongnu.org/dvipng/ catalogue-contact-repository http://savannah.nongnu.org/projects/dvipng/ catalogue-ctan /dviware/dvipng catalogue-license lgpl3 catalogue-topics dvi-bit -catalogue-version 1.17 +catalogue-version 1.18 name dvipng.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of dvipng -binfiles arch=aarch64-linux size=273 +binfiles arch=aarch64-linux size=276 bin/aarch64-linux/dvigif bin/aarch64-linux/dvipng name dvipng.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of dvipng -binfiles arch=amd64-freebsd size=378 +binfiles arch=amd64-freebsd size=379 bin/amd64-freebsd/dvigif bin/amd64-freebsd/dvipng name dvipng.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of dvipng -binfiles arch=amd64-netbsd size=379 +binfiles arch=amd64-netbsd size=382 bin/amd64-netbsd/dvigif bin/amd64-netbsd/dvipng name dvipng.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of dvipng -binfiles arch=armhf-linux size=224 +binfiles arch=armhf-linux size=175 bin/armhf-linux/dvigif bin/armhf-linux/dvipng name dvipng.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of dvipng -binfiles arch=i386-freebsd size=378 +binfiles arch=i386-freebsd size=379 bin/i386-freebsd/dvigif bin/i386-freebsd/dvipng name dvipng.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of dvipng -binfiles arch=i386-linux size=295 +binfiles arch=i386-linux size=311 bin/i386-linux/dvigif bin/i386-linux/dvipng name dvipng.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of dvipng -binfiles arch=i386-netbsd size=329 +binfiles arch=i386-netbsd size=332 bin/i386-netbsd/dvigif bin/i386-netbsd/dvipng name dvipng.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of dvipng -binfiles arch=i386-solaris size=257 +binfiles arch=i386-solaris size=260 bin/i386-solaris/dvigif bin/i386-solaris/dvipng name dvipng.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of dvipng -binfiles arch=universal-darwin size=561 +binfiles arch=universal-darwin size=565 bin/universal-darwin/dvigif bin/universal-darwin/dvipng name dvipng.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of dvipng binfiles arch=windows size=267 bin/windows/dvigif.exe @@ -97542,31 +99154,31 @@ binfiles arch=windows size=267 name dvipng.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dvipng -binfiles arch=x86_64-cygwin size=250 +binfiles arch=x86_64-cygwin size=251 bin/x86_64-cygwin/dvigif bin/x86_64-cygwin/dvipng.exe name dvipng.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dvipng -binfiles arch=x86_64-darwinlegacy size=252 +binfiles arch=x86_64-darwinlegacy size=253 bin/x86_64-darwinlegacy/dvigif bin/x86_64-darwinlegacy/dvipng name dvipng.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of dvipng -binfiles arch=x86_64-linux size=275 +binfiles arch=x86_64-linux size=278 bin/x86_64-linux/dvigif bin/x86_64-linux/dvipng name dvipng.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dvipng binfiles arch=x86_64-linuxmusl size=291 bin/x86_64-linuxmusl/dvigif @@ -97574,9 +99186,9 @@ binfiles arch=x86_64-linuxmusl size=291 name dvipng.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of dvipng -binfiles arch=x86_64-solaris size=302 +binfiles arch=x86_64-solaris size=305 bin/x86_64-solaris/dvigif bin/x86_64-solaris/dvipng @@ -97591,112 +99203,112 @@ docfiles size=9 name dvipos.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of dvipos binfiles arch=aarch64-linux size=29 bin/aarch64-linux/dvipos name dvipos.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of dvipos binfiles arch=amd64-freebsd size=37 bin/amd64-freebsd/dvipos name dvipos.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of dvipos -binfiles arch=amd64-netbsd size=37 +binfiles arch=amd64-netbsd size=38 bin/amd64-netbsd/dvipos name dvipos.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of dvipos -binfiles arch=armhf-linux size=24 +binfiles arch=armhf-linux size=20 bin/armhf-linux/dvipos name dvipos.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of dvipos binfiles arch=i386-freebsd size=37 bin/i386-freebsd/dvipos name dvipos.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of dvipos -binfiles arch=i386-linux size=32 +binfiles arch=i386-linux size=35 bin/i386-linux/dvipos name dvipos.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of dvipos binfiles arch=i386-netbsd size=33 bin/i386-netbsd/dvipos name dvipos.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of dvipos binfiles arch=i386-solaris size=28 bin/i386-solaris/dvipos name dvipos.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of dvipos binfiles arch=universal-darwin size=79 bin/universal-darwin/dvipos name dvipos.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of dvipos binfiles arch=windows size=11 bin/windows/dvipos.exe name dvipos.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dvipos binfiles arch=x86_64-cygwin size=12 bin/x86_64-cygwin/dvipos.exe name dvipos.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dvipos binfiles arch=x86_64-darwinlegacy size=29 bin/x86_64-darwinlegacy/dvipos name dvipos.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of dvipos binfiles arch=x86_64-linux size=29 bin/x86_64-linux/dvipos name dvipos.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dvipos -binfiles arch=x86_64-linuxmusl size=30 +binfiles arch=x86_64-linuxmusl size=31 bin/x86_64-linuxmusl/dvipos name dvipos.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of dvipos binfiles arch=x86_64-solaris size=33 bin/x86_64-solaris/dvipos name dvips category TLCore -revision 70015 +revision 73850 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 @@ -97801,15 +99413,15 @@ catalogue-topics dvi-print name dvips.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of dvips -binfiles arch=aarch64-linux size=107 +binfiles arch=aarch64-linux size=109 bin/aarch64-linux/afm2tfm bin/aarch64-linux/dvips name dvips.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of dvips binfiles arch=amd64-freebsd size=116 bin/amd64-freebsd/afm2tfm @@ -97817,7 +99429,7 @@ binfiles arch=amd64-freebsd size=116 name dvips.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of dvips binfiles arch=amd64-netbsd size=114 bin/amd64-netbsd/afm2tfm @@ -97825,15 +99437,15 @@ binfiles arch=amd64-netbsd size=114 name dvips.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of dvips -binfiles arch=armhf-linux size=83 +binfiles arch=armhf-linux size=71 bin/armhf-linux/afm2tfm bin/armhf-linux/dvips name dvips.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of dvips binfiles arch=i386-freebsd size=116 bin/i386-freebsd/afm2tfm @@ -97841,15 +99453,15 @@ binfiles arch=i386-freebsd size=116 name dvips.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of dvips -binfiles arch=i386-linux size=105 +binfiles arch=i386-linux size=114 bin/i386-linux/afm2tfm bin/i386-linux/dvips name dvips.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of dvips binfiles arch=i386-netbsd size=105 bin/i386-netbsd/afm2tfm @@ -97857,15 +99469,15 @@ binfiles arch=i386-netbsd size=105 name dvips.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of dvips -binfiles arch=i386-solaris size=93 +binfiles arch=i386-solaris size=94 bin/i386-solaris/afm2tfm bin/i386-solaris/dvips name dvips.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of dvips binfiles arch=universal-darwin size=248 bin/universal-darwin/afm2tfm @@ -97873,7 +99485,7 @@ binfiles arch=universal-darwin size=248 name dvips.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of dvips binfiles arch=windows size=61 bin/windows/afm2tfm.exe @@ -97881,15 +99493,15 @@ binfiles arch=windows size=61 name dvips.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dvips -binfiles arch=x86_64-cygwin size=65 +binfiles arch=x86_64-cygwin size=66 bin/x86_64-cygwin/afm2tfm.exe bin/x86_64-cygwin/dvips.exe name dvips.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of dvips binfiles arch=x86_64-darwinlegacy size=92 bin/x86_64-darwinlegacy/afm2tfm @@ -97897,25 +99509,25 @@ binfiles arch=x86_64-darwinlegacy size=92 name dvips.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of dvips -binfiles arch=x86_64-linux size=98 +binfiles arch=x86_64-linux size=101 bin/x86_64-linux/afm2tfm bin/x86_64-linux/dvips name dvips.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dvips -binfiles arch=x86_64-linuxmusl size=102 +binfiles arch=x86_64-linuxmusl size=104 bin/x86_64-linuxmusl/afm2tfm bin/x86_64-linuxmusl/dvips name dvips.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of dvips -binfiles arch=x86_64-solaris size=107 +binfiles arch=x86_64-solaris size=109 bin/x86_64-solaris/afm2tfm bin/x86_64-solaris/dvips @@ -97972,7 +99584,7 @@ catalogue-version 1.6 name dvisvgm category TLCore -revision 70501 +revision 73848 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 @@ -97988,7 +99600,7 @@ longdesc specials. Users will need a working TeX installation including longdesc the kpathsea library. For more detailed information, see the longdesc project page. depend dvisvgm.ARCH -docfiles size=45 +docfiles size=47 texmf-dist/doc/man/man1/dvisvgm.1 texmf-dist/doc/man/man1/dvisvgm.man1.pdf catalogue-contact-announce https://dvisvgm.de/News @@ -98002,107 +99614,107 @@ catalogue-version 3.2.2 name dvisvgm.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of dvisvgm -binfiles arch=aarch64-linux size=1155 +binfiles arch=aarch64-linux size=1567 bin/aarch64-linux/dvisvgm name dvisvgm.amd64-freebsd category TLCore -revision 70489 +revision 73792 shortdesc amd64-freebsd files of dvisvgm -binfiles arch=amd64-freebsd size=2468 +binfiles arch=amd64-freebsd size=2440 bin/amd64-freebsd/dvisvgm name dvisvgm.amd64-netbsd category TLCore -revision 70499 +revision 73802 shortdesc amd64-netbsd files of dvisvgm -binfiles arch=amd64-netbsd size=2412 +binfiles arch=amd64-netbsd size=2444 bin/amd64-netbsd/dvisvgm name dvisvgm.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of dvisvgm -binfiles arch=armhf-linux size=990 +binfiles arch=armhf-linux size=1064 bin/armhf-linux/dvisvgm name dvisvgm.i386-freebsd category TLCore -revision 70489 +revision 73792 shortdesc i386-freebsd files of dvisvgm -binfiles arch=i386-freebsd size=2468 +binfiles arch=i386-freebsd size=2440 bin/i386-freebsd/dvisvgm name dvisvgm.i386-linux category TLCore -revision 70489 +revision 73792 shortdesc i386-linux files of dvisvgm -binfiles arch=i386-linux size=1201 +binfiles arch=i386-linux size=1633 bin/i386-linux/dvisvgm name dvisvgm.i386-netbsd category TLCore -revision 70499 +revision 73802 shortdesc i386-netbsd files of dvisvgm -binfiles arch=i386-netbsd size=2292 +binfiles arch=i386-netbsd size=2324 bin/i386-netbsd/dvisvgm name dvisvgm.i386-solaris category TLCore -revision 70489 +revision 73792 shortdesc i386-solaris files of dvisvgm -binfiles arch=i386-solaris size=1056 +binfiles arch=i386-solaris size=1068 bin/i386-solaris/dvisvgm name dvisvgm.universal-darwin category TLCore -revision 70520 +revision 73806 shortdesc universal-darwin files of dvisvgm -binfiles arch=universal-darwin size=1869 +binfiles arch=universal-darwin size=4034 bin/universal-darwin/dvisvgm name dvisvgm.windows category TLCore -revision 70490 +revision 73796 shortdesc windows files of dvisvgm -binfiles arch=windows size=1604 +binfiles arch=windows size=1609 bin/windows/dvisvgm.exe name dvisvgm.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of dvisvgm -binfiles arch=x86_64-cygwin size=1114 +binfiles arch=x86_64-cygwin size=1121 bin/x86_64-cygwin/dvisvgm.exe name dvisvgm.x86_64-darwinlegacy category TLCore -revision 70577 +revision 73943 shortdesc x86_64-darwinlegacy files of dvisvgm -binfiles arch=x86_64-darwinlegacy size=888 +binfiles arch=x86_64-darwinlegacy size=885 bin/x86_64-darwinlegacy/dvisvgm name dvisvgm.x86_64-linux category TLCore -revision 70489 +revision 73777 shortdesc x86_64-linux files of dvisvgm -binfiles arch=x86_64-linux size=1190 +binfiles arch=x86_64-linux size=1581 bin/x86_64-linux/dvisvgm name dvisvgm.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of dvisvgm -binfiles arch=x86_64-linuxmusl size=1166 +binfiles arch=x86_64-linuxmusl size=1564 bin/x86_64-linuxmusl/dvisvgm name dvisvgm.x86_64-solaris category TLCore -revision 70489 +revision 73792 shortdesc x86_64-solaris files of dvisvgm -binfiles arch=x86_64-solaris size=1135 +binfiles arch=x86_64-solaris size=1125 bin/x86_64-solaris/dvisvgm name dynamicnumber @@ -98170,7 +99782,7 @@ catalogue-version 0.2b name dynkin-diagrams category Package -revision 71723 +revision 73036 shortdesc Draw Dynkin, Coxeter, and Satake diagrams using TikZ longdesc Draws Dynkin, Coxeter, and Satake diagrams in LaTeX documents, longdesc using the TikZ package. The package requires amsmath, amssymb, @@ -98186,7 +99798,7 @@ runfiles size=39 catalogue-ctan /graphics/pgf/contrib/dynkin-diagrams catalogue-license lppl1.3c catalogue-topics graphics diagram pgf-tikz expl3 -catalogue-version 3.1415926535897932384 +catalogue-version 3.141592653589793238462 name dyntree category Package @@ -98369,7 +99981,7 @@ catalogue-topics barcode std-conform name easing category Package revision 59975 -shortdesc easing functions for pgfmath +shortdesc Easing functions for pgfmath longdesc This library implements a collection of easing functions and longdesc adds them to the PGF mathematical engine. docfiles size=78 @@ -98438,7 +100050,7 @@ catalogue-topics notes editorial name easybook category Package -revision 71765 +revision 74036 shortdesc Easily typesetting Chinese theses or books longdesc easybook is a pure academic template created based on the longdesc ctexbook book document class. It also has the functions of book @@ -98448,14 +100060,14 @@ 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. -docfiles size=180 +docfiles size=192 texmf-dist/doc/latex/easybook/README.md details="Readme" texmf-dist/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh" texmf-dist/doc/latex/easybook/easybook.tex -srcfiles size=23 +srcfiles size=25 texmf-dist/source/latex/easybook/easybook.dtx texmf-dist/source/latex/easybook/easybook.ins -runfiles size=23 +runfiles size=26 texmf-dist/tex/latex/easybook/easybase.sty texmf-dist/tex/latex/easybook/easybook.cls texmf-dist/tex/latex/easybook/eb-tcolorbox.cfg @@ -98464,11 +100076,11 @@ catalogue-contact-repository https://gitee.com/texno3/easybook catalogue-ctan /macros/latex/contrib/easybook catalogue-license lppl1.3c catalogue-topics book-pub dissertation class doc-templ chinese expl3 -catalogue-version 2024cn +catalogue-version 2025q name easydtx category Package -revision 68514 +revision 72952 shortdesc A simplified DTX format longdesc EasyDTX is a variant of the DTX format which eliminates the longdesc need for all those pesky "macrocode" environments. Any line @@ -98479,20 +100091,22 @@ longdesc also a rudimentary Emacs mode, implemented in longdesc easydoctex-mode.el, which takes care of fontification, longdesc indentation, and forward and inverse search. depend easydtx.ARCH -docfiles size=18 +docfiles size=23 texmf-dist/doc/man/man1/edtx2dtx.1 texmf-dist/doc/man/man1/edtx2dtx.man1.pdf + texmf-dist/doc/support/easydtx/CHANGELOG.md texmf-dist/doc/support/easydtx/FILES texmf-dist/doc/support/easydtx/LICENCE texmf-dist/doc/support/easydtx/README.md details="Readme" texmf-dist/doc/support/easydtx/easydoctex-mode.el -runfiles size=1 + texmf-dist/doc/support/easydtx/edtx2dtx.1.md +runfiles size=2 texmf-dist/scripts/easydtx/edtx2dtx.pl catalogue-contact-repository https://github.com/sasozivanovic/easydtx catalogue-ctan /support/easydtx catalogue-license gpl3+ catalogue-topics doc-supp -catalogue-version 0.1.0 +catalogue-version 0.2.0 name easydtx.aarch64-linux category Package @@ -98632,58 +100246,64 @@ catalogue-version 1.2a name easyfloats category Package -revision 57204 +revision 72699 shortdesc An easier interface to insert figures, tables and other objects in LaTeX longdesc In standard LaTeX inserting objects like figures or tables longdesc requires too much knowledge for beginners and too much typing longdesc effort and hardcoding for people like me. This package aims to longdesc make insertion of figures and tables easier for both beginners -longdesc and experts. Despite the term floats in it's name it also +longdesc and experts. Despite the term "floats" in its name, it also longdesc allows to disable floating of such objects. depend caption depend environ depend etoolbox depend float depend pgf -docfiles size=196 +docfiles size=285 texmf-dist/doc/latex/easyfloats/DEPENDS.txt texmf-dist/doc/latex/easyfloats/README.md - texmf-dist/doc/latex/easyfloats/content/bug-reports-and-contributions.tex - texmf-dist/doc/latex/easyfloats/content/documentation.tex - texmf-dist/doc/latex/easyfloats/content/examples.tex - texmf-dist/doc/latex/easyfloats/content/installation.tex - texmf-dist/doc/latex/easyfloats/content/license.tex - texmf-dist/doc/latex/easyfloats/content/motivation.tex - texmf-dist/doc/latex/easyfloats/content/names.tex - texmf-dist/doc/latex/easyfloats/content/other-packages.tex - texmf-dist/doc/latex/easyfloats/content/titlepage.tex - texmf-dist/doc/latex/easyfloats/content/used-packages.tex + texmf-dist/doc/latex/easyfloats/content/f1_titlepage.tex + texmf-dist/doc/latex/easyfloats/content/s1_examples.tex + texmf-dist/doc/latex/easyfloats/content/s2_names.tex + texmf-dist/doc/latex/easyfloats/content/s3_documentation.tex + texmf-dist/doc/latex/easyfloats/content/s4_installation.tex + texmf-dist/doc/latex/easyfloats/content/s5_bug-reports-and-contributions.tex + texmf-dist/doc/latex/easyfloats/content/s6_changelog.tex + texmf-dist/doc/latex/easyfloats/content/s7_license.tex + texmf-dist/doc/latex/easyfloats/content/x1_motivation.tex + texmf-dist/doc/latex/easyfloats/content/x2_used-packages.tex + texmf-dist/doc/latex/easyfloats/content/x3_other-packages.tex texmf-dist/doc/latex/easyfloats/easyfloats-file-list.txt texmf-dist/doc/latex/easyfloats/easyfloats.bib texmf-dist/doc/latex/easyfloats/easyfloats.pdf details="Package documentation" texmf-dist/doc/latex/easyfloats/easyfloats.tex texmf-dist/doc/latex/easyfloats/lexer/latex_atletter.py + texmf-dist/doc/latex/easyfloats/license.txt texmf-dist/doc/latex/easyfloats/links.tex texmf-dist/doc/latex/easyfloats/preamble/bibliography.tex + texmf-dist/doc/latex/easyfloats/preamble/changelog.tex texmf-dist/doc/latex/easyfloats/preamble/description-links.tex texmf-dist/doc/latex/easyfloats/preamble/examplecode.tex + texmf-dist/doc/latex/easyfloats/preamble/geometry.tex texmf-dist/doc/latex/easyfloats/preamble/keydoc.tex texmf-dist/doc/latex/easyfloats/preamble/link.tex texmf-dist/doc/latex/easyfloats/preamble/macros.tex texmf-dist/doc/latex/easyfloats/preamble/markdown.tex texmf-dist/doc/latex/easyfloats/preamble/pdfstring.tex + texmf-dist/doc/latex/easyfloats/preamble/todo.tex texmf-dist/doc/latex/easyfloats/undescribed-keywords.tex -srcfiles size=16 +srcfiles size=17 texmf-dist/source/latex/easyfloats/easyfloats.dtx texmf-dist/source/latex/easyfloats/easyfloats.ins -runfiles size=11 +runfiles size=12 texmf-dist/tex/latex/easyfloats/easyfloats.sty + texmf-dist/tex/latex/easyfloats/my_biblatex_data_model.dbx catalogue-contact-bugs https://gitlab.com/erzo/latex-easyfloats/-/issues catalogue-contact-repository https://gitlab.com/erzo/latex-easyfloats catalogue-ctan /macros/latex/contrib/easyfloats catalogue-license lppl1.3 catalogue-topics float table -catalogue-version 1.0.0 +catalogue-version 1.1.0 name easyformat category Package @@ -102626,22 +104246,22 @@ catalogue-version 2.01y name edmac category Package -revision 61719 +revision 72250 shortdesc Typeset critical editions longdesc This is the type example package for typesetting scholarly longdesc critical editions. -docfiles size=89 - texmf-dist/doc/latex/edmac/COPYRIGHT - texmf-dist/doc/latex/edmac/braonain.tex - texmf-dist/doc/latex/edmac/copying - texmf-dist/doc/latex/edmac/ed-nfss.txt - texmf-dist/doc/latex/edmac/edmac.doc - texmf-dist/doc/latex/edmac/edstanza.doc - texmf-dist/doc/latex/edmac/edszadoc.tex - texmf-dist/doc/latex/edmac/features.tex - texmf-dist/doc/latex/edmac/readme -srcfiles size=1 - texmf-dist/source/latex/edmac/edmac.drv +docfiles size=91 + texmf-dist/doc/generic/edmac/COPYRIGHT + texmf-dist/doc/generic/edmac/README.md details="Readme" + texmf-dist/doc/generic/edmac/braonain.tex + texmf-dist/doc/generic/edmac/copying + texmf-dist/doc/generic/edmac/ed-nfss.txt + texmf-dist/doc/generic/edmac/edmac.doc + texmf-dist/doc/generic/edmac/edmac.drv + texmf-dist/doc/generic/edmac/edstanza.doc + texmf-dist/doc/generic/edmac/edszadoc.tex + texmf-dist/doc/generic/edmac/features.tex + texmf-dist/doc/generic/edmac/readme runfiles size=17 texmf-dist/tex/generic/edmac/edmac.tex texmf-dist/tex/generic/edmac/edmacfss.sty @@ -102649,6 +104269,7 @@ runfiles size=17 texmf-dist/tex/generic/edmac/tabmac.tex catalogue-also ledmac ednotes manyfoot lineno poemscol catalogue-contact-home https://tug.org/edmac +catalogue-contact-repository https://github.com/wujastyk/edmac catalogue-ctan /macros/plain/contrib/edmac catalogue-license gpl2 catalogue-topics crit-ed @@ -102680,6 +104301,42 @@ catalogue-license lppl catalogue-topics crit-ed notes catalogue-version 1.2 +name edmaths +category Package +revision 72143 +shortdesc A report and thesis class file for the University of Edinburgh (UoE) +longdesc A report and thesis class file for The School of Mathematics, +longdesc Scotland at the University of Edinburgh (UoE). When working on +longdesc a report or thesis, an easy way to implement the University's +longdesc typesetting rules in LaTeX is provided by edmaths.sty. It sets +longdesc the page margins as required and defines commands to create the +longdesc correct cover page and standard declaration. A compiled version +longdesc of the included example can be found here. It also loads the +longdesc amsmath, amsthm, amscd, and amssymb packages, which are +longdesc required by almost all mathematical publications. Through +longdesc setspace line spacing settings are available that only affect +longdesc the body text and not footnotes and captions. Additional +longdesc in-built options can be found in more detail in the project's +longdesc documentation. +docfiles size=48 + texmf-dist/doc/latex/edmaths/LICENSE.txt + texmf-dist/doc/latex/edmaths/README.md details="Readme" + texmf-dist/doc/latex/edmaths/docs/edmaths-docs.pdf details="Package documentation" + texmf-dist/doc/latex/edmaths/docs/edmaths-docs.tex + texmf-dist/doc/latex/edmaths/example-references.bib + texmf-dist/doc/latex/edmaths/example-report.tex +runfiles size=3 + texmf-dist/tex/latex/edmaths/edmaths.sty +catalogue-contact-announce https://github.com/Foggalong/edinburgh-math-latex/releases +catalogue-contact-bugs https://github.com/Foggalong/edinburgh-math-latex/issues +catalogue-contact-development https://github.com/Foggalong/edinburgh-math-latex/blob/main/.github/CONTRIBUTING.md +catalogue-contact-home https://github.com/Foggalong/edinburgh-math-latex +catalogue-contact-repository https://github.com/Foggalong/edinburgh-math-latex +catalogue-ctan /macros/latex/contrib/edmaths +catalogue-license lppl1.3c +catalogue-topics maths dissertation doc-templ +catalogue-version 0.99 + name eemeir category Package revision 15878 @@ -103182,10 +104839,9 @@ catalogue-license lppl catalogue-topics journalpub class catalogue-version 1.2 -name electrum +name electrumadf category Package -revision 19705 -catalogue electrumadf +revision 72484 shortdesc Electrum ADF fonts collection longdesc Electrum ADF is a slab-serif font featuring optical and italic longdesc small-caps; additional ligatures and an alternate Q; lining, @@ -103194,320 +104850,317 @@ longdesc fonts are provided in Adobe Type 1 format and the support longdesc material enables use with LaTeX. Licence is mixed: LPPL for longdesc LaTeX support; GPL with font exception for the fonts. execute addMap yes.map -docfiles size=89 - texmf-dist/doc/fonts/electrum/COPYING - texmf-dist/doc/fonts/electrum/NOTICE.txt - texmf-dist/doc/fonts/electrum/README details="Readme" - texmf-dist/doc/fonts/electrum/electrumadf.pdf details="Documentation: installation and use" - texmf-dist/doc/fonts/electrum/electrumadf.tex - texmf-dist/doc/fonts/electrum/manifest.txt -srcfiles size=98 - texmf-dist/source/fonts/electrum/build-ttsc.mtx - texmf-dist/source/fonts/electrum/dotsc2.etx - texmf-dist/source/fonts/electrum/dotscbuild.mtx - texmf-dist/source/fonts/electrum/dotscmisc.mtx - texmf-dist/source/fonts/electrum/newlatin-dotsc.mtx - texmf-dist/source/fonts/electrum/reglyph-yes.tex - texmf-dist/source/fonts/electrum/supp-yes.etx - texmf-dist/source/fonts/electrum/t1-dotinferior.etx - texmf-dist/source/fonts/electrum/t1-dotsuperior.etx - texmf-dist/source/fonts/electrum/t1-yes.etx - texmf-dist/source/fonts/electrum/t1-yesw-sc.etx - texmf-dist/source/fonts/electrum/t1-yesw.etx - texmf-dist/source/fonts/electrum/t1j-yes.etx - texmf-dist/source/fonts/electrum/t1j-yesw-sc.etx - texmf-dist/source/fonts/electrum/t1j-yesw.etx - texmf-dist/source/fonts/electrum/ts1-dotinferior.etx - texmf-dist/source/fonts/electrum/ts1-dotoldstyle-yes.etx - texmf-dist/source/fonts/electrum/ts1-dotsuperior.etx - texmf-dist/source/fonts/electrum/ts1-yes.etx - texmf-dist/source/fonts/electrum/yes-drv.tex - texmf-dist/source/fonts/electrum/yes-map.tex +docfiles size=419 + texmf-dist/doc/fonts/electrumadf/COPYING + texmf-dist/doc/fonts/electrumadf/NOTICE.txt + texmf-dist/doc/fonts/electrumadf/README.md details="Readme" + texmf-dist/doc/fonts/electrumadf/electrumadf-tables.pdf + texmf-dist/doc/fonts/electrumadf/electrumadf-tables.tex + texmf-dist/doc/fonts/electrumadf/electrumadf.pdf details="Documentation: installation and use" + texmf-dist/doc/fonts/electrumadf/manifest.txt + texmf-dist/doc/fonts/electrumadf/reglyph-yes.tex + texmf-dist/doc/fonts/electrumadf/yes-drv.tex + texmf-dist/doc/fonts/electrumadf/yes-map.tex +srcfiles size=126 + texmf-dist/source/fonts/electrumadf/build-ttsc.mtx + texmf-dist/source/fonts/electrumadf/electrumadf.dtx + texmf-dist/source/fonts/electrumadf/electrumadf.ins + texmf-dist/source/fonts/electrumadf/supp-yes.etx + texmf-dist/source/fonts/electrumadf/t1-yes.etx + texmf-dist/source/fonts/electrumadf/t1-yesw-sc.etx + texmf-dist/source/fonts/electrumadf/t1-yesw.etx + texmf-dist/source/fonts/electrumadf/t1j-yes.etx + texmf-dist/source/fonts/electrumadf/t1j-yesw-sc.etx + texmf-dist/source/fonts/electrumadf/t1j-yesw.etx + texmf-dist/source/fonts/electrumadf/ts1-dotoldstyle-yes.etx + texmf-dist/source/fonts/electrumadf/ts1-yes.etx + texmf-dist/source/fonts/electrumadf/yes-ts1-buildper.mtx runfiles size=846 - texmf-dist/fonts/afm/arkandis/electrum/yesb8a.afm - texmf-dist/fonts/afm/arkandis/electrum/yesbo8a.afm - texmf-dist/fonts/afm/arkandis/electrum/yesl8a.afm - texmf-dist/fonts/afm/arkandis/electrum/yeslo8a.afm - texmf-dist/fonts/afm/arkandis/electrum/yesr8a.afm - texmf-dist/fonts/afm/arkandis/electrum/yesro8a.afm - texmf-dist/fonts/afm/arkandis/electrum/yess8a.afm - texmf-dist/fonts/afm/arkandis/electrum/yesso8a.afm - texmf-dist/fonts/enc/dvips/electrum/supp-yes.enc - texmf-dist/fonts/map/dvips/electrum/yes.map - texmf-dist/fonts/tfm/arkandis/electrum/yesb08c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb08t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb0o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb0o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb18c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb18t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb1o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb1o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesb8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbc8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbcj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbcjo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbcjow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbcjw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbco8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbcow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbcw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbj8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbjo8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbjo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbjow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbjw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbo8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbo8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbo8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesbw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl08c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl08t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl0o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl0o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl18c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl18t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl1o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl1o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesl8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslc8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslcj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslcjo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslcjow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslcjw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslco8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslcow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslcw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslj8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesljo8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesljo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesljow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesljw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslo8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslo8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslo8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yeslw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr08c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr08t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr0o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr0o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr18c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr18t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr1o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr1o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesr8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrc8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrcj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrcjo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrcjow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrcjw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrco8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrcow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrcw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrj8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrjo8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrjo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrjow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrjw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesro8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesro8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesro8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesro8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesrw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess08c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess08t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess0o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess0o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess18c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess18t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess1o8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess1o8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yess8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessc8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesscj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesscjo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesscjow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesscjw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessco8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesscow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesscw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessj8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessj8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessjo8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessjo8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessjow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessjw8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesso8c.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesso8r.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesso8s.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yesso8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessow8t.tfm - texmf-dist/fonts/tfm/arkandis/electrum/yessw8t.tfm - texmf-dist/fonts/type1/arkandis/electrum/yesb8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yesb8a.pfm - texmf-dist/fonts/type1/arkandis/electrum/yesbo8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yesbo8a.pfm - texmf-dist/fonts/type1/arkandis/electrum/yesl8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yesl8a.pfm - texmf-dist/fonts/type1/arkandis/electrum/yeslo8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yeslo8a.pfm - texmf-dist/fonts/type1/arkandis/electrum/yesr8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yesr8a.pfm - texmf-dist/fonts/type1/arkandis/electrum/yesro8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yesro8a.pfm - texmf-dist/fonts/type1/arkandis/electrum/yess8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yess8a.pfm - texmf-dist/fonts/type1/arkandis/electrum/yesso8a.pfb - texmf-dist/fonts/type1/arkandis/electrum/yesso8a.pfm - texmf-dist/fonts/vf/arkandis/electrum/yesb08c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb08t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb0o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb0o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb18c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb18t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb1o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb1o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesb8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbc8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbcj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbcjo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbcjow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbcjw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbco8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbcow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbcw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbj8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbjo8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbjo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbjow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbjw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbo8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesbw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl08c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl08t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl0o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl0o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl18c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl18t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl1o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl1o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesl8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslc8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslcj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslcjo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslcjow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslcjw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslco8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslcow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslcw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslj8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesljo8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesljo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesljow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesljw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslo8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yeslw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr08c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr08t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr0o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr0o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr18c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr18t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr1o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr1o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesr8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrc8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrcj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrcjo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrcjow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrcjw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrco8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrcow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrcw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrj8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrjo8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrjo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrjow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrjw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesro8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesro8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesrw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yess08c.vf - texmf-dist/fonts/vf/arkandis/electrum/yess08t.vf - texmf-dist/fonts/vf/arkandis/electrum/yess0o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yess0o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yess18c.vf - texmf-dist/fonts/vf/arkandis/electrum/yess18t.vf - texmf-dist/fonts/vf/arkandis/electrum/yess1o8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yess1o8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yess8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yess8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessc8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesscj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesscjo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesscjow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesscjw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessco8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesscow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesscw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessj8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yessj8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessjo8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yessjo8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessjow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessjw8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yesso8c.vf - texmf-dist/fonts/vf/arkandis/electrum/yesso8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessow8t.vf - texmf-dist/fonts/vf/arkandis/electrum/yessw8t.vf - texmf-dist/tex/latex/electrum/electrum.sty - texmf-dist/tex/latex/electrum/t1yes.fd - texmf-dist/tex/latex/electrum/t1yes0.fd - texmf-dist/tex/latex/electrum/t1yes1.fd - texmf-dist/tex/latex/electrum/t1yesj.fd - texmf-dist/tex/latex/electrum/t1yesjw.fd - texmf-dist/tex/latex/electrum/t1yesw.fd - texmf-dist/tex/latex/electrum/ts1yes.fd - texmf-dist/tex/latex/electrum/ts1yes0.fd - texmf-dist/tex/latex/electrum/ts1yes1.fd - texmf-dist/tex/latex/electrum/ts1yesj.fd - texmf-dist/tex/latex/electrum/ts1yesjw.fd - texmf-dist/tex/latex/electrum/ts1yesw.fd + texmf-dist/fonts/afm/public/electrumadf/yesb8a.afm + texmf-dist/fonts/afm/public/electrumadf/yesbo8a.afm + texmf-dist/fonts/afm/public/electrumadf/yesl8a.afm + texmf-dist/fonts/afm/public/electrumadf/yeslo8a.afm + texmf-dist/fonts/afm/public/electrumadf/yesr8a.afm + texmf-dist/fonts/afm/public/electrumadf/yesro8a.afm + texmf-dist/fonts/afm/public/electrumadf/yess8a.afm + texmf-dist/fonts/afm/public/electrumadf/yesso8a.afm + texmf-dist/fonts/enc/dvips/electrumadf/supp-yes.enc + texmf-dist/fonts/map/dvips/electrumadf/yes.map + texmf-dist/fonts/tfm/public/electrumadf/yesb08c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb08t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb0o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb0o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb18c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb18t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb1o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb1o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesb8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbc8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbcj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbcjo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbcjow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbcjw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbco8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbcow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbcw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbj8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbjo8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbjo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbjow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbjw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbo8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbo8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbo8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesbw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl08c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl08t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl0o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl0o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl18c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl18t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl1o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl1o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesl8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslc8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslcj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslcjo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslcjow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslcjw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslco8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslcow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslcw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslj8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesljo8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesljo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesljow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesljw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslo8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslo8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslo8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yeslw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr08c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr08t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr0o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr0o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr18c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr18t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr1o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr1o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesr8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrc8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrcj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrcjo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrcjow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrcjw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrco8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrcow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrcw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrj8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrjo8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrjo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrjow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrjw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesro8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesro8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesro8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesro8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesrw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess08c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess08t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess0o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess0o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess18c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess18t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess1o8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess1o8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yess8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessc8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesscj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesscjo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesscjow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesscjw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessco8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesscow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesscw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessj8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessj8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessjo8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessjo8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessjow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessjw8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesso8c.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesso8r.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesso8s.tfm + texmf-dist/fonts/tfm/public/electrumadf/yesso8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessow8t.tfm + texmf-dist/fonts/tfm/public/electrumadf/yessw8t.tfm + texmf-dist/fonts/type1/public/electrumadf/yesb8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yesb8a.pfm + texmf-dist/fonts/type1/public/electrumadf/yesbo8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yesbo8a.pfm + texmf-dist/fonts/type1/public/electrumadf/yesl8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yesl8a.pfm + texmf-dist/fonts/type1/public/electrumadf/yeslo8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yeslo8a.pfm + texmf-dist/fonts/type1/public/electrumadf/yesr8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yesr8a.pfm + texmf-dist/fonts/type1/public/electrumadf/yesro8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yesro8a.pfm + texmf-dist/fonts/type1/public/electrumadf/yess8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yess8a.pfm + texmf-dist/fonts/type1/public/electrumadf/yesso8a.pfb + texmf-dist/fonts/type1/public/electrumadf/yesso8a.pfm + texmf-dist/fonts/vf/public/electrumadf/yesb08c.vf + texmf-dist/fonts/vf/public/electrumadf/yesb08t.vf + texmf-dist/fonts/vf/public/electrumadf/yesb0o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesb0o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesb18c.vf + texmf-dist/fonts/vf/public/electrumadf/yesb18t.vf + texmf-dist/fonts/vf/public/electrumadf/yesb1o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesb1o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesb8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesb8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbc8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbcj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbcjo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbcjow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbcjw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbco8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbcow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbcw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbj8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesbj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbjo8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesbjo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbjow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbjw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbo8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesbo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesbw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesl08c.vf + texmf-dist/fonts/vf/public/electrumadf/yesl08t.vf + texmf-dist/fonts/vf/public/electrumadf/yesl0o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesl0o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesl18c.vf + texmf-dist/fonts/vf/public/electrumadf/yesl18t.vf + texmf-dist/fonts/vf/public/electrumadf/yesl1o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesl1o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesl8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesl8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslc8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslcj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslcjo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslcjow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslcjw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslco8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslcow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslcw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslj8c.vf + texmf-dist/fonts/vf/public/electrumadf/yeslj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesljo8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesljo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesljow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesljw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslo8c.vf + texmf-dist/fonts/vf/public/electrumadf/yeslo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yeslw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesr08c.vf + texmf-dist/fonts/vf/public/electrumadf/yesr08t.vf + texmf-dist/fonts/vf/public/electrumadf/yesr0o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesr0o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesr18c.vf + texmf-dist/fonts/vf/public/electrumadf/yesr18t.vf + texmf-dist/fonts/vf/public/electrumadf/yesr1o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesr1o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesr8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesr8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrc8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrcj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrcjo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrcjow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrcjw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrco8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrcow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrcw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrj8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesrj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrjo8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesrjo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrjow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrjw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesro8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesro8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesrw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yess08c.vf + texmf-dist/fonts/vf/public/electrumadf/yess08t.vf + texmf-dist/fonts/vf/public/electrumadf/yess0o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yess0o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yess18c.vf + texmf-dist/fonts/vf/public/electrumadf/yess18t.vf + texmf-dist/fonts/vf/public/electrumadf/yess1o8c.vf + texmf-dist/fonts/vf/public/electrumadf/yess1o8t.vf + texmf-dist/fonts/vf/public/electrumadf/yess8c.vf + texmf-dist/fonts/vf/public/electrumadf/yess8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessc8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesscj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesscjo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesscjow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesscjw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessco8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesscow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesscw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessj8c.vf + texmf-dist/fonts/vf/public/electrumadf/yessj8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessjo8c.vf + texmf-dist/fonts/vf/public/electrumadf/yessjo8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessjow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessjw8t.vf + texmf-dist/fonts/vf/public/electrumadf/yesso8c.vf + texmf-dist/fonts/vf/public/electrumadf/yesso8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessow8t.vf + texmf-dist/fonts/vf/public/electrumadf/yessw8t.vf + texmf-dist/tex/latex/electrumadf/electrum.sty + texmf-dist/tex/latex/electrumadf/t1yes.fd + texmf-dist/tex/latex/electrumadf/t1yes0.fd + texmf-dist/tex/latex/electrumadf/t1yes1.fd + texmf-dist/tex/latex/electrumadf/t1yesj.fd + texmf-dist/tex/latex/electrumadf/t1yesjw.fd + texmf-dist/tex/latex/electrumadf/t1yesw.fd + texmf-dist/tex/latex/electrumadf/ts1yes.fd + texmf-dist/tex/latex/electrumadf/ts1yes0.fd + texmf-dist/tex/latex/electrumadf/ts1yes1.fd + texmf-dist/tex/latex/electrumadf/ts1yesj.fd + texmf-dist/tex/latex/electrumadf/ts1yesjw.fd + texmf-dist/tex/latex/electrumadf/ts1yesw.fd catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/electrumadf -catalogue-license other-free +catalogue-license lppl1.3c gpl2 catalogue-topics font font-type1 -catalogue-version 1.005-b +catalogue-version 1.1 name eledform category Package @@ -103820,14 +105473,14 @@ catalogue-version 2.4 name elsarticle category Package -revision 70902 +revision 73421 shortdesc Class for articles for submission to Elsevier journals longdesc This class for typesetting journal articles is accepted for longdesc submitted articles both in Elsevier's electronic submission longdesc system and elsewhere. Please note that this webpage is meant longdesc for uploading updates to the elsarticle software itself, not longdesc for submitting articles using it . -docfiles size=389 +docfiles size=461 texmf-dist/doc/latex/elsarticle/1pseperateaug.pdf texmf-dist/doc/latex/elsarticle/1psingleauthorgroup.pdf texmf-dist/doc/latex/elsarticle/README details="Readme" @@ -103858,7 +105511,7 @@ runfiles size=36 catalogue-ctan /macros/latex/contrib/elsarticle catalogue-license lppl1.3 catalogue-topics journalpub class -catalogue-version 3.4 +catalogue-version 3.4c name elteiktdk category Package @@ -104158,7 +105811,7 @@ catalogue-version 1 name emisa category Package -revision 60068 +revision 71883 shortdesc A LaTeX package for preparing manuscripts for the journal EMISA longdesc The EMISA LaTeX package is provided for preparing manuscripts longdesc for submission to EMISA (Enterprise Modelling and Information @@ -104179,7 +105832,8 @@ runfiles size=18 texmf-dist/tex/latex/emisa/emisa.bbx texmf-dist/tex/latex/emisa/emisa.cbx texmf-dist/tex/latex/emisa/emisa.cls -catalogue-contact-repository https://github.com/emisa-journal/emisa-latex-package +catalogue-contact-repository https://github.com/gi-ev/emisa-latex-package +catalogue-contact-support https://github.com/gi-ev/emisa-latex-package/issues catalogue-ctan /macros/latex/contrib/emisa catalogue-license lppl1.3c catalogue-topics publisher class @@ -104520,15 +106174,15 @@ catalogue-version 2.7 name endheads category Package -revision 43750 +revision 73959 shortdesc Running headers of the form "Notes to pp.xx-yy" -longdesc Endheads provides running headers of the form "Notes to pp. +longdesc This package provides running headers of the form "Notes to pp. longdesc xx-yy" for endnotes sections. It also enables one to reset the longdesc endnotes counter, and put a line marking the chapter change in longdesc the endnotes, at the beginning of every chapter. Endheads longdesc requires the fancyhdr, needspace, ifthen, and endnotes longdesc packages. -docfiles size=57 +docfiles size=68 texmf-dist/doc/latex/endheads/README.md texmf-dist/doc/latex/endheads/endheads.pdf details="Package documentation" srcfiles size=8 @@ -104539,7 +106193,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/endheads catalogue-license lppl catalogue-topics endnote page-hf -catalogue-version 1.6 +catalogue-version 1.7 name endiagram category Package @@ -104792,9 +106446,32 @@ catalogue-license lppl1.3c catalogue-topics colour catalogue-version 0.0.1 +name enumext +category Package +revision 72861 +shortdesc Enumerate exercise sheets +longdesc This package provides enumerated list environments compatible +longdesc with tagging PDF for creating "simple exercise sheets" along +longdesc with "multiple choice questions", storing the "answers" to +longdesc these in memory using the multicol and scontents packages. +docfiles size=413 + texmf-dist/doc/latex/enumext/README.md details="Readme" + texmf-dist/doc/latex/enumext/enumext.pdf details="Package documentation" +srcfiles size=157 + texmf-dist/source/latex/enumext/enumext.dtx + texmf-dist/source/latex/enumext/enumext.ins +runfiles size=56 + texmf-dist/tex/latex/enumext/enumext.sty +catalogue-contact-bugs https://github.com/pablgonz/enumext/issues +catalogue-contact-repository https://github.com/pablgonz/enumext +catalogue-ctan /macros/latex/contrib/enumext +catalogue-license lppl1.3c +catalogue-topics exercise list list-enum tagged-pdf expl3 +catalogue-version 1.1 + name enumitem category Package -revision 51423 +revision 73750 shortdesc Control layout of itemize, enumerate, description longdesc This package provides user control over the layout of the three longdesc basic list environments: enumerate, itemize and description. It @@ -104803,7 +106480,7 @@ longdesc well-structured replacements for all their funtionality), and longdesc in addition provides functions to compute the layout of labels, longdesc and to 'clone' the standard environments, to create new longdesc environments with counters of their own. -docfiles size=53 +docfiles size=56 texmf-dist/doc/latex/enumitem/README.md details="Readme" texmf-dist/doc/latex/enumitem/enumitem.pdf details="Package documentation" texmf-dist/doc/latex/enumitem/enumitem.tex @@ -104814,7 +106491,7 @@ catalogue-contact-repository https://github.com/jbezos/enumitem catalogue-ctan /macros/latex/contrib/enumitem catalogue-license mit catalogue-topics list -catalogue-version 3.9 +catalogue-version 3.11 name enumitem-zref category Package @@ -104859,6 +106536,39 @@ catalogue-ctan /macros/latex/contrib/envbig catalogue-license lppl catalogue-topics letter +name enverb +category Package +revision 73422 +shortdesc Read an environment verbatim +longdesc This package allows you to collect the contents of an +longdesc environment verbatim, and provides that inside the macro +longdesc \enverbBody. What you then do with that content is up to you. +longdesc It also allows you to place arbitrary content at the start and +longdesc end of each line (which doesn't have to be verbatim). The two +longdesc convenience macros \enverbExecute and \enverbListings can be +longdesc used to typeset the contents and wrap the contents inside +longdesc another verbatim environment, respectively. +docfiles size=96 + texmf-dist/doc/latex/enverb/README.md details="Readme" + texmf-dist/doc/latex/enverb/doc-enverb.tex + texmf-dist/doc/latex/enverb/doc-examples.tex + texmf-dist/doc/latex/enverb/doc-keys.tex + texmf-dist/doc/latex/enverb/doc-using-contents.tex + texmf-dist/doc/latex/enverb/enverb-doc.pdf details="Package documentation" + texmf-dist/doc/latex/enverb/enverb-doc.tex + texmf-dist/doc/latex/enverb/preamble-examples.tex + texmf-dist/doc/latex/enverb/preamble-logo.tex +srcfiles size=7 + texmf-dist/source/latex/enverb/enverb.dtx +runfiles size=3 + texmf-dist/tex/latex/enverb/enverb.sty +catalogue-contact-bugs https://gitlab.com/islandoftex/texmf/enverb/-/issues +catalogue-contact-repository https://gitlab.com/islandoftex/texmf/enverb +catalogue-ctan /macros/latex/contrib/enverb +catalogue-license lppl1.3c +catalogue-topics verbatim macro-demo macro-supp expl3 +catalogue-version 1.1 + name environ category Package revision 56615 @@ -104914,7 +106624,7 @@ catalogue-version 1.2 name eolang category Package -revision 69857 +revision 72724 shortdesc Formulas and graphs for the EO programming language longdesc This LaTeX package helps you write [?] -calculus formulas and longdesc SODG graphs for the EO programming language. @@ -104926,7 +106636,7 @@ depend iexec depend pgf depend pgfopts depend stmaryrd -docfiles size=495 +docfiles size=477 texmf-dist/doc/latex/eolang/DEPENDS.txt texmf-dist/doc/latex/eolang/LICENSE.txt texmf-dist/doc/latex/eolang/README.md details="Readme" @@ -104945,7 +106655,7 @@ 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.18.1 +catalogue-version 0.18.2 name eolang.aarch64-linux category Package @@ -105753,7 +107463,7 @@ catalogue-version 0.61 name epstopdf category Package -revision 71612 +revision 71782 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 @@ -105781,7 +107491,7 @@ catalogue-contact-home https://tug.org/epstopdf/ catalogue-ctan /support/epstopdf catalogue-license other-free catalogue-topics graphics-epspdf -catalogue-version 2.35 +catalogue-version 2.36 name epstopdf-pkg category Package @@ -107359,24 +109069,24 @@ catalogue-version 1.122 name erewhon-math category Package -revision 70295 +revision 74006 shortdesc Utopia based OpenType Math font longdesc OpenType version of the fourier Type1 fonts designed by Michel longdesc Bovani. -docfiles size=526 +docfiles size=517 texmf-dist/doc/fonts/erewhon-math/Erewhon-Math.ltx texmf-dist/doc/fonts/erewhon-math/Erewhon-Math.pdf details="Package documentation" texmf-dist/doc/fonts/erewhon-math/README.md details="Readme" texmf-dist/doc/fonts/erewhon-math/unimath-erewhon.ltx texmf-dist/doc/fonts/erewhon-math/unimath-erewhon.pdf details="List of glyphs" -runfiles size=143 +runfiles size=145 texmf-dist/fonts/opentype/public/erewhon-math/Erewhon-Math-Bold.otf texmf-dist/fonts/opentype/public/erewhon-math/Erewhon-Math.otf texmf-dist/tex/latex/erewhon-math/fourier-otf.sty catalogue-ctan /fonts/erewhon-math catalogue-license ofl lppl1.3c catalogue-topics font font-proportional font-otf font-supp font-maths -catalogue-version 0.66 +catalogue-version 0.67 name errata category Package @@ -107442,7 +109152,7 @@ catalogue-version 1.97 name esami category Package -revision 71732 +revision 71883 shortdesc Typeset exams with scrambled questions and answers longdesc The package enables the user to typeset exams with multiple longdesc choice, open questions and many other types of exercise. Both @@ -107505,7 +109215,7 @@ runfiles size=28 catalogue-ctan /macros/latex/contrib/esami catalogue-license lppl catalogue-topics exam -catalogue-version 2.8 +catalogue-version 2.9 name esdiff category Package @@ -108921,7 +110631,7 @@ catalogue-version 2.6 name etex category Package -revision 70440 +revision 73850 shortdesc An extended version of TeX, from the NTS project longdesc An extended version of TeX (capable of running as if it were longdesc unmodified TeX). E-TeX has been specified by the LaTeX team as @@ -109381,7 +111091,7 @@ catalogue-version 1.2d name etoolbox category Package -revision 56554 +revision 73881 shortdesc e-TeX tools for LaTeX longdesc The package is a toolbox of programming facilities geared longdesc primarily towards LaTeX class and package authors. It provides @@ -109393,7 +111103,7 @@ longdesc elatex. The package provides functions that seem to offer longdesc alternative ways of implementing some LaTeX kernel commands; longdesc nevertheless, the package will not modify any part of the LaTeX longdesc kernel. -docfiles size=76 +docfiles size=79 texmf-dist/doc/latex/etoolbox/README.md details="Readme" texmf-dist/doc/latex/etoolbox/etoolbox.pdf details="Package documentation" texmf-dist/doc/latex/etoolbox/etoolbox.tex @@ -109405,7 +111115,7 @@ catalogue-contact-repository https://github.com/josephwright/etoolbox/ catalogue-ctan /macros/latex/contrib/etoolbox catalogue-license lppl1.3c catalogue-topics macro-supp etex -catalogue-version 2.5k +catalogue-version 2.5l name etoolbox-de category Package @@ -109462,6 +111172,27 @@ catalogue-license lppl1.3c catalogue-topics shortcut dutch catalogue-version 1.0 +name euclidean-lattice +category Package +revision 72985 +shortdesc Draw two-dimensional Euclidean lattices with TikZ +longdesc This package provides a simple, efficient and easily +longdesc configurable way to draw two-dimensional Euclidean lattices +longdesc using TikZ. +docfiles size=66 + texmf-dist/doc/latex/euclidean-lattice/README.md details="Readme" + texmf-dist/doc/latex/euclidean-lattice/euclidean-lattice-doc.pdf details="Package documentation" +srcfiles size=8 + texmf-dist/source/latex/euclidean-lattice/euclidean-lattice.dtx + texmf-dist/source/latex/euclidean-lattice/euclidean-lattice.ins +runfiles size=3 + texmf-dist/tex/latex/euclidean-lattice/euclidean-lattice.sty +catalogue-contact-repository https://github.com/JeromePlut/lattice +catalogue-ctan /graphics/pgf/contrib/euclidean-lattice +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz maths +catalogue-version 1.0 + name euclideangeometry category Package revision 67608 @@ -109601,7 +111332,7 @@ catalogue-version 2.5 name euler-math category Package -revision 70296 +revision 74007 shortdesc OpenType version of Hermann Zapf's Euler maths font longdesc Euler-Math.otf (formerly named 'Neo-Euler.otf') is an OpenType longdesc version of Hermann Zapf's Euler maths font. It is the @@ -109609,7 +111340,7 @@ 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. -docfiles size=416 +docfiles size=409 texmf-dist/doc/fonts/euler-math/Euler-Math.ltx texmf-dist/doc/fonts/euler-math/Euler-Math.pdf details="Package documentation" texmf-dist/doc/fonts/euler-math/README.md details="Readme" @@ -109623,7 +111354,7 @@ catalogue-alias neo-euler catalogue-ctan /fonts/euler-math catalogue-license ofl lppl1.3c catalogue-topics font font-otf font-maths -catalogue-version 0.61 +catalogue-version 0.62 name eulerpx category Package @@ -109787,6 +111518,71 @@ catalogue-license bsd catalogue-topics font font-specialist font-mf catalogue-version 3.0b +name euromoney +category Package +revision 73069 +shortdesc Vectorial coins and banknotes in euro, with stacking option +longdesc With this package you can insert vectorial coins and banknotes +longdesc in euro, with stacking option. Three designs are available: +longdesc full color, simple color, and simple B&W. The PDF files were +longdesc obtained by converting svg files found at openclipart (CC0 1.0 +longdesc UNIVERSAL), by user frankes. +docfiles size=594 + texmf-dist/doc/latex/euromoney/README.md details="Readme" + texmf-dist/doc/latex/euromoney/euromoney-doc.pdf details="Package documentation" + texmf-dist/doc/latex/euromoney/euromoney-doc.tex +runfiles size=825 + texmf-dist/tex/latex/euromoney/euromoney-100euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-100eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-100eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-10cent.pdf + texmf-dist/tex/latex/euromoney/euromoney-10centsimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-10centsimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-10euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-10eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-10eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-1cent.pdf + texmf-dist/tex/latex/euromoney/euromoney-1centsimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-1centsimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-1euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-1eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-1eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-200euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-200eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-200eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-20cent.pdf + texmf-dist/tex/latex/euromoney/euromoney-20centsimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-20centsimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-20euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-20eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-20eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-2cent.pdf + texmf-dist/tex/latex/euromoney/euromoney-2centsimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-2centsimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-2euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-2eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-2eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-500euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-500eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-500eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-50cent.pdf + texmf-dist/tex/latex/euromoney/euromoney-50centsimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-50centsimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-50euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-50eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-50eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-5cent.pdf + texmf-dist/tex/latex/euromoney/euromoney-5centsimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-5centsimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney-5euro.pdf + texmf-dist/tex/latex/euromoney/euromoney-5eurosimple.pdf + texmf-dist/tex/latex/euromoney/euromoney-5eurosimplebw.pdf + texmf-dist/tex/latex/euromoney/euromoney.sty +catalogue-ctan /macros/latex/contrib/euromoney +catalogue-license lppl1.3c pd +catalogue-topics graphics-use pgf-tikz logo +catalogue-version 0.1.1 + name europasscv category Package revision 56829 @@ -110765,7 +112561,7 @@ catalogue-version 0.17 name exesheet category Package -revision 69838 +revision 73235 shortdesc Typesetting exercise or exam sheets longdesc The exesheet package is designed for typesetting exercise or longdesc exam sheets. The primary advantage of exesheet is its ability @@ -110779,10 +112575,10 @@ longdesc and grading instructions in the margins which can be displayed longdesc or hidden. Additionally, the exesheet class loads the longdesc schooldocs package which manages the page layout, the main longdesc title, headers and footers. -docfiles size=85 +docfiles size=87 texmf-dist/doc/latex/exesheet/README.md details="Readme" texmf-dist/doc/latex/exesheet/exesheet.pdf details="Package documentation" -srcfiles size=29 +srcfiles size=28 texmf-dist/source/latex/exesheet/exesheet.dtx texmf-dist/source/latex/exesheet/exesheet.ins runfiles size=9 @@ -110792,11 +112588,11 @@ catalogue-also schooldocs catalogue-ctan /macros/latex/contrib/exesheet catalogue-license lppl1.3 catalogue-topics exam exercise teaching class -catalogue-version 2.7 +catalogue-version 2.8 name exframe category Package -revision 53911 +revision 72595 shortdesc Framework for exercise problems longdesc This LaTeX2e package provides a general purpose framework to longdesc describe and typeset exercises and exam questions along with @@ -110806,7 +112602,7 @@ longdesc problems on exercise sheets, to store and use metadata, and to longdesc implement a consistent numbering. It also provides a very longdesc flexible interface for configuring and customising the longdesc formatting, layout, and representation of the exercise content. -docfiles size=115 +docfiles size=128 texmf-dist/doc/latex/exframe/README.txt details="Readme" texmf-dist/doc/latex/exframe/exframe.pdf details="Package documentation" texmf-dist/doc/latex/exframe/exfsamp.tex @@ -110819,15 +112615,15 @@ docfiles size=115 texmf-dist/doc/latex/exframe/exfsermk.sh texmf-dist/doc/latex/exframe/exfserpe.tex texmf-dist/doc/latex/exframe/exfserpf.tex -srcfiles size=57 +srcfiles size=63 texmf-dist/source/latex/exframe/exframe.dtx texmf-dist/source/latex/exframe/exframe.ins -runfiles size=16 +runfiles size=17 texmf-dist/tex/latex/exframe/exframe.sty catalogue-ctan /macros/latex/contrib/exframe catalogue-license lppl1.3 catalogue-topics exam exercise -catalogue-version 3.4 +catalogue-version 3.5 name exp-testopt category Package @@ -110965,7 +112761,7 @@ catalogue-version 0.9b name expkv-bundle category Package -revision 65623 +revision 73212 shortdesc An expandable key=val implementation and friends longdesc This is a collection of different packages that provide longdesc key=value functionality in plainTeX, LaTeX, and ConTeXt. At the @@ -110982,7 +112778,7 @@ 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). -docfiles size=234 +docfiles size=233 texmf-dist/doc/latex/expkv-bundle/README.md details="Readme" texmf-dist/doc/latex/expkv-bundle/comparison.tex texmf-dist/doc/latex/expkv-bundle/expkv-bundle.pdf details="Package documentation" @@ -111001,7 +112797,7 @@ docfiles size=234 texmf-dist/doc/latex/expkv-bundle/preamble-lst.tex texmf-dist/doc/latex/expkv-bundle/preamble-noidx.tex texmf-dist/doc/latex/expkv-bundle/preamble-prefixes.tex -srcfiles size=72 +srcfiles size=74 texmf-dist/source/latex/expkv-bundle/expkv-bundle.ins texmf-dist/source/latex/expkv-bundle/expkv-cs.dtx texmf-dist/source/latex/expkv-bundle/expkv-def.dtx @@ -111009,7 +112805,7 @@ srcfiles size=72 texmf-dist/source/latex/expkv-bundle/expkv-opt.dtx texmf-dist/source/latex/expkv-bundle/expkv-pop.dtx texmf-dist/source/latex/expkv-bundle/expkv.dtx -runfiles size=45 +runfiles size=46 texmf-dist/tex/context/third/expkv-bundle/t-expkv-cs.tex texmf-dist/tex/context/third/expkv-bundle/t-expkv-def.tex texmf-dist/tex/context/third/expkv-bundle/t-expkv-pop.tex @@ -111029,6 +112825,191 @@ catalogue-ctan /macros/generic/expkv-bundle catalogue-license lppl1.3c catalogue-topics keyval macro-supp macro-gen +name expltools +category Package +revision 73528 +shortdesc Development tools for expl3 programmers +longdesc This bundle introduces explcheck, a static analysis tool for +longdesc developers working with expl3 code. Currently in its initial +longdesc release, explcheck aims to help developers identify potential +longdesc issues and improve code quality. In the future, this bundle may +longdesc expand to include additional development tools for expl3. +depend expltools.ARCH +docfiles size=755 + texmf-dist/doc/support/expltools/CHANGES.md + texmf-dist/doc/support/expltools/README.md details="Readme" + texmf-dist/doc/support/expltools/e102.tex + texmf-dist/doc/support/expltools/e104.tex + texmf-dist/doc/support/expltools/e201.tex + texmf-dist/doc/support/expltools/e203.tex + texmf-dist/doc/support/expltools/e208.tex + texmf-dist/doc/support/expltools/e209.tex + texmf-dist/doc/support/expltools/latexmkrc + texmf-dist/doc/support/expltools/markdownthemewitiko_expltools.sty + texmf-dist/doc/support/expltools/markdownthemewitiko_expltools_explcheck_project-proposal.sty + texmf-dist/doc/support/expltools/markdownthemewitiko_expltools_explcheck_warnings-and-errors.sty + texmf-dist/doc/support/expltools/project-proposal-01-introduction.md + texmf-dist/doc/support/expltools/project-proposal-02-requirements.md + texmf-dist/doc/support/expltools/project-proposal-03-related-work.md + texmf-dist/doc/support/expltools/project-proposal-04-design.md + texmf-dist/doc/support/expltools/project-proposal-05-benefits-of-grant-funding.md + texmf-dist/doc/support/expltools/project-proposal.cls + texmf-dist/doc/support/expltools/project-proposal.pdf details="Project proposal" + texmf-dist/doc/support/expltools/project-proposal.tex + texmf-dist/doc/support/expltools/s103.tex + texmf-dist/doc/support/expltools/s204.tex + texmf-dist/doc/support/expltools/s205-01.tex + texmf-dist/doc/support/expltools/s205-02.tex + texmf-dist/doc/support/expltools/s205-03.tex + texmf-dist/doc/support/expltools/s205-04.tex + texmf-dist/doc/support/expltools/s206-01.tex + texmf-dist/doc/support/expltools/s206-02.tex + texmf-dist/doc/support/expltools/s206-03.tex + texmf-dist/doc/support/expltools/s207-01.tex + texmf-dist/doc/support/expltools/s207-02.tex + texmf-dist/doc/support/expltools/s207-03.tex + texmf-dist/doc/support/expltools/s207-04.tex + texmf-dist/doc/support/expltools/w100.tex + texmf-dist/doc/support/expltools/w101.tex + texmf-dist/doc/support/expltools/w200.tex + texmf-dist/doc/support/expltools/w202.tex + texmf-dist/doc/support/expltools/warnings-and-errors-00-introduction.md + texmf-dist/doc/support/expltools/warnings-and-errors-01-preprocessing.md + texmf-dist/doc/support/expltools/warnings-and-errors-02-lexical-analysis.md + texmf-dist/doc/support/expltools/warnings-and-errors-03-syntactic-analysis.md + texmf-dist/doc/support/expltools/warnings-and-errors-04-semantic-analysis.md + texmf-dist/doc/support/expltools/warnings-and-errors-05-flow-analysis.md + texmf-dist/doc/support/expltools/warnings-and-errors-99-caveats.md + texmf-dist/doc/support/expltools/warnings-and-errors.bib + texmf-dist/doc/support/expltools/warnings-and-errors.cls + texmf-dist/doc/support/expltools/warnings-and-errors.ist + texmf-dist/doc/support/expltools/warnings-and-errors.pdf details="List of warnings and errors" + texmf-dist/doc/support/expltools/warnings-and-errors.tex +runfiles size=30 + texmf-dist/scripts/expltools/explcheck-cli.lua + texmf-dist/scripts/expltools/explcheck-config.lua + texmf-dist/scripts/expltools/explcheck-format.lua + texmf-dist/scripts/expltools/explcheck-issues.lua + texmf-dist/scripts/expltools/explcheck-lexical-analysis.lua + texmf-dist/scripts/expltools/explcheck-obsolete.lua + texmf-dist/scripts/expltools/explcheck-parsers.lua + texmf-dist/scripts/expltools/explcheck-preprocessing.lua + texmf-dist/scripts/expltools/explcheck-toml.lua + texmf-dist/scripts/expltools/explcheck-utils.lua + texmf-dist/scripts/expltools/explcheck.lua +catalogue-contact-announce https://github.com/witiko/expltools/releases +catalogue-contact-bugs https://github.com/witiko/expltools/issues +catalogue-contact-repository https://github.com/witiko/expltools +catalogue-contact-support https://github.com/witiko/expltools/discussions +catalogue-ctan /support/expltools +catalogue-license lppl1.3c gpl2+ +catalogue-topics debug-supp + +name expltools.aarch64-linux +category Package +revision 73049 +shortdesc aarch64-linux files of expltools +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/explcheck + +name expltools.amd64-freebsd +category Package +revision 73049 +shortdesc amd64-freebsd files of expltools +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/explcheck + +name expltools.amd64-netbsd +category Package +revision 73049 +shortdesc amd64-netbsd files of expltools +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/explcheck + +name expltools.armhf-linux +category Package +revision 73049 +shortdesc armhf-linux files of expltools +binfiles arch=armhf-linux size=1 + bin/armhf-linux/explcheck + +name expltools.i386-freebsd +category Package +revision 73049 +shortdesc i386-freebsd files of expltools +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/explcheck + +name expltools.i386-linux +category Package +revision 73049 +shortdesc i386-linux files of expltools +binfiles arch=i386-linux size=1 + bin/i386-linux/explcheck + +name expltools.i386-netbsd +category Package +revision 73049 +shortdesc i386-netbsd files of expltools +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/explcheck + +name expltools.i386-solaris +category Package +revision 73049 +shortdesc i386-solaris files of expltools +binfiles arch=i386-solaris size=1 + bin/i386-solaris/explcheck + +name expltools.universal-darwin +category Package +revision 73049 +shortdesc universal-darwin files of expltools +binfiles arch=universal-darwin size=1 + bin/universal-darwin/explcheck + +name expltools.windows +category Package +revision 73049 +shortdesc windows files of expltools +binfiles arch=windows size=2 + bin/windows/explcheck.exe + +name expltools.x86_64-cygwin +category Package +revision 73049 +shortdesc x86_64-cygwin files of expltools +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/explcheck + +name expltools.x86_64-darwinlegacy +category Package +revision 73049 +shortdesc x86_64-darwinlegacy files of expltools +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/explcheck + +name expltools.x86_64-linux +category Package +revision 73049 +shortdesc x86_64-linux files of expltools +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/explcheck + +name expltools.x86_64-linuxmusl +category Package +revision 73049 +shortdesc x86_64-linuxmusl files of expltools +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/explcheck + +name expltools.x86_64-solaris +category Package +revision 73049 +shortdesc x86_64-solaris files of expltools +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/explcheck + name export category Package revision 27206 @@ -111160,7 +113141,7 @@ catalogue-version 0.21k name exsol category Package -revision 69343 +revision 73982 shortdesc Exercises and solutions from the same source, into a book longdesc This package provides macros to allow for embedding exercises longdesc and solutions in the LaTeX source of an instructional text @@ -111201,7 +113182,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/exsol catalogue-license lppl1.3 catalogue-topics exercise -catalogue-version 1.6 +catalogue-version 1.7 name extarrows category Package @@ -111305,6 +113286,137 @@ catalogue-license lppl1.3 catalogue-topics editorial catalogue-version 1.9a +name extractbb +category Package +revision 73916 +shortdesc A reimplementation of extractbb, written in Lua +longdesc extractbb is a program that exports the dimensions of an image +longdesc or PDF file to a plain text format that is easily parsed by +longdesc TeX. This tool is rarely run directly by users, but is +longdesc frequently used by packages running on XeTeX or upTeX. This +longdesc package specifically contains a Lua-based reimplementation +longdesc extractbb that behaves identically to the original C-based +longdesc version distributed with dvipdfmx. +depend extractbb.ARCH +docfiles size=13 + texmf-dist/doc/man/man1/extractbb.1 + texmf-dist/doc/man/man1/extractbb.man1.pdf + texmf-dist/doc/support/extractbb/README.md details="Readme" + texmf-dist/doc/support/extractbb/extractbb.man1.pdf +runfiles size=5 + texmf-dist/scripts/extractbb/extractbb.lua +catalogue-contact-bugs https://github.com/gucci-on-fleek/extractbb/issues +catalogue-contact-repository https://github.com/gucci-on-fleek/extractbb/ +catalogue-ctan /support/extractbb +catalogue-license other-free cc-by-sa-4 +catalogue-topics data-prep pdf-feat +catalogue-version 1.1.0 + +name extractbb.aarch64-linux +category Package +revision 72890 +shortdesc aarch64-linux files of extractbb +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/extractbb + +name extractbb.amd64-freebsd +category Package +revision 72890 +shortdesc amd64-freebsd files of extractbb +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/extractbb + +name extractbb.amd64-netbsd +category Package +revision 72890 +shortdesc amd64-netbsd files of extractbb +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/extractbb + +name extractbb.armhf-linux +category Package +revision 72890 +shortdesc armhf-linux files of extractbb +binfiles arch=armhf-linux size=1 + bin/armhf-linux/extractbb + +name extractbb.i386-freebsd +category Package +revision 72890 +shortdesc i386-freebsd files of extractbb +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/extractbb + +name extractbb.i386-linux +category Package +revision 72890 +shortdesc i386-linux files of extractbb +binfiles arch=i386-linux size=1 + bin/i386-linux/extractbb + +name extractbb.i386-netbsd +category Package +revision 72890 +shortdesc i386-netbsd files of extractbb +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/extractbb + +name extractbb.i386-solaris +category Package +revision 72890 +shortdesc i386-solaris files of extractbb +binfiles arch=i386-solaris size=1 + bin/i386-solaris/extractbb + +name extractbb.universal-darwin +category Package +revision 72890 +shortdesc universal-darwin files of extractbb +binfiles arch=universal-darwin size=1 + bin/universal-darwin/extractbb + +name extractbb.windows +category Package +revision 71669 +shortdesc windows files of extractbb +binfiles arch=windows size=2 + bin/windows/extractbb.exe + +name extractbb.x86_64-cygwin +category Package +revision 72890 +shortdesc x86_64-cygwin files of extractbb +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/extractbb + +name extractbb.x86_64-darwinlegacy +category Package +revision 72890 +shortdesc x86_64-darwinlegacy files of extractbb +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/extractbb + +name extractbb.x86_64-linux +category Package +revision 73777 +shortdesc x86_64-linux files of extractbb +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/extractbb + +name extractbb.x86_64-linuxmusl +category Package +revision 72890 +shortdesc x86_64-linuxmusl files of extractbb +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/extractbb + +name extractbb.x86_64-solaris +category Package +revision 72890 +shortdesc x86_64-solaris files of extractbb +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/extractbb + name extsizes category Package revision 17263 @@ -111337,6 +113449,27 @@ catalogue-license lppl catalogue-topics book-pub class catalogue-version 1.4a +name ezedits +category Package +revision 72849 +shortdesc Commands for tracking document changes and notes +longdesc This is a package built for collaboratively editing LaTeX +longdesc documents and tracking changes. Through highly customizable +longdesc commands, the user can choose how their and their +longdesc collaborators' modifications appear in the document. Additional +longdesc tools are provided to help keep track of where the edits are +longdesc made within the pdf. +docfiles size=42 + texmf-dist/doc/latex/ezedits/README.md details="Readme" + texmf-dist/doc/latex/ezedits/ezedits_docs.pdf details="Package documentation" + texmf-dist/doc/latex/ezedits/ezedits_docs.tex +runfiles size=3 + texmf-dist/tex/latex/ezedits/ezedits.sty +catalogue-ctan /macros/latex/contrib/ezedits +catalogue-license lppl1.3c +catalogue-topics editorial notes +catalogue-version 1.1 + name facsimile category Package revision 21328 @@ -111715,19 +113848,20 @@ catalogue-topics class presentation name fancyhdr category Package -revision 71064 +revision 73783 shortdesc Extensive control of page headers and footers in LaTeX2e longdesc The package provides extensive facilities, both for longdesc constructing headers and footers, and for controlling their use longdesc (for example, at times when LaTeX would automatically change longdesc the heading style in use). -docfiles size=215 +docfiles size=330 texmf-dist/doc/latex/fancyhdr/README details="Readme" texmf-dist/doc/latex/fancyhdr/fancyhdr.pdf details="Users' manual (English)" -srcfiles size=51 +srcfiles size=93 texmf-dist/source/latex/fancyhdr/fancyhdr.dtx texmf-dist/source/latex/fancyhdr/fancyhdr.ins -runfiles size=7 +runfiles size=12 + texmf-dist/tex/latex/fancyhdr/extramarks-v4.sty texmf-dist/tex/latex/fancyhdr/extramarks.sty texmf-dist/tex/latex/fancyhdr/fancyhdr.sty texmf-dist/tex/latex/fancyhdr/fancyheadings.sty @@ -111737,7 +113871,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.2 +catalogue-version 5.2 name fancyhdr-it category Package @@ -111826,22 +113960,22 @@ catalogue-version 1.3 name fancyqr category Package -revision 70935 +revision 72986 shortdesc Fancy QR-Codes with TikZ longdesc A simple package to create fancy QR-codes with the help of the longdesc qrcode package. -docfiles size=65 +docfiles size=71 texmf-dist/doc/latex/fancyqr/README.md details="Readme" texmf-dist/doc/latex/fancyqr/fancyqr-doc.pdf details="Package documentation" texmf-dist/doc/latex/fancyqr/fancyqr-doc.tex texmf-dist/doc/latex/fancyqr/qr-example.tex -runfiles size=10 + texmf-dist/doc/latex/fancyqr/qr-minimal.tex +runfiles size=9 texmf-dist/tex/latex/fancyqr/fancyqr-style-blobs.code texmf-dist/tex/latex/fancyqr/fancyqr-style-dots.code texmf-dist/tex/latex/fancyqr/fancyqr-style-flat.code texmf-dist/tex/latex/fancyqr/fancyqr-style-frame.code texmf-dist/tex/latex/fancyqr/fancyqr-style-glitch.code - texmf-dist/tex/latex/fancyqr/fancyqr-style-swift.code texmf-dist/tex/latex/fancyqr/fancyqr.sty catalogue-also qrcode catalogue-contact-announce https://github.com/EagleoutIce/fancyqr/releases @@ -111852,7 +113986,7 @@ catalogue-contact-repository https://github.com/EagleoutIce/fancyqr catalogue-ctan /graphics/pgf/contrib/fancyqr catalogue-license gpl3 catalogue-topics qrcode pgf-tikz -catalogue-version 2.0 +catalogue-version 2.2 name fancyref category Package @@ -112065,6 +114199,59 @@ catalogue-ctan /help/LaTeX-FAQ-francaise catalogue-license cc-by-sa-4 catalogue-topics faq french-doc +name faq-fr-gutenberg +category Package +revision 73163 +shortdesc Sources of the GUTenberg French LaTeX FAQ and PDF files +longdesc # French-speaking GUTenberg LaTeX FAQ -- Frequently Asked +longdesc Questions (French version below) This package contains the +longdesc sources of the GUTenberg French LaTeX FAQ (French (La)TeX users +longdesc group), currently maintained as an Git repository open to all: +longdesc https://gitlab.gutenberg-asso.fr If you'd like to read the FAQ, +longdesc please visit the URL above. This package also contains two PDF +longdesc versions of this FAQ: faqlatexgutenberg.pdf with code verbatim +longdesc in clear mode faqlatexgutenberg-sombre.pdf with code verbatim +longdesc in dark mode ## Participate You can also open an account on the +longdesc association's Gitlab forge: https://gitlab.gutenberg-asso.fr +longdesc and ask to join the repository +longdesc https://gitlab.gutenberg-asso.fr/gutenberg/faq-gut All +longdesc contributions are welcome: corrections of small errors, +longdesc updating answers to questions, or adding new questions! These +longdesc files are made available on CTAN only to encourage reuse of +longdesc this content, and to preserve a permanent copy. ## Contact us +longdesc For questions and comments: faq@gutenberg-asso.fr ## Version +longdesc 2024-10-07 # FAQ LaTeX francophone GUTenberg -- Foire aux +longdesc Questions Ce package contient les sources de la FAQ LaTeX +longdesc francophone GUTenberg (groupe des utilisateurs francophones de +longdesc (La)TeX), actuellement maintenue a jour sous forme d'un depot +longdesc Git ouvert a tous: https://gitlab.gutenberg-asso.fr Si vous +longdesc souhaitez lire la FAQ, nous vous conseillons de consulter l'URL +longdesc ci-dessus. Ce package contient aussi deux versions PDF de cette +longdesc FAQ: faqlatexgutenberg.pdf avec verbatim des codes en mode +longdesc clair faqlatexgutenberg-sombre.pdf avec verbatim des codes en +longdesc mode sombre ## Participer Vous pouvez egalement ouvrir un +longdesc compte sur la forge Gitlab de l'association GUTenberg: +longdesc https://gitlab.gutenberg-asso.fr et demander a rejoindre le +longdesc depot: https://gitlab.gutenberg-asso.fr/gutenberg/faq-gut +longdesc Toutes les contributions sont les bienvenues: corrections des +longdesc petites erreurs, mises a jour des reponses aux questions, ou +longdesc ajout de nouvelles questions ! Ces fichiers ne sont mis a +longdesc disposition sur le CTAN que pour encourager la reutilisation de +longdesc ce contenu, et pour en conserver une copie perenne. ## Nous +longdesc contacter Pour toutes questions et remarques: +longdesc faq@gutenberg-asso.fr +docfiles size=16011 + texmf-dist/doc/latex/faq-fr-gutenberg/LICENSE + texmf-dist/doc/latex/faq-fr-gutenberg/README.md details="Readme" + texmf-dist/doc/latex/faq-fr-gutenberg/faq-gut-main.tar.gz + texmf-dist/doc/latex/faq-fr-gutenberg/pdf/faqlatexgutenberg-sombre.pdf + texmf-dist/doc/latex/faq-fr-gutenberg/pdf/faqlatexgutenberg.pdf details="Package documentation" +catalogue-contact-home https://faq.gutenberg-asso.fr +catalogue-contact-repository https://gitlab.gutenberg-asso.fr/gutenberg/faq-gut +catalogue-ctan /help/faq-fr-gutenberg +catalogue-license cc-by-sa-4 +catalogue-topics faq french-doc + name fascicules category Package revision 54080 @@ -114749,7 +116936,7 @@ catalogue-version 4.10.4 name fenetrecas category Package -revision 68779 +revision 73069 shortdesc Commands for CAS-like windows (Xcas or Geogebra) in TikZ longdesc This package provides some commands (in French) to display, longdesc with TikZ, windows like Xcas or Geogebra : @@ -114761,8 +116948,6 @@ docfiles size=168 texmf-dist/doc/latex/fenetrecas/README.md details="Readme" runfiles size=4 texmf-dist/tex/latex/fenetrecas/FenetreCas.sty -catalogue-contact-repository https://github.com/cpierquet/FenetreCas -catalogue-contact-support https://github.com/cpierquet/FenetreCas/issues catalogue-ctan /graphics/pgf/contrib/fenetrecas catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz @@ -115236,24 +117421,21 @@ catalogue-version 1.1 name ffcode category Package -revision 70740 +revision 73318 shortdesc Fixed-font code blocks formatted nicely 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 listings +depend pgfopts depend tcolorbox -depend xkeyval -docfiles size=130 +docfiles size=111 texmf-dist/doc/latex/ffcode/DEPENDS.txt texmf-dist/doc/latex/ffcode/LICENSE.txt texmf-dist/doc/latex/ffcode/README.md details="Readme" texmf-dist/doc/latex/ffcode/ffcode.pdf details="Package documentation" -srcfiles size=4 +srcfiles size=5 texmf-dist/source/latex/ffcode/ffcode.dtx texmf-dist/source/latex/ffcode/ffcode.ins runfiles size=1 @@ -115262,7 +117444,7 @@ 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.9.3 +catalogue-version 0.10.1 name ffslides category Package @@ -115911,6 +118093,56 @@ catalogue-license lppl1.3 catalogue-topics doc-tool catalogue-version 1.2 +name fillpages +category Package +revision 73550 +shortdesc Fill up the page count to a certain number (e.g. divisible by 4) +longdesc For printing, the physical page count must be divisible by a +longdesc certain number, most often 4, 8 or 16. This LaTeX package +longdesc inserts blank or predefined pages, if needed. +docfiles size=34 + texmf-dist/doc/latex/fillpages/GFM-FP-LogoS.pdf + texmf-dist/doc/latex/fillpages/GFM-FP-LogoS.svg + texmf-dist/doc/latex/fillpages/README.md details="Readme" + texmf-dist/doc/latex/fillpages/fillpages-documentation.pdf details="Package documentation" + texmf-dist/doc/latex/fillpages/fillpages-documentation.tex +runfiles size=2 + texmf-dist/tex/latex/fillpages/fillpages.sty +catalogue-contact-repository https://bitbucket.org/maestro-glanz/fillpages +catalogue-ctan /macros/latex/contrib/fillpages +catalogue-license lppl1.3 +catalogue-topics blank-page +catalogue-version 1.1.0 + +name fillwith +category Package +revision 72006 +shortdesc Fill vertical space with solid rules or dotted lines +longdesc A LaTeX package for filling vertical space with something +longdesc rather than nothing. Currently supported somethings are solid +longdesc rules and dotted lines, with or without numbers. The package +longdesc uses a mixture of plain-ish macros, LaTeX2e and expl3 methods, +longdesc but a key-value approach to configuration should make the +longdesc document-level interface relatively sane, even if nothing else +longdesc is. +docfiles size=158 + texmf-dist/doc/latex/fillwith/MANIFEST.md + texmf-dist/doc/latex/fillwith/README.md details="Readme" + texmf-dist/doc/latex/fillwith/fillwith-example.pdf details="Example of use" + texmf-dist/doc/latex/fillwith/fillwith-example.tex + texmf-dist/doc/latex/fillwith/fillwith.pdf details="Package documentation" +srcfiles size=8 + texmf-dist/source/latex/fillwith/fillwith.dtx + texmf-dist/source/latex/fillwith/fillwith.ins +runfiles size=3 + texmf-dist/tex/latex/fillwith/fillwith.sty +catalogue-contact-bugs https://codeberg.org/cfr/fillwith/issues +catalogue-contact-repository https://codeberg.org/cfr/fillwith +catalogue-ctan /macros/latex/contrib/fillwith +catalogue-license lppl1.3c +catalogue-topics exercise teaching leaders expl3 +catalogue-version 0.3 + name finbib category Package revision 15878 @@ -118374,7 +120606,7 @@ catalogue-topics tut-latex name firstaid category Package -revision 71628 +revision 72968 catalogue latex-firstaid shortdesc First aid for external LaTeX files and packages that need updating longdesc This package contains some first aid for LaTeX packages or @@ -118383,7 +120615,7 @@ 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. -docfiles size=71 +docfiles size=72 texmf-dist/doc/latex/firstaid/README.md details="Readme" texmf-dist/doc/latex/firstaid/changes.txt texmf-dist/doc/latex/firstaid/latex2e-first-aid-for-external-files.pdf details="Package documentation" @@ -118398,7 +120630,7 @@ 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.1f +catalogue-version 1.1j name fistrum category Package @@ -118916,7 +121148,7 @@ catalogue-version 1a name fixltxhyph category Package -revision 25832 +revision 73227 shortdesc Allow hyphenation of partially-emphasised substrings longdesc The package fixes the problem of TeX failing to hyphenate longdesc letter strings that seem (to TeX) to be words, but which are @@ -118924,7 +121156,7 @@ longdesc followed by an apostrophe and then an emphasis command. The longdesc cause of the problem is not the apostrophe, but the font change longdesc in the middle of the string. The problem arises in Catalan, longdesc French, Italian and Romansh. -docfiles size=98 +docfiles size=106 texmf-dist/doc/latex/fixltxhyph/README details="Readme" texmf-dist/doc/latex/fixltxhyph/fixltxhyph.pdf details="Package documentation" srcfiles size=5 @@ -118932,9 +121164,9 @@ srcfiles size=5 runfiles size=1 texmf-dist/tex/latex/fixltxhyph/fixltxhyph.sty catalogue-ctan /macros/latex/contrib/fixltxhyph -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics catalan french italian -catalogue-version 0.4 +catalogue-version 0.5 name fixmath category Package @@ -119710,7 +121942,7 @@ catalogue-topics graphics-inline name fmtcount category Package -revision 53912 +revision 73812 shortdesc Display the value of a LaTeX counter in a variety of formats longdesc The package provides commands that display the value of a LaTeX longdesc counter in a variety of formats (ordinal, text, hexadecimal, @@ -119721,21 +121953,22 @@ longdesc Swiss variants), German, Italian, Portuguese and Spanish longdesc documents are provided. This package was originally provided as longdesc part of the author's datetime package, but is now distributed longdesc separately. -docfiles size=143 +docfiles size=159 texmf-dist/doc/latex/fmtcount/CHANGES texmf-dist/doc/latex/fmtcount/README details="Package README" texmf-dist/doc/latex/fmtcount/fc-lang.tex texmf-dist/doc/latex/fmtcount/fmtcount.pdf details="Package documentation" -srcfiles size=80 +srcfiles size=83 texmf-dist/source/latex/fmtcount/fmtcount.dtx texmf-dist/source/latex/fmtcount/fmtcount.ins -runfiles size=71 +runfiles size=72 texmf-dist/scripts/fmtcount/fmtcount.perl texmf-dist/tex/latex/fmtcount/fc-UKenglish.def texmf-dist/tex/latex/fmtcount/fc-USenglish.def texmf-dist/tex/latex/fmtcount/fc-american.def texmf-dist/tex/latex/fmtcount/fc-brazilian.def texmf-dist/tex/latex/fmtcount/fc-british.def + texmf-dist/tex/latex/fmtcount/fc-dutch.def texmf-dist/tex/latex/fmtcount/fc-english.def texmf-dist/tex/latex/fmtcount/fc-francais.def texmf-dist/tex/latex/fmtcount/fc-french.def @@ -119751,12 +121984,12 @@ runfiles size=71 texmf-dist/tex/latex/fmtcount/fcnumparser.sty texmf-dist/tex/latex/fmtcount/fcprefix.sty texmf-dist/tex/latex/fmtcount/fmtcount.sty -catalogue-contact-bugs https://github.com/nlct/fmtcount/issues -catalogue-contact-repository https://github.com/nlct/fmtcount +catalogue-contact-bugs https://github.com/Xerdi/fmtcount/issues +catalogue-contact-repository https://github.com/Xerdi/fmtcount catalogue-ctan /macros/latex/contrib/fmtcount catalogue-license lppl1.3 catalogue-topics numbers -catalogue-version 3.07 +catalogue-version 3.10 name fn2end category Package @@ -120763,7 +122996,7 @@ catalogue-topics font-doc name fontools category Package -revision 69241 +revision 73362 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 @@ -120777,17 +123010,17 @@ 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 -docfiles size=54 +docfiles size=58 texmf-dist/doc/man/man1/afm2afm.1 texmf-dist/doc/man/man1/afm2afm.man1.pdf texmf-dist/doc/man/man1/autoinst.1 texmf-dist/doc/man/man1/autoinst.man1.pdf texmf-dist/doc/man/man1/ot2kpx.1 texmf-dist/doc/man/man1/ot2kpx.man1.pdf - texmf-dist/doc/support/fontools/GPLv2.txt - texmf-dist/doc/support/fontools/README details="Bundle readme" + texmf-dist/doc/support/fontools/LICENSE + texmf-dist/doc/support/fontools/README.md details="Bundle readme" texmf-dist/doc/support/fontools/splitttc -runfiles size=78 +runfiles size=79 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 @@ -121569,19 +123802,21 @@ catalogue-version 0.7.3 name fontscale category Package -revision 71281 +revision 73983 shortdesc A flexible interface for setting font sizes longdesc This package provides an interface for selecting (arbitrary) longdesc font sizes and associated values. -docfiles size=42 +docfiles size=67 texmf-dist/doc/latex/fontscale/CHANGELOG.md texmf-dist/doc/latex/fontscale/README.txt details="Readme" texmf-dist/doc/latex/fontscale/beery.cls - texmf-dist/doc/latex/fontscale/fontscale-manual-table-classic.tex - texmf-dist/doc/latex/fontscale/fontscale-manual-table-font-steps.tex - texmf-dist/doc/latex/fontscale/fontscale-manual-table-modular-musical.tex - texmf-dist/doc/latex/fontscale/fontscale-manual.pdf details="Package documentation" - texmf-dist/doc/latex/fontscale/fontscale-manual.tex + texmf-dist/doc/latex/fontscale/fontscale-code.pdf details="Documented code" + texmf-dist/doc/latex/fontscale/fontscale-code.tex + texmf-dist/doc/latex/fontscale/fontscale-table-classic.tex + texmf-dist/doc/latex/fontscale/fontscale-table-font-steps.tex + texmf-dist/doc/latex/fontscale/fontscale-table-musical.tex + texmf-dist/doc/latex/fontscale/fontscale.pdf details="Package documentation" + texmf-dist/doc/latex/fontscale/fontscale.tex runfiles size=12 texmf-dist/tex/latex/fontscale/fontscale.sty catalogue-also fix-cm scrartcl @@ -121589,16 +123824,77 @@ catalogue-contact-repository https://github.com/beeryoliver/fontscale catalogue-ctan /macros/latex/contrib/fontscale catalogue-license lppl1.3c catalogue-topics expl3 font-sel -catalogue-version 1.3.0 +catalogue-version 3.1.2 + +name fontscripts +category Package +revision 73751 +shortdesc Font encodings, metrics and Lua script fragments for font creation +longdesc Font encodings, metrics and Lua script fragments for generating +longdesc font support packages for 8-bit engines with l3build. Optional +longdesc template-based system enables the automatic generation of font +longdesc tables and l3build tests. Easy addition of variable scaling to +longdesc fd files (unsupported by some tools). Primarily designed for +longdesc fontinst, but can be adapted for use with other programmes. +longdesc Default configuration is intended to be cross-platform and +longdesc require only tools included in TeX Live, but the documentation +longdesc includes a simple adaption for integration with FontForge and +longdesc GNU make. +docfiles size=641 + texmf-dist/doc/fonts/fontscripts/README.md details="Readme" + texmf-dist/doc/fonts/fontscripts/fontscripts-code.pdf + texmf-dist/doc/fonts/fontscripts/fontscripts-doc.pdf details="Package documentation" + texmf-dist/doc/fonts/fontscripts/manifest.txt +srcfiles size=195 + texmf-dist/source/fonts/fontscripts/dotoldstyle.etx + texmf-dist/source/fonts/fontscripts/dotsc2.etx + texmf-dist/source/fonts/fontscripts/dotscbuild.mtx + texmf-dist/source/fonts/fontscripts/dotscmisc.mtx + texmf-dist/source/fonts/fontscripts/dottaboldstyle.etx + texmf-dist/source/fonts/fontscripts/fnt-tables.tex + texmf-dist/source/fonts/fontscripts/fnt-test.lvt + texmf-dist/source/fonts/fontscripts/fnt-tests.tex + texmf-dist/source/fonts/fontscripts/fntbuild-build.lua + texmf-dist/source/fonts/fontscripts/fntbuild-check.lua + texmf-dist/source/fonts/fontscripts/fntbuild-ctan.lua + texmf-dist/source/fonts/fontscripts/fntbuild-doc.lua + texmf-dist/source/fonts/fontscripts/fntbuild-utils.lua + texmf-dist/source/fonts/fontscripts/fntbuild-vars.lua + texmf-dist/source/fonts/fontscripts/fntbuild.lua + texmf-dist/source/fonts/fontscripts/fontscripts-code.tex + texmf-dist/source/fonts/fontscripts/fontscripts-doc.tex + texmf-dist/source/fonts/fontscripts/fontscripts.dtx + texmf-dist/source/fonts/fontscripts/fontscripts.ins + texmf-dist/source/fonts/fontscripts/lining.etx + texmf-dist/source/fonts/fontscripts/newlatin-dotsc.mtx + texmf-dist/source/fonts/fontscripts/oldstyle.etx + texmf-dist/source/fonts/fontscripts/t1-cfr.etx + texmf-dist/source/fonts/fontscripts/t1-dotalt-f_f.etx + texmf-dist/source/fonts/fontscripts/t1-dotinf.etx + texmf-dist/source/fonts/fontscripts/t1-dotinferior.etx + texmf-dist/source/fonts/fontscripts/t1-dotsup.etx + texmf-dist/source/fonts/fontscripts/t1-dotsuperior.etx + texmf-dist/source/fonts/fontscripts/t1-f_f.etx + texmf-dist/source/fonts/fontscripts/t1j-f_f.etx + texmf-dist/source/fonts/fontscripts/ts1-dotinf.etx + texmf-dist/source/fonts/fontscripts/ts1-dotsup.etx + texmf-dist/source/fonts/fontscripts/ts1-euro.etx + texmf-dist/source/fonts/fontscripts/ucdotalt.etx + texmf-dist/source/fonts/fontscripts/unfakable.mtx +catalogue-contact-repository https://codeberg.org/cfr/nfssext +catalogue-ctan /fonts/utilities/fontscripts +catalogue-license lppl1.3c +catalogue-topics font-cvt package-devel font-cvt +catalogue-version 0.2 name fontsetup category Package -revision 70134 +revision 72734 shortdesc A front-end to fontspec, for selected fonts with math support 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. -docfiles size=290 +docfiles size=318 texmf-dist/doc/latex/fontsetup/README details="Readme" texmf-dist/doc/latex/fontsetup/fontsetup-doc.pdf details="Package documentation" texmf-dist/doc/latex/fontsetup/fontsetup-doc.tex @@ -121616,13 +123912,16 @@ docfiles size=290 texmf-dist/doc/latex/fontsetup/fspsample-libertinus.pdf texmf-dist/doc/latex/fontsetup/fspsample-newdefault.pdf texmf-dist/doc/latex/fontsetup/fspsample-oldstandard.pdf + texmf-dist/doc/latex/fontsetup/fspsample-sansdefault.pdf texmf-dist/doc/latex/fontsetup/fspsample-stixtwo.pdf texmf-dist/doc/latex/fontsetup/fspsample-talos.pdf texmf-dist/doc/latex/fontsetup/fspsample-times.pdf + texmf-dist/doc/latex/fontsetup/fspsample-withsans.pdf + texmf-dist/doc/latex/fontsetup/fspsample-withsans.tex texmf-dist/doc/latex/fontsetup/fspsample-xcharter.pdf texmf-dist/doc/latex/fontsetup/fspsample.pdf texmf-dist/doc/latex/fontsetup/fspsample.tex -runfiles size=35 +runfiles size=42 texmf-dist/tex/latex/fontsetup/cv04-Book.fontspec texmf-dist/tex/latex/fontsetup/cv04-Regular.fontspec texmf-dist/tex/latex/fontsetup/cv04Mono-Book.fontspec @@ -121643,6 +123942,7 @@ runfiles size=35 texmf-dist/tex/latex/fontsetup/fspkerkisot.tex texmf-dist/tex/latex/fontsetup/fspolddefault.tex texmf-dist/tex/latex/fontsetup/fspoldstandard.tex + texmf-dist/tex/latex/fontsetup/fspsansdefault.tex texmf-dist/tex/latex/fontsetup/fspstixtwoot.tex texmf-dist/tex/latex/fontsetup/fsptalos.tex texmf-dist/tex/latex/fontsetup/fsptimesot.tex @@ -121651,26 +123951,26 @@ catalogue-also fontsetup-nonfree catalogue-ctan /macros/unicodetex/latex/fontsetup catalogue-license gpl3 catalogue-topics font-sel font-supp xetex luatex maths -catalogue-version 2.1.1 +catalogue-version 2.3.0 name fontsize category Package -revision 60161 +revision 73038 shortdesc A small package to set arbitrary sizes for the main font of the document longdesc The package allows you to set arbitrary sizes for the main font longdesc of the document, through the fontsize=<size> option. -docfiles size=96 +docfiles size=94 texmf-dist/doc/latex/fontsize/README details="Readme" texmf-dist/doc/latex/fontsize/fontsize.bib texmf-dist/doc/latex/fontsize/fontsize.pdf details="Package documentation" -srcfiles size=19 +srcfiles size=22 texmf-dist/source/latex/fontsize/fontsize.dtx -runfiles size=10 +runfiles size=12 texmf-dist/tex/latex/fontsize/fontsize.sty catalogue-ctan /macros/latex/contrib/fontsize catalogue-license lppl1.3 catalogue-topics font-supp-misc -catalogue-version 0.8.5 +catalogue-version 0.9 name fontspec category Package @@ -121772,7 +124072,7 @@ catalogue-version 1.6c name fontware category TLCore -revision 70015 +revision 73848 catalogue vfware shortdesc Tools for virtual font metrics longdesc Virtual font metrics are usually created in a textual form, the @@ -121783,7 +124083,7 @@ longdesc takes a VPL file and generates a VF file and a TFM file; - longdesc vftovp takes a VF file and a TFM file and generates a VPL file. longdesc The programs are to be found in every distribution of TeX. depend fontware.ARCH -docfiles size=27 +docfiles size=29 texmf-dist/doc/man/man1/pltotf.1 texmf-dist/doc/man/man1/pltotf.man1.pdf texmf-dist/doc/man/man1/tftopl.1 @@ -121801,7 +124101,7 @@ catalogue-topics font-supp name fontware.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of fontware binfiles arch=aarch64-linux size=99 bin/aarch64-linux/pltotf @@ -121811,7 +124111,7 @@ binfiles arch=aarch64-linux size=99 name fontware.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of fontware binfiles arch=amd64-freebsd size=123 bin/amd64-freebsd/pltotf @@ -121821,7 +124121,7 @@ binfiles arch=amd64-freebsd size=123 name fontware.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of fontware binfiles arch=amd64-netbsd size=114 bin/amd64-netbsd/pltotf @@ -121831,9 +124131,9 @@ binfiles arch=amd64-netbsd size=114 name fontware.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of fontware -binfiles arch=armhf-linux size=78 +binfiles arch=armhf-linux size=70 bin/armhf-linux/pltotf bin/armhf-linux/tftopl bin/armhf-linux/vftovp @@ -121841,7 +124141,7 @@ binfiles arch=armhf-linux size=78 name fontware.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of fontware binfiles arch=i386-freebsd size=123 bin/i386-freebsd/pltotf @@ -121851,9 +124151,9 @@ binfiles arch=i386-freebsd size=123 name fontware.i386-linux category TLCore -revision 70571 +revision 73792 shortdesc i386-linux files of fontware -binfiles arch=i386-linux size=101 +binfiles arch=i386-linux size=109 bin/i386-linux/pltotf bin/i386-linux/tftopl bin/i386-linux/vftovp @@ -121861,7 +124161,7 @@ binfiles arch=i386-linux size=101 name fontware.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of fontware binfiles arch=i386-netbsd size=108 bin/i386-netbsd/pltotf @@ -121871,9 +124171,9 @@ binfiles arch=i386-netbsd size=108 name fontware.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of fontware -binfiles arch=i386-solaris size=99 +binfiles arch=i386-solaris size=100 bin/i386-solaris/pltotf bin/i386-solaris/tftopl bin/i386-solaris/vftovp @@ -121881,7 +124181,7 @@ binfiles arch=i386-solaris size=99 name fontware.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of fontware binfiles arch=universal-darwin size=297 bin/universal-darwin/pltotf @@ -121891,7 +124191,7 @@ binfiles arch=universal-darwin size=297 name fontware.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of fontware binfiles arch=windows size=53 bin/windows/pltotf.exe @@ -121901,9 +124201,9 @@ binfiles arch=windows size=53 name fontware.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of fontware -binfiles arch=x86_64-cygwin size=52 +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 @@ -121911,9 +124211,9 @@ binfiles arch=x86_64-cygwin size=52 name fontware.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of fontware -binfiles arch=x86_64-darwinlegacy size=94 +binfiles arch=x86_64-darwinlegacy size=92 bin/x86_64-darwinlegacy/pltotf bin/x86_64-darwinlegacy/tftopl bin/x86_64-darwinlegacy/vftovp @@ -121921,7 +124221,7 @@ binfiles arch=x86_64-darwinlegacy size=94 name fontware.x86_64-linux category TLCore -revision 70571 +revision 73777 shortdesc x86_64-linux files of fontware binfiles arch=x86_64-linux size=90 bin/x86_64-linux/pltotf @@ -121931,9 +124231,9 @@ binfiles arch=x86_64-linux size=90 name fontware.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of fontware -binfiles arch=x86_64-linuxmusl size=97 +binfiles arch=x86_64-linuxmusl size=101 bin/x86_64-linuxmusl/pltotf bin/x86_64-linuxmusl/tftopl bin/x86_64-linuxmusl/vftovp @@ -121941,9 +124241,9 @@ binfiles arch=x86_64-linuxmusl size=97 name fontware.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of fontware -binfiles arch=x86_64-solaris size=106 +binfiles arch=x86_64-solaris size=108 bin/x86_64-solaris/pltotf bin/x86_64-solaris/tftopl bin/x86_64-solaris/vftovp @@ -121999,7 +124299,7 @@ catalogue-version 2.0.7 name footmisc category Package -revision 70885 +revision 73202 shortdesc A range of footnote options longdesc A collection of ways to change the typesetting of footnotes. longdesc The package provides means of changing the layout of the @@ -122034,7 +124334,7 @@ catalogue-contact-repository https://github.com/frankmittelbach/fmitex-footmisc catalogue-ctan /macros/latex/contrib/footmisc catalogue-license lppl1.3c catalogue-topics footnote -catalogue-version 6.0f +catalogue-version 6.0g name footmisx category Package @@ -122114,7 +124414,7 @@ catalogue-version 1.1e name footnoterange category Package -revision 66149 +revision 73642 shortdesc References to ranges of footnotes longdesc The package provides the environments footnoterange and longdesc footnoterange*. Multiple footnotes inside these environments @@ -122138,7 +124438,7 @@ catalogue-also footmisc catalogue-ctan /macros/latex/contrib/footnoterange catalogue-license lppl1.3c catalogue-topics footnote label-ref -catalogue-version 1.1a +catalogue-version 1.1b name footnpag category Package @@ -122638,7 +124938,7 @@ catalogue-version 2.00 name fourier category Package -revision 61937 +revision 72243 shortdesc Using Utopia fonts in LaTeX documents longdesc Fourier-GUTenberg is a LaTeX typesetting system which uses longdesc Adobe Utopia as its standard base font. Fourier-GUTenberg @@ -122648,16 +124948,16 @@ longdesc and several other symbols. The system is absolutely longdesc stand-alone: apart from Utopia and Fourier, no other typefaces longdesc are required. The fourier fonts will also work with Adobe longdesc Utopia Expert fonts, which are only available for purchase. -longdesc Utopia is a registered trademark of Adobe Systems Incorporated +longdesc Utopia is a registered trademark of Adobe Systems Incorporated. execute addMap fourier-utopia-expert.map execute addMap fourier.map -docfiles size=98 +docfiles size=82 texmf-dist/doc/fonts/fourier/README details="Readme" texmf-dist/doc/fonts/fourier/fourier-doc-en.pdf details="Package documentation" texmf-dist/doc/fonts/fourier/fourier-doc-en.tex texmf-dist/doc/fonts/fourier/fourier-orns-doc.pdf details="The Fourier ornaments" texmf-dist/doc/fonts/fourier/fourier-orns-doc.tex -runfiles size=453 +runfiles size=457 texmf-dist/fonts/afm/public/fourier/fourier-alt-black.afm texmf-dist/fonts/afm/public/fourier/fourier-alt-bold.afm texmf-dist/fonts/afm/public/fourier/fourier-alt-boldita.afm @@ -122922,8 +125222,8 @@ runfiles size=453 catalogue-also utopia catalogue-ctan /fonts/fourier-GUT catalogue-license lppl -catalogue-topics font font-maths font-type1 -catalogue-version 2.3 +catalogue-topics font font-maths font-otf font-type1 font-supp +catalogue-version 2.4 name fouriernc category Package @@ -123274,6 +125574,26 @@ catalogue-license other-free catalogue-topics boxing box-breaking decoration catalogue-version 0.96 +name framedsyntax +category Package +revision 72199 +shortdesc Typeset the syntax of commands and environments within coloured boxes +longdesc When creating new packages or user guides, it is necessary to +longdesc describe their syntax. This package helps by creating coloured +longdesc frames with rounded corners, with a colured background +longdesc containing the coloured syntax text. +docfiles size=114 + texmf-dist/doc/latex/framedsyntax/FramedSyntax.pdf details="Package documentation" + texmf-dist/doc/latex/framedsyntax/README.txt details="Readme" +srcfiles size=9 + texmf-dist/source/latex/framedsyntax/FramedSyntax.dtx +runfiles size=3 + texmf-dist/tex/latex/framedsyntax/FramedSyntax.sty +catalogue-ctan /macros/latex/contrib/framedsyntax +catalogue-license lppl1.3c +catalogue-topics boxing colour verbatim listing +catalogue-version 0.2.8 + name francais-bst category Package revision 69854 @@ -123885,8 +126205,8 @@ catalogue-topics maths name functional category Package -revision 69908 -shortdesc Provide an intuitive functional programming interface for LaTeX2 +revision 73156 +shortdesc An intuitive functional programming interface for LaTeX2 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 @@ -123895,7 +126215,7 @@ 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. -docfiles size=245 +docfiles size=246 texmf-dist/doc/latex/functional/README.txt details="Readme" texmf-dist/doc/latex/functional/functional.pdf details="Package documentation" texmf-dist/doc/latex/functional/functional.tex @@ -123909,7 +126229,7 @@ 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 2024A +catalogue-version 2024C name fundus-calligra category Package @@ -123964,27 +126284,27 @@ catalogue-version 1.2 name fvextra category Package -revision 71282 +revision 73854 shortdesc Extensions and patches for fancyvrb -longdesc fvextra provides several extensions to fancyvrb, including +longdesc This package 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. depend fancyvrb -docfiles size=223 +docfiles size=231 texmf-dist/doc/latex/fvextra/CHANGELOG.md texmf-dist/doc/latex/fvextra/README details="Readme" texmf-dist/doc/latex/fvextra/fvextra.pdf details="Package documentation" -srcfiles size=78 +srcfiles size=86 texmf-dist/source/latex/fvextra/fvextra.dtx texmf-dist/source/latex/fvextra/fvextra.ins -runfiles size=25 +runfiles size=28 texmf-dist/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.7.0 +catalogue-version 1.11.0 name fwlw category Package @@ -124885,6 +127205,27 @@ catalogue-ctan /macros/latex/contrib/gb4e catalogue-license lppl1.2 catalogue-topics linguistic +name gb4e-next +category Package +revision 72692 +shortdesc Linguistic tools +longdesc The package provides gb4e users two relative example reference +longdesc commands. \Next refers to the next example in the document and +longdesc \Prev refers to the previous example. No explicit label command +longdesc is required. +docfiles size=13 + texmf-dist/doc/latex/gb4e-next/README.md details="Readme" + texmf-dist/doc/latex/gb4e-next/gb4e-next.pdf details="Package description" + texmf-dist/doc/latex/gb4e-next/gb4e-next.tex +runfiles size=1 + texmf-dist/tex/latex/gb4e-next/gb4e-next.sty +catalogue-contact-bugs https://github.com/amunn/gb4e-next/issues +catalogue-contact-repository https://github.com/amunn/gb4e-next +catalogue-ctan /macros/latex/contrib/gb4e-next +catalogue-license lppl1.3 +catalogue-topics linguistic +catalogue-version 0.5 + name gbt7714 category Package revision 64633 @@ -125389,14 +127730,20 @@ catalogue-topics font font-body font-proportional font-serif font-otf font-type1 name gelasiomath category Package -revision 71729 +revision 73362 +shortdesc Math and small cap additions to Gelasio fonts +longdesc The package offers math support for the gelasio package, using +longdesc symbols from newtxmath, Roman math letters from Gelasio and +longdesc Greek math letters based on XCharter Greek. Also added small +longdesc caps based on XCharter small caps and other minor features to +longdesc Gelasio. execute addMap GelasioMath.map docfiles size=36 - texmf-dist/doc/fonts/gelasiomath/README - texmf-dist/doc/fonts/gelasiomath/gelasiomath-doc.pdf + texmf-dist/doc/fonts/gelasiomath/README details="Readme" + texmf-dist/doc/fonts/gelasiomath/gelasiomath-doc.pdf details="Font samples" texmf-dist/doc/fonts/gelasiomath/gelasiomath-doc.tex texmf-dist/doc/fonts/gelasiomath/newtx-gel-subs.tex -runfiles size=64 +runfiles size=62 texmf-dist/fonts/map/dvips/gelasiomath/GelasioMath.map texmf-dist/fonts/tfm/public/gelasiomath/Gelasio-Bold-tlf-ot1G.tfm texmf-dist/fonts/tfm/public/gelasiomath/Gelasio-BoldItalic-tlf-ot1G.tfm @@ -125427,7 +127774,10 @@ runfiles size=64 texmf-dist/tex/latex/gelasiomath/omlzgelmi.fd texmf-dist/tex/latex/gelasiomath/ot1mingelasio.fd texmf-dist/tex/latex/gelasiomath/t1mingelasio.fd - texmf-dist/tex/latex/gelasiomath/untxmia.fd +catalogue-ctan /fonts/gelasiomath +catalogue-license ofl lppl1.3 +catalogue-topics font font-maths +catalogue-version 1.01 name gender category Package @@ -125492,19 +127842,19 @@ catalogue-topics genealogy font font-symbol font-specialist font-mf name genealogy-profiles category Package -revision 69580 +revision 73043 shortdesc Genealogical profiles for LaTeX longdesc This package enables the presenstation of individual profiles, longdesc which may be useful for genealogical or local history longdesc treatises. Each profile is typeset using key/value-configurable longdesc environments, and a number of macros are provided to enable longdesc references and name formatting. -docfiles size=40 +docfiles size=51 texmf-dist/doc/latex/genealogy-profiles/README.md details="Readme" texmf-dist/doc/latex/genealogy-profiles/genealogy-profiles.pdf details="Package documentation" texmf-dist/doc/latex/genealogy-profiles/genealogy-profiles.preamble.sty texmf-dist/doc/latex/genealogy-profiles/genealogy-profiles.tex -runfiles size=6 +runfiles size=8 texmf-dist/tex/latex/genealogy-profiles/genealogy-profiles.sty catalogue-contact-bugs https://github.com/mikkelee/latex-genprofile/issues catalogue-contact-repository https://github.com/mikkelee/latex-genprofile @@ -125617,430 +127967,139 @@ catalogue-license lppl1.3 catalogue-topics maths text-symbol catalogue-version 1.0.2 -name gentium-tug -category Package -revision 63470 -shortdesc Gentium fonts (in two formats) and support files -longdesc Gentium is a typeface family designed to enable the diverse -longdesc ethnic groups around the world who use the Latin, Cyrillic and -longdesc Greek scripts to produce readable, high-quality publications. -longdesc It supports a wide range of Latin- and Cyrillic-based -longdesc alphabets. The package consists of: The original (unaltered) -longdesc GentiumPlus, GentiumBook, and other Gentium-family fonts in -longdesc TrueType format, as developed by SIL and released under the OFL -longdesc (see OFL.txt and OFL-FAQ.txt); Converted fonts in PostScript -longdesc Type 1 format, released under the same terms. These incorporate -longdesc the name "Gentium" by permission of SIL given to the TeX Users -longdesc Group; LaTeX and other supporting files; TeX-related -longdesc documentation, and the SIL documentation and other files. -execute addMap gentium-type1.map -docfiles size=636 - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/FONTLOG.txt - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/OFL-FAQ.txt - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/OFL.txt - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/README.txt - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/DOCUMENTATION.txt - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/about.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/theme.css - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/themepdf.css - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/webfonts.css - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/webfontsttf.css - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/images/Gentium_design_balance.png - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/charset.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/design.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/developer.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/faq.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/features.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/history.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/index.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/about.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/charset.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/design.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/developer.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/faq.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/features.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/history.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/index.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/resources.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/support.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/versions.pdf - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/resources.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/about.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/announcement.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/charset.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/design.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/developer.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/faq.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/features.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/history.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/index.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/makepsmd.py - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pandocfilters/filter-html.lua - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pandocfilters/filter-pdf.lua - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/about.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/charset.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/design.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/developer.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/faq.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/features.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/history.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/index.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/resources.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/support.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/versions.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/about.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/charset.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/design.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/developer.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/faq.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/features.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/history.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/resources.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/support.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/resources.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/support.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/template.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/templatepdf.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/versions.md - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/support.html - texmf-dist/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/versions.html - texmf-dist/doc/fonts/gentium-tug/README details="Readme" - texmf-dist/doc/fonts/gentium-tug/gentium-tug/ChangeLog - texmf-dist/doc/fonts/gentium-tug/gentium-tug/FONTLOG.txt - texmf-dist/doc/fonts/gentium-tug/gentium-tug/Makefile - texmf-dist/doc/fonts/gentium-tug/gentium-tug/README details="Readme" - texmf-dist/doc/fonts/gentium-tug/gentium-tug/gentium.pdf details="Package documentation" - texmf-dist/doc/fonts/gentium-tug/gentium-tug/gentium.tex -srcfiles size=47 - texmf-dist/source/fonts/gentium-tug/ChangeLog - texmf-dist/source/fonts/gentium-tug/Makefile - texmf-dist/source/fonts/gentium-tug/generate-support-files.rb - texmf-dist/source/fonts/gentium-tug/gentium.rb - texmf-dist/source/fonts/gentium-tug/lig/README - texmf-dist/source/fonts/gentium-tug/lig/gentium-agr.lig - texmf-dist/source/fonts/gentium-tug/lig/gentium-lgr.lig - texmf-dist/source/fonts/gentium-tug/lig/gentium-t2a.lig - texmf-dist/source/fonts/gentium-tug/lig/gentium-t2b.lig - texmf-dist/source/fonts/gentium-tug/lig/gentium-t2c.lig - texmf-dist/source/fonts/gentium-tug/lig/gentium-x2.lig - texmf-dist/source/fonts/gentium-tug/make-zip-4CTAN.sh - texmf-dist/source/fonts/gentium-tug/type1/GentiumBookPlus-Bold-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/GentiumBookPlus-BoldItalic-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/GentiumBookPlus-Italic-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/GentiumBookPlus-Regular-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/GentiumPlus-Bold-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/GentiumPlus-BoldItalic-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/GentiumPlus-Italic-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/GentiumPlus-Regular-Czech.kern - texmf-dist/source/fonts/gentium-tug/type1/Makefile - texmf-dist/source/fonts/gentium-tug/type1/README - texmf-dist/source/fonts/gentium-tug/type1/afmcreator.py - texmf-dist/source/fonts/gentium-tug/type1/ff-gentium.pe - texmf-dist/source/fonts/gentium-tug/type1/generate-extra-kerns.sh - texmf-dist/source/fonts/gentium-tug/type1/greekcorrection.py - texmf-dist/source/fonts/gentium-tug/type1/kern-test-greek.txt - texmf-dist/source/fonts/gentium-tug/type1/kern-word-list-caron.txt - texmf-dist/source/fonts/gentium-tug/type1/kern-word-list-cyrillic.txt - texmf-dist/source/fonts/gentium-tug/type1/kerncorrection.py -runfiles size=4396 - texmf-dist/fonts/afm/public/gentium-tug/GentiumBookPlus-Bold.afm - texmf-dist/fonts/afm/public/gentium-tug/GentiumBookPlus-BoldItalic.afm - texmf-dist/fonts/afm/public/gentium-tug/GentiumBookPlus-Italic.afm - texmf-dist/fonts/afm/public/gentium-tug/GentiumBookPlus-Regular.afm - texmf-dist/fonts/afm/public/gentium-tug/GentiumPlus-Bold.afm - texmf-dist/fonts/afm/public/gentium-tug/GentiumPlus-BoldItalic.afm - texmf-dist/fonts/afm/public/gentium-tug/GentiumPlus-Italic.afm - texmf-dist/fonts/afm/public/gentium-tug/GentiumPlus-Regular.afm - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-agr.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec-ttf-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec-ttf.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-l7x-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-l7x.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-lgr.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ot1-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ot1.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-qx-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-qx.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2a-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2a.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2b-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2b.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2c-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2c.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t5-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t5-ttf.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t5.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-texnansi-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-texnansi.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ts1.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-x2-sc.enc - texmf-dist/fonts/enc/dvips/gentium-tug/gentium-x2.enc - texmf-dist/fonts/map/dvips/gentium-tug/gentium-type1.map - texmf-dist/fonts/map/dvips/gentium-tug/gentiumbook-type1.map - texmf-dist/fonts/map/dvips/gentium-tug/gentiumplus-type1.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentium-truetype.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-agr.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-ec.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-l7x.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-lgr.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-ot1.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-qx.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-t2a.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-t2b.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-t2c.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-t5.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-texnansi.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-truetype.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-ts1.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumbook-x2.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-agr.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-ec.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-l7x.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-lgr.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-ot1.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-qx.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-t2a.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-t2b.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-t2c.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-t5.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-texnansi.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-truetype.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-ts1.map - texmf-dist/fonts/map/pdftex/gentium-tug/gentiumplus-x2.map - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumplus-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumbook-regular.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-bold-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-bold.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-bolditalic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-bolditalic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular-sc.tfm - texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular.tfm - texmf-dist/fonts/truetype/public/gentium-tug/GentiumBookPlus-Bold.ttf - texmf-dist/fonts/truetype/public/gentium-tug/GentiumBookPlus-BoldItalic.ttf - texmf-dist/fonts/truetype/public/gentium-tug/GentiumBookPlus-Italic.ttf - texmf-dist/fonts/truetype/public/gentium-tug/GentiumBookPlus-Regular.ttf - texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlus-Bold.ttf - texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlus-BoldItalic.ttf - texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlus-Italic.ttf - texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlus-Regular.ttf - texmf-dist/fonts/type1/public/gentium-tug/GentiumBookPlus-Bold.pfb - texmf-dist/fonts/type1/public/gentium-tug/GentiumBookPlus-BoldItalic.pfb - texmf-dist/fonts/type1/public/gentium-tug/GentiumBookPlus-Italic.pfb - texmf-dist/fonts/type1/public/gentium-tug/GentiumBookPlus-Regular.pfb - texmf-dist/fonts/type1/public/gentium-tug/GentiumPlus-Bold.pfb - texmf-dist/fonts/type1/public/gentium-tug/GentiumPlus-BoldItalic.pfb - texmf-dist/fonts/type1/public/gentium-tug/GentiumPlus-Italic.pfb - texmf-dist/fonts/type1/public/gentium-tug/GentiumPlus-Regular.pfb - texmf-dist/tex/latex/gentium-tug/gentium.sty - texmf-dist/tex/latex/gentium-tug/gentiumbook.sty - texmf-dist/tex/latex/gentium-tug/l7xgentium.fd - texmf-dist/tex/latex/gentium-tug/l7xgentiumbook.fd - texmf-dist/tex/latex/gentium-tug/lgrgentium.fd - texmf-dist/tex/latex/gentium-tug/lgrgentiumbook.fd - texmf-dist/tex/latex/gentium-tug/ly1gentium.fd - texmf-dist/tex/latex/gentium-tug/ly1gentiumbook.fd - texmf-dist/tex/latex/gentium-tug/ot1gentium.fd - texmf-dist/tex/latex/gentium-tug/ot1gentiumbook.fd - texmf-dist/tex/latex/gentium-tug/qxgentium.fd - texmf-dist/tex/latex/gentium-tug/qxgentiumbook.fd - texmf-dist/tex/latex/gentium-tug/t1gentium.fd - texmf-dist/tex/latex/gentium-tug/t1gentiumbook.fd - texmf-dist/tex/latex/gentium-tug/t2agentium.fd - texmf-dist/tex/latex/gentium-tug/t2agentiumbook.fd - texmf-dist/tex/latex/gentium-tug/t2bgentium.fd - texmf-dist/tex/latex/gentium-tug/t2bgentiumbook.fd - texmf-dist/tex/latex/gentium-tug/t2cgentium.fd - texmf-dist/tex/latex/gentium-tug/t2cgentiumbook.fd - texmf-dist/tex/latex/gentium-tug/t5gentium.fd - texmf-dist/tex/latex/gentium-tug/t5gentiumbook.fd - texmf-dist/tex/latex/gentium-tug/ts1gentium.fd - texmf-dist/tex/latex/gentium-tug/ts1gentiumbook.fd - texmf-dist/tex/latex/gentium-tug/x2gentium.fd - texmf-dist/tex/latex/gentium-tug/x2gentiumbook.fd +name gentium-otf +category Package +revision 73366 +shortdesc Support for the TrueType font GentiumPlus +longdesc This package supports the free fonts GentiumPlus and +longdesc GentiumBookPlus as TrueType (see package gentium-sil) and +longdesc defines missing typefaces. All font features are available by +longdesc special macros. +docfiles size=336 + texmf-dist/doc/fonts/gentium-otf/Changes + texmf-dist/doc/fonts/gentium-otf/README.md details="Readme" + texmf-dist/doc/fonts/gentium-otf/gentium-otf-doc.pdf details="Package documentation" + texmf-dist/doc/fonts/gentium-otf/gentium-otf-doc.tex +runfiles size=2 + texmf-dist/tex/latex/gentium-otf/gentium-otf.sty +catalogue-ctan /fonts/gentium-otf +catalogue-license lppl1.3 +catalogue-topics font font-body font-multilingual font-greek font-cyrillic font-serif font-proportional font-ttf font-supp +catalogue-version 0.01 + +name gentium-sil +category Package +revision 73571 +shortdesc A complete Greek font with Latin and Cyrillic, too +longdesc This is a redistribution of the original Gentium release from +longdesc SIL, not altered in any way. Gentium is a typeface family +longdesc designed to enable the diverse ethnic groups around the world +longdesc who use the Latin, Cyrillic and Greek scripts to produce +longdesc readable, high-quality publications. The Gentium family +longdesc includes a complete Greek font, supporting both monotonic and +longdesc polytonic forms. While some Greek characters do closely +longdesc resemble Latin ones, it is a separate design that embraces the +longdesc robust, distinctive character of the Greek script, but does so +longdesc within the design context of the whole typeface. As a result, +longdesc the two scripts can be successfully mixed in a paragraph or +longdesc page of text. +docfiles size=1879 + texmf-dist/doc/fonts/gentium-sil/FONTLOG.txt + texmf-dist/doc/fonts/gentium-sil/OFL-FAQ.txt + texmf-dist/doc/fonts/gentium-sil/OFL.txt + texmf-dist/doc/fonts/gentium-sil/README.txt details="Readme" + texmf-dist/doc/fonts/gentium-sil/documentation/DOCUMENTATION.txt + texmf-dist/doc/fonts/gentium-sil/documentation/about.html + texmf-dist/doc/fonts/gentium-sil/documentation/assets/css/theme.css + texmf-dist/doc/fonts/gentium-sil/documentation/assets/css/themepdf.css + texmf-dist/doc/fonts/gentium-sil/documentation/assets/css/webfonts.css + texmf-dist/doc/fonts/gentium-sil/documentation/assets/css/webfontsttf.css + texmf-dist/doc/fonts/gentium-sil/documentation/assets/images/Gentium_design_balance.png + texmf-dist/doc/fonts/gentium-sil/documentation/charset.html + texmf-dist/doc/fonts/gentium-sil/documentation/design.html + texmf-dist/doc/fonts/gentium-sil/documentation/developer.html + texmf-dist/doc/fonts/gentium-sil/documentation/faq.html + texmf-dist/doc/fonts/gentium-sil/documentation/features.html + texmf-dist/doc/fonts/gentium-sil/documentation/history.html + texmf-dist/doc/fonts/gentium-sil/documentation/index.html details="Package documentation" + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/about.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/charset.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/design.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/developer.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/faq.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/features.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/history.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/index.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/resources.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/support.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/pdf/versions.pdf + texmf-dist/doc/fonts/gentium-sil/documentation/resources.html + texmf-dist/doc/fonts/gentium-sil/documentation/source/about.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/announcement.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/charset.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/design.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/developer.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/faq.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/features.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/history.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/index.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/makepsmd.py + texmf-dist/doc/fonts/gentium-sil/documentation/source/pandocfilters/filter-html.lua + texmf-dist/doc/fonts/gentium-sil/documentation/source/pandocfilters/filter-pdf.lua + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/about.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/charset.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/design.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/developer.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/faq.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/features.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/history.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/resources.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/productsite/support.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/resources.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/support.md + texmf-dist/doc/fonts/gentium-sil/documentation/source/template.html + texmf-dist/doc/fonts/gentium-sil/documentation/source/templatepdf.html + texmf-dist/doc/fonts/gentium-sil/documentation/source/versions.md + texmf-dist/doc/fonts/gentium-sil/documentation/support.html + texmf-dist/doc/fonts/gentium-sil/documentation/versions.html + texmf-dist/doc/fonts/gentium-sil/fontmanifest.json + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-Bold.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-Bold.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-BoldItalic.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-BoldItalic.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-Italic.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-Italic.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-Regular.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumBookPlus-Regular.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-Bold.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-Bold.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-BoldItalic.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-BoldItalic.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-Italic.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-Italic.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-Regular.woff + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-Regular.woff2 + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-webfont-example.css + texmf-dist/doc/fonts/gentium-sil/web/GentiumPlus-webfont-example.html +runfiles size=1797 + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumBookPlus-Bold.ttf + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumBookPlus-BoldItalic.ttf + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumBookPlus-Italic.ttf + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumBookPlus-Regular.ttf + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumPlus-Bold.ttf + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumPlus-BoldItalic.ttf + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumPlus-Italic.ttf + texmf-dist/fonts/truetype/SIL/gentium-sil/GentiumPlus-Regular.ttf 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.102 +catalogue-also gentium-otf +catalogue-contact-bugs https://lists.tug.org/gentium +catalogue-contact-home https://software.sil.org/gentium/ +catalogue-contact-repository https://github.com/silnrsi/font-gentium +catalogue-contact-support https://software.sil.org/gentium/support/ +catalogue-ctan /fonts/gentium-sil +catalogue-license ofl +catalogue-topics font font-body font-multilingual font-greek font-cyrillic font-serif font-proportional font-ttf font-supp +catalogue-version 6.200 name gentle category Package @@ -128232,7 +130291,7 @@ catalogue-version 1.0 name gitinfo-lua category Package -revision 70931 +revision 72284 shortdesc Display git project information in your LaTeX projects longdesc This project aims to display git project information in PDF longdesc documents. It is mostly written in Lua for executing the git @@ -128242,7 +130301,7 @@ longdesc for you, you could try gitinfo2 instead. For LaTeX, a set of longdesc standard macros is provided for displaying basic information or longdesc setting the project directory, and a set of advanced macros for longdesc formatting commits and tags. -docfiles size=39 +docfiles size=40 texmf-dist/doc/lualatex/gitinfo-lua/README.md details="Readme" texmf-dist/doc/lualatex/gitinfo-lua/git-scenario.sh texmf-dist/doc/lualatex/gitinfo-lua/gitinfo-lua-init.lua @@ -128259,7 +130318,7 @@ catalogue-contact-repository https://github.com/Xerdi/gitinfo-lua catalogue-ctan /macros/luatex/latex/gitinfo-lua catalogue-license lppl1.3c catalogue-topics version-control doc-mgmt luatex -catalogue-version 1.1.0 +catalogue-version 1.2.0 name gitinfo2 category Package @@ -128458,7 +130517,7 @@ catalogue-version 0.1 name glossaries category Package -revision 70866 +revision 72820 shortdesc Create glossaries and lists of acronyms longdesc The glossaries package supports acronyms and multiple longdesc glossaries, and has provision for operation in several @@ -128485,7 +130544,7 @@ depend mfirstuc depend tracklang depend xfor depend xkeyval -docfiles size=4784 +docfiles size=4949 texmf-dist/doc/latex/glossaries/CHANGES texmf-dist/doc/latex/glossaries/DEPENDS.txt texmf-dist/doc/latex/glossaries/INSTALL @@ -128515,21 +130574,27 @@ docfiles size=4784 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-example009.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example009.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example009.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example010.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example010.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example010.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-examples/glossaries-user-example026.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example026.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example026.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example027.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example027.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example027.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example032.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example032.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example032.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 @@ -128644,11 +130709,11 @@ docfiles size=4784 texmf-dist/doc/man/man1/makeglossaries-lite.man1.pdf texmf-dist/doc/man/man1/makeglossaries.1 texmf-dist/doc/man/man1/makeglossaries.man1.pdf -srcfiles size=516 +srcfiles size=576 texmf-dist/source/latex/glossaries/glossaries.dtx texmf-dist/source/latex/glossaries/glossaries.ins texmf-dist/source/latex/glossaries/makeglossaries-lite.pod -runfiles size=481 +runfiles size=541 texmf-dist/scripts/glossaries/glossaries.l2h texmf-dist/scripts/glossaries/makeglossaries texmf-dist/scripts/glossaries/makeglossaries-lite.lua @@ -128662,6 +130727,7 @@ runfiles size=481 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-2022-11-03.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-2024-04-03.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 @@ -128726,7 +130792,7 @@ catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=gl catalogue-ctan /macros/latex/contrib/glossaries catalogue-license lppl1.3 catalogue-topics glossary acronym -catalogue-version 4.54 +catalogue-version 4.55 name glossaries-danish category Package @@ -128813,7 +130879,7 @@ catalogue-version 1.0 name glossaries-extra category Package -revision 68409 +revision 73782 shortdesc An extension to the glossaries package longdesc This package provides improvements and extra features to the longdesc glossaries package. Some of the default glossaries.sty @@ -128821,7 +130887,8 @@ 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. -docfiles size=9238 +depend glossaries +docfiles size=9790 texmf-dist/doc/latex/glossaries-extra/CHANGES texmf-dist/doc/latex/glossaries-extra/DEPENDS.txt texmf-dist/doc/latex/glossaries-extra/README details="Readme" @@ -129108,8 +131175,11 @@ docfiles size=9238 texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example094.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example094.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example094.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095-page2.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095-page3.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095-page4.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095.pdf - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095.tex texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example096.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example096.png @@ -129162,26 +131232,20 @@ docfiles size=9238 texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example112.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example112.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example112.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example113-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example113.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example113.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example113.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example114-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example114.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example114.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example114.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-0.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-1.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-2.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-3.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-page1.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-page2.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-page3.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-page4.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116-page2.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116-page3.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116-page4.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116.pdf - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116.tex texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example117.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example117.png @@ -129195,22 +131259,18 @@ docfiles size=9238 texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example120.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example120.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example120.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example121-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example121.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example121.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example121.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example122-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example122.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example122.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example122.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123-0.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123-1.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123-page1.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123-page2.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124-page2.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124.pdf - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124.tex texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example125.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example125.png @@ -129290,45 +131350,66 @@ docfiles size=9238 texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example150.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example150.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example150.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151-0.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151-1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151.pdf - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151.tex texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example152.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example152.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example152.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example153-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example153.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example153.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example153.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example154-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example154.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example154.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example154.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-0.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-1.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-2.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-page2.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-page3.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155.tex - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-0.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-1.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-2.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-page1.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-page2.png - texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-page3.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157-page2.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157-page3.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158-page2.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158-page3.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159-page2.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159-page3.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159.pdf texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159.png texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example160-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example160-page2.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example160-page3.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example160.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example160.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example160.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example161-page1.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example161-page2.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example161-page3.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example161.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example161.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example161.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example162.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example162.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example162.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example163.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example163.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example163.tex + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example164.pdf + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example164.png + texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example164.tex texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual.html details="User manual (HTML)" texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual.pdf details="User manual (PDF)" texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual.tex @@ -129432,10 +131513,10 @@ docfiles size=9238 texmf-dist/doc/latex/glossaries-extra/samples/sample-unitentrycount.tex texmf-dist/doc/latex/glossaries-extra/samples/sample.pdf texmf-dist/doc/latex/glossaries-extra/samples/sample.tex -srcfiles size=581 +srcfiles size=587 texmf-dist/source/latex/glossaries-extra/glossaries-extra.dtx texmf-dist/source/latex/glossaries-extra/glossaries-extra.ins -runfiles size=417 +runfiles size=420 texmf-dist/bibtex/bib/glossaries-extra/example-glossaries-acronym-desc.bib texmf-dist/bibtex/bib/glossaries-extra/example-glossaries-acronym.bib texmf-dist/bibtex/bib/glossaries-extra/example-glossaries-acronyms-lang.bib @@ -129474,7 +131555,7 @@ catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=gl catalogue-ctan /macros/latex/contrib/glossaries-extra catalogue-license lppl1.3 catalogue-topics glossary acronym -catalogue-version 1.53 +catalogue-version 1.56 name glossaries-finnish category Package @@ -131059,7 +133140,7 @@ catalogue-version 1.1 name graphics category Package -revision 71408 +revision 72739 catalogue latex-graphics shortdesc The LaTeX standard graphics bundle longdesc This is a collection of LaTeX packages for: producing colour @@ -131376,6 +133457,24 @@ catalogue-license lppl1.3 catalogue-topics graphics-inline catalogue-version 0.94 +name gratzer-color-scheme +category Package +revision 73199 +shortdesc Colors definitions, theorems, corollaries, lemmas, and propositions +longdesc This LaTeX package introduces the "Gratzer Color Scheme" for +longdesc math publications, which colors theorems and corollaries red, +longdesc lemmas and propositions blue, definitions green. +docfiles size=22 + texmf-dist/doc/latex/gratzer-color-scheme/README.txt details="Readme" + texmf-dist/doc/latex/gratzer-color-scheme/example.pdf details="Example of use" + texmf-dist/doc/latex/gratzer-color-scheme/example.tex +runfiles size=1 + texmf-dist/tex/latex/gratzer-color-scheme/Gratzer-Color-Scheme.sty +catalogue-ctan /macros/latex/contrib/gratzer-color-scheme +catalogue-license lppl1.3c +catalogue-topics colour maths +catalogue-version 1.0 + name grayhints category Package revision 49052 @@ -131585,7 +133684,7 @@ catalogue-topics font font-mf font-specialist name gregoriotex category Package -revision 58331 +revision 74101 shortdesc Engraving Gregorian Chant scores longdesc Gregorio is a software application for engraving Gregorian longdesc Chant scores on a computer. Gregorio's main job is to convert a @@ -131593,7 +133692,7 @@ longdesc gabc file (simple text representation of a score) into a longdesc GregorioTeX file, which makes TeX able to create a PDF of your longdesc score. depend gregoriotex.ARCH -docfiles size=516 +docfiles size=541 texmf-dist/doc/luatex/gregoriotex/Appendix_Font_Tables.tex texmf-dist/doc/luatex/gregoriotex/CHANGELOG.md texmf-dist/doc/luatex/gregoriotex/CONTRIBUTING.md @@ -131623,9 +133722,9 @@ docfiles size=516 texmf-dist/doc/luatex/gregoriotex/pitches4.gabc texmf-dist/doc/luatex/gregoriotex/pitches5.gabc texmf-dist/doc/luatex/gregoriotex/veni.gabc -srcfiles size=5860 - texmf-dist/source/luatex/gregoriotex/gregorio-6.0.0.zip -runfiles size=10656 +srcfiles size=6131 + texmf-dist/source/luatex/gregoriotex/gregorio-6.1.0-beta2.zip +runfiles size=11309 texmf-dist/fonts/source/gregoriotex/convertsfdtottf.py texmf-dist/fonts/source/gregoriotex/fonts_README.md texmf-dist/fonts/source/gregoriotex/greciliae-base.sfd @@ -131669,111 +133768,111 @@ catalogue-contact-support http://gregorio-project.github.io/contact.html catalogue-ctan /support/gregoriotex catalogue-license gpl3 catalogue-topics music chords -catalogue-version 6.0.0 +catalogue-version 6.1.0-beta2 name gregoriotex.aarch64-linux category Package -revision 70276 +revision 74078 shortdesc aarch64-linux files of gregoriotex -binfiles arch=aarch64-linux size=185 +binfiles arch=aarch64-linux size=189 bin/aarch64-linux/gregorio name gregoriotex.amd64-freebsd category Package -revision 71441 +revision 74051 shortdesc amd64-freebsd files of gregoriotex -binfiles arch=amd64-freebsd size=194 +binfiles arch=amd64-freebsd size=199 bin/amd64-freebsd/gregorio name gregoriotex.amd64-netbsd category Package -revision 71441 +revision 74100 shortdesc amd64-netbsd files of gregoriotex -binfiles arch=amd64-netbsd size=194 +binfiles arch=amd64-netbsd size=199 bin/amd64-netbsd/gregorio name gregoriotex.armhf-linux category Package -revision 70489 +revision 74078 shortdesc armhf-linux files of gregoriotex -binfiles arch=armhf-linux size=174 +binfiles arch=armhf-linux size=166 bin/armhf-linux/gregorio name gregoriotex.i386-freebsd category Package -revision 71441 +revision 74051 shortdesc i386-freebsd files of gregoriotex -binfiles arch=i386-freebsd size=194 +binfiles arch=i386-freebsd size=199 bin/i386-freebsd/gregorio name gregoriotex.i386-linux category Package -revision 70276 +revision 74051 shortdesc i386-linux files of gregoriotex -binfiles arch=i386-linux size=192 +binfiles arch=i386-linux size=203 bin/i386-linux/gregorio name gregoriotex.i386-netbsd category Package -revision 71441 +revision 74100 shortdesc i386-netbsd files of gregoriotex -binfiles arch=i386-netbsd size=187 +binfiles arch=i386-netbsd size=193 bin/i386-netbsd/gregorio name gregoriotex.i386-solaris category Package -revision 71441 +revision 74051 shortdesc i386-solaris files of gregoriotex -binfiles arch=i386-solaris size=183 +binfiles arch=i386-solaris size=188 bin/i386-solaris/gregorio name gregoriotex.universal-darwin category Package -revision 70274 +revision 74077 shortdesc universal-darwin files of gregoriotex -binfiles arch=universal-darwin size=382 +binfiles arch=universal-darwin size=398 bin/universal-darwin/gregorio name gregoriotex.windows category Package -revision 70269 +revision 74050 shortdesc windows files of gregoriotex -binfiles arch=windows size=306 +binfiles arch=windows size=311 bin/windows/gregorio.exe name gregoriotex.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of gregoriotex -binfiles arch=x86_64-cygwin size=167 +binfiles arch=x86_64-cygwin size=171 bin/x86_64-cygwin/gregorio.exe name gregoriotex.x86_64-darwinlegacy category Package -revision 71441 +revision 74077 shortdesc x86_64-darwinlegacy files of gregoriotex -binfiles arch=x86_64-darwinlegacy size=178 +binfiles arch=x86_64-darwinlegacy size=181 bin/x86_64-darwinlegacy/gregorio name gregoriotex.x86_64-linux category Package -revision 70276 +revision 74051 shortdesc x86_64-linux files of gregoriotex -binfiles arch=x86_64-linux size=186 +binfiles arch=x86_64-linux size=190 bin/x86_64-linux/gregorio name gregoriotex.x86_64-linuxmusl category Package -revision 71441 +revision 74051 shortdesc x86_64-linuxmusl files of gregoriotex -binfiles arch=x86_64-linuxmusl size=188 +binfiles arch=x86_64-linuxmusl size=193 bin/x86_64-linuxmusl/gregorio name gregoriotex.x86_64-solaris category Package -revision 71441 +revision 74051 shortdesc x86_64-solaris files of gregoriotex -binfiles arch=x86_64-solaris size=195 +binfiles arch=x86_64-solaris size=201 bin/x86_64-solaris/gregorio name grfext @@ -131939,7 +134038,7 @@ catalogue-version 1.0.2 name gridset category Package -revision 53762 +revision 72056 shortdesc Grid, a.k.a. in-register, setting longdesc Grid setting -- also known as strict in-register setting -- is longdesc something, that should be done for a lot of documents but is @@ -131950,20 +134049,22 @@ longdesc the next grid position. This may be enough under some longdesc circumstances, but in other circumstances it may fail. Thus longdesc gridset is only one more step for grid setting, not a complete longdesc solution. -docfiles size=57 +docfiles size=63 texmf-dist/doc/latex/gridset/LICENSE.md texmf-dist/doc/latex/gridset/README.md details="Readme" texmf-dist/doc/latex/gridset/gridset.pdf details="Package documentation" -srcfiles size=6 + texmf-dist/doc/latex/gridset/gridsetexample.tex +srcfiles size=7 texmf-dist/source/latex/gridset/gridset.dtx + texmf-dist/source/latex/gridset/gridset.ins runfiles size=2 texmf-dist/tex/latex/gridset/gridset.sty -catalogue-contact-home https://komascript.de/gridset +catalogue-contact-home https://github.com/komascript/gridset catalogue-contact-repository https://github.com/komascript/gridset.git catalogue-ctan /macros/latex/contrib/gridset catalogue-license lppl1.3c catalogue-topics typeset-grid -catalogue-version 0.3 +catalogue-version 0.4 name gridslides category Package @@ -132138,107 +134239,107 @@ catalogue-version 1.19.2 name gsftopk.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of gsftopk binfiles arch=aarch64-linux size=25 bin/aarch64-linux/gsftopk name gsftopk.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of gsftopk binfiles arch=amd64-freebsd size=30 bin/amd64-freebsd/gsftopk name gsftopk.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of gsftopk binfiles arch=amd64-netbsd size=29 bin/amd64-netbsd/gsftopk name gsftopk.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of gsftopk -binfiles arch=armhf-linux size=20 +binfiles arch=armhf-linux size=17 bin/armhf-linux/gsftopk name gsftopk.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of gsftopk binfiles arch=i386-freebsd size=30 bin/i386-freebsd/gsftopk name gsftopk.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of gsftopk -binfiles arch=i386-linux size=27 +binfiles arch=i386-linux size=30 bin/i386-linux/gsftopk name gsftopk.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of gsftopk binfiles arch=i386-netbsd size=27 bin/i386-netbsd/gsftopk name gsftopk.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of gsftopk -binfiles arch=i386-solaris size=23 +binfiles arch=i386-solaris size=24 bin/i386-solaris/gsftopk name gsftopk.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of gsftopk binfiles arch=universal-darwin size=71 bin/universal-darwin/gsftopk name gsftopk.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of gsftopk binfiles arch=windows size=7 bin/windows/gsftopk.exe name gsftopk.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of gsftopk binfiles arch=x86_64-cygwin size=7 bin/x86_64-cygwin/gsftopk.exe name gsftopk.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of gsftopk binfiles arch=x86_64-darwinlegacy size=24 bin/x86_64-darwinlegacy/gsftopk name gsftopk.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of gsftopk binfiles arch=x86_64-linux size=25 bin/x86_64-linux/gsftopk name gsftopk.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of gsftopk -binfiles arch=x86_64-linuxmusl size=25 +binfiles arch=x86_64-linuxmusl size=26 bin/x86_64-linuxmusl/gsftopk name gsftopk.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of gsftopk -binfiles arch=x86_64-solaris size=27 +binfiles arch=x86_64-solaris size=28 bin/x86_64-solaris/gsftopk name gtl @@ -133313,19 +135414,19 @@ catalogue-version 0.2 name harmony category Package -revision 15878 +revision 72045 shortdesc Typeset harmony symbols, etc., for musicology longdesc The package harmony.sty uses the packages ifthen and amssymb longdesc from the amsfonts bundle, together with the LaTeX font longdesc lcirclew10 and the font musix13 from musixtex. -docfiles size=40 +docfiles size=47 texmf-dist/doc/latex/harmony/README details="Readme" texmf-dist/doc/latex/harmony/harmony.pdf details="Package documentation (by example)" texmf-dist/doc/latex/harmony/harmony.tex -runfiles size=3 +runfiles size=4 texmf-dist/tex/latex/harmony/harmony.sty catalogue-ctan /macros/latex/contrib/harmony -catalogue-license lppl +catalogue-license lppl1.3 catalogue-topics music name harnon-cv @@ -133525,6 +135626,80 @@ catalogue-ctan /macros/latex/contrib/hc catalogue-license other-free catalogue-topics class presentation letter +name hduthesis +category Package +revision 73300 +shortdesc LaTeX class for bachelor and MPhil theses in Hangzhou Dianzi University +longdesc This package provides a LaTeX template for graduation theses +longdesc from Hangzhou Dianzi University. It supports the formatting of +longdesc bachelor and MPhil degree theses. +docfiles size=731 + texmf-dist/doc/xelatex/hduthesis/License + texmf-dist/doc/xelatex/hduthesis/README.md details="Readme" + texmf-dist/doc/xelatex/hduthesis/cha/abstract.tex + texmf-dist/doc/xelatex/hduthesis/cha/contents.tex + texmf-dist/doc/xelatex/hduthesis/cha/source.tex + texmf-dist/doc/xelatex/hduthesis/cha/source/a1.tex + texmf-dist/doc/xelatex/hduthesis/cha/source/a2.tex + texmf-dist/doc/xelatex/hduthesis/cha/source/a3.tex + texmf-dist/doc/xelatex/hduthesis/cha/source/a4.tex + texmf-dist/doc/xelatex/hduthesis/cha/source/a5.tex + texmf-dist/doc/xelatex/hduthesis/cha/source/a6.tex + texmf-dist/doc/xelatex/hduthesis/cha/source/a7.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/abstract.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/cha1.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/cha2.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/cha3.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/cha4.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/cha5.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/cha6.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/cha7.tex + texmf-dist/doc/xelatex/hduthesis/example/cha/thanks.tex + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0145.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0162.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0163.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0236.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0284.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0285.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0289.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0419.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0439.png + texmf-dist/doc/xelatex/hduthesis/example/figures/image-0440.png + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-bc.pdf details="Example of use" language="zh" + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-bc.tex + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-beamer.pdf details="Example of use (beamer presentation)" + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-beamer.tex + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-pg.pdf details="Example of use (master's thesis)" language="zh" + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-pg.tex + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-stationery.pdf details="Example of use (stationery)" + texmf-dist/doc/xelatex/hduthesis/example/hduthesis-stationery.tex + texmf-dist/doc/xelatex/hduthesis/example/reference.bib + texmf-dist/doc/xelatex/hduthesis/hduthesis.pdf details="Package documentation" language="zh" + texmf-dist/doc/xelatex/hduthesis/hduthesis.tex +runfiles size=45 + texmf-dist/tex/xelatex/hduthesis/beamerthemehdu.sty + texmf-dist/tex/xelatex/hduthesis/hdubadge.pdf + texmf-dist/tex/xelatex/hduthesis/hdulogo.pdf + texmf-dist/tex/xelatex/hduthesis/hdumotto.pdf + texmf-dist/tex/xelatex/hduthesis/hduthesis-bc.config-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-hdu.l3doc-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-hdu.stationery-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-layout-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-pg.config-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-typeset-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis.cls + texmf-dist/tex/xelatex/hduthesis/hdutitle.pdf +catalogue-contact-announce https://qm.qq.com/q/RGFmHwBecC +catalogue-contact-bugs https://github.com/myhsia/hduthesis/issues +catalogue-contact-development https://github.com/myhsia/ +catalogue-contact-home https://github.com/myhsia/hduthesis +catalogue-contact-repository https://github.com/myhsia/hduthesis +catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC +catalogue-ctan /macros/xetex/latex/hduthesis +catalogue-license lppl1.3 +catalogue-topics dissertation class doc-templ chinese expl3 +catalogue-version 0.5.2 + name he-she category Package revision 41359 @@ -133546,6 +135721,28 @@ catalogue-license lppl1.3 catalogue-topics typesetting catalogue-version 1.3 +name hebdomon +category Package +revision 72033 +shortdesc A document class for report writing in university settings +longdesc This package provides a documentclass for streamlining document +longdesc creation in LaTeX. It does not overwrite any TeX or LaTeX +longdesc commands so the user could use their own macros or other +longdesc commands as they wish. +docfiles size=241 + texmf-dist/doc/latex/hebdomon/HebdomonGuide.pdf details="Package documentation and example of use" + texmf-dist/doc/latex/hebdomon/HebdomonGuide.tex + texmf-dist/doc/latex/hebdomon/README.md details="Readme" + texmf-dist/doc/latex/hebdomon/figures/innsbruck.jpg +runfiles size=3 + texmf-dist/tex/latex/hebdomon/hebdomon.cls +catalogue-contact-bugs https://github.com/dTmC0945/Hebdomon-LaTeX-Document-Class/issues +catalogue-contact-repository https://github.com/dTmC0945/Hebdomon-LaTeX-Document-Class +catalogue-ctan /macros/latex/contrib/hebdomon +catalogue-license lppl1.3c +catalogue-topics class doc-templ report-like +catalogue-version 0.1 + name hebrew-fonts category Package revision 68038 @@ -133998,7 +136195,7 @@ catalogue-version 1.0 name hep-acronym category Package -revision 67632 +revision 72984 shortdesc An acronym extension for glossaries longdesc The hep-acronym package provides an acronym macro based on the longdesc glossaries package. The package is loaded with @@ -134022,18 +136219,18 @@ 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.2 +catalogue-version 1.3 name hep-bibliography category Package -revision 67632 +revision 72984 shortdesc An acronym extension for glossaries 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}. -docfiles size=185 +docfiles size=195 texmf-dist/doc/latex/hep-bibliography/README-hep-bibliography.md texmf-dist/doc/latex/hep-bibliography/README.md details="Readme" texmf-dist/doc/latex/hep-bibliography/bibliography.bib @@ -134053,11 +136250,11 @@ 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.2 +catalogue-version 1.3 name hep-float category Package -revision 67632 +revision 72984 shortdesc Convenience package for float placement longdesc The hep-float package redefines some LaTeX float placement longdesc defaults and defines convenience wrappers for floats. The @@ -134081,11 +136278,11 @@ 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.2 +catalogue-version 1.3 name hep-font category Package -revision 67632 +revision 72984 shortdesc Latin modern extended by computer modern longdesc The hep-font package loads standard font packages and extends longdesc the usual Latin Modern implementations by replacing missing @@ -134110,16 +136307,16 @@ 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.2 +catalogue-version 1.3 name hep-graphic category Package -revision 67641 +revision 72984 shortdesc Extensions for graphics, plots and feynman graphs in high energy physics longdesc The hep-graphic package collects convinience macros that modify longdesc the behaviour of the TikZ, pgfplots, and TikZ-Feynman packages longdesc and ensure that the generated graphics look consistent. -docfiles size=166 +docfiles size=172 texmf-dist/doc/latex/hep-graphic/README-hep-graphic.md texmf-dist/doc/latex/hep-graphic/README.md details="Readme" texmf-dist/doc/latex/hep-graphic/bibliography.bib @@ -134140,16 +136337,16 @@ catalogue-contact-repository https://github.com/janhajer/hep-paper catalogue-ctan /macros/latex/contrib/hep-graphic catalogue-license lppl1.3c catalogue-topics graphics -catalogue-version 1.2 +catalogue-version 1.3 name hep-math category Package -revision 67632 +revision 72984 shortdesc Extended math macros 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 -docfiles size=236 +docfiles size=235 texmf-dist/doc/latex/hep-math/README-hep-math.md texmf-dist/doc/latex/hep-math/README.md details="Readme" texmf-dist/doc/latex/hep-math/bibliography.bib @@ -134168,11 +136365,11 @@ 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.2 +catalogue-version 1.3 name hep-math-font category Package -revision 67632 +revision 72984 shortdesc Extended Greek and sans-serif math longdesc The hep-math-font package adjust the math fonts to be longdesc sans-serif if the document is sans-serif. Additionally Greek @@ -134180,7 +136377,7 @@ 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}. -docfiles size=499 +docfiles size=506 texmf-dist/doc/fonts/hep-math-font/README-hep-math-font.md texmf-dist/doc/fonts/hep-math-font/README.md details="Readme" texmf-dist/doc/fonts/hep-math-font/bibliography.bib @@ -134190,21 +136387,21 @@ docfiles size=499 texmf-dist/doc/fonts/hep-math-font/hep-math-font-test-sans.tex texmf-dist/doc/fonts/hep-math-font/hep-math-font-test-serif.tex texmf-dist/doc/fonts/hep-math-font/license.md -srcfiles size=9 +srcfiles size=14 texmf-dist/source/fonts/hep-math-font/hep-math-font-implementation.dtx texmf-dist/source/fonts/hep-math-font/hep-math-font.ins -runfiles size=3 +runfiles size=7 texmf-dist/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.2 +catalogue-version 1.3 name hep-paper category Package -revision 67632 +revision 72984 shortdesc Publications in High Energy Physics longdesc This package aims to provide a single style file containing longdesc most configurations and macros necessary to write appealing @@ -134214,7 +136411,7 @@ 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. -docfiles size=288 +docfiles size=298 texmf-dist/doc/latex/hep-paper/README-hep-paper.md texmf-dist/doc/latex/hep-paper/README.md details="Readme" texmf-dist/doc/latex/hep-paper/bibliography.bib @@ -134229,7 +136426,7 @@ docfiles size=288 texmf-dist/doc/latex/hep-paper/hep-paper-test-revtex.tex texmf-dist/doc/latex/hep-paper/hep-paper-test-springer.tex texmf-dist/doc/latex/hep-paper/license.md -srcfiles size=11 +srcfiles size=12 texmf-dist/source/latex/hep-paper/hep-paper-implementation.dtx texmf-dist/source/latex/hep-paper/hep-paper.ins runfiles size=2 @@ -134239,11 +136436,11 @@ 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 2.2 +catalogue-version 2.3 name hep-reference category Package -revision 67632 +revision 72984 shortdesc Adjustments for publications in High Energy Physics longdesc This package makes some changes to the reference, citation and longdesc footnote macros to improve the default behavior of LaTeX for @@ -134268,11 +136465,11 @@ 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.2 +catalogue-version 1.3 name hep-text category Package -revision 67632 +revision 72984 shortdesc List and text extensions longdesc The hep-text package extends LaTeX lists using the enumitem longdesc package and provides some text macros. The package is loaded @@ -134295,16 +136492,16 @@ 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.2 +catalogue-version 1.3 name hep-title category Package -revision 67632 +revision 72984 shortdesc Extensions for the title page 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}. -docfiles size=194 +docfiles size=193 texmf-dist/doc/latex/hep-title/README-hep-title.md texmf-dist/doc/latex/hep-title/README.md details="Readme" texmf-dist/doc/latex/hep-title/bibliography.bib @@ -134324,7 +136521,7 @@ 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.2 +catalogue-version 1.3 name hepnames category Package @@ -134522,7 +136719,7 @@ catalogue-version 1.0.2 name heria category Package -revision 69058 +revision 72189 shortdesc A LaTeX class for Horizon Europe RIA and IA grant proposals longdesc This class facilitates the preparation of Research and longdesc Innovation Action (RIA) and Innovation Action (IA) funding @@ -134533,15 +136730,15 @@ longdesc of the original version, and has the additional feature that longdesc tables (listing the participants, work packages, deliverables, longdesc etc.) are programmatically generated according to data supplied longdesc by the user. -docfiles size=156 +docfiles size=155 texmf-dist/doc/latex/heria/README.md details="Readme" texmf-dist/doc/latex/heria/heria-proposal.pdf details="Example of use" texmf-dist/doc/latex/heria/heria-proposal.tex texmf-dist/doc/latex/heria/heria.pdf details="Package documentation" -srcfiles size=26 +srcfiles size=27 texmf-dist/source/latex/heria/heria.dtx texmf-dist/source/latex/heria/heria.ins -runfiles size=35 +runfiles size=36 texmf-dist/tex/latex/heria/heria.cls texmf-dist/tex/latex/heria/hi-annexes.tex texmf-dist/tex/latex/heria/hi-capacity.tex @@ -134571,9 +136768,9 @@ runfiles size=35 catalogue-contact-bugs https://github.com/logological/heria/issues catalogue-contact-repository https://github.com/logological/heria catalogue-ctan /macros/latex/contrib/heria -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics class proposal -catalogue-version 3.2.1.0 +catalogue-version 3.4.1.3 name heros-otf category Package @@ -135798,22 +137995,22 @@ catalogue-version 0.61 name hideanswer category Package -revision 63852 +revision 72949 shortdesc Generate documents with and without answers by toggling a switch 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. docfiles size=35 texmf-dist/doc/latex/hideanswer/README.md details="Readme" - texmf-dist/doc/latex/hideanswer/hideanswer.pdf details="Package documentation" - texmf-dist/doc/latex/hideanswer/hideanswer.tex + texmf-dist/doc/latex/hideanswer/hideanswer-doc.pdf details="Package documentation" + texmf-dist/doc/latex/hideanswer/hideanswer-doc.tex runfiles size=1 texmf-dist/tex/latex/hideanswer/hideanswer.sty -catalogue-contact-home https://www.metaphysica.info/technote/package_hideanswer/ +catalogue-contact-home https://www.metaphysica.info/tool/hideanswer/ catalogue-ctan /macros/latex/contrib/hideanswer catalogue-license mit catalogue-topics cond-comp exam -catalogue-version 1.1 +catalogue-version 1.2 name highlightlatex category Package @@ -135836,7 +138033,7 @@ catalogue-topics listing synt-hlt name highlightx category Package -revision 68756 +revision 73069 shortdesc Highlight formulas or paragraphs longdesc This package provides commands (in French or English) to longdesc highlight formulas or paragraphs with handwriting effect: coded @@ -135850,12 +138047,10 @@ docfiles size=52 texmf-dist/doc/latex/highlightx/highlightx-doc.tex runfiles size=3 texmf-dist/tex/latex/highlightx/highlightx.sty -catalogue-contact-repository https://github.com/cpierquet/highlightx -catalogue-contact-support https://github.com/cpierquet/highlightx/issues catalogue-ctan /macros/latex/contrib/highlightx catalogue-license lppl1.3c catalogue-topics decoration pgf-tikz -catalogue-version 0.1.5 +catalogue-version 0.1.6 name hindawi-latex-template category Package @@ -136062,7 +138257,7 @@ catalogue-version 0.0(beta) name hitex category TLCore -revision 71363 +revision 74030 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 @@ -136092,7 +138287,7 @@ depend tex-ini-files depend unicode-data execute AddFormat name=hilatex engine=hitex patterns=language.dat options="-etex -ltx hilatex.ini" fmttriggers=l3backend,l3kernel,latex,firstaid,babel,cm,hyphen-base,knuth-lib,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 -docfiles size=828 +docfiles size=895 texmf-dist/doc/hitex/base/hiformat.hnt texmf-dist/doc/hitex/base/hiformat.pdf texmf-dist/doc/hitex/base/hintmac.tex @@ -136105,6 +138300,10 @@ docfiles size=828 texmf-dist/doc/man/man1/histretch.man1.pdf texmf-dist/doc/man/man1/hitex.1 texmf-dist/doc/man/man1/hitex.man1.pdf + texmf-dist/doc/man/man1/texprof.1 + texmf-dist/doc/man/man1/texprof.man1.pdf + texmf-dist/doc/man/man1/texprofile.1 + texmf-dist/doc/man/man1/texprofile.man1.pdf runfiles size=9 texmf-dist/makeindex/hitex/hint.ist texmf-dist/tex/hitex/base/hhitex.def @@ -136125,119 +138324,141 @@ catalogue-topics engine name hitex.aarch64-linux category TLCore -revision 70276 +revision 74078 shortdesc aarch64-linux files of hitex -binfiles arch=aarch64-linux size=194 +binfiles arch=aarch64-linux size=308 bin/aarch64-linux/hilatex bin/aarch64-linux/hishrink bin/aarch64-linux/histretch bin/aarch64-linux/hitex + bin/aarch64-linux/texprof + bin/aarch64-linux/texprofile name hitex.amd64-freebsd category TLCore -revision 70276 +revision 74051 shortdesc amd64-freebsd files of hitex -binfiles arch=amd64-freebsd size=264 +binfiles arch=amd64-freebsd size=397 bin/amd64-freebsd/hilatex bin/amd64-freebsd/hishrink bin/amd64-freebsd/histretch bin/amd64-freebsd/hitex + bin/amd64-freebsd/texprof + bin/amd64-freebsd/texprofile name hitex.amd64-netbsd category TLCore -revision 71441 +revision 74058 shortdesc amd64-netbsd files of hitex -binfiles arch=amd64-netbsd size=264 +binfiles arch=amd64-netbsd size=398 bin/amd64-netbsd/hilatex bin/amd64-netbsd/hishrink bin/amd64-netbsd/histretch bin/amd64-netbsd/hitex + bin/amd64-netbsd/texprof + bin/amd64-netbsd/texprofile name hitex.armhf-linux category TLCore -revision 70489 +revision 74078 shortdesc armhf-linux files of hitex -binfiles arch=armhf-linux size=159 +binfiles arch=armhf-linux size=232 bin/armhf-linux/hilatex bin/armhf-linux/hishrink bin/armhf-linux/histretch bin/armhf-linux/hitex + bin/armhf-linux/texprof + bin/armhf-linux/texprofile name hitex.i386-freebsd category TLCore -revision 70276 +revision 74051 shortdesc i386-freebsd files of hitex -binfiles arch=i386-freebsd size=264 +binfiles arch=i386-freebsd size=397 bin/i386-freebsd/hilatex bin/i386-freebsd/hishrink bin/i386-freebsd/histretch bin/i386-freebsd/hitex + bin/i386-freebsd/texprof + bin/i386-freebsd/texprofile name hitex.i386-linux category TLCore -revision 70276 +revision 74051 shortdesc i386-linux files of hitex -binfiles arch=i386-linux size=192 +binfiles arch=i386-linux size=326 bin/i386-linux/hilatex bin/i386-linux/hishrink bin/i386-linux/histretch bin/i386-linux/hitex + bin/i386-linux/texprof + bin/i386-linux/texprofile name hitex.i386-netbsd category TLCore -revision 71441 +revision 74058 shortdesc i386-netbsd files of hitex -binfiles arch=i386-netbsd size=233 +binfiles arch=i386-netbsd size=360 bin/i386-netbsd/hilatex bin/i386-netbsd/hishrink bin/i386-netbsd/histretch bin/i386-netbsd/hitex + bin/i386-netbsd/texprof + bin/i386-netbsd/texprofile name hitex.i386-solaris category TLCore -revision 70276 +revision 74051 shortdesc i386-solaris files of hitex -binfiles arch=i386-solaris size=172 +binfiles arch=i386-solaris size=274 bin/i386-solaris/hilatex bin/i386-solaris/hishrink bin/i386-solaris/histretch bin/i386-solaris/hitex + bin/i386-solaris/texprof + bin/i386-solaris/texprofile name hitex.universal-darwin category TLCore -revision 70274 +revision 74077 shortdesc universal-darwin files of hitex -binfiles arch=universal-darwin size=487 +binfiles arch=universal-darwin size=825 bin/universal-darwin/hilatex bin/universal-darwin/hishrink bin/universal-darwin/histretch bin/universal-darwin/hitex + bin/universal-darwin/texprof + bin/universal-darwin/texprofile name hitex.windows category TLCore -revision 70576 +revision 73974 shortdesc windows files of hitex -binfiles arch=windows size=177 +binfiles arch=windows size=384 bin/windows/hilatex.exe bin/windows/hishrink.exe bin/windows/histretch.exe bin/windows/hitex.exe + bin/windows/texprof.exe + bin/windows/texprofile.exe name hitex.x86_64-cygwin category TLCore -revision 71441 +revision 74094 shortdesc x86_64-cygwin files of hitex -binfiles arch=x86_64-cygwin size=177 +binfiles arch=x86_64-cygwin size=275 bin/x86_64-cygwin/hilatex bin/x86_64-cygwin/hishrink.exe bin/x86_64-cygwin/histretch.exe bin/x86_64-cygwin/hitex.exe + bin/x86_64-cygwin/texprof.exe + bin/x86_64-cygwin/texprofile.exe name hitex.x86_64-darwinlegacy category TLCore -revision 70380 +revision 74077 shortdesc x86_64-darwinlegacy files of hitex -binfiles arch=x86_64-darwinlegacy size=164 +binfiles arch=x86_64-darwinlegacy size=170 bin/x86_64-darwinlegacy/hilatex bin/x86_64-darwinlegacy/hishrink bin/x86_64-darwinlegacy/histretch @@ -136245,33 +138466,39 @@ binfiles arch=x86_64-darwinlegacy size=164 name hitex.x86_64-linux category TLCore -revision 70276 +revision 74051 shortdesc x86_64-linux files of hitex -binfiles arch=x86_64-linux size=192 +binfiles arch=x86_64-linux size=325 bin/x86_64-linux/hilatex bin/x86_64-linux/hishrink bin/x86_64-linux/histretch bin/x86_64-linux/hitex + bin/x86_64-linux/texprof + bin/x86_64-linux/texprofile name hitex.x86_64-linuxmusl category TLCore -revision 70276 +revision 74051 shortdesc x86_64-linuxmusl files of hitex -binfiles arch=x86_64-linuxmusl size=192 +binfiles arch=x86_64-linuxmusl size=311 bin/x86_64-linuxmusl/hilatex bin/x86_64-linuxmusl/hishrink bin/x86_64-linuxmusl/histretch bin/x86_64-linuxmusl/hitex + bin/x86_64-linuxmusl/texprof + bin/x86_64-linuxmusl/texprofile name hitex.x86_64-solaris category TLCore -revision 70276 +revision 74051 shortdesc x86_64-solaris files of hitex -binfiles arch=x86_64-solaris size=201 +binfiles arch=x86_64-solaris size=319 bin/x86_64-solaris/hilatex bin/x86_64-solaris/hishrink bin/x86_64-solaris/histretch bin/x86_64-solaris/hitex + bin/x86_64-solaris/texprof + bin/x86_64-solaris/texprofile name hithesis category Package @@ -136659,7 +138886,7 @@ catalogue-version 1.15 name homework category Package -revision 70044 +revision 72441 shortdesc A LaTeX class for writing your homework longdesc The current document class is for writing homework. It has the longdesc following features. Simple and clear interface. Built-in @@ -136673,7 +138900,7 @@ longdesc solution has its own QED symbol, in hollow or solid shape, longdesc respectively. You can mark the unfinished parts, and a report longdesc shall be generated at the end of your document for reminding. depend einfart -docfiles size=156 +docfiles size=157 texmf-dist/doc/latex/homework/DEPENDS.txt texmf-dist/doc/latex/homework/LICENSE texmf-dist/doc/latex/homework/README.md details="Readme" @@ -136794,7 +139021,7 @@ catalogue-version 1.0 name href-ul category Package -revision 69359 +revision 72741 shortdesc Underscored LaTeX hyperlinks longdesc This LaTeX package makes hyperlinks underscored, just like on longdesc the web. The package uses hyperref and ulem. @@ -136815,11 +139042,11 @@ 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.4.0 +catalogue-version 0.4.1 name hrefhide category Package -revision 66189 +revision 73641 shortdesc Suppress hyper links when printing longdesc This package provides the command \hrefdisplayonly longdesc (additionally to \href provided by the hyperref package). While @@ -136846,7 +139073,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/hrefhide catalogue-license lppl1.3 catalogue-topics hyper -catalogue-version 1.1a +catalogue-version 1.1b name hrlatex category Package @@ -136914,7 +139141,7 @@ catalogue-version 1.1.2 name huawei category Package -revision 69858 +revision 73148 shortdesc Template for Huawei documents longdesc This unofficial package provides a class for creating documents longdesc for people working with Huawei Technologies Co., Ltd. @@ -136957,7 +139184,7 @@ depend transparent depend trimspaces depend wrapfig depend xcolor -docfiles size=201 +docfiles size=183 texmf-dist/doc/latex/huawei/DEPENDS.txt texmf-dist/doc/latex/huawei/LICENSE.txt texmf-dist/doc/latex/huawei/README.md details="Readme" @@ -136965,14 +139192,14 @@ docfiles size=201 srcfiles size=10 texmf-dist/source/latex/huawei/huawei.dtx texmf-dist/source/latex/huawei/huawei.ins -runfiles size=67 +runfiles size=68 texmf-dist/tex/latex/huawei/huawei-cover-picture.pdf texmf-dist/tex/latex/huawei/huawei.cls catalogue-contact-home https://github.com/yegor256/huawei.cls catalogue-ctan /macros/latex/contrib/huawei catalogue-license mit catalogue-topics class misc-paper -catalogue-version 0.18.3 +catalogue-version 0.19.1 name huaz category Package @@ -137120,7 +139347,7 @@ catalogue-version 0.41 name hvfloat category Package -revision 70675 +revision 73130 shortdesc Controlling captions, fullpage and doublepage floats longdesc This package defines a macro to place objects (tables and longdesc figures) and their captions in different positions with @@ -137271,28 +139498,29 @@ docfiles size=11655 texmf-dist/doc/latex/hvfloat/wide1s2c.tex texmf-dist/doc/latex/hvfloat/wide2s2c.pdf texmf-dist/doc/latex/hvfloat/wide2s2c.tex -runfiles size=30 +runfiles size=33 texmf-dist/tex/latex/hvfloat/hvfloat-0.inc texmf-dist/tex/latex/hvfloat/hvfloat-1.inc texmf-dist/tex/latex/hvfloat/hvfloat-2.inc texmf-dist/tex/latex/hvfloat/hvfloat-3.inc + texmf-dist/tex/latex/hvfloat/hvfloat-4.inc texmf-dist/tex/latex/hvfloat/hvfloat-fps.sty texmf-dist/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.49 +catalogue-version 2.52 name hvindex category Package -revision 46051 +revision 73580 shortdesc Support for indexing longdesc The package simplifies the indexing of words using the \index longdesc command of makeidx. With the package, to index a word in a longdesc text, you only have to type it once; the package makes sure it longdesc is both typeset and indexed. -docfiles size=23 +docfiles size=14 texmf-dist/doc/latex/hvindex/Changes texmf-dist/doc/latex/hvindex/README details="Readme" texmf-dist/doc/latex/hvindex/hvindex-doc.pdf details="Package documentation" @@ -137302,11 +139530,11 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/hvindex catalogue-license lppl catalogue-topics index -catalogue-version 0.04 +catalogue-version 0.04a name hvlogos category Package -revision 69581 +revision 72538 shortdesc Print TeX-related names as logo longdesc This package is more or less an extension to Heiko Oberdiek's longdesc package hologo. It prints TeX-related names as logos. The @@ -137321,7 +139549,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/hvlogos catalogue-license lppl catalogue-topics logo -catalogue-version 0.12 +catalogue-version 0.12a name hvpygmentex category Package @@ -137408,14 +139636,39 @@ catalogue-license lppl1.3 catalogue-topics colour catalogue-version 1.10 +name hypcap +category Package +revision 71912 +shortdesc Adjusting the anchors of captions +longdesc The package offers a solution to the problem that when you link +longdesc to a float using hyperref, the link anchors to below the +longdesc float's caption, rather than the beginning of the float. Hypcap +longdesc defines a separate \capstart command, which you put where you +longdesc want links to end; you should have a \capstart command for each +longdesc \caption command. Package options can be used to auto-insert a +longdesc \capstart at the start of a float environment. +docfiles size=75 + texmf-dist/doc/latex/hypcap/README.md + texmf-dist/doc/latex/hypcap/hypcap.pdf details="Package documentation" +srcfiles size=6 + texmf-dist/source/latex/hypcap/hypcap.dtx +runfiles size=1 + texmf-dist/tex/latex/hypcap/hypcap.sty +catalogue-contact-bugs https://github.com/ho-tex/hypcap/issues +catalogue-contact-repository https://github.com/ho-tex/hypcap +catalogue-ctan /macros/latex/contrib/hypcap +catalogue-license lppl1.3c +catalogue-topics hyper caption +catalogue-version 1.13 + name hypdestopt category Package -revision 56253 +revision 71991 shortdesc Hyperref destination optimizer longdesc This package supports hyperref's pdfTeX driver. It removes longdesc unnecessary destinations and shortens the destination names or longdesc uses numbered destinations to get smaller PDF files. -docfiles size=88 +docfiles size=94 texmf-dist/doc/latex/hypdestopt/README.md texmf-dist/doc/latex/hypdestopt/hypdestopt.dtx texmf-dist/doc/latex/hypdestopt/hypdestopt.pdf details="Package documentation" language="en" @@ -137426,7 +139679,7 @@ catalogue-contact-repository https://github.com/ho-tex/hypdestopt catalogue-ctan /macros/latex/contrib/hypdestopt catalogue-license lppl1.3 catalogue-topics hyper -catalogue-version 2.7 +catalogue-version 2.8 name hypdoc category Package @@ -137590,7 +139843,7 @@ catalogue-version 1.0b name hyperref category Package -revision 71766 +revision 72773 shortdesc Extensive support for hypertext in LaTeX longdesc The hyperref package is used to handle cross-referencing longdesc commands in LaTeX to produce hypertext links in the document. @@ -137623,7 +139876,7 @@ depend rerunfilecheck depend stringenc depend url depend zapfding -docfiles size=1268 +docfiles size=1195 texmf-dist/doc/latex/hyperref/ChangeLog.txt texmf-dist/doc/latex/hyperref/README.md details="Readme" texmf-dist/doc/latex/hyperref/backref.pdf @@ -137640,6 +139893,7 @@ docfiles size=1268 texmf-dist/doc/latex/hyperref/hyperref-doc8.html texmf-dist/doc/latex/hyperref/hyperref-doc9.html texmf-dist/doc/latex/hyperref/hyperref-linktarget.pdf + texmf-dist/doc/latex/hyperref/hyperref-patches.pdf texmf-dist/doc/latex/hyperref/hyperref.pdf texmf-dist/doc/latex/hyperref/manifest.txt texmf-dist/doc/latex/hyperref/nameref.pdf @@ -137657,7 +139911,7 @@ srcfiles size=316 texmf-dist/source/latex/hyperref/hyperref.ins texmf-dist/source/latex/hyperref/nameref.dtx texmf-dist/source/latex/hyperref/xr-hyper.dtx -runfiles size=199 +runfiles size=200 texmf-dist/tex/latex/hyperref/backref.sty texmf-dist/tex/latex/hyperref/hdvipdfm.def texmf-dist/tex/latex/hyperref/hdvips.def @@ -137692,7 +139946,7 @@ 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 etex -catalogue-version 7.01i +catalogue-version 7.01l name hyperxmp category Package @@ -137847,7 +140101,7 @@ binfiles arch=x86_64-solaris size=1 name hyph-utf8 category Package -revision 61719 +revision 74115 shortdesc Hyphenation patterns expressed in UTF-8 longdesc Modern native UTF-8 engines such as XeTeX and LuaTeX need longdesc hyphenation patterns in UTF-8 format, whereas older systems @@ -137871,8 +140125,10 @@ docfiles size=84 texmf-dist/doc/generic/hyph-utf8/img/texlive-collection.png texmf-dist/doc/luatex/hyph-utf8/README texmf-dist/doc/luatex/hyph-utf8/luatex-hyphen.pdf -srcfiles size=59 +srcfiles size=62 texmf-dist/source/generic/hyph-utf8/README + texmf-dist/source/generic/hyph-utf8/README.md + texmf-dist/source/generic/hyph-utf8/VERSION texmf-dist/source/generic/hyph-utf8/contributed/make-exhyph.pl texmf-dist/source/generic/hyph-utf8/data/encodings/ec.dat texmf-dist/source/generic/hyph-utf8/data/encodings/il2.dat @@ -137931,7 +140187,7 @@ catalogue-topics hyphenation name hyphen-afrikaans category TLCore -revision 58609 +revision 73410 shortdesc Afrikaans hyphenation patterns. longdesc Hyphenation patterns for Afrikaans in T1/EC and UTF-8 longdesc encodings. OpenOffice includes older patterns created by a @@ -137948,9 +140204,24 @@ runfiles size=62 texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-af.hyp.txt texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-af.pat.txt +name hyphen-albanian +category TLCore +revision 73410 +shortdesc Albanian hyphenation patterns. +longdesc Hyphenation patterns for Albanian in UTF-8 and T1 encoding. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=albanian lefthyphenmin=2 righthyphenmin=2 file=loadhyph-sq.tex file_patterns=hyph-sq.pat.txt file_exceptions= +runfiles size=5 + texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sq.tex + texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-sq.ec.tex + texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-sq.tex + texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sq.tex + texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sq.pat.txt + name hyphen-ancientgreek category TLCore -revision 58652 +revision 74115 shortdesc Ancient Greek hyphenation patterns. longdesc Hyphenation patterns for Ancient Greek in LGR and UTF-8 longdesc encodings, including support for (obsolete) Ibycus font @@ -137961,8 +140232,9 @@ depend hyph-utf8 depend hyphen-base execute AddHyphen name=ancientgreek lefthyphenmin=1 righthyphenmin=1 file=loadhyph-grc.tex file_patterns=hyph-grc.pat.txt file_exceptions= execute AddHyphen name=ibycus lefthyphenmin=2 righthyphenmin=2 file=ibyhyph.tex luaspecial="disabled:8-bit only" -runfiles size=54 +runfiles size=55 texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex + texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-grc-x-ibycus.tex texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-grc.pat.txt texmf-dist/tex/generic/hyphen/grahyph5.tex @@ -137970,16 +140242,18 @@ runfiles size=54 name hyphen-arabic category TLCore -revision 54568 +revision 74115 shortdesc (No) Arabic hyphenation patterns. longdesc Prevent hyphenation in Arabic. depend hyph-utf8 depend hyphen-base -execute AddHyphen name=arabic lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns= +execute AddHyphen name=arabic lefthyphenmin=0 righthyphenmin=0 file=hyph-ar.tex +runfiles size=1 + texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ar.tex name hyphen-armenian category TLCore -revision 58652 +revision 73410 shortdesc Armenian hyphenation patterns. longdesc Hyphenation patterns for Armenian for Unicode engines. longdesc Auto-generated from a script included in hyph-utf8. @@ -137995,7 +140269,7 @@ runfiles size=8 name hyphen-base category TLCore -revision 70247 +revision 74085 shortdesc core hyphenation support files longdesc Includes Knuth's original hyphen.tex, zerohyph.tex to disable longdesc hyphenation, language.us which starts the autogenerated files @@ -138015,7 +140289,7 @@ runfiles size=24 name hyphen-basque category TLCore -revision 58652 +revision 73410 catalogue bahyph shortdesc Basque hyphenation patterns. longdesc Hyphenation patterns for Basque in T1/EC and UTF-8 encodings. @@ -138035,7 +140309,7 @@ catalogue-topics basque hyphenation name hyphen-belarusian category TLCore -revision 58652 +revision 73410 shortdesc Belarusian hyphenation patterns. longdesc Belarusian hyphenation patterns in T2A and UTF-8 encodings depend hyph-utf8 @@ -138050,7 +140324,7 @@ runfiles size=30 name hyphen-bulgarian category TLCore -revision 58685 +revision 73410 shortdesc Bulgarian hyphenation patterns. longdesc Hyphenation patterns for Bulgarian in T2A and UTF-8 encodings. depend hyph-utf8 @@ -138064,7 +140338,7 @@ runfiles size=69 name hyphen-catalan category TLCore -revision 58609 +revision 73410 shortdesc Catalan hyphenation patterns. longdesc Hyphenation patterns for Catalan in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -138079,7 +140353,7 @@ runfiles size=8 name hyphen-chinese category TLCore -revision 58652 +revision 74115 shortdesc Chinese pinyin hyphenation patterns. longdesc Hyphenation patterns for unaccented transliterated Mandarin longdesc Chinese (pinyin) in T1/EC and UTF-8 encodings. The latter can @@ -138090,13 +140364,13 @@ depend hyphen-base execute AddHyphen name=pinyin lefthyphenmin=1 righthyphenmin=2 file=loadhyph-zh-latn-pinyin.tex file_patterns=hyph-zh-latn-pinyin.pat.txt file_exceptions= runfiles size=5 texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-zh-latn-pinyin.tex - texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-zh-latn-pinyin.ec.tex + texmf-dist/tex/generic/hyph-utf8/patterns/tex-8bit/hyph-zh-latn-pinyin.ec.tex texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.pat.txt name hyphen-churchslavonic category TLCore -revision 58609 +revision 73410 shortdesc Church Slavonic hyphenation patterns. longdesc Hyphenation patterns for Church Slavonic in UTF-8 encoding depend hyph-utf8 @@ -138110,7 +140384,7 @@ runfiles size=70 name hyphen-coptic category TLCore -revision 58652 +revision 73410 shortdesc Coptic hyphenation patterns. longdesc Hyphenation patterns for Coptic in UTF-8 encoding as well as in longdesc ASCII-based encoding for 8-bit engines. The latter can only be @@ -138127,7 +140401,7 @@ runfiles size=8 name hyphen-croatian category TLCore -revision 58652 +revision 73410 catalogue hrhyph shortdesc Croatian hyphenation patterns. longdesc Hyphenation patterns for Croatian in T1/EC and UTF-8 encodings. @@ -138145,7 +140419,7 @@ catalogue-topics hyphenation croatian name hyphen-czech category TLCore -revision 58609 +revision 73410 shortdesc Czech hyphenation patterns. longdesc Hyphenation patterns for Czech in T1/EC and UTF-8 encodings. longdesc Original patterns 'czhyphen' are still distributed in the @@ -138162,7 +140436,7 @@ runfiles size=21 name hyphen-danish category TLCore -revision 58652 +revision 73410 catalogue dkhyphen shortdesc Danish hyphenation patterns. longdesc Hyphenation patterns for Danish in T1/EC and UTF-8 encodings. @@ -138180,7 +140454,7 @@ catalogue-topics hyphenation danish name hyphen-dutch category TLCore -revision 58609 +revision 73410 catalogue nehyph shortdesc Dutch hyphenation patterns. longdesc Hyphenation patterns for Dutch in T1/EC and UTF-8 encodings. @@ -138203,7 +140477,7 @@ catalogue-version 1.1 name hyphen-english category TLCore -revision 58609 +revision 73410 shortdesc English hyphenation patterns. longdesc Additional hyphenation patterns for American and British longdesc English in ASCII encoding. The American English patterns @@ -138227,7 +140501,7 @@ runfiles size=50 name hyphen-esperanto category TLCore -revision 58652 +revision 73410 shortdesc Esperanto hyphenation patterns. longdesc Hyphenation patterns for Esperanto ISO Latin 3 and UTF-8 longdesc encodings. Note that TeX distributions don't ship any suitable @@ -138245,7 +140519,7 @@ runfiles size=16 name hyphen-estonian category TLCore -revision 58652 +revision 73410 shortdesc Estonian hyphenation patterns. longdesc Hyphenation patterns for Estonian in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -138259,7 +140533,7 @@ runfiles size=21 name hyphen-ethiopic category TLCore -revision 58652 +revision 73410 shortdesc Hyphenation patterns for Ethiopic scripts. longdesc Hyphenation patterns for languages written using the Ethiopic longdesc script for Unicode engines. They are not supposed to be @@ -138278,22 +140552,24 @@ runfiles size=5 name hyphen-farsi category TLCore -revision 54568 +revision 74115 shortdesc (No) Persian hyphenation patterns. longdesc Prevent hyphenation in Persian. depend hyph-utf8 depend hyphen-base -execute AddHyphen name=farsi synonyms=persian lefthyphenmin= righthyphenmin= file=zerohyph.tex file_patterns= +execute AddHyphen name=farsi synonyms=persian lefthyphenmin=0 righthyphenmin=0 file=hyph-fa.tex +runfiles size=1 + texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fa.tex name hyphen-finnish category TLCore -revision 58652 +revision 73410 catalogue fihyph shortdesc Finnish hyphenation patterns. longdesc Hyphenation patterns for Finnish in T1 and UTF-8 encodings. The -longdesc older set, labelled just “fi”, tries to implement -longdesc etymological rules, while the newer ones (fi-x-school) -longdesc implements the simpler rules taught at Finnish school. +longdesc older set, labelled just 'fi', tries to implement etymological +longdesc rules, while the newer ones (fi-x-school) implements the +longdesc simpler rules taught at Finnish school. depend hyph-utf8 depend hyphen-base execute AddHyphen name=finnish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-fi.tex file_patterns=hyph-fi.pat.txt file_exceptions= @@ -138313,7 +140589,7 @@ catalogue-topics hyphenation finnish name hyphen-french category TLCore -revision 58652 +revision 73410 shortdesc French hyphenation patterns. longdesc Hyphenation patterns for French in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -138328,7 +140604,7 @@ runfiles size=16 name hyphen-friulan category TLCore -revision 58652 +revision 73410 shortdesc Friulan hyphenation patterns. longdesc Hyphenation patterns for Friulan in ASCII encoding. They are longdesc supposed to comply with the common spelling of the Friulan @@ -138346,7 +140622,7 @@ runfiles size=6 name hyphen-galician category TLCore -revision 58652 +revision 73410 shortdesc Galician hyphenation patterns. longdesc Hyphenation patterns for Galician in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -138369,7 +140645,7 @@ runfiles size=19 name hyphen-georgian category TLCore -revision 58652 +revision 73410 shortdesc Georgian hyphenation patterns. longdesc Hyphenation patterns for Georgian in T8M, T8K and UTF-8 longdesc encodings. @@ -138384,7 +140660,7 @@ runfiles size=24 name hyphen-german category TLCore -revision 59807 +revision 73410 shortdesc German hyphenation patterns. longdesc Hyphenation patterns for German in T1/EC and UTF-8 encodings, longdesc for traditional and reformed spelling, including Swiss German. @@ -138418,7 +140694,7 @@ runfiles size=533 name hyphen-greek category TLCore -revision 58652 +revision 73410 catalogue elhyphen shortdesc Modern Greek hyphenation patterns. longdesc Hyphenation patterns for Modern Greek in monotonic and @@ -138452,9 +140728,20 @@ catalogue-license other-free catalogue-topics greek hyphenation catalogue-version 5 +name hyphen-hebrew +category TLCore +revision 74032 +shortdesc Hebrew hyphenation patterns. +longdesc Prevents hyphenation in Arabic. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=hebrew lefthyphenmin=0 righthyphenmin=0 file=hyph-he.tex +runfiles size=1 + texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-he.tex + name hyphen-hungarian category TLCore -revision 58652 +revision 73410 catalogue hungarian shortdesc Hungarian hyphenation patterns. longdesc Hyphenation patterns for Hungarian in T1/EC and UTF-8 @@ -138479,7 +140766,7 @@ catalogue-topics hyphenation hungarian name hyphen-icelandic category TLCore -revision 58652 +revision 73410 catalogue icehyph shortdesc Icelandic hyphenation patterns. longdesc Hyphenation patterns for Icelandic in T1/EC and UTF-8 @@ -138498,7 +140785,7 @@ catalogue-topics hyphenation icelandic name hyphen-indic category TLCore -revision 58652 +revision 73410 shortdesc Indic hyphenation patterns. longdesc Hyphenation patterns for Assamese, Bengali, Gujarati, Hindi, longdesc Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil and Telugu @@ -138557,7 +140844,7 @@ runfiles size=36 name hyphen-indonesian category TLCore -revision 58609 +revision 73410 shortdesc Indonesian hyphenation patterns. longdesc Hyphenation patterns for Indonesian (Bahasa Indonesia) in ASCII longdesc encoding. They are probably also usable for Malay (Bahasa @@ -138573,7 +140860,7 @@ runfiles size=4 name hyphen-interlingua category TLCore -revision 58609 +revision 73410 shortdesc Interlingua hyphenation patterns. longdesc Hyphenation patterns for Interlingua in ASCII encoding. depend hyph-utf8 @@ -138587,7 +140874,7 @@ runfiles size=5 name hyphen-irish category TLCore -revision 58609 +revision 73410 shortdesc Irish hyphenation patterns. longdesc Hyphenation patterns for Irish (Gaeilge) in T1/EC and UTF-8 longdesc encodings. @@ -138603,7 +140890,7 @@ runfiles size=38 name hyphen-italian category TLCore -revision 58652 +revision 73410 catalogue ithyph shortdesc Italian hyphenation patterns. longdesc Hyphenation patterns for Italian in ASCII encoding. Compliant @@ -138625,7 +140912,7 @@ catalogue-version 4.8g name hyphen-kurmanji category TLCore -revision 58652 +revision 73410 shortdesc Kurmanji hyphenation patterns. longdesc Hyphenation patterns for Kurmanji (Northern Kurdish) as spoken longdesc in Turkey and by the Kurdish diaspora in Europe, in T1/EC and @@ -138641,7 +140928,7 @@ runfiles size=4 name hyphen-latin category TLCore -revision 58652 +revision 73410 catalogue lahyph shortdesc Latin hyphenation patterns. longdesc Hyphenation patterns for Latin in T1/EC and UTF-8 encodings, @@ -138679,7 +140966,7 @@ catalogue-version 3.1 name hyphen-latvian category TLCore -revision 58652 +revision 73410 shortdesc Latvian hyphenation patterns. longdesc Hyphenation patterns for Latvian in L7X and UTF-8 encodings. depend hyph-utf8 @@ -138693,7 +140980,7 @@ runfiles size=68 name hyphen-lithuanian category TLCore -revision 58652 +revision 73410 shortdesc Lithuanian hyphenation patterns. longdesc Hyphenation patterns for Lithuanian in L7X and UTF-8 encodings. longdesc \lefthyphenmin and \righthyphenmin have to be at least 2. @@ -138708,7 +140995,7 @@ runfiles size=10 name hyphen-macedonian category TLCore -revision 58652 +revision 73410 shortdesc Macedonian hyphenation patterns. longdesc Hyphenation patterns for Macedonian depend hyph-utf8 @@ -138722,7 +141009,7 @@ runfiles size=9 name hyphen-mongolian category TLCore -revision 58652 +revision 73410 shortdesc Mongolian hyphenation patterns in Cyrillic script. longdesc Hyphenation patterns for Mongolian in T2A, LMC and UTF-8 longdesc encodings. LMC encoding is used in MonTeX. The package includes @@ -138742,7 +141029,7 @@ runfiles size=20 name hyphen-norwegian category TLCore -revision 58609 +revision 73410 shortdesc Norwegian Bokmal and Nynorsk hyphenation patterns. longdesc Hyphenation patterns for Norwegian Bokmal and Nynorsk in T1/EC longdesc and UTF-8 encodings. @@ -138765,7 +141052,7 @@ runfiles size=248 name hyphen-occitan category TLCore -revision 58652 +revision 73410 shortdesc Occitan hyphenation patterns. longdesc Hyphenation patterns for Occitan in T1/EC and UTF-8 encodings. longdesc They are supposed to be valid for all the Occitan variants @@ -138785,7 +141072,7 @@ runfiles size=6 name hyphen-piedmontese category TLCore -revision 58652 +revision 73410 shortdesc Piedmontese hyphenation patterns. longdesc Hyphenation patterns for Piedmontese in ASCII encoding. longdesc Compliant with 'Gramatica dla lengua piemonteisa' by Camillo @@ -138801,7 +141088,7 @@ runfiles size=5 name hyphen-polish category TLCore -revision 58609 +revision 73410 catalogue plhyph shortdesc Polish hyphenation patterns. longdesc Hyphenation patterns for Polish in QX and UTF-8 encodings. @@ -138823,7 +141110,7 @@ catalogue-version 3.0b name hyphen-portuguese category TLCore -revision 58609 +revision 73410 shortdesc Portuguese hyphenation patterns. longdesc Hyphenation patterns for Portuguese in T1/EC and UTF-8 longdesc encodings. @@ -138839,7 +141126,7 @@ runfiles size=6 name hyphen-romanian category TLCore -revision 58652 +revision 73410 shortdesc Romanian hyphenation patterns. longdesc Hyphenation patterns for Romanian in T1/EC and UTF-8 encodings. longdesc The UTF-8 patterns use U+0219 for the character 's with comma @@ -138857,23 +141144,24 @@ runfiles size=6 name hyphen-romansh category TLCore -revision 58652 +revision 74115 shortdesc Romansh hyphenation patterns. -longdesc Hyphenation patterns for Romansh in ASCII encoding. They are -longdesc supposed to comply with the rules indicated by the Lia -longdesc Rumantscha (Romansh language society). +longdesc Hyphenation patterns for Romansh. All Romansh idioms and +longdesc Rumantsch Grischun taken into account, developed in +longdesc collaboration with Fundaziun Medias Rumantschas (Romansh news +longdesc agency) and Lia Rumantscha (Romansh umbrella organisation). depend hyph-utf8 depend hyphen-base execute AddHyphen name=romansh lefthyphenmin=2 righthyphenmin=2 file=loadhyph-rm.tex file_patterns=hyph-rm.pat.txt file_exceptions= runfiles size=5 texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex - texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-rm.tex + texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-rm.ec.tex texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-rm.pat.txt name hyphen-russian category TLCore -revision 58609 +revision 73410 shortdesc Russian hyphenation patterns. longdesc Hyphenation patterns for Russian in T2A and UTF-8 encodings. longdesc For 8-bit engines, the 'ruhyphen' package provides a number of @@ -138895,7 +141183,7 @@ runfiles size=63 name hyphen-sanskrit category TLCore -revision 58652 +revision 73410 shortdesc Sanskrit hyphenation patterns. longdesc Hyphenation patterns for Sanskrit and Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada, Malayalam @@ -138912,7 +141200,7 @@ runfiles size=6 name hyphen-serbian category TLCore -revision 58609 +revision 73410 catalogue srhyphc shortdesc Serbian hyphenation patterns. longdesc Hyphenation patterns for Serbian in T1/EC, T2A and UTF-8 @@ -138947,7 +141235,7 @@ catalogue-version 1.0a name hyphen-slovak category TLCore -revision 58609 +revision 73410 shortdesc Slovak hyphenation patterns. longdesc Hyphenation patterns for Slovak in T1/EC and UTF-8 encodings. longdesc Original patterns 'skhyphen' are still distributed in the @@ -138964,7 +141252,7 @@ runfiles size=19 name hyphen-slovenian category TLCore -revision 58652 +revision 73410 shortdesc Slovenian hyphenation patterns. longdesc Hyphenation patterns for Slovenian in T1/EC and UTF-8 longdesc encodings. @@ -138979,7 +141267,7 @@ runfiles size=8 name hyphen-spanish category TLCore -revision 58652 +revision 73410 shortdesc Spanish hyphenation patterns. longdesc Hyphenation patterns for Spanish in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -139007,7 +141295,7 @@ catalogue-version 5.0 name hyphen-swedish category TLCore -revision 58652 +revision 73410 shortdesc Swedish hyphenation patterns. longdesc Hyphenation patterns for Swedish in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -139021,7 +141309,7 @@ runfiles size=25 name hyphen-thai category TLCore -revision 58652 +revision 73410 shortdesc Thai hyphenation patterns. longdesc Hyphenation patterns for Thai in LTH and UTF-8 encodings. depend hyph-utf8 @@ -139035,7 +141323,7 @@ runfiles size=55 name hyphen-turkish category TLCore -revision 58652 +revision 73410 catalogue tkhyph shortdesc Turkish hyphenation patterns. longdesc Hyphenation patterns for Turkish in T1/EC and UTF-8 encodings. @@ -139062,7 +141350,7 @@ catalogue-topics hyphenation turkish name hyphen-turkmen category TLCore -revision 58652 +revision 73410 shortdesc Turkmen hyphenation patterns. longdesc Hyphenation patterns for Turkmen in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -139078,7 +141366,7 @@ runfiles size=14 name hyphen-ukrainian category TLCore -revision 58652 +revision 73410 shortdesc Ukrainian hyphenation patterns. longdesc Hyphenation patterns for Ukrainian in T2A and UTF-8 encodings. longdesc For 8-bit engines, the 'ukrhyph' package provides a number of @@ -139100,7 +141388,7 @@ runfiles size=41 name hyphen-uppersorbian category TLCore -revision 58609 +revision 73410 shortdesc Upper Sorbian hyphenation patterns. longdesc Hyphenation patterns for Upper Sorbian in T1/EC and UTF-8 longdesc encodings. @@ -139114,9 +141402,20 @@ runfiles size=12 texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.hyp.txt texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.pat.txt +name hyphen-vietnamese +category TLCore +revision 74032 +shortdesc Vietnamese hyphenation patterns. +longdesc Prevents hyphenation in Vietnamese. +depend hyph-utf8 +depend hyphen-base +execute AddHyphen name=vietnamese lefthyphenmin=0 righthyphenmin=0 file=hyph-vi.tex +runfiles size=1 + texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-vi.tex + name hyphen-welsh category TLCore -revision 58652 +revision 73410 shortdesc Welsh hyphenation patterns. longdesc Hyphenation patterns for Welsh in T1/EC and UTF-8 encodings. depend hyph-utf8 @@ -139199,53 +141498,51 @@ catalogue-version 1.0 name iaria category Package -revision 70919 +revision 73502 shortdesc Write documents for the IARIA publications longdesc This package contains templates for the creation of documents longdesc for IARIA publications (International Academy, Research, and longdesc Industry Association) and implements the specifications for the longdesc IARIA citation style. -docfiles size=95 +docfiles size=83 texmf-dist/doc/latex/iaria/COPYING texmf-dist/doc/latex/iaria/README details="Readme" texmf-dist/doc/latex/iaria/_cpn_copyIntoExamplesFolder_cls.cmd texmf-dist/doc/latex/iaria/docstrip.cfg texmf-dist/doc/latex/iaria/iaria.pdf details="Package documentation" texmf-dist/doc/latex/iaria/template/cpn_all_all.bib - texmf-dist/doc/latex/iaria/template/cpn_supervised_all.bib - texmf-dist/doc/latex/iaria/template/iaria-example-neumann.pdf + texmf-dist/doc/latex/iaria/template/iaria-example-neumann.pdf details="Example of use" texmf-dist/doc/latex/iaria/template/iaria-example-neumann.tex -srcfiles size=5 +srcfiles size=6 texmf-dist/source/latex/iaria/iaria.dtx texmf-dist/source/latex/iaria/iaria.ins -runfiles size=1 +runfiles size=2 texmf-dist/tex/latex/iaria/iaria.cls catalogue-also iaria-lite catalogue-ctan /macros/latex/contrib/iaria catalogue-license lppl1.3c -catalogue-topics publisher -catalogue-version 0.2 +catalogue-topics class doc-templ publisher +catalogue-version 0.6 name iaria-lite category Package -revision 70918 +revision 73503 shortdesc Write documents for the IARIA publications longdesc This package provides a convenient environment for writing longdesc IARIA (International Academy, Research, and Industry longdesc Association) scholary publications. It does not implement the longdesc specifications for the IARIA citation style, for which you have longdesc to use the iaria class. -docfiles size=95 +docfiles size=85 texmf-dist/doc/latex/iaria-lite/COPYING texmf-dist/doc/latex/iaria-lite/README details="Readme" texmf-dist/doc/latex/iaria-lite/_cpn_copyIntoExamplesFolder_cls.cmd texmf-dist/doc/latex/iaria-lite/docstrip.cfg texmf-dist/doc/latex/iaria-lite/iaria-lite.pdf details="Package documentation" texmf-dist/doc/latex/iaria-lite/template/cpn_all_all.bib - texmf-dist/doc/latex/iaria-lite/template/cpn_supervised_all.bib - texmf-dist/doc/latex/iaria-lite/template/iaria-lite-example-neumann.pdf + texmf-dist/doc/latex/iaria-lite/template/iaria-lite-example-neumann.pdf details="Example of use" texmf-dist/doc/latex/iaria-lite/template/iaria-lite-example-neumann.tex -srcfiles size=4 +srcfiles size=5 texmf-dist/source/latex/iaria-lite/iaria-lite.dtx texmf-dist/source/latex/iaria-lite/iaria-lite.ins runfiles size=1 @@ -139253,8 +141550,8 @@ runfiles size=1 catalogue-also iaria catalogue-ctan /macros/latex/contrib/iaria-lite catalogue-license lppl1.3c -catalogue-topics publisher -catalogue-version 0.2 +catalogue-topics class doc-templ publisher +catalogue-version 0.6 name ibarra category Package @@ -139989,7 +142286,7 @@ catalogue-version 1.0.0 name iexec category Package -revision 69420 +revision 73480 shortdesc Execute shell commands and input their output longdesc With the help of the \iexec command, you can execute a shell longdesc command and then input its output into your document. This @@ -140010,7 +142307,7 @@ 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.14.0 +catalogue-version 0.15.0 name ifallfalse category Package @@ -140304,7 +142601,7 @@ catalogue-topics font font-mf font-symbol name iftex category Package -revision 61910 +revision 73115 shortdesc Am I running under pdfTeX, XeTeX or LuaTeX? longdesc The package, which works both for Plain TeX and for LaTeX, longdesc defines the \ifPDFTeX, \ifXeTeX, and \ifLuaTeX conditionals for @@ -140329,7 +142626,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.0f +catalogue-version 1.0g name ifthenx category Package @@ -141187,7 +143484,7 @@ catalogue-version 0.5 name index category Package -revision 24099 +revision 73880 shortdesc Extended index for LaTeX including multiple indexes longdesc This is a reimplementation of LaTeX's indexing macros to longdesc provide better support for indexing. For example, it supports @@ -141196,30 +143493,21 @@ longdesc robust \index command. It supplies short hand notations for the longdesc \index command (^{word}) and a * variation of \index longdesc (abbreviated _{word}) that prints the word being indexed, as longdesc well as creating an index entry for it. -docfiles size=63 - texmf-dist/doc/latex/index/README details="Package Readme" - texmf-dist/doc/latex/index/TODO - texmf-dist/doc/latex/index/agsmtst.tex - texmf-dist/doc/latex/index/autind.tex +docfiles size=77 + texmf-dist/doc/latex/index/README.md details="Package Readme" texmf-dist/doc/latex/index/index.pdf details="Package documentation" - texmf-dist/doc/latex/index/plaintst.tex + texmf-dist/doc/latex/index/manifest.txt texmf-dist/doc/latex/index/sample.tex - texmf-dist/doc/latex/index/test.bib -srcfiles size=14 +srcfiles size=12 texmf-dist/source/latex/index/index.dtx texmf-dist/source/latex/index/index.ins -runfiles size=17 - texmf-dist/bibtex/bst/index/xagsm.bst - texmf-dist/bibtex/bst/index/xplain.bst - texmf-dist/makeindex/index/bibref.ist - texmf-dist/tex/latex/index/autind.sty - texmf-dist/tex/latex/index/bibref.sty +runfiles size=3 texmf-dist/tex/latex/index/index.sty catalogue-also splitindex multind catalogue-ctan /macros/latex/contrib/index -catalogue-license other-free +catalogue-license lppl1.3 catalogue-topics index index-multi -catalogue-version 4.1beta +catalogue-version 4.04 name indextools category Package @@ -141561,6 +143849,24 @@ catalogue-license lppl catalogue-topics macro-def catalogue-version 1.0 +name inlinegraphicx +category Package +revision 73069 +shortdesc Insert inline images, with automatic size/positioning +longdesc Insert inline images (based on graphicx ans calc packages), +longdesc with automatic size/positioning. +docfiles size=54 + texmf-dist/doc/latex/inlinegraphicx/README.md details="Readme" + texmf-dist/doc/latex/inlinegraphicx/inlinegraphicx-doc.pdf details="Package documentation" + texmf-dist/doc/latex/inlinegraphicx/inlinegraphicx-doc.tex + texmf-dist/doc/latex/inlinegraphicx/test_inlinegraphicx.pdf +runfiles size=1 + texmf-dist/tex/latex/inlinegraphicx/inlinegraphicx.sty +catalogue-ctan /macros/latex/contrib/inlinegraphicx +catalogue-license lppl1.3c +catalogue-topics graphics-incl +catalogue-version 0.1.0 + name inlinelabel category Package revision 63853 @@ -141582,7 +143888,7 @@ catalogue-version 1.2.1 name innerscript category Package -revision 68776 +revision 72066 shortdesc Small modifications to math formatting longdesc This package optionally modifies four aspects of TeX's longdesc automatic math formatting to improve typesetting: (1) it adds @@ -141605,7 +143911,7 @@ runfiles size=9 catalogue-ctan /macros/luatex/latex/innerscript catalogue-license lppl1.3c catalogue-topics maths -catalogue-version 1.2 +catalogue-version 1.3 name inputenx category Package @@ -142617,14 +144923,14 @@ catalogue-version 2.2 name install-latex-guide-zh-cn category Package -revision 71400 +revision 73250 shortdesc A short introduction to LaTeX installation written in Chinese longdesc This package will introduce the operations related to longdesc installing TeX Live (introducing MacTeX in macOS), upgrading longdesc macro packages, and compiling simple documents on Windows 10, longdesc Ubuntu 20.04, and macOS systems, and mainly introducing command longdesc line operations. -docfiles size=242 +docfiles size=244 texmf-dist/doc/latex/install-latex-guide-zh-cn/LICENSE texmf-dist/doc/latex/install-latex-guide-zh-cn/README.md details="Readme" texmf-dist/doc/latex/install-latex-guide-zh-cn/appendix/mirror.tex @@ -142645,7 +144951,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 2024.6.1 +catalogue-version 2024.9.1 name installfont category Package @@ -144296,6 +146602,38 @@ catalogue-license lppl1.3 catalogue-topics package-supp catalogue-version 3.1 +name interlinear +category Package +revision 72106 +shortdesc A package for creating interlinear glossed texts with customizable formatting +longdesc The interlinear package facilitates the creation of interlinear +longdesc glossed texts, commonly used in linguistic examples. It is +longdesc based on the gb4e package and builds upon its functionality to +longdesc provide enhanced features. It offers extensive customization +longdesc options, allowing users to control font styles, formatting, and +longdesc layout. With predefined styles and margin note customization, +longdesc interlinear provides a flexible solution for presenting +longdesc linguistic data. +depend enumitem +depend etoolbox +depend l3packages +depend marginnote +depend xifthen +depend xkeyval +docfiles size=40 + texmf-dist/doc/latex/interlinear/DEPENDS.txt + texmf-dist/doc/latex/interlinear/LICENSE.txt + texmf-dist/doc/latex/interlinear/README.md details="Readme" + texmf-dist/doc/latex/interlinear/VERSION_1_0 + texmf-dist/doc/latex/interlinear/interlinear-doc.pdf details="Package documentation" + texmf-dist/doc/latex/interlinear/interlinear-doc.tex +runfiles size=12 + texmf-dist/tex/latex/interlinear/interlinear.sty +catalogue-ctan /macros/latex/contrib/interlinear +catalogue-license lppl1.3c +catalogue-topics linguistic +catalogue-version 1.0 + name interpreter category Package revision 27232 @@ -146550,7 +148888,7 @@ catalogue-version 0.5 name ipsum category Package -revision 68861 +revision 73069 shortdesc Insert multilingual placeholder text longdesc This is a package to work with multilingual Lorem Ipsum dummy longdesc texts. @@ -146561,9 +148899,6 @@ docfiles size=45 runfiles size=13 texmf-dist/tex/latex/ipsum/ipsum.sty catalogue-also lipsum -catalogue-contact-bugs https://github.com/cpierquet/ipsum/issues -catalogue-contact-home https://github.com/cpierquet/ipsum -catalogue-contact-repository https://github.com/cpierquet/ipsum catalogue-ctan /macros/latex/contrib/ipsum catalogue-license lppl1.3c catalogue-topics dummy-gen @@ -146571,7 +148906,7 @@ catalogue-version 0.1.2 name iran-bibtex category Package -revision 71187 +revision 71972 shortdesc Iran Manual of Style Citation Guide for BibTeX longdesc The iran-bibtex package, designed for LaTeX, provides BibTeX longdesc styles in accordance with the guidelines outlined in the Iran @@ -146608,7 +148943,7 @@ catalogue-contact-repository https://github.com/farshadrasuli/iran-bibtex catalogue-ctan /biblio/bibtex/contrib/iran-bibtex catalogue-license lppl1.3c catalogue-topics persian bibtex-sty -catalogue-version 0.4.1 +catalogue-version 0.4.3 name is-bst category Package @@ -146921,339 +149256,336 @@ catalogue-topics rotation name isosafety category Package -revision 68801 +revision 72227 shortdesc Provides ISO signs and colors according to the standards 7010 and 3864 longdesc The package provides safety colors (ISO 3864) and safety signs longdesc (ISO 7010) from the ISO. It can be useful when creating longdesc instructions for chemical or physical experiments. -docfiles size=450 +docfiles size=29 texmf-dist/doc/latex/isosafety/README.md details="Readme" - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV003.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV004.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV009.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV010.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV011.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV012.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV013.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV027.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV028.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV029.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV064.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_CV067.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E001.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E002.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E003.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E004.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E007.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E008.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E009.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E010.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E011.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E012.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E013.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E014.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E015.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E016.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E017.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E018.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E019.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E020.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E021.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E022.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E023.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E024.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E025.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E026.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E027.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E028.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E029.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E030.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E031.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E032.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E033.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E034.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E035.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E036.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E037.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E038.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E039.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E040.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E041.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E042.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E043.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E044.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E045.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E046.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E047.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E048.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E049.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E050.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E051.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E052.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E053.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E054.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E055.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E056.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E057.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E058.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E059.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E060.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E061.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E062.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E063.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E064.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E065.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E067.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E068.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E069.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_E070.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F001.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F002.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F003.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F004.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F005.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F006.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F007.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F008.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F009.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F010.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F011.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F012.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F013.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F014.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F015.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F016.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F017.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F018.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_F019.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M001.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M002.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M003.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M004.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M005.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M006.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M007.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M008.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M009.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M010.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M011.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M012.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M013.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M014.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M015.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M016.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M017.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M018.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M019.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M020.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M021.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M022.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M023.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M024.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M025.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M026.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M027.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M028.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M029.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M030.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M031.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M032.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M033.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M034.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M035.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M036.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M037.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M038.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M039.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M040.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M041.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M042.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M043.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M044.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M045.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M046.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M047.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M048.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M049.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M050.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M051.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M052.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M053.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M054.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M055.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M056.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M057.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M058.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M059.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_M060.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P001.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P002.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P003.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P004.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P005.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P006.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P007.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P008.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P009.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P010.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P011.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P012.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P013.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P014.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P015.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P016.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P017.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P018.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P019.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P020.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P021.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P022.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P023.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P024.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P025.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P026.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P027.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P028.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P029.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P030.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P031.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P032.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P033.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P034.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P035.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P036.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P037.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P038.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P039.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P040.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P041.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P042.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P043.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P044.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P045.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P046.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P047.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P048.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P049.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P050.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P051.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P052.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P053.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P054.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P055.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P056.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P057.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P058.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P059.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P060.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P061.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P062.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P063.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P064.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P065.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P066.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P067.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P068.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P069.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P070.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P071.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P072.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P073.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P074.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_P075.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W001.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W002.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W003.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W004.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W005.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W006.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W007.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W008.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W009.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W010.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W011.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W012.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W013.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W014.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W015.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W016.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W017.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W018.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W019.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W020.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W021.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W022.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W023.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W024.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W025.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W026.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W027.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W028.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W029.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W030.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W031.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W032.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W033.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W034.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W035.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W036.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W037.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W038.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W039.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W040.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W041.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W042.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W043.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W044.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W045.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W046.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W047.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W048.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W049.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W050.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W051.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W052.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W053.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W054.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W055.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W056.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W057.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W058.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W059.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W060.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W061.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W062.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W063.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W064.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W065.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W066.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W067.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W068.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W069.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W070.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W071.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W072.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W073.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W074.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W075.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W076.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W077.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W078.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W079.pdf - texmf-dist/doc/latex/isosafety/isosafety-pdfs/ISO_7010_W080.pdf - texmf-dist/doc/latex/isosafety/isosafety.pdf details="Package documentation" -srcfiles size=2 - texmf-dist/source/latex/isosafety/isosafety.dtx - texmf-dist/source/latex/isosafety/isosafety.ins -runfiles size=1 + texmf-dist/doc/latex/isosafety/isosafety-docs.pdf details="Package documentation" + texmf-dist/doc/latex/isosafety/isosafety-docs.tex +runfiles size=415 + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV003.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV004.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV009.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV010.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV011.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV012.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV013.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV027.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV028.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV029.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV064.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_CV067.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E001.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E002.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E003.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E004.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E007.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E008.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E009.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E010.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E011.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E012.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E013.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E014.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E015.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E016.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E017.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E018.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E019.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E020.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E021.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E022.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E023.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E024.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E025.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E026.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E027.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E028.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E029.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E030.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E031.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E032.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E033.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E034.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E035.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E036.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E037.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E038.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E039.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E040.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E041.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E042.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E043.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E044.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E045.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E046.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E047.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E048.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E049.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E050.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E051.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E052.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E053.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E054.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E055.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E056.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E057.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E058.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E059.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E060.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E061.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E062.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E063.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E064.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E065.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E067.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E068.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E069.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_E070.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F001.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F002.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F003.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F004.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F005.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F006.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F007.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F008.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F009.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F010.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F011.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F012.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F013.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F014.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F015.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F016.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F017.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F018.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_F019.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M001.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M002.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M003.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M004.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M005.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M006.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M007.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M008.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M009.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M010.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M011.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M012.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M013.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M014.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M015.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M016.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M017.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M018.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M019.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M020.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M021.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M022.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M023.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M024.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M025.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M026.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M027.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M028.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M029.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M030.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M031.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M032.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M033.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M034.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M035.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M036.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M037.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M038.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M039.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M040.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M041.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M042.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M043.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M044.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M045.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M046.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M047.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M048.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M049.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M050.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M051.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M052.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M053.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M054.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M055.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M056.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M057.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M058.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M059.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_M060.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P001.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P002.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P003.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P004.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P005.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P006.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P007.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P008.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P009.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P010.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P011.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P012.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P013.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P014.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P015.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P016.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P017.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P018.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P019.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P020.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P021.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P022.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P023.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P024.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P025.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P026.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P027.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P028.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P029.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P030.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P031.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P032.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P033.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P034.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P035.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P036.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P037.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P038.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P039.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P040.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P041.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P042.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P043.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P044.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P045.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P046.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P047.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P048.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P049.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P050.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P051.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P052.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P053.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P054.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P055.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P056.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P057.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P058.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P059.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P060.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P061.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P062.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P063.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P064.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P065.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P066.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P067.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P068.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P069.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P070.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P071.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P072.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P073.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P074.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_P075.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W001.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W002.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W003.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W004.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W005.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W006.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W007.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W008.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W009.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W010.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W011.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W012.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W013.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W014.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W015.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W016.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W017.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W018.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W019.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W020.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W021.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W022.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W023.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W024.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W025.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W026.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W027.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W028.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W029.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W030.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W031.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W032.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W033.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W034.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W035.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W036.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W037.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W038.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W039.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W040.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W041.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W042.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W043.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W044.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W045.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W046.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W047.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W048.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W049.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W050.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W051.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W052.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W053.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W054.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W055.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W056.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W057.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W058.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W059.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W060.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W061.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W062.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W063.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W064.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W065.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W066.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W067.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W068.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W069.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W070.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W071.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W072.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W073.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W074.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W075.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W076.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W077.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W078.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W079.pdf + texmf-dist/tex/latex/isosafety/isosafety-pdfs/ISO_7010_W080.pdf texmf-dist/tex/latex/isosafety/isosafety.sty catalogue-contact-bugs https://github.com/BenSt099/isosafety/issues -catalogue-contact-home https://github.com/BenSt099/isosafety catalogue-contact-repository https://github.com/BenSt099/isosafety catalogue-ctan /macros/latex/contrib/isosafety catalogue-license lppl1.3c catalogue-topics typeset-std -catalogue-version 1.1 +catalogue-version 1.4 name isotope category Package @@ -147277,25 +149609,27 @@ catalogue-version 0.3 name isphysicalmath category Package -revision 69343 +revision 73239 shortdesc Simple way to write nice formulas -longdesc This package provides an easy way to write mathematical and -longdesc physical formulas and arguments in scientific notation in an -longdesc elegant way. -docfiles size=31 +longdesc This package helps users to write mathematical and physical +longdesc contents according to scientific notation (international +longdesc mainly), in an elegant way. It deals with the notation and +longdesc formatting of formulas, quantities, numerical values, factors, +longdesc dimensions, measurement units and also performs its activities +longdesc in complex mathematical environments. +docfiles size=39 texmf-dist/doc/latex/isphysicalmath/README.md details="Readme" texmf-dist/doc/latex/isphysicalmath/isphysicalmath-doc.pdf details="Package documentation" -srcfiles size=8 +srcfiles size=22 texmf-dist/source/latex/isphysicalmath/isphysicalmath.dtx texmf-dist/source/latex/isphysicalmath/isphysicalmath.ins -runfiles size=2 +runfiles size=9 texmf-dist/tex/latex/isphysicalmath/isphysicalmath.sty catalogue-also siunitx -catalogue-contact-home https://github.com/MartDiVenus/LaTeX/tree/isphysicalmath catalogue-ctan /macros/latex/contrib/isphysicalmath catalogue-license lppl1.3 catalogue-topics units -catalogue-version 1.1.0 +catalogue-version 2.0.0 name issuulinks category Package @@ -148015,14 +150349,14 @@ catalogue-version 0.995b name iwonamath category Package -revision 68144 +revision 71844 shortdesc LaTeX support for scaled Iwona math fonts longdesc This package provides an interface to the Iwona math fonts by longdesc Janusz Marian Nowacki. It allows to use Iwona as math longdesc complement for sans serif fonts without native math. The longdesc package allows font scaling, the choice of light and condensed longdesc versions, and the creation of multiple math versions. -docfiles size=220 +docfiles size=219 texmf-dist/doc/latex/iwonamath/README details="Readme" texmf-dist/doc/latex/iwonamath/iwonamath.bib texmf-dist/doc/latex/iwonamath/iwonamath.pdf details="Package documentation" @@ -148062,7 +150396,7 @@ catalogue-contact-repository https://github.com/borisveytsman/iwonamath catalogue-ctan /macros/latex/contrib/iwonamath catalogue-license lppl1.3c catalogue-topics font-supp-maths expl3 -catalogue-version 1.0 +catalogue-version 1.1 name jablantile category Package @@ -148480,7 +150814,7 @@ catalogue-version 1.0.2 name japanese-otf category Package -revision 68492 +revision 74106 shortdesc Advanced font selection for platex and its friends longdesc The package contains pLaTeX support files and virtual fonts for longdesc supporting a wide variety of fonts in LaTeX using the pTeX @@ -148490,7 +150824,7 @@ execute addKanjiMap otf-ko-@koEmbed@.map execute addKanjiMap otf-sc-@scEmbed@.map execute addKanjiMap otf-tc-@tcEmbed@.map execute addKanjiMap otf-up-@jaEmbed@.map -docfiles size=110 +docfiles size=148 texmf-dist/doc/fonts/japanese-otf/COPYRIGHT texmf-dist/doc/fonts/japanese-otf/ChangeLog.md texmf-dist/doc/fonts/japanese-otf/README details="Readme (English)" language="en" @@ -148518,9 +150852,11 @@ docfiles size=110 texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/cjk-mltwght-v.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/cjk-pxbabel-h.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/cjk-pxbabel-v.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/combined_kana_text.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/direction-utf8.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/era.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/exclam.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/ivd_jp_text.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/jotf-psfonts.map texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/otfscale.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/paren0.tex @@ -148531,9 +150867,15 @@ docfiles size=110 texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/sp_jp_text.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/sp_jp_utf.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/sp_kr_utf.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/svs_list_jpn.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/svs_list_kor.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/svs_list_min_jpn.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/svs_list_sch.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/svs_list_tch.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/uotf-cid-h.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/uotf-cid-v.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/uotf-sp-utf8.tex + texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/uotf-vs-utf8.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/uotftest-utf8.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/uotftest.tex texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/upbrsgtest.tex @@ -148544,7 +150886,7 @@ docfiles size=110 texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/utfmacro-haranoaji.map texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/utfmacro-ibmplex.map texmf-dist/doc/fonts/japanese-otf/doc/test/uplatex/utfmacro-kozuka.map -srcfiles size=174 +srcfiles size=181 texmf-dist/source/fonts/japanese-otf/basepl/base-h.pl texmf-dist/source/fonts/japanese-otf/basepl/base-v.pl texmf-dist/source/fonts/japanese-otf/basepl/base0-h.pl @@ -148573,6 +150915,7 @@ srcfiles size=174 texmf-dist/source/fonts/japanese-otf/mkjvf texmf-dist/source/fonts/japanese-otf/script/CheckDVICode.pm texmf-dist/source/fonts/japanese-otf/script/MakeSPList.pm + texmf-dist/source/fonts/japanese-otf/script/MakeVSList.pm texmf-dist/source/fonts/japanese-otf/script/glyphdata texmf-dist/source/fonts/japanese-otf/script/mkaltutfvf.pl texmf-dist/source/fonts/japanese-otf/script/mkcidofm.pl @@ -148592,6 +150935,10 @@ srcfiles size=174 texmf-dist/source/fonts/japanese-otf/script/sp_list_j.txt texmf-dist/source/fonts/japanese-otf/script/sp_list_k.txt texmf-dist/source/fonts/japanese-otf/script/sp_list_t.txt + texmf-dist/source/fonts/japanese-otf/script/svs_list_c.txt + texmf-dist/source/fonts/japanese-otf/script/svs_list_j.txt + texmf-dist/source/fonts/japanese-otf/script/svs_list_k.txt + texmf-dist/source/fonts/japanese-otf/script/svs_list_t.txt texmf-dist/source/fonts/japanese-otf/script/umkcidtfm.pl texmf-dist/source/fonts/japanese-otf/script/umkcidvf.pl texmf-dist/source/fonts/japanese-otf/script/umkpkana.pl @@ -148602,7 +150949,7 @@ srcfiles size=174 texmf-dist/source/fonts/japanese-otf/umakeotf_pre texmf-dist/source/fonts/japanese-otf/umakeotf_prop texmf-dist/source/fonts/japanese-otf/umkjvf -runfiles size=25479 +runfiles size=22791 texmf-dist/fonts/tfm/public/japanese-otf/brsgexpgothb-h.tfm texmf-dist/fonts/tfm/public/japanese-otf/brsgexpgothb-v.tfm texmf-dist/fonts/tfm/public/japanese-otf/brsgexpgothbn-h.tfm @@ -152260,18 +154607,68 @@ catalogue-license other-free catalogue-topics bibtex-sty journalpub catalogue-version 1.30 +name jetbrainsmono-otf +category Package +revision 73401 +shortdesc Package (or only fontspec config files) support for the OpenType font JetBrains +longdesc Support for the OpenType font JetBrainsMono (so with +longdesc LuaLaTeX/XeTeX and fontspec),with or without ligatures, and +longdesc with weights versions. jetbrainsmono or jetbrainscode for +longdesc regular version, jetbrainsmono-medium or jetbrainscode-medium +longdesc for medium version, jetbrainsmono-light or jetbrainscode-light +longdesc for light version, jetbrainsmono-extralight or +longdesc jetbrainscode-extralight for extralight version, +longdesc jetbrainsmono-thin or jetbrainscode-thin for thin version. +docfiles size=44 + texmf-dist/doc/fonts/jetbrainsmono-otf/README.md details="Readme" + texmf-dist/doc/fonts/jetbrainsmono-otf/jetbrainsmono-otf-doc.pdf details="Package documentation" + texmf-dist/doc/fonts/jetbrainsmono-otf/jetbrainsmono-otf-doc.tex +runfiles size=597 + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-Bold.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-BoldItalic.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-ExtraBold.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-ExtraBoldItalic.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-ExtraLight.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-ExtraLightItalic.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-Italic.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-Light.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-LightItalic.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-Medium.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-MediumItalic.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-Regular.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-SemiBold.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-SemiBoldItalic.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-Thin.otf + texmf-dist/fonts/opentype/SIL/jetbrainsmono-otf/JetBrainsMono-ThinItalic.otf + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainscode-extralight.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainscode-light.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainscode-medium.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainscode-thin.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainscode.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainsmono-extralight.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainsmono-light.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainsmono-medium.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainsmono-otf.sty + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainsmono-thin.fontspec + texmf-dist/tex/latex/jetbrainsmono-otf/jetbrainsmono.fontspec +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-ctan /fonts/jetbrainsmono-otf +catalogue-license lppl1.3 ofl +catalogue-topics font-supp font-otf font-mono +catalogue-version 0.1 + name jeuxcartes category Package -revision 68266 +revision 73958 shortdesc Macros to insert playing cards 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. -docfiles size=2036 +docfiles size=2038 texmf-dist/doc/latex/jeuxcartes/JeuxCartes-doc.pdf details="Package documentation" language="fr" texmf-dist/doc/latex/jeuxcartes/JeuxCartes-doc.tex texmf-dist/doc/latex/jeuxcartes/README.md details="Readme" -runfiles size=2018 +runfiles size=2019 texmf-dist/tex/latex/jeuxcartes/CaJ-PokeRbic-10C.pdf texmf-dist/tex/latex/jeuxcartes/CaJ-PokeRbic-10K.pdf texmf-dist/tex/latex/jeuxcartes/CaJ-PokeRbic-10P.pdf @@ -152801,12 +155198,11 @@ runfiles size=2018 texmf-dist/tex/latex/jeuxcartes/CaJ-UnOv1-PTR.pdf texmf-dist/tex/latex/jeuxcartes/CaJ-UnOv1-PTV.pdf texmf-dist/tex/latex/jeuxcartes/JeuxCartes.sty -catalogue-contact-bugs https://github.com/cpierquet/JeuxCartes/issues -catalogue-contact-repository https://github.com/cpierquet/JeuxCartes +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex catalogue-ctan /macros/latex/contrib/jeuxcartes catalogue-license lppl1.3c lgpl2.1 pd cc-by-sa-4 pd mit catalogue-topics games pgf-tikz card-gen -catalogue-version 0.2.8 +catalogue-version 0.3.1 name jfmutil category Package @@ -152962,7 +155358,7 @@ catalogue-version 0.19 name jigsaw category Package -revision 71084 +revision 71923 shortdesc Draw jigsaw pieces with TikZ longdesc This is a small LaTeX package to draw jigsaw pieces with TikZ. longdesc It is possible to draw individual pieces and adjust their @@ -152971,13 +155367,13 @@ longdesc jigsaws. depend epstopdf-pkg depend iftex depend pgf -docfiles size=41 +docfiles size=43 texmf-dist/doc/latex/jigsaw/DEPENDS.txt texmf-dist/doc/latex/jigsaw/README.md details="Readme" + texmf-dist/doc/latex/jigsaw/jigsaw-doc-settings.sty texmf-dist/doc/latex/jigsaw/jigsaw-doc.pdf details="Package documentation" texmf-dist/doc/latex/jigsaw/jigsaw-doc.tex -runfiles size=3 - texmf-dist/tex/latex/jigsaw/jigsaw-doc-settings.sty +runfiles size=1 texmf-dist/tex/latex/jigsaw/jigsaw.sty catalogue-contact-repository https://github.com/samcarter/jigsaw catalogue-contact-support https://github.com/samcarter/jigsaw/issues @@ -153064,13 +155460,13 @@ catalogue-topics labels name jlreq category Package -revision 69911 +revision 72460 shortdesc Japanese document class based on requirements for Japanese text layout 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. -docfiles size=176 +docfiles size=222 texmf-dist/doc/latex/jlreq/LICENSE texmf-dist/doc/latex/jlreq/README-ja.md details="Readme" language="ja" texmf-dist/doc/latex/jlreq/README.md details="Readme" @@ -154467,7 +156863,7 @@ catalogue-version 1.00 name jnuexam category Package -revision 71753 +revision 71883 shortdesc Exam class for Jinan University longdesc The package provides an exam class for Jinan University longdesc (China). @@ -154497,7 +156893,7 @@ catalogue-contact-home https://lvjr.bitbucket.io/jnuexam.html catalogue-ctan /macros/latex/contrib/jnuexam catalogue-license lppl1.3c catalogue-topics exam class chinese -catalogue-version 2024E +catalogue-version 2024F name jobname-suffix category Package @@ -154523,7 +156919,7 @@ catalogue-version 1.0 name joinbox category Package -revision 68003 +revision 72239 shortdesc Join boxes vertically or horizontally longdesc This package can join boxes vertically or horizontally. When longdesc using vertical joining, all boxes to be joined will keep same @@ -154545,7 +156941,7 @@ catalogue-contact-repository https://gitee.com/nwafu_nan/joinbox catalogue-ctan /macros/latex/contrib/joinbox catalogue-license lppl1.3c catalogue-topics box-manip expl3 -catalogue-version 1.0.2 +catalogue-version 1.0.3 name josefin category Package @@ -154829,7 +157225,7 @@ catalogue-topics letter class doc-templ name jpneduenumerate category Package -revision 63893 +revision 72898 shortdesc Enumerative expressions in Japanese education longdesc Mathematical equation representation in Japanese education longdesc differs somewhat from the standard LaTeX writing style. This @@ -154845,27 +157241,27 @@ catalogue-contact-home https://www.metaphysica.info/technote/package_jpneduenume catalogue-ctan /macros/latex/contrib/jpneduenumerate catalogue-license mit catalogue-topics maths japanese list-enum -catalogue-version 1.2 +catalogue-version 1.3 name jpnedumathsymbols category Package -revision 63864 +revision 72959 shortdesc Mathematical equation representation in Japanese education 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. -docfiles size=91 +docfiles size=94 texmf-dist/doc/latex/jpnedumathsymbols/README.md details="Readme" - texmf-dist/doc/latex/jpnedumathsymbols/jpnedumathsymbols.pdf details="Package documentation" language="en,ja" - texmf-dist/doc/latex/jpnedumathsymbols/jpnedumathsymbols.tex -runfiles size=6 + texmf-dist/doc/latex/jpnedumathsymbols/jpnedumathsymbols-doc.pdf details="Package documentation" language="en,ja" + texmf-dist/doc/latex/jpnedumathsymbols/jpnedumathsymbols-doc.tex +runfiles size=7 texmf-dist/tex/latex/jpnedumathsymbols/jpnedumathsymbols.sty -catalogue-contact-home https://www.metaphysica.info/technote/package_jpnedumathsymbols/ +catalogue-contact-home https://www.metaphysica.info/tool/jpnedumathsymbols/ catalogue-ctan /macros/latex/contrib/jpnedumathsymbols catalogue-license mit catalogue-topics maths japanese -catalogue-version 1.1 +catalogue-version 1.3 name jpsj category Package @@ -154963,7 +157359,7 @@ catalogue-topics japanese class name jslectureplanner category Package -revision 70443 +revision 73640 shortdesc Creation and management of university course material longdesc The jslectureplanner package facilitates the generation and longdesc management of university course material. It provides an @@ -154975,7 +157371,7 @@ longdesc date of the first lecture is specified. Moreover, the package longdesc can be used to generate a sectioned course bibliography via longdesc BibLaTeX. The bundle also includes a package jsmembertable.sty longdesc that helps in generating course member and presence lists. -docfiles size=424 +docfiles size=425 texmf-dist/doc/latex/jslectureplanner/README details="Readme" texmf-dist/doc/latex/jslectureplanner/examples/English/lecpresbody-english.tex texmf-dist/doc/latex/jslectureplanner/examples/English/lecturebib-english.pdf @@ -155027,7 +157423,7 @@ docfiles size=424 texmf-dist/doc/latex/jslectureplanner/examples/German/students.csv texmf-dist/doc/latex/jslectureplanner/jslectureplanner.pdf details="Package documentation" texmf-dist/doc/latex/jslectureplanner/jslectureplanner.tex -runfiles size=22 +runfiles size=23 texmf-dist/tex/latex/jslectureplanner/cologne.lps texmf-dist/tex/latex/jslectureplanner/english.lps texmf-dist/tex/latex/jslectureplanner/german-default.lps @@ -155037,30 +157433,31 @@ catalogue-contact-repository https://github.com/jspitz/jslectureplanner catalogue-ctan /macros/latex/contrib/jslectureplanner catalogue-license lppl1.3 catalogue-topics teaching planning -catalogue-version 1.13 +catalogue-version 1.14 name jsonparse category Package -revision 71329 +revision 73957 shortdesc Parse, store and access JSON data in LaTeX documents longdesc This package provides an easy way to read in JSON data from longdesc files or strings in LaTeX documents, parse the data and store longdesc it in a user-defined token variable. -docfiles size=210 +docfiles size=178 texmf-dist/doc/latex/jsonparse/LICENCE texmf-dist/doc/latex/jsonparse/README.md details="Readme" texmf-dist/doc/latex/jsonparse/jason/jason.pdf texmf-dist/doc/latex/jsonparse/jason/jason.svg + texmf-dist/doc/latex/jsonparse/jason/jason.tex texmf-dist/doc/latex/jsonparse/jsonparse-doc.pdf details="Package documentation" texmf-dist/doc/latex/jsonparse/jsonparse-doc.tex -runfiles size=7 +runfiles size=14 texmf-dist/tex/latex/jsonparse/jsonparse.sty catalogue-contact-bugs https://github.com/jasperhabicht/jsonparse/issues catalogue-contact-repository https://github.com/jasperhabicht/jsonparse catalogue-ctan /macros/latex/contrib/jsonparse catalogue-license lppl1.3c catalogue-topics data-manip expl3 -catalogue-version 0.8.6 +catalogue-version 1.1.3 name jumplines category Package @@ -155086,7 +157483,7 @@ catalogue-version 0.2 name junicode category Package -revision 71474 +revision 71871 shortdesc A TrueType and OpenType font family for mediaevalists longdesc Junicode is a TrueType/OpenType font family with many features longdesc for antiquarians (especially medievalists) based on typefaces @@ -155094,7 +157491,7 @@ longdesc used by the Oxford Press in the late 17th and early 18th longdesc centuries. It works well with Lua(La)TeX or Xe(La)TeX, but the longdesc basic textual features are also available with (pdf)LaTeX. execute addMap Junicode.map -docfiles size=596 +docfiles size=633 texmf-dist/doc/fonts/junicode/About.tex texmf-dist/doc/fonts/junicode/EnlargeAxis.tex texmf-dist/doc/fonts/junicode/Feature_Reference.tex @@ -155113,7 +157510,8 @@ docfiles size=596 texmf-dist/doc/fonts/junicode/junicode-samples.pdf details="Font samples" texmf-dist/doc/fonts/junicode/junicode-samples.tex texmf-dist/doc/fonts/junicode/tag_key_ins.tex -runfiles size=42942 + texmf-dist/doc/fonts/junicode/upperpua.tex +runfiles size=43545 texmf-dist/fonts/enc/dvips/junicode/jncd_2eszu7.enc texmf-dist/fonts/enc/dvips/junicode/jncd_2hbdle.enc texmf-dist/fonts/enc/dvips/junicode/jncd_2j6faw.enc @@ -158639,11 +161037,11 @@ catalogue-contact-support https://github.com/psb1558/Junicode-font/discussions catalogue-ctan /fonts/junicode catalogue-license ofl lppl catalogue-topics font font-otf font-type1 font-historical font-medieval font-supp -catalogue-version 2.208 +catalogue-version 2.209 name junicodevf category Package -revision 69374 +revision 71920 shortdesc A TrueType variable font family for mediaevalists longdesc This package supports the Junicode variable fonts for LuaLaTeX. longdesc The Junicode font is primarily for scholars and students of the @@ -158652,7 +161050,7 @@ longdesc interests. It tracks the development of the Medieval Unicode longdesc Font Initiative (MUFI), with its wealth of specialized medieval longdesc characters, but it also provides many OpenType features that longdesc allow users to access MUFI characters in accessible ways. -docfiles size=657 +docfiles size=688 texmf-dist/doc/fonts/junicodevf/About.tex texmf-dist/doc/fonts/junicodevf/EnlargeAxis.tex texmf-dist/doc/fonts/junicodevf/Feature_Reference.tex @@ -158671,7 +161069,8 @@ docfiles size=657 texmf-dist/doc/fonts/junicodevf/junicodevf-samples.pdf details="Font samples" texmf-dist/doc/fonts/junicodevf/junicodevf-samples.tex texmf-dist/doc/fonts/junicodevf/tag_key_ins.tex -runfiles size=1368 + texmf-dist/doc/fonts/junicodevf/upperpua.tex +runfiles size=1429 texmf-dist/fonts/truetype/public/junicodevf/JunicodeVF-Italic.ttf texmf-dist/fonts/truetype/public/junicodevf/JunicodeVF-Roman.ttf texmf-dist/tex/lualatex/junicodevf/junicodevf.lua @@ -158680,36 +161079,32 @@ catalogue-contact-repository https://github.com/psb1558/Junicode-font catalogue-ctan /fonts/junicodevf catalogue-license ofl lppl catalogue-topics font font-ttf font-historical font-medieval font-supp luatex -catalogue-version 2.206 +catalogue-version 2.209 name jupynotex category Package -revision 56715 +revision 72373 shortdesc Include whole or partial Jupyter notebooks in LaTeX documents longdesc This package provides a python3 script and a LaTeX .sty file longdesc which can be used together to include Jupyter Notebooks (all of longdesc them, or some specific cells) as part of a LaTeX document. It longdesc will convert the Jupyter Notebook format to proper LaTeX so it longdesc gets included seamlessly, supporting text, LaTeX, images, etc. -docfiles size=22 +docfiles size=5 texmf-dist/doc/latex/jupynotex/LICENSE texmf-dist/doc/latex/jupynotex/README.md details="Readme" - texmf-dist/doc/latex/jupynotex/example/build - texmf-dist/doc/latex/jupynotex/example/example.tex - texmf-dist/doc/latex/jupynotex/example/notebook.ipynb - texmf-dist/doc/latex/jupynotex/tests/run - texmf-dist/doc/latex/jupynotex/tests/test_cellparser.py - texmf-dist/doc/latex/jupynotex/tests/test_main.py - texmf-dist/doc/latex/jupynotex/tests/test_notebook.py -runfiles size=3 +runfiles size=4 texmf-dist/tex/latex/jupynotex/jupynotex.py texmf-dist/tex/latex/jupynotex/jupynotex.sty catalogue-contact-bugs https://github.com/facundobatista/jupynotex/issues +catalogue-contact-development https://github.com/facundobatista/jupynotex/ +catalogue-contact-home https://github.com/facundobatista/jupynotex/ catalogue-contact-repository https://github.com/facundobatista/jupynotex/ +catalogue-contact-support https://github.com/facundobatista/jupynotex/issues catalogue-ctan /macros/latex/contrib/jupynotex catalogue-license apache2 catalogue-topics foreign-import data-import ext-code -catalogue-version 0.1 +catalogue-version 1.0 name jura category Package @@ -158911,17 +161306,19 @@ catalogue-version 0.7 name jwjournal category Package -revision 69162 +revision 72788 shortdesc A personal class for writing journals longdesc This LaTeX document class enables the user to turn simple pure longdesc text entries into a colorful and nicely formatted journal. depend einfart -docfiles size=87 +docfiles size=139 texmf-dist/doc/latex/jwjournal/DEPENDS.txt texmf-dist/doc/latex/jwjournal/LICENSE texmf-dist/doc/latex/jwjournal/README.md details="Readme" texmf-dist/doc/latex/jwjournal/jwjournal-demo-cn.pdf details="Example of use (Chinese)" texmf-dist/doc/latex/jwjournal/jwjournal-demo-cn.tex + texmf-dist/doc/latex/jwjournal/jwjournal-demo-de.pdf details="Example of use (German)" + texmf-dist/doc/latex/jwjournal/jwjournal-demo-de.tex texmf-dist/doc/latex/jwjournal/jwjournal-demo-en.pdf details="Example of use (English)" texmf-dist/doc/latex/jwjournal/jwjournal-demo-en.tex texmf-dist/doc/latex/jwjournal/jwjournal-demo-fr.pdf details="Example of use (French)" @@ -159126,14 +161523,14 @@ catalogue-topics numbers name kaytannollista-latexia category Package -revision 69843 +revision 73292 shortdesc Practical manual for LaTeX (Finnish) 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. -docfiles size=390 +docfiles size=393 texmf-dist/doc/latex/kaytannollista-latexia/README.md details="Readme" texmf-dist/doc/latex/kaytannollista-latexia/kaytannollista-latexia.pdf details="The document itself" language="fi" texmf-dist/doc/latex/kaytannollista-latexia/kaytannollista-latexia.tex @@ -159150,10 +161547,11 @@ docfiles size=390 catalogue-contact-bugs https://github.com/tlikonen/latex-opas/issues catalogue-contact-development https://github.com/tlikonen/latex-opas/discussions catalogue-contact-repository https://github.com/tlikonen/latex-opas +catalogue-contact-support https://github.com/tlikonen/latex-opas/discussions catalogue-ctan /info/kaytannollista-latexia catalogue-license cc-by-sa-4 catalogue-topics tut-latex finnish-doc -catalogue-version 2024.2 +catalogue-version 2025 name kblocks category Package @@ -159213,7 +161611,7 @@ catalogue-version 1.0 name kdpcover category Package -revision 65150 +revision 73278 shortdesc Covers for books published by Kindle Direct Publishing 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 @@ -159223,16 +161621,15 @@ 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 etoolbox depend geometry -depend graphics +depend iexec depend microtype depend pgf +depend pgfopts depend setspace depend textpos -depend tools depend xcolor -depend xifthen -depend xkeyval docfiles size=107 texmf-dist/doc/latex/kdpcover/DEPENDS.txt texmf-dist/doc/latex/kdpcover/LICENSE.txt @@ -159255,7 +161652,7 @@ 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 +catalogue-version 0.6.0 name kerkis category Package @@ -160630,6 +163027,35 @@ catalogue-license gpl catalogue-topics doc-supp catalogue-version 1.6 +name keytheorems +category Package +revision 74002 +shortdesc An l3keys interface to amsthm +longdesc An expl3-implementation of a key-value interface to amsthm, +longdesc implementing most of the functionality provided by thmtools. +longdesc Several issues encountered with thmtools are avoided (see the +longdesc README for a list) and a few new features are added. +docfiles size=62 + texmf-dist/doc/latex/keytheorems/CHANGELOG.md + texmf-dist/doc/latex/keytheorems/README.md details="Readme" + texmf-dist/doc/latex/keytheorems/keytheorems-doc.pdf details="Package documentation" + texmf-dist/doc/latex/keytheorems/keytheorems-doc.tex +runfiles size=39 + texmf-dist/tex/latex/keytheorems/class-support/keythms-IEEEtran-support.tex + texmf-dist/tex/latex/keytheorems/class-support/keythms-amsart-support.tex + texmf-dist/tex/latex/keytheorems/class-support/keythms-amsbook-support.tex + texmf-dist/tex/latex/keytheorems/class-support/keythms-amsproc-support.tex + texmf-dist/tex/latex/keytheorems/class-support/keythms-beamer-support.tex + texmf-dist/tex/latex/keytheorems/class-support/keythms-jlreq-support.tex + texmf-dist/tex/latex/keytheorems/class-support/keythms-memoir-support.tex + texmf-dist/tex/latex/keytheorems/keytheorems.sty +catalogue-contact-bugs https://github.com/mbertucci47/keytheorems/issues +catalogue-contact-repository https://github.com/mbertucci47/keytheorems +catalogue-ctan /macros/latex/contrib/keytheorems +catalogue-license lppl1.3c +catalogue-topics maths maths-theorem keyval expl3 +catalogue-version 0.2.5 + name keyval2e category Package revision 23698 @@ -161033,7 +163459,7 @@ catalogue-topics doc-errata name knuth-hint category Package -revision 71761 +revision 72019 shortdesc HINT collection of typeset C/WEB sources in TeX Live longdesc The knuth-hint package contains the large collection of HINT longdesc documents for many of the CWEB amd WEB sources of programs in @@ -161048,7 +163474,7 @@ longdesc document format created by Martin Ruckert's HiTeX engine that longdesc was added to TeX Live 2022. The HINT files can be viewed on longdesc Linux, Windows, and Android with the hintview application. The longdesc knuth-hint package is a showcase of HiTeX's capabilities. -docfiles size=14457 +docfiles size=14695 texmf-dist/doc/generic/knuth-hint/README.md details="Readme" texmf-dist/doc/generic/knuth-hint/bibtex/bibtex-changes.hnt texmf-dist/doc/generic/knuth-hint/bibtex/bibtex.hnt @@ -161138,7 +163564,7 @@ catalogue-contact-support https://tug.org/texmfbug catalogue-ctan /info/knuth-hint catalogue-license pd knuth catalogue-topics collection -catalogue-version 2.2 +catalogue-version 2.5 name knuth-lib category Package @@ -161228,7 +163654,7 @@ catalogue-topics collection name knuth-pdf category Package -revision 71762 +revision 72018 shortdesc PDF collection of typeset C/WEB sources in TeX Live 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 @@ -161243,7 +163669,7 @@ longdesc for everything to be collected in one place for reading and 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. -docfiles size=14165 +docfiles size=14189 texmf-dist/doc/generic/knuth-pdf/README.md details="Readme" texmf-dist/doc/generic/knuth-pdf/bibtex/bibtex-changes.pdf texmf-dist/doc/generic/knuth-pdf/bibtex/bibtex.pdf @@ -161332,7 +163758,7 @@ catalogue-contact-support https://tug.org/texmfbug catalogue-ctan /info/knuth-pdf catalogue-license pd catalogue-topics collection -catalogue-version 2.2 +catalogue-version 2.5 name koma-moderncvclassic category Package @@ -161359,7 +163785,7 @@ catalogue-version 0.5 name koma-script category TLCore -revision 69755 +revision 72643 shortdesc A bundle of versatile classes and packages longdesc The KOMA-Script bundle provides replacements for the article, longdesc report, and book classes with emphasis on typography and @@ -161376,9 +163802,17 @@ longdesc version of scrbook, scrreprt, scrartcl, scrlttr2 and typearea longdesc (which are the main parts of the bundle). depend etoolbox depend xpatch -runfiles size=4099 +runfiles size=4001 texmf-dist/doc/latex/koma-script/MANIFEST.md texmf-dist/doc/latex/koma-script/README.md + texmf-dist/doc/latex/koma-script/book-remarkbox-nopatch-de.pdf + texmf-dist/doc/latex/koma-script/book-remarkbox-nopatch-en.pdf + texmf-dist/doc/latex/koma-script/book-remarkbox-patch-de.pdf + texmf-dist/doc/latex/koma-script/book-remarkbox-patch-en.pdf + texmf-dist/doc/latex/koma-script/examples/book-remarkbox-nopatch-de.tex + texmf-dist/doc/latex/koma-script/examples/book-remarkbox-nopatch-en.tex + texmf-dist/doc/latex/koma-script/examples/book-remarkbox-patch-de.tex + texmf-dist/doc/latex/koma-script/examples/book-remarkbox-patch-en.tex texmf-dist/doc/latex/koma-script/examples/ich.lco texmf-dist/doc/latex/koma-script/examples/letter-example-00-de.pdf texmf-dist/doc/latex/koma-script/examples/letter-example-00-de.tex @@ -161478,10 +163912,6 @@ runfiles size=4099 texmf-dist/doc/latex/koma-script/examples/letter-example-23-en.tex texmf-dist/doc/latex/koma-script/examples/me.lco texmf-dist/doc/latex/koma-script/examples/musterlogo.eps - texmf-dist/doc/latex/koma-script/examples/scrjura-example-de.pdf - texmf-dist/doc/latex/koma-script/examples/scrjura-example-de.tex - texmf-dist/doc/latex/koma-script/examples/scrjura-example-en.pdf - texmf-dist/doc/latex/koma-script/examples/scrjura-example-en.tex texmf-dist/doc/latex/koma-script/examples/scrlayer-notecolumn-example-de.pdf texmf-dist/doc/latex/koma-script/examples/scrlayer-notecolumn-example-de.tex texmf-dist/doc/latex/koma-script/examples/scrlayer-notecolumn-example-en.pdf @@ -161497,7 +163927,6 @@ runfiles size=4099 texmf-dist/doc/latex/koma-script/scrextend.html texmf-dist/doc/latex/koma-script/scrguide-de.pdf texmf-dist/doc/latex/koma-script/scrguide-en.pdf - texmf-dist/doc/latex/koma-script/scrhack.html texmf-dist/doc/latex/koma-script/scrjura.html texmf-dist/doc/latex/koma-script/scrkbase.html texmf-dist/doc/latex/koma-script/scrlayer-notecolumn.html @@ -161517,6 +163946,10 @@ runfiles size=4099 texmf-dist/doc/latex/koma-script/typearea.html texmf-dist/source/latex/koma-script/doc/authorpart-de.tex texmf-dist/source/latex/koma-script/doc/authorpart-en.tex + texmf-dist/source/latex/koma-script/doc/book-remarkbox-nopatch-de.tex + texmf-dist/source/latex/koma-script/doc/book-remarkbox-nopatch-en.tex + texmf-dist/source/latex/koma-script/doc/book-remarkbox-patch-de.tex + texmf-dist/source/latex/koma-script/doc/book-remarkbox-patch-en.tex texmf-dist/source/latex/koma-script/doc/common-compatibility-de.tex texmf-dist/source/latex/koma-script/doc/common-compatibility-en.tex texmf-dist/source/latex/koma-script/doc/common-dictum-de.tex @@ -161580,12 +164013,8 @@ runfiles size=4099 texmf-dist/source/latex/koma-script/doc/scrguide.cls texmf-dist/source/latex/koma-script/doc/scrguide.gst texmf-dist/source/latex/koma-script/doc/scrguide.ist - texmf-dist/source/latex/koma-script/doc/scrhack-de.tex - texmf-dist/source/latex/koma-script/doc/scrhack-en.tex texmf-dist/source/latex/koma-script/doc/scrjura-de.tex texmf-dist/source/latex/koma-script/doc/scrjura-en.tex - texmf-dist/source/latex/koma-script/doc/scrjura-example-de.tex - texmf-dist/source/latex/koma-script/doc/scrjura-example-en.tex texmf-dist/source/latex/koma-script/doc/scrlayer-de.tex texmf-dist/source/latex/koma-script/doc/scrlayer-en.tex texmf-dist/source/latex/koma-script/doc/scrlayer-notecolumn-de.tex @@ -161622,7 +164051,6 @@ runfiles size=4099 texmf-dist/source/latex/koma-script/koma-script-source-doc.dtx texmf-dist/source/latex/koma-script/scraddr.dtx texmf-dist/source/latex/koma-script/scrextend.dtx - texmf-dist/source/latex/koma-script/scrhack.dtx texmf-dist/source/latex/koma-script/scrjura.dtx texmf-dist/source/latex/koma-script/scrkernel-addressfiles.dtx texmf-dist/source/latex/koma-script/scrkernel-basics.dtx @@ -161675,23 +164103,15 @@ runfiles size=4099 texmf-dist/tex/latex/koma-script/SNleft.lco texmf-dist/tex/latex/koma-script/UScommercial9.lco texmf-dist/tex/latex/koma-script/UScommercial9DW.lco - texmf-dist/tex/latex/koma-script/float.hak - texmf-dist/tex/latex/koma-script/floatrow.hak - texmf-dist/tex/latex/koma-script/hyperref.hak texmf-dist/tex/latex/koma-script/koma-script-source-doc.cls - texmf-dist/tex/latex/koma-script/listings.hak - texmf-dist/tex/latex/koma-script/lscape.hak - texmf-dist/tex/latex/koma-script/nomencl.hak texmf-dist/tex/latex/koma-script/scraddr.sty texmf-dist/tex/latex/koma-script/scrartcl.cls texmf-dist/tex/latex/koma-script/scrarticle.cls texmf-dist/tex/latex/koma-script/scrbase.sty texmf-dist/tex/latex/koma-script/scrbook.cls texmf-dist/tex/latex/koma-script/scrdate.sty - texmf-dist/tex/latex/koma-script/scrdoc.cls texmf-dist/tex/latex/koma-script/scrextend.sty texmf-dist/tex/latex/koma-script/scrfontsizes.sty - texmf-dist/tex/latex/koma-script/scrhack.sty texmf-dist/tex/latex/koma-script/scrjura.sty texmf-dist/tex/latex/koma-script/scrkbase.sty texmf-dist/tex/latex/koma-script/scrlayer-notecolumn.sty @@ -161711,8 +164131,6 @@ runfiles size=4099 texmf-dist/tex/latex/koma-script/scrsize11pt.clo texmf-dist/tex/latex/koma-script/scrsize12pt.clo texmf-dist/tex/latex/koma-script/scrtime.sty - texmf-dist/tex/latex/koma-script/setspace.hak - texmf-dist/tex/latex/koma-script/standardsections.hak texmf-dist/tex/latex/koma-script/tocbasic.sty texmf-dist/tex/latex/koma-script/typearea.sty texmf-dist/tex/latex/koma-script/visualize.lco @@ -161723,7 +164141,7 @@ 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 float toc-etc legal notes addr-list date-time keyval package-mgmt io-mgmt -catalogue-version 3.41 +catalogue-version 3.43 name koma-script-examples category Package @@ -161923,7 +164341,7 @@ catalogue-version 0.9.2 name korigamik category Package -revision 68204 +revision 71991 shortdesc Typeset articles using KorigamiK's document class longdesc The KorigamiK class is used for typesetting documents for longdesc university or school projects and lab reports. It is based on @@ -161936,7 +164354,6 @@ docfiles size=39 texmf-dist/doc/latex/korigamik/korigamik-example.tex runfiles size=2 texmf-dist/tex/latex/korigamik/korigamik.cls -catalogue-contact-announce https://korigamik.zc.al catalogue-contact-bugs https://github.com/KorigamiK/doc-korigamik/issues/ catalogue-contact-repository https://github.com/KorigamiK/doc-korigamik/ catalogue-ctan /macros/latex/contrib/korigamik @@ -161946,7 +164363,7 @@ catalogue-version 1.0 name kotex-oblivoir category Package -revision 70491 +revision 73766 shortdesc A LaTeX document class for typesetting Korean documents longdesc The class is based on memoir, and is adapted to typesetting longdesc Korean documents. The bundle (of class and associated packages) @@ -161954,7 +164371,7 @@ longdesc belongs to the ko.TeX bundle. It depends on memoir and longdesc kotex-utf to function. depend kotex-utf depend memoir -docfiles size=275 +docfiles size=276 texmf-dist/doc/latex/kotex-oblivoir/ChangeLog texmf-dist/doc/latex/kotex-oblivoir/README details="Readme" texmf-dist/doc/latex/kotex-oblivoir/chapstyfig.pdf @@ -162006,7 +164423,7 @@ runfiles size=79 catalogue-ctan /language/korean/kotex-oblivoir catalogue-license lppl1.3c catalogue-topics korean class -catalogue-version 3.3 +catalogue-version 3.4 name kotex-plain category Package @@ -162246,7 +164663,7 @@ binfiles arch=x86_64-solaris size=3 name kpathsea category TLCore -revision 71664 +revision 73918 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 @@ -162255,7 +164672,7 @@ longdesc layered on top of a general search mechanism. It is not longdesc distributed separately, but rather is released and maintained longdesc as part of the TeX Live sources. depend kpathsea.ARCH -docfiles size=584 +docfiles size=580 texmf-dist/doc/info/dir texmf-dist/doc/info/kpathsea.info texmf-dist/doc/info/web2c.info @@ -162313,9 +164730,9 @@ catalogue-topics sys-supp name kpathsea.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of kpathsea -binfiles arch=aarch64-linux size=33 +binfiles arch=aarch64-linux size=34 bin/aarch64-linux/kpseaccess bin/aarch64-linux/kpsereadlink bin/aarch64-linux/kpsestat @@ -162323,7 +164740,7 @@ binfiles arch=aarch64-linux size=33 name kpathsea.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of kpathsea binfiles arch=amd64-freebsd size=36 bin/amd64-freebsd/kpseaccess @@ -162333,7 +164750,7 @@ binfiles arch=amd64-freebsd size=36 name kpathsea.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of kpathsea binfiles arch=amd64-netbsd size=36 bin/amd64-netbsd/kpseaccess @@ -162343,9 +164760,9 @@ binfiles arch=amd64-netbsd size=36 name kpathsea.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of kpathsea -binfiles arch=armhf-linux size=25 +binfiles arch=armhf-linux size=22 bin/armhf-linux/kpseaccess bin/armhf-linux/kpsereadlink bin/armhf-linux/kpsestat @@ -162353,7 +164770,7 @@ binfiles arch=armhf-linux size=25 name kpathsea.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of kpathsea binfiles arch=i386-freebsd size=36 bin/i386-freebsd/kpseaccess @@ -162363,9 +164780,9 @@ binfiles arch=i386-freebsd size=36 name kpathsea.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of kpathsea -binfiles arch=i386-linux size=32 +binfiles arch=i386-linux size=40 bin/i386-linux/kpseaccess bin/i386-linux/kpsereadlink bin/i386-linux/kpsestat @@ -162373,7 +164790,7 @@ binfiles arch=i386-linux size=32 name kpathsea.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of kpathsea binfiles arch=i386-netbsd size=33 bin/i386-netbsd/kpseaccess @@ -162383,7 +164800,7 @@ binfiles arch=i386-netbsd size=33 name kpathsea.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of kpathsea binfiles arch=i386-solaris size=29 bin/i386-solaris/kpseaccess @@ -162393,7 +164810,7 @@ binfiles arch=i386-solaris size=29 name kpathsea.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of kpathsea binfiles arch=universal-darwin size=154 bin/universal-darwin/kpseaccess @@ -162403,7 +164820,7 @@ binfiles arch=universal-darwin size=154 name kpathsea.windows category TLCore -revision 71215 +revision 73796 shortdesc windows files of kpathsea binfiles arch=windows size=401 bin/windows/kpathsealibw64.dll @@ -162417,7 +164834,7 @@ binfiles arch=windows size=401 name kpathsea.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of kpathsea binfiles arch=x86_64-cygwin size=38 bin/x86_64-cygwin/cygkpathsea-6.dll @@ -162428,7 +164845,7 @@ binfiles arch=x86_64-cygwin size=38 name kpathsea.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of kpathsea binfiles arch=x86_64-darwinlegacy size=32 bin/x86_64-darwinlegacy/kpseaccess @@ -162438,9 +164855,9 @@ binfiles arch=x86_64-darwinlegacy size=32 name kpathsea.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of kpathsea -binfiles arch=x86_64-linux size=36 +binfiles arch=x86_64-linux size=37 bin/x86_64-linux/kpseaccess bin/x86_64-linux/kpsereadlink bin/x86_64-linux/kpsestat @@ -162448,9 +164865,9 @@ binfiles arch=x86_64-linux size=36 name kpathsea.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of kpathsea -binfiles arch=x86_64-linuxmusl size=32 +binfiles arch=x86_64-linuxmusl size=37 bin/x86_64-linuxmusl/kpseaccess bin/x86_64-linuxmusl/kpsereadlink bin/x86_64-linuxmusl/kpsestat @@ -162458,7 +164875,7 @@ binfiles arch=x86_64-linuxmusl size=32 name kpathsea.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of kpathsea binfiles arch=x86_64-solaris size=36 bin/x86_64-solaris/kpseaccess @@ -162468,7 +164885,7 @@ binfiles arch=x86_64-solaris size=36 name kpfonts category Package -revision 65583 +revision 72680 shortdesc A complete set of fonts for text and mathematics longdesc The family contains text fonts in roman, sans-serif and longdesc monospaced shapes, with true small caps and old-style numbers; @@ -162486,7 +164903,7 @@ 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 -docfiles size=438 +docfiles size=443 texmf-dist/doc/fonts/kpfonts/Changes texmf-dist/doc/fonts/kpfonts/README.txt details="Readme" texmf-dist/doc/fonts/kpfonts/kpfonts-abstract.pdf details="Summary of features" @@ -164409,11 +166826,11 @@ catalogue-also kpfonts-otf catalogue-ctan /fonts/kpfonts catalogue-license lppl gpl catalogue-topics font font-type1 font-serif font-sans font-mono font-maths -catalogue-version 3.35 +catalogue-version 3.36 name kpfonts-otf category Package -revision 71153 +revision 74008 shortdesc OTF version of the Kp-fonts longdesc This bundle provides OpenType versions of the Type1 Kp-fonts longdesc designed by Christophe Caignaert. It is usable with LuaTeX or @@ -164426,7 +166843,7 @@ 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'. -docfiles size=566 +docfiles size=557 texmf-dist/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.ltx texmf-dist/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.pdf details="Package documentation (English)" language="en" texmf-dist/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-French.ltx @@ -164434,7 +166851,7 @@ docfiles size=566 texmf-dist/doc/fonts/kpfonts-otf/README.md details="Readme" texmf-dist/doc/fonts/kpfonts-otf/unimath-kpfonts.ltx texmf-dist/doc/fonts/kpfonts-otf/unimath-kpfonts.pdf details="List of glyphs" -runfiles size=845 +runfiles size=846 texmf-dist/fonts/opentype/public/kpfonts-otf/KpMath-Bold.otf texmf-dist/fonts/opentype/public/kpfonts-otf/KpMath-Light.otf texmf-dist/fonts/opentype/public/kpfonts-otf/KpMath-Regular.otf @@ -164469,7 +166886,7 @@ catalogue-also kpfonts catalogue-ctan /fonts/kpfonts-otf catalogue-license ofl lppl1.3 catalogue-topics font font-body font-maths font-mono font-otf font-proportional font-sans font-serif font-supp -catalogue-version 0.63 +catalogue-version 0.66 name ksfh_nat category Package @@ -165435,7 +167852,7 @@ catalogue-version 1.1 name l3backend category Package -revision 71341 +revision 71991 shortdesc LaTeX3 backend drivers longdesc This package forms parts of expl3, and contains the code used longdesc to interface with backends (drivers) across the expl3 codebase. @@ -165468,7 +167885,7 @@ runfiles size=51 texmf-dist/tex/latex/l3backend/l3backend-pdftex.def texmf-dist/tex/latex/l3backend/l3backend-xetex.def catalogue-contact-bugs https://github.com/latex3/latex3/issues -catalogue-contact-home http://www.latex-project.org/code.html +catalogue-contact-home https://www.latex-project.org catalogue-contact-repository https://github.com/latex3/latex3/ catalogue-ctan /macros/latex/required/l3backend catalogue-license lppl1.3c @@ -165511,7 +167928,7 @@ catalogue-topics latex3 expl3 macro-supp pre-release name l3build category Package -revision 71371 +revision 72567 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 @@ -165523,13 +167940,13 @@ longdesc material released by the LaTeX3 team, and may be updated on a longdesc different schedule. depend l3build.ARCH depend luatex -docfiles size=196 +docfiles size=197 texmf-dist/doc/latex/l3build/CHANGELOG.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 -srcfiles size=29 +srcfiles size=30 texmf-dist/source/latex/l3build/l3build.dtx texmf-dist/source/latex/l3build/l3build.ins runfiles size=48 @@ -165666,7 +168083,7 @@ binfiles arch=x86_64-solaris size=1 name l3experimental category Package -revision 70637 +revision 71991 shortdesc Experimental LaTeX3 concepts longdesc The l3experimental packages are a collection of experimental longdesc implementations for aspects of the LaTeX3 kernel, dealing with @@ -165730,14 +168147,14 @@ runfiles size=46 texmf-dist/tex/latex/l3experimental/xgalley/l3galley.sty texmf-dist/tex/latex/l3experimental/xgalley/xgalley.sty catalogue-also l3kernel l3packages -catalogue-contact-home http://www.latex-project.org/code.html +catalogue-contact-home https://www.latex-project.org catalogue-ctan /macros/latex/contrib/l3experimental catalogue-license lppl1.3c catalogue-topics macro-supp layout latex3 pre-release name l3kernel category Package -revision 71444 +revision 73651 shortdesc LaTeX3 programming conventions longdesc The l3kernel bundle provides an implementation of the LaTeX3 longdesc programmers' interface, as a set of packages that run under @@ -165746,7 +168163,7 @@ 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 -docfiles size=3511 +docfiles size=3540 texmf-dist/doc/latex/l3kernel/CHANGELOG.md texmf-dist/doc/latex/l3kernel/README.md details="Readme" texmf-dist/doc/latex/l3kernel/expl3.pdf details="The LaTeX3 Programming Language" @@ -165793,7 +168210,7 @@ docfiles size=3511 texmf-dist/doc/latex/l3kernel/source3.pdf texmf-dist/doc/latex/l3kernel/source3.tex texmf-dist/doc/latex/l3kernel/source3body.tex -srcfiles size=961 +srcfiles size=967 texmf-dist/source/latex/l3kernel/expl3.dtx texmf-dist/source/latex/l3kernel/l3.ins texmf-dist/source/latex/l3kernel/l3basics.dtx @@ -165856,7 +168273,7 @@ srcfiles size=961 texmf-dist/source/latex/l3kernel/l3tl.dtx texmf-dist/source/latex/l3kernel/l3token.dtx texmf-dist/source/latex/l3kernel/l3unicode.dtx -runfiles size=368 +runfiles size=373 texmf-dist/tex/latex/l3kernel/expl3-code.tex texmf-dist/tex/latex/l3kernel/expl3-generic.tex texmf-dist/tex/latex/l3kernel/expl3.ltx @@ -165882,7 +168299,7 @@ runfiles size=368 texmf-dist/tex/latex/l3kernel/l3str-enc-iso88599.def catalogue-also l3backend l3packages l3experimental catalogue-contact-bugs https://github.com/latex3/latex3/issues -catalogue-contact-home http://www.latex-project.org/code.html +catalogue-contact-home https://www.latex-project.org catalogue-contact-repository https://github.com/latex3/latex3 catalogue-ctan /macros/latex/required/l3kernel catalogue-license lppl1.3c @@ -165890,13 +168307,13 @@ catalogue-topics format latex3 pre-release name l3kernel-dev category Package -revision 71567 +revision 73508 shortdesc Development pre-release of l3kernel longdesc This is a pre-release version of the l3kernel package. It longdesc accompanies the pre-testing kernel code (latex-base-dev), and longdesc is intended for testing by knowledgeable users. depend l3backend-dev -docfiles size=3512 +docfiles size=3540 texmf-dist/doc/latex-dev/l3kernel/CHANGELOG.md texmf-dist/doc/latex-dev/l3kernel/README.md details="Readme" texmf-dist/doc/latex-dev/l3kernel/expl3.pdf details="The LaTeX3 Programming Language" @@ -165943,7 +168360,7 @@ docfiles size=3512 texmf-dist/doc/latex-dev/l3kernel/source3.pdf texmf-dist/doc/latex-dev/l3kernel/source3.tex texmf-dist/doc/latex-dev/l3kernel/source3body.tex -srcfiles size=961 +srcfiles size=967 texmf-dist/source/latex-dev/l3kernel/expl3.dtx texmf-dist/source/latex-dev/l3kernel/l3.ins texmf-dist/source/latex-dev/l3kernel/l3basics.dtx @@ -166006,7 +168423,7 @@ srcfiles size=961 texmf-dist/source/latex-dev/l3kernel/l3tl.dtx texmf-dist/source/latex-dev/l3kernel/l3token.dtx texmf-dist/source/latex-dev/l3kernel/l3unicode.dtx -runfiles size=368 +runfiles size=373 texmf-dist/tex/latex-dev/l3kernel/expl3-code.tex texmf-dist/tex/latex-dev/l3kernel/expl3-generic.tex texmf-dist/tex/latex-dev/l3kernel/expl3.ltx @@ -166036,7 +168453,7 @@ catalogue-topics format latex3 pre-release name l3packages category Package -revision 71323 +revision 72128 shortdesc High-level LaTeX3 concepts longdesc This collection deals with higher-level ideas such as the longdesc Designer Interface, as part of LaTeX3 developments. The @@ -166075,7 +168492,7 @@ runfiles size=64 texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty catalogue-also l3kernel l3experimental catalogue-contact-bugs https://github.com/latex3/latex3/issues -catalogue-contact-home http://www.latex-project.org/code.html +catalogue-contact-home https://www.latex-project.org catalogue-ctan /macros/latex/contrib/l3packages catalogue-license lppl1.3c catalogue-topics macro-supp latex3 pre-release @@ -166387,105 +168804,105 @@ catalogue-topics latex-qual name lacheck.aarch64-linux category TLCore -revision 65927 +revision 73915 shortdesc aarch64-linux files of lacheck binfiles arch=aarch64-linux size=16 bin/aarch64-linux/lacheck name lacheck.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of lacheck binfiles arch=amd64-freebsd size=17 bin/amd64-freebsd/lacheck name lacheck.amd64-netbsd category TLCore -revision 65923 +revision 73802 shortdesc amd64-netbsd files of lacheck binfiles arch=amd64-netbsd size=17 bin/amd64-netbsd/lacheck name lacheck.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of lacheck -binfiles arch=armhf-linux size=15 +binfiles arch=armhf-linux size=14 bin/armhf-linux/lacheck name lacheck.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of lacheck binfiles arch=i386-freebsd size=17 bin/i386-freebsd/lacheck name lacheck.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of lacheck -binfiles arch=i386-linux size=16 +binfiles arch=i386-linux size=18 bin/i386-linux/lacheck name lacheck.i386-netbsd category TLCore -revision 65923 +revision 73802 shortdesc i386-netbsd files of lacheck binfiles arch=i386-netbsd size=16 bin/i386-netbsd/lacheck name lacheck.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of lacheck binfiles arch=i386-solaris size=16 bin/i386-solaris/lacheck name lacheck.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of lacheck binfiles arch=universal-darwin size=58 bin/universal-darwin/lacheck name lacheck.windows category TLCore -revision 69788 +revision 73796 shortdesc windows files of lacheck binfiles arch=windows size=17 bin/windows/lacheck.exe name lacheck.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of lacheck binfiles arch=x86_64-cygwin size=16 bin/x86_64-cygwin/lacheck.exe name lacheck.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of lacheck -binfiles arch=x86_64-darwinlegacy size=15 +binfiles arch=x86_64-darwinlegacy size=16 bin/x86_64-darwinlegacy/lacheck name lacheck.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of lacheck binfiles arch=x86_64-linux size=17 bin/x86_64-linux/lacheck name lacheck.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of lacheck -binfiles arch=x86_64-linuxmusl size=16 +binfiles arch=x86_64-linuxmusl size=17 bin/x86_64-linuxmusl/lacheck name lacheck.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of lacheck binfiles arch=x86_64-solaris size=17 bin/x86_64-solaris/lacheck @@ -166646,7 +169063,7 @@ catalogue-version 3.0.0 name langsci category Package -revision 70025 +revision 73027 shortdesc Typeset books for publication with Language Science Press longdesc This package allows you to typeset monographs and edited longdesc volumes for publication with Language Science Press @@ -166654,15 +169071,12 @@ longdesc (https://www.langsci-press.org). It includes all necessary longdesc files for title pages, frontmatter, main content, list of longdesc references and indexes. Dust jackets for BoD and Createspace longdesc (print-on-demand service providers) can also be produced. -docfiles size=88 +docfiles size=86 texmf-dist/doc/xelatex/langsci/README.md details="README.md" texmf-dist/doc/xelatex/langsci/documentation/langsci-doc.pdf details="Package documentation" texmf-dist/doc/xelatex/langsci/documentation/langsci-doc.tex - texmf-dist/doc/xelatex/langsci/documentation/langsci-gb4.pdf - texmf-dist/doc/xelatex/langsci/documentation/langscitmp.bib - texmf-dist/doc/xelatex/langsci/examples/collection_tmp.bib + texmf-dist/doc/xelatex/langsci/documentation/langsci-gb4e.pdf texmf-dist/doc/xelatex/langsci/examples/langsci-test.bib - texmf-dist/doc/xelatex/langsci/examples/langscitmp.bib texmf-dist/doc/xelatex/langsci/examples/samplemonograph.pdf texmf-dist/doc/xelatex/langsci/examples/samplemonograph.tex texmf-dist/doc/xelatex/langsci/examples/samplepaper.pdf @@ -166876,7 +169290,7 @@ catalogue-version 0.1 name lastpage category Package -revision 71740 +revision 73639 shortdesc Reference last page for Page N of M type footers longdesc Reference the number of pages in your LaTeX document through longdesc the introduction of a new label which can be referenced like @@ -166902,11 +169316,11 @@ catalogue-also totpages catalogue-ctan /macros/latex/contrib/lastpage catalogue-license lppl1.3c catalogue-topics label-ref -catalogue-version 2.1b +catalogue-version 2.1e name latex category Package -revision 71629 +revision 73643 shortdesc A TeX macro package that defines LaTeX longdesc LaTeX is a widely-used macro package for TeX, providing many longdesc basic document formating commands extended by a wide range of @@ -166923,7 +169337,7 @@ longdesc user commands, font selection and control, class and package longdesc writing, font encodings, configuration options and modification longdesc of LaTeX. For downloading details, see the linked catalogue longdesc entries above. -docfiles size=11216 +docfiles size=11729 texmf-dist/doc/latex/base/README.md texmf-dist/doc/latex/base/alltt.pdf texmf-dist/doc/latex/base/bugs.txt @@ -167064,6 +169478,8 @@ docfiles size=11216 texmf-dist/doc/latex/base/ltnews38.tex texmf-dist/doc/latex/base/ltnews39.pdf texmf-dist/doc/latex/base/ltnews39.tex + texmf-dist/doc/latex/base/ltnews40.pdf + texmf-dist/doc/latex/base/ltnews40.tex texmf-dist/doc/latex/base/ltpara-code.pdf texmf-dist/doc/latex/base/ltpara-code.tex texmf-dist/doc/latex/base/ltpara-doc.pdf @@ -167080,6 +169496,10 @@ docfiles size=11216 texmf-dist/doc/latex/base/ltsockets-code.tex texmf-dist/doc/latex/base/ltsockets-doc.pdf texmf-dist/doc/latex/base/ltsockets-doc.tex + texmf-dist/doc/latex/base/lttemplates-code.pdf + texmf-dist/doc/latex/base/lttemplates-code.tex + texmf-dist/doc/latex/base/lttemplates-doc.pdf + texmf-dist/doc/latex/base/lttemplates-doc.tex texmf-dist/doc/latex/base/ltx3info.pdf texmf-dist/doc/latex/base/ltx3info.tex texmf-dist/doc/latex/base/ltxdoc.pdf @@ -167106,7 +169526,7 @@ docfiles size=11216 texmf-dist/doc/latex/base/utf8ienc.pdf texmf-dist/doc/latex/base/webcomp.err texmf-dist/doc/latex/base/webcomp.pdf -srcfiles size=1151 +srcfiles size=1165 texmf-dist/source/latex/base/alltt.dtx texmf-dist/source/latex/base/alltt.ins texmf-dist/source/latex/base/classes.dtx @@ -167215,7 +169635,7 @@ srcfiles size=1151 texmf-dist/source/latex/base/tulm.ins texmf-dist/source/latex/base/unpack.ins texmf-dist/source/latex/base/utf8ienc.dtx -runfiles size=706 +runfiles size=712 texmf-dist/makeindex/latex/gglo.ist texmf-dist/makeindex/latex/gind.ist texmf-dist/tex/latex/base/alltt.sty @@ -167387,11 +169807,10 @@ runfiles size=706 catalogue-contact-home http://www.latex-project.org/ catalogue-license lppl1.3c catalogue-topics format -catalogue-version 2024-06-01 PL2 name latex-amsmath-dev category Package -revision 71433 +revision 72795 shortdesc Development pre-release of the LaTeX amsmath bundle longdesc This is a pre-release version of the standard LaTeX amsmath longdesc bundle. It accompanies the pre-testing kernel code @@ -167447,11 +169866,11 @@ runfiles size=70 catalogue-ctan /macros/latex-dev/required/amsmath catalogue-license lppl1.3c catalogue-topics maths latex-devel -catalogue-version 2024-11-01 pre-release 0 +catalogue-version 2025-06-01 pre-release 0a name latex-base-dev category Package -revision 71510 +revision 72979 shortdesc Development pre-release of the LaTeX kernel longdesc This package provides a testing release for upcoming LaTeX2e longdesc kernel changes. Testing by the LaTeX team itself suggests that @@ -167460,7 +169879,7 @@ 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. -docfiles size=11339 +docfiles size=11847 texmf-dist/doc/latex-dev/base/README.md details="Readme" texmf-dist/doc/latex-dev/base/alltt.pdf texmf-dist/doc/latex-dev/base/bugs.txt @@ -167603,6 +170022,8 @@ docfiles size=11339 texmf-dist/doc/latex-dev/base/ltnews39.tex texmf-dist/doc/latex-dev/base/ltnews40.pdf texmf-dist/doc/latex-dev/base/ltnews40.tex + texmf-dist/doc/latex-dev/base/ltnews41.pdf + texmf-dist/doc/latex-dev/base/ltnews41.tex texmf-dist/doc/latex-dev/base/ltpara-code.pdf texmf-dist/doc/latex-dev/base/ltpara-code.tex texmf-dist/doc/latex-dev/base/ltpara-doc.pdf @@ -167619,6 +170040,10 @@ docfiles size=11339 texmf-dist/doc/latex-dev/base/ltsockets-code.tex texmf-dist/doc/latex-dev/base/ltsockets-doc.pdf texmf-dist/doc/latex-dev/base/ltsockets-doc.tex + texmf-dist/doc/latex-dev/base/lttemplates-code.pdf + texmf-dist/doc/latex-dev/base/lttemplates-code.tex + texmf-dist/doc/latex-dev/base/lttemplates-doc.pdf + texmf-dist/doc/latex-dev/base/lttemplates-doc.tex texmf-dist/doc/latex-dev/base/ltx3info.pdf texmf-dist/doc/latex-dev/base/ltx3info.tex texmf-dist/doc/latex-dev/base/ltxdoc.pdf @@ -167645,7 +170070,7 @@ docfiles size=11339 texmf-dist/doc/latex-dev/base/utf8ienc.pdf texmf-dist/doc/latex-dev/base/webcomp.err texmf-dist/doc/latex-dev/base/webcomp.pdf -srcfiles size=1153 +srcfiles size=1168 texmf-dist/source/latex-dev/base/alltt.dtx texmf-dist/source/latex-dev/base/alltt.ins texmf-dist/source/latex-dev/base/classes.dtx @@ -167754,7 +170179,7 @@ srcfiles size=1153 texmf-dist/source/latex-dev/base/tulm.ins texmf-dist/source/latex-dev/base/unpack.ins texmf-dist/source/latex-dev/base/utf8ienc.dtx -runfiles size=704 +runfiles size=711 texmf-dist/tex/latex-dev/base/alltt.sty texmf-dist/tex/latex-dev/base/ansinew.def texmf-dist/tex/latex-dev/base/applemac.def @@ -167925,11 +170350,11 @@ catalogue-also latex-base catalogue-ctan /macros/latex-dev/base catalogue-license lppl1.3c catalogue-topics format class latex-devel -catalogue-version 2024-11-01 pre-release 1 +catalogue-version 2025-11-01 pre-release 1 name latex-bin category TLCore -revision 71362 +revision 73848 shortdesc LaTeX executables and man pages depend babel depend cm @@ -167956,7 +170381,7 @@ 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=l3backend,l3kernel,latex,firstaid,babel,cm,hyphen-base,knuth-lib,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8 execute AddFormat name=lualatex engine=luahbtex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=l3backend,l3kernel,latex,firstaid,babel,cm,hyphen-base,knuth-lib,latex-fonts,tex-ini-files,unicode-data,lm,luaotfload execute AddFormat name=pdflatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" fmttriggers=l3backend,l3kernel,latex,firstaid,babel,cm,hyphen-base,knuth-lib,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8 -docfiles size=32 +docfiles size=33 texmf-dist/doc/man/man1/dvilualatex.1 texmf-dist/doc/man/man1/dvilualatex.man1.pdf texmf-dist/doc/man/man1/latex.1 @@ -167968,7 +170393,7 @@ docfiles size=32 name latex-bin-dev category TLCore -revision 71362 +revision 73848 shortdesc LaTeX pre-release executables and formats longdesc See the latex-base-dev package for information. depend babel @@ -167996,7 +170421,7 @@ execute AddFormat name=dvilualatex-dev engine=luatex patterns=language execute AddFormat name=latex-dev engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *latex.ini" fmttriggers=l3backend-dev,l3kernel-dev,latex-base-dev,latex-firstaid-dev,babel,cm,hyphen-base,knuth-lib,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,pdftex execute AddFormat name=lualatex-dev engine=luahbtex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=l3backend-dev,l3kernel-dev,latex-base-dev,latex-firstaid-dev,babel,cm,hyphen-base,knuth-lib,latex-fonts,tex-ini-files,unicode-data,lm,luaotfload execute AddFormat name=pdflatex-dev engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" fmttriggers=l3backend-dev,l3kernel-dev,latex-base-dev,latex-firstaid-dev,babel,cm,hyphen-base,knuth-lib,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,pdftex -docfiles size=35 +docfiles size=42 texmf-dist/doc/man/man1/dvilualatex-dev.1 texmf-dist/doc/man/man1/dvilualatex-dev.man1.pdf texmf-dist/doc/man/man1/latex-dev.1 @@ -168390,20 +170815,19 @@ catalogue-version 2 name latex-doc-ptr category Package -revision 57311 +revision 72417 shortdesc A direction-finder for LaTeX resources available online longdesc A brief set of recommendations for users who need online longdesc documentation of LaTeX. The document supports the need for longdesc documentation of LaTeX itself, in distributions. For example, longdesc it could be used in the command texdoc latex, in the TeX Live longdesc distribution. -docfiles size=68 +docfiles size=69 texmf-dist/doc/latex/latex-doc-ptr/LICENSE texmf-dist/doc/latex/latex-doc-ptr/Makefile texmf-dist/doc/latex/latex-doc-ptr/README details="Readme" texmf-dist/doc/latex/latex-doc-ptr/dash.sty texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.css - texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.css.replacement texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.html texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.pdf details="The document itself" texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.sty @@ -168416,13 +170840,13 @@ catalogue-topics latex-doc name latex-firstaid-dev category Package -revision 70790 +revision 72979 shortdesc Development pre-release of the LaTeX firstaid package 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. -docfiles size=70 +docfiles size=72 texmf-dist/doc/latex-dev/firstaid/README.md details="Readme" texmf-dist/doc/latex-dev/firstaid/changes.txt texmf-dist/doc/latex-dev/firstaid/latex2e-first-aid-for-external-files.pdf details="Package documentation" @@ -168436,7 +170860,7 @@ runfiles size=5 catalogue-ctan /macros/latex-dev/required/firstaid catalogue-license lppl1.3c catalogue-topics format bugfix latex-devel -catalogue-version 1.1e +catalogue-version 1.1j name latex-fonts category Package @@ -169121,7 +171545,7 @@ catalogue-topics book-ex name latex-graphics-dev category Package -revision 71433 +revision 72738 shortdesc Development pre-release of the LaTeX graphics bundle longdesc This is a pre-release version of the standard LaTeX graphics longdesc bundle. It accompanies the pre-testing kernel code @@ -169185,11 +171609,11 @@ catalogue-also latex-graphics catalogue-ctan /macros/latex-dev/required/graphics catalogue-license lppl1.3c catalogue-topics graphics collection latex-devel -catalogue-version 2024-11-01 pre-release 0 +catalogue-version 2025-06-01 pre-release 0 name latex-lab category Package -revision 71408 +revision 73665 shortdesc LaTeX laboratory longdesc This bundle holds optional files that are loaded in certain longdesc situations by kernel code (if available). While this code is @@ -169201,7 +171625,7 @@ longdesc kernel and the corresponding file in this bundle will vanish. longdesc Note that none of these files are directly user accessible in longdesc documents (i.e., they aren't packages), so the process is longdesc transparent to documents already using the new functionality. -docfiles size=3094 +docfiles size=3151 texmf-dist/doc/latex/latex-lab/README.md details="Readme" texmf-dist/doc/latex/latex-lab/blocks-code.pdf texmf-dist/doc/latex/latex-lab/blocks-code.tex @@ -169235,7 +171659,7 @@ docfiles size=3094 texmf-dist/doc/latex/latex-lab/latex-lab-toc-hyperref-changes.pdf texmf-dist/doc/latex/latex-lab/latex-lab-toc-kernel-changes.pdf texmf-dist/doc/latex/latex-lab/latex-lab-toc.pdf -srcfiles size=158 +srcfiles size=175 texmf-dist/source/latex/latex-lab/documentmetadata-support.dtx texmf-dist/source/latex/latex-lab/latex-lab-amsmath.dtx texmf-dist/source/latex/latex-lab/latex-lab-bib.dtx @@ -169261,7 +171685,7 @@ srcfiles size=158 texmf-dist/source/latex/latex-lab/latex-lab-toc-kernel-changes.dtx texmf-dist/source/latex/latex-lab/latex-lab-toc.dtx texmf-dist/source/latex/latex-lab/latex-lab.ins -runfiles size=99 +runfiles size=104 texmf-dist/tex/latex/latex-lab/bib-latex-lab-testphase.ltx texmf-dist/tex/latex/latex-lab/block-latex-lab-testphase.ltx texmf-dist/tex/latex/latex-lab/documentmetadata-support.ltx @@ -169311,17 +171735,18 @@ catalogue-contact-home https://www.latex-project.org catalogue-ctan /macros/latex/required/latex-lab catalogue-license lppl1.3c catalogue-topics format latex-devel +catalogue-version 2024-11-01 PL2 name latex-lab-dev category Package -revision 71416 +revision 72979 shortdesc LaTeX laboratory: Development pre-release 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. -docfiles size=3094 +docfiles size=3161 texmf-dist/doc/latex-dev/latex-lab/README.md details="Readme" texmf-dist/doc/latex-dev/latex-lab/blocks-code.pdf texmf-dist/doc/latex-dev/latex-lab/blocks-code.tex @@ -169355,7 +171780,7 @@ docfiles size=3094 texmf-dist/doc/latex-dev/latex-lab/latex-lab-toc-hyperref-changes.pdf texmf-dist/doc/latex-dev/latex-lab/latex-lab-toc-kernel-changes.pdf texmf-dist/doc/latex-dev/latex-lab/latex-lab-toc.pdf -srcfiles size=158 +srcfiles size=176 texmf-dist/source/latex-dev/latex-lab/documentmetadata-support.dtx texmf-dist/source/latex-dev/latex-lab/latex-lab-amsmath.dtx texmf-dist/source/latex-dev/latex-lab/latex-lab-bib.dtx @@ -169381,7 +171806,7 @@ srcfiles size=158 texmf-dist/source/latex-dev/latex-lab/latex-lab-toc-kernel-changes.dtx texmf-dist/source/latex-dev/latex-lab/latex-lab-toc.dtx texmf-dist/source/latex-dev/latex-lab/latex-lab.ins -runfiles size=99 +runfiles size=104 texmf-dist/tex/latex-dev/latex-lab/bib-latex-lab-testphase.ltx texmf-dist/tex/latex-dev/latex-lab/block-latex-lab-testphase.ltx texmf-dist/tex/latex-dev/latex-lab/documentmetadata-support.ltx @@ -169430,7 +171855,7 @@ runfiles size=99 catalogue-ctan /macros/latex-dev/required/latex-lab catalogue-license lppl1.3c catalogue-topics format latex-devel -catalogue-version 2024-11-01 pre-release 0 +catalogue-version 2025-06-01 pre-release 1 name latex-make category Package @@ -169722,13 +172147,13 @@ catalogue-version 1.2 name latex-tools-dev category Package -revision 71433 +revision 72979 shortdesc Development pre-release of the LaTeX tools bundle 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. -docfiles size=2004 +docfiles size=2016 texmf-dist/doc/latex-dev/tools/README.md details="Readme" texmf-dist/doc/latex-dev/tools/afterpage.pdf texmf-dist/doc/latex-dev/tools/array.pdf @@ -169761,7 +172186,7 @@ docfiles size=2004 texmf-dist/doc/latex-dev/tools/verbatim.pdf texmf-dist/doc/latex-dev/tools/xr.pdf texmf-dist/doc/latex-dev/tools/xspace.pdf -srcfiles size=285 +srcfiles size=289 texmf-dist/source/latex-dev/tools/afterpage.dtx texmf-dist/source/latex-dev/tools/afterpage.ins texmf-dist/source/latex-dev/tools/array.dtx @@ -169797,7 +172222,7 @@ srcfiles size=285 texmf-dist/source/latex-dev/tools/verbatim.dtx texmf-dist/source/latex-dev/tools/xr.dtx texmf-dist/source/latex-dev/tools/xspace.dtx -runfiles size=128 +runfiles size=137 texmf-dist/tex/latex-dev/tools/.tex texmf-dist/tex/latex-dev/tools/afterpage.sty texmf-dist/tex/latex-dev/tools/array-2016-10-06.sty @@ -169822,6 +172247,7 @@ runfiles size=128 texmf-dist/tex/latex-dev/tools/longtable.sty texmf-dist/tex/latex-dev/tools/multicol-2017-04-11.sty texmf-dist/tex/latex-dev/tools/multicol-2019-10-01.sty + texmf-dist/tex/latex-dev/tools/multicol-2024-05-23.sty texmf-dist/tex/latex-dev/tools/multicol.sty texmf-dist/tex/latex-dev/tools/q.tex texmf-dist/tex/latex-dev/tools/r.tex @@ -169851,7 +172277,7 @@ runfiles size=128 catalogue-ctan /macros/latex-dev/required/tools catalogue-license lppl1.3c catalogue-topics collection latex-devel -catalogue-version 2024-11-01 pre-release 0 +catalogue-version 2025-06-01 pre-release 1 name latex-uni8 category Package @@ -169919,34 +172345,33 @@ catalogue-version 0.7 name latex-via-exemplos category Package -revision 68627 +revision 73369 shortdesc A LaTeX course written in brazilian portuguese language longdesc This is a LaTeX2e course written in brazilian portuguese longdesc language. -docfiles size=842 +docfiles size=581 texmf-dist/doc/latex/latex-via-exemplos/README.md details="Readme" texmf-dist/doc/latex/latex-via-exemplos/changelog.txt + texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-abntex2.tex + texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-abntexto.tex + texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-certificado-lista-nomes.csv texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-certificado.tex + texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-cracha-lista-participantes.csv texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-cracha.tex texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-fig.tex texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-folder.tex - texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-lista-nomes.csv - texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-lista-participantes.csv texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-poster.tex texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-slides.tex texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-todonotes.tex - texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-twosides.pdf details="The document itself (twoside)" language="pt-br" - texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-twosides.tex + texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-twoside.tex texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos.bib - texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos.pdf details="The document itself (oneside)" language="pt-br" + texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos.pdf details="The document itself" language="pt-br" texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos.tex - texmf-dist/doc/latex/latex-via-exemplos/makeaux.sh texmf-dist/doc/latex/latex-via-exemplos/makedoc.sh catalogue-also lshort-portuguese-br catalogue-ctan /info/latex-via-exemplos -catalogue-license gpl2+ +catalogue-license lppl1.3c catalogue-topics portuguese-doc tut-latex -catalogue-version 0.5.10 name latex-web-companion category Package @@ -170510,7 +172935,7 @@ binfiles arch=x86_64-solaris size=1 name latex2pydata category Package -revision 71283 +revision 72886 shortdesc Write data to file in Python literal format longdesc This package writes data to file using Python literal syntax. longdesc The data may be loaded safely in Python using the @@ -170518,7 +172943,7 @@ longdesc ast.literal_eval() function or the latex2pydata Python package. longdesc The data can also be hashed within LaTeX (mdfivesum) so that it longdesc is possible to check for the existence of external cached longdesc content generated with the data. -docfiles size=75 +docfiles size=81 texmf-dist/doc/latex/latex2pydata/CHANGELOG.md texmf-dist/doc/latex/latex2pydata/README details="Readme" texmf-dist/doc/latex/latex2pydata/latex2pydata.pdf details="Package documentation" @@ -170532,7 +172957,7 @@ catalogue-contact-repository https://github.com/gpoore/latex2pydata catalogue-ctan /macros/latex/contrib/latex2pydata catalogue-license lppl1.3c catalogue-topics data-manip -catalogue-version 0.2.0 +catalogue-version 0.4.0 name latex4musicians category Package @@ -170745,7 +173170,7 @@ catalogue-version 0.2 name latexbug category Package -revision 71550 +revision 72762 shortdesc Bug-classification for LaTeX related bugs longdesc The package is written in order to help identifying the longdesc rightful addressee for a bug report. The LaTeX team asks that @@ -170764,7 +173189,7 @@ 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.0o +catalogue-version 1.0p name latexcheat category Package @@ -170901,7 +173326,7 @@ catalogue-version 0.2 name latexdiff category Package -revision 64980 +revision 72099 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 @@ -170914,7 +173339,7 @@ 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 -docfiles size=266 +docfiles size=273 texmf-dist/doc/man/man1/latexdiff-vc.1 texmf-dist/doc/man/man1/latexdiff-vc.man1.pdf texmf-dist/doc/man/man1/latexdiff.1 @@ -170935,7 +173360,7 @@ docfiles size=266 texmf-dist/doc/support/latexdiff/example/example-rev.tex texmf-dist/doc/support/latexdiff/latexdiff texmf-dist/doc/support/latexdiff/latexdiff-fast -runfiles size=76 +runfiles size=78 texmf-dist/scripts/latexdiff/latexdiff-vc.pl texmf-dist/scripts/latexdiff/latexdiff.pl texmf-dist/scripts/latexdiff/latexrevise.pl @@ -170943,7 +173368,7 @@ catalogue-contact-repository https://github.com/ftilmann/latexdiff/ catalogue-ctan /support/latexdiff catalogue-license gpl3 catalogue-topics doc-mgmt -catalogue-version 1.3.3 +catalogue-version 1.3.4 name latexdiff.aarch64-linux category Package @@ -171246,13 +173671,13 @@ catalogue-topics version-control doc-mgmt name latexindent category Package -revision 71532 +revision 71840 shortdesc Indent a LaTeX document, highlighting the programming structure 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 -docfiles size=461 +docfiles size=456 texmf-dist/doc/support/latexindent/README details="Readme" texmf-dist/doc/support/latexindent/contributors.bib texmf-dist/doc/support/latexindent/figure-schematic.png @@ -171312,7 +173737,7 @@ catalogue-contact-repository https://github.com/cmhughes/latexindent.pl catalogue-ctan /support/latexindent catalogue-license gpl3 catalogue-topics code-layout -catalogue-version 3.24.2 +catalogue-version 3.24.4 name latexindent.aarch64-linux category Package @@ -171379,9 +173804,9 @@ binfiles arch=universal-darwin size=1 name latexindent.windows category Package -revision 71532 +revision 71840 shortdesc windows files of latexindent -binfiles arch=windows size=2315 +binfiles arch=windows size=2316 bin/windows/latexindent.exe name latexindent.x86_64-cygwin @@ -171421,7 +173846,7 @@ binfiles arch=x86_64-solaris size=1 name latexmk category Package -revision 70909 +revision 73224 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 @@ -171433,7 +173858,7 @@ 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 -docfiles size=311 +docfiles size=315 texmf-dist/doc/man/man1/latexmk.1 texmf-dist/doc/man/man1/latexmk.man1.pdf texmf-dist/doc/support/latexmk/CHANGES @@ -171487,14 +173912,14 @@ docfiles size=311 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=129 +runfiles size=130 texmf-dist/scripts/latexmk/latexmk.pl catalogue-also latexn prv arara catalogue-contact-home https://www.cantab.net/users/johncollins/latexmk/index.html catalogue-ctan /support/latexmk catalogue-license gpl2 catalogue-topics compilation -catalogue-version 4.85 +catalogue-version 4.86a name latexmk.aarch64-linux category Package @@ -173808,9 +176233,9 @@ catalogue-topics font-devel name lcdftypetools.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of lcdftypetools -binfiles arch=aarch64-linux size=1237 +binfiles arch=aarch64-linux size=1345 bin/aarch64-linux/cfftot1 bin/aarch64-linux/mmafm bin/aarch64-linux/mmpfb @@ -173825,9 +176250,9 @@ binfiles arch=aarch64-linux size=1237 name lcdftypetools.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of lcdftypetools -binfiles arch=amd64-freebsd size=1277 +binfiles arch=amd64-freebsd size=1310 bin/amd64-freebsd/cfftot1 bin/amd64-freebsd/mmafm bin/amd64-freebsd/mmpfb @@ -173842,9 +176267,9 @@ binfiles arch=amd64-freebsd size=1277 name lcdftypetools.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of lcdftypetools -binfiles arch=amd64-netbsd size=1270 +binfiles arch=amd64-netbsd size=1271 bin/amd64-netbsd/cfftot1 bin/amd64-netbsd/mmafm bin/amd64-netbsd/mmpfb @@ -173859,9 +176284,9 @@ binfiles arch=amd64-netbsd size=1270 name lcdftypetools.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of lcdftypetools -binfiles arch=armhf-linux size=920 +binfiles arch=armhf-linux size=834 bin/armhf-linux/cfftot1 bin/armhf-linux/mmafm bin/armhf-linux/mmpfb @@ -173876,9 +176301,9 @@ binfiles arch=armhf-linux size=920 name lcdftypetools.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of lcdftypetools -binfiles arch=i386-freebsd size=1277 +binfiles arch=i386-freebsd size=1310 bin/i386-freebsd/cfftot1 bin/i386-freebsd/mmafm bin/i386-freebsd/mmpfb @@ -173893,9 +176318,9 @@ binfiles arch=i386-freebsd size=1277 name lcdftypetools.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of lcdftypetools -binfiles arch=i386-linux size=1160 +binfiles arch=i386-linux size=1268 bin/i386-linux/cfftot1 bin/i386-linux/mmafm bin/i386-linux/mmpfb @@ -173910,7 +176335,7 @@ binfiles arch=i386-linux size=1160 name lcdftypetools.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of lcdftypetools binfiles arch=i386-netbsd size=1160 bin/i386-netbsd/cfftot1 @@ -173927,9 +176352,9 @@ binfiles arch=i386-netbsd size=1160 name lcdftypetools.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of lcdftypetools -binfiles arch=i386-solaris size=1040 +binfiles arch=i386-solaris size=1094 bin/i386-solaris/cfftot1 bin/i386-solaris/mmafm bin/i386-solaris/mmpfb @@ -173944,9 +176369,9 @@ binfiles arch=i386-solaris size=1040 name lcdftypetools.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of lcdftypetools -binfiles arch=universal-darwin size=2179 +binfiles arch=universal-darwin size=2622 bin/universal-darwin/cfftot1 bin/universal-darwin/mmafm bin/universal-darwin/mmpfb @@ -173961,7 +176386,7 @@ binfiles arch=universal-darwin size=2179 name lcdftypetools.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of lcdftypetools binfiles arch=windows size=1242 bin/windows/cfftot1.exe @@ -173978,9 +176403,9 @@ binfiles arch=windows size=1242 name lcdftypetools.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of lcdftypetools -binfiles arch=x86_64-cygwin size=1040 +binfiles arch=x86_64-cygwin size=1022 bin/x86_64-cygwin/cfftot1.exe bin/x86_64-cygwin/mmafm.exe bin/x86_64-cygwin/mmpfb.exe @@ -173995,9 +176420,9 @@ binfiles arch=x86_64-cygwin size=1040 name lcdftypetools.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of lcdftypetools -binfiles arch=x86_64-darwinlegacy size=874 +binfiles arch=x86_64-darwinlegacy size=852 bin/x86_64-darwinlegacy/cfftot1 bin/x86_64-darwinlegacy/mmafm bin/x86_64-darwinlegacy/mmpfb @@ -174012,9 +176437,9 @@ binfiles arch=x86_64-darwinlegacy size=874 name lcdftypetools.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of lcdftypetools -binfiles arch=x86_64-linux size=1157 +binfiles arch=x86_64-linux size=1283 bin/x86_64-linux/cfftot1 bin/x86_64-linux/mmafm bin/x86_64-linux/mmpfb @@ -174029,9 +176454,9 @@ binfiles arch=x86_64-linux size=1157 name lcdftypetools.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of lcdftypetools -binfiles arch=x86_64-linuxmusl size=1155 +binfiles arch=x86_64-linuxmusl size=1270 bin/x86_64-linuxmusl/cfftot1 bin/x86_64-linuxmusl/mmafm bin/x86_64-linuxmusl/mmpfb @@ -174046,9 +176471,9 @@ binfiles arch=x86_64-linuxmusl size=1155 name lcdftypetools.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of lcdftypetools -binfiles arch=x86_64-solaris size=1129 +binfiles arch=x86_64-solaris size=1178 bin/x86_64-solaris/cfftot1 bin/x86_64-solaris/mmafm bin/x86_64-solaris/mmpfb @@ -174278,23 +176703,24 @@ catalogue-topics presentation name lectures category Package -revision 53642 +revision 73727 shortdesc A document class for quickly drafting nice looking lecture notes longdesc This LaTeX documentclass provides a number of gimmicks to draft longdesc nice looking lecture notes, such as a number of theorem longdesc environments, automatic spacing and alignment of figures and longdesc much more. More information is available in the package readme. -docfiles size=2 +docfiles size=4 texmf-dist/doc/latex/lectures/LICENSE texmf-dist/doc/latex/lectures/README.md details="Readme" + texmf-dist/doc/latex/lectures/example.tex runfiles size=6 texmf-dist/tex/latex/lectures/lectures.cls catalogue-contact-bugs https://github.com/LucaCappelletti94/lectures/issues catalogue-contact-repository https://github.com/LucaCappelletti94/lectures catalogue-ctan /macros/latex/contrib/lectures catalogue-license mit -catalogue-topics class presentation teaching -catalogue-version 1.0.5 +catalogue-topics class teaching +catalogue-version 1.0.6 name lectureslides category Package @@ -174464,19 +176890,19 @@ catalogue-version 1.0a name lete-sans-math category Package -revision 71247 +revision 73129 shortdesc Lato-based OpenType Math font for LuaTeX and XeTeX longdesc This package provides a Unicode Math font LeteSansMath.otf longdesc meant to be used together with Lato sans-serif TrueType Text longdesc fonts in LuaLaTeX or XeLaTeX documents. Note: "Lato" means longdesc "Summer" in Polish, same as "l'ete" in French. -docfiles size=539 +docfiles size=523 texmf-dist/doc/fonts/lete-sans-math/LeteSansMath.ltx texmf-dist/doc/fonts/lete-sans-math/LeteSansMath.pdf details="Package documentation" texmf-dist/doc/fonts/lete-sans-math/README.md details="Readme" texmf-dist/doc/fonts/lete-sans-math/unimath-lete.ltx texmf-dist/doc/fonts/lete-sans-math/unimath-lete.pdf details="List of glyphs" -runfiles size=142 +runfiles size=143 texmf-dist/fonts/opentype/public/lete-sans-math/LeteSansMath-Bold.otf texmf-dist/fonts/opentype/public/lete-sans-math/LeteSansMath.otf texmf-dist/tex/latex/lete-sans-math/lete-sans-math.sty @@ -174486,11 +176912,11 @@ catalogue-contact-home https://github.com/abccsss/LeteSansMath catalogue-ctan /fonts/lete-sans-math catalogue-license ofl lppl1.3c catalogue-topics font-maths font-otf -catalogue-version 0.40 +catalogue-version 0.45 name letgut category Package -revision 70491 +revision 72713 shortdesc Class for the newsletter "La Lettre GUTenberg" of the French TeX User Group GUTenberg longdesc The French TeX User Group GUTenberg has been publishing "The longdesc GUTenberg Letter", its irregular newsletter, since February @@ -174515,7 +176941,7 @@ 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. -docfiles size=434 +docfiles size=438 texmf-dist/doc/lualatex/letgut/CHANGELOG.md texmf-dist/doc/lualatex/letgut/README.md details="Readme" texmf-dist/doc/lualatex/letgut/exemple-nouveautes.pdf @@ -174531,11 +176957,11 @@ docfiles size=434 texmf-dist/doc/lualatex/letgut/listings-conf.tex texmf-dist/doc/lualatex/letgut/localconf.tex texmf-dist/doc/lualatex/letgut/xindex-letgut.lua -srcfiles size=88 +srcfiles size=89 texmf-dist/source/lualatex/letgut/HOWTO.md texmf-dist/source/lualatex/letgut/letgut-banner.org texmf-dist/source/lualatex/letgut/letgut.org -runfiles size=70 +runfiles size=71 texmf-dist/tex/lualatex/letgut/informations-gut.tex texmf-dist/tex/lualatex/letgut/letgut-acronyms.tex texmf-dist/tex/lualatex/letgut/letgut-banner.sty @@ -174551,7 +176977,7 @@ 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.9 +catalogue-version 0.9.12 name letltxmacro category Package @@ -174596,20 +177022,21 @@ catalogue-topics letterspace name letterswitharrows category Package -revision 59993 +revision 72723 shortdesc Draw arrows over math letters longdesc This package provides LaTeX math-mode commands for setting left longdesc and right arrows over mathematical symbols so that the arrows longdesc dynamically scale with the symbols. While it is possible to set longdesc arrows over longer strings of symbols, the focus lies on single longdesc characters. -docfiles size=122 +docfiles size=119 texmf-dist/doc/latex/letterswitharrows/README.txt details="Readme" texmf-dist/doc/latex/letterswitharrows/letterswitharrows.pdf details="Package documentation" srcfiles size=5 texmf-dist/source/latex/letterswitharrows/letterswitharrows.dtx runfiles size=3 texmf-dist/tex/latex/letterswitharrows/letterswitharrows.sty +catalogue-contact-repository https://github.com/max-te/letterswitharrows catalogue-ctan /macros/latex/contrib/letterswitharrows catalogue-license lppl1.3 catalogue-topics maths expl3 pgf-tikz @@ -174666,7 +177093,7 @@ catalogue-version 3.002 name lettrine category Package -revision 71627 +revision 73660 shortdesc Typeset dropped capitals longdesc The lettrine package supports various dropped capitals styles, longdesc typically those described in the French typographic books. In @@ -174684,9 +177111,8 @@ docfiles size=146 texmf-dist/doc/latex/lettrine/lettrine-demo-fr.tex texmf-dist/doc/latex/lettrine/lettrine-demo-lua.pdf texmf-dist/doc/latex/lettrine/lettrine-demo-lua.tex - texmf-dist/doc/latex/lettrine/lettrine-xetex-bidi.def texmf-dist/doc/latex/lettrine/lettrine.pdf details="Package documentation" -srcfiles size=13 +srcfiles size=14 texmf-dist/source/latex/lettrine/lettrine.dtx runfiles size=25 texmf-dist/tex/latex/lettrine/contrib/lettrine-optfile.cfl @@ -174704,7 +177130,7 @@ runfiles size=25 catalogue-ctan /macros/latex/contrib/lettrine catalogue-license lppl1.3 catalogue-topics lettrine -catalogue-version 2.61 +catalogue-version 2.80 name levy category Package @@ -175833,7 +178259,7 @@ catalogue-version 2.0 name libertine category Package -revision 71061 +revision 73037 shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX longdesc The package provides the Libertine and Biolinum fonts in both longdesc Type 1 and OTF styles, together with support macros for their @@ -175861,7 +178287,7 @@ docfiles size=418 texmf-dist/doc/fonts/libertine/libertine.pdf details="Package documentation" texmf-dist/doc/fonts/libertine/libertine.tex texmf-dist/doc/fonts/libertine/rename_enc -runfiles size=8155 +runfiles size=6720 texmf-dist/fonts/enc/dvips/libertine/lbtn_25tcsq.enc texmf-dist/fonts/enc/dvips/libertine/lbtn_2exa4z.enc texmf-dist/fonts/enc/dvips/libertine/lbtn_2ezly2.enc @@ -176181,230 +178607,6 @@ runfiles size=8155 texmf-dist/fonts/opentype/public/libertine/LinLibertine_RI.otf texmf-dist/fonts/opentype/public/libertine/LinLibertine_RZ.otf texmf-dist/fonts/opentype/public/libertine/LinLibertine_RZI.otf - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumO-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOB-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOBO-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinBiolinumOI-tosf-ts1.tfm texmf-dist/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1.tfm texmf-dist/fonts/tfm/public/libertine/LinBiolinumT-lf-ot1--base.tfm @@ -176776,338 +178978,6 @@ runfiles size=8155 texmf-dist/fonts/tfm/public/libertine/LinLibertineMTO-tlf-t1.tfm texmf-dist/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineO-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOB-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOBI-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOI-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZ-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertine/LinLibertineOZI-tosf-ts1.tfm texmf-dist/fonts/tfm/public/libertine/LinLibertineT-lf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertine/LinLibertineT-lf-ly1.tfm texmf-dist/fonts/tfm/public/libertine/LinLibertineT-lf-ot1--base.tfm @@ -177491,118 +179361,6 @@ runfiles size=8155 texmf-dist/fonts/type1/public/libertine/LinLibertineTI.pfb texmf-dist/fonts/type1/public/libertine/LinLibertineTZ.pfb texmf-dist/fonts/type1/public/libertine/LinLibertineTZI.pfb - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumO-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOB-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOBO-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinBiolinumOI-tosf-ts1.vf texmf-dist/fonts/vf/public/libertine/LinBiolinumT-lf-ly1.vf texmf-dist/fonts/vf/public/libertine/LinBiolinumT-lf-ot1.vf texmf-dist/fonts/vf/public/libertine/LinBiolinumT-lf-sc-ly1.vf @@ -177779,170 +179537,6 @@ runfiles size=8155 texmf-dist/fonts/vf/public/libertine/LinLibertineMTO-tlf-ly1.vf texmf-dist/fonts/vf/public/libertine/LinLibertineMTO-tlf-t1.vf texmf-dist/fonts/vf/public/libertine/LinLibertineMTO-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineO-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOB-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOBI-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOI-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-lf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-osf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tosf-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZ-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-lf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-lf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-lf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-osf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-osf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-osf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tlf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tlf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tosf-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tosf-t1.vf - texmf-dist/fonts/vf/public/libertine/LinLibertineOZI-tosf-ts1.vf texmf-dist/fonts/vf/public/libertine/LinLibertineT-lf-ly1.vf texmf-dist/fonts/vf/public/libertine/LinLibertineT-lf-ot1.vf texmf-dist/fonts/vf/public/libertine/LinLibertineT-lf-sc-ly1.vf @@ -178119,10 +179713,6 @@ runfiles size=8155 texmf-dist/fonts/vf/public/libertine/LinLibertineTZI-tosf-t1.vf texmf-dist/fonts/vf/public/libertine/LinLibertineTZI-tosf-ts1.vf texmf-dist/tex/latex/libertine/LKey.tex - texmf-dist/tex/latex/libertine/LY1LinuxBiolinumO-LF.fd - texmf-dist/tex/latex/libertine/LY1LinuxBiolinumO-OsF.fd - texmf-dist/tex/latex/libertine/LY1LinuxBiolinumO-TLF.fd - texmf-dist/tex/latex/libertine/LY1LinuxBiolinumO-TOsF.fd texmf-dist/tex/latex/libertine/LY1LinuxBiolinumT-LF.fd texmf-dist/tex/latex/libertine/LY1LinuxBiolinumT-OsF.fd texmf-dist/tex/latex/libertine/LY1LinuxBiolinumT-Sup.fd @@ -178139,10 +179729,6 @@ runfiles size=8155 texmf-dist/tex/latex/libertine/LY1LinuxLibertineMonoT-LF.fd texmf-dist/tex/latex/libertine/LY1LinuxLibertineMonoT-Sup.fd texmf-dist/tex/latex/libertine/LY1LinuxLibertineMonoT-TLF.fd - texmf-dist/tex/latex/libertine/LY1LinuxLibertineO-LF.fd - texmf-dist/tex/latex/libertine/LY1LinuxLibertineO-OsF.fd - texmf-dist/tex/latex/libertine/LY1LinuxLibertineO-TLF.fd - texmf-dist/tex/latex/libertine/LY1LinuxLibertineO-TOsF.fd texmf-dist/tex/latex/libertine/LY1LinuxLibertineT-LF.fd texmf-dist/tex/latex/libertine/LY1LinuxLibertineT-OsF.fd texmf-dist/tex/latex/libertine/LY1LinuxLibertineT-Sup.fd @@ -178152,10 +179738,6 @@ runfiles size=8155 texmf-dist/tex/latex/libertine/LinBiolinum_R.tex texmf-dist/tex/latex/libertine/LinLibertine_I.tex texmf-dist/tex/latex/libertine/LinLibertine_R.tex - texmf-dist/tex/latex/libertine/OT1LinuxBiolinumO-LF.fd - texmf-dist/tex/latex/libertine/OT1LinuxBiolinumO-OsF.fd - texmf-dist/tex/latex/libertine/OT1LinuxBiolinumO-TLF.fd - texmf-dist/tex/latex/libertine/OT1LinuxBiolinumO-TOsF.fd texmf-dist/tex/latex/libertine/OT1LinuxBiolinumT-LF.fd texmf-dist/tex/latex/libertine/OT1LinuxBiolinumT-OsF.fd texmf-dist/tex/latex/libertine/OT1LinuxBiolinumT-Sup.fd @@ -178172,19 +179754,11 @@ runfiles size=8155 texmf-dist/tex/latex/libertine/OT1LinuxLibertineMonoT-LF.fd texmf-dist/tex/latex/libertine/OT1LinuxLibertineMonoT-Sup.fd texmf-dist/tex/latex/libertine/OT1LinuxLibertineMonoT-TLF.fd - texmf-dist/tex/latex/libertine/OT1LinuxLibertineO-LF.fd - texmf-dist/tex/latex/libertine/OT1LinuxLibertineO-OsF.fd - texmf-dist/tex/latex/libertine/OT1LinuxLibertineO-TLF.fd - texmf-dist/tex/latex/libertine/OT1LinuxLibertineO-TOsF.fd texmf-dist/tex/latex/libertine/OT1LinuxLibertineT-LF.fd texmf-dist/tex/latex/libertine/OT1LinuxLibertineT-OsF.fd texmf-dist/tex/latex/libertine/OT1LinuxLibertineT-Sup.fd texmf-dist/tex/latex/libertine/OT1LinuxLibertineT-TLF.fd texmf-dist/tex/latex/libertine/OT1LinuxLibertineT-TOsF.fd - texmf-dist/tex/latex/libertine/T1LinuxBiolinumO-LF.fd - texmf-dist/tex/latex/libertine/T1LinuxBiolinumO-OsF.fd - texmf-dist/tex/latex/libertine/T1LinuxBiolinumO-TLF.fd - texmf-dist/tex/latex/libertine/T1LinuxBiolinumO-TOsF.fd texmf-dist/tex/latex/libertine/T1LinuxBiolinumT-LF.fd texmf-dist/tex/latex/libertine/T1LinuxBiolinumT-OsF.fd texmf-dist/tex/latex/libertine/T1LinuxBiolinumT-Sup.fd @@ -178201,19 +179775,11 @@ runfiles size=8155 texmf-dist/tex/latex/libertine/T1LinuxLibertineMonoT-LF.fd texmf-dist/tex/latex/libertine/T1LinuxLibertineMonoT-Sup.fd texmf-dist/tex/latex/libertine/T1LinuxLibertineMonoT-TLF.fd - texmf-dist/tex/latex/libertine/T1LinuxLibertineO-LF.fd - texmf-dist/tex/latex/libertine/T1LinuxLibertineO-OsF.fd - texmf-dist/tex/latex/libertine/T1LinuxLibertineO-TLF.fd - texmf-dist/tex/latex/libertine/T1LinuxLibertineO-TOsF.fd texmf-dist/tex/latex/libertine/T1LinuxLibertineT-LF.fd texmf-dist/tex/latex/libertine/T1LinuxLibertineT-OsF.fd texmf-dist/tex/latex/libertine/T1LinuxLibertineT-Sup.fd texmf-dist/tex/latex/libertine/T1LinuxLibertineT-TLF.fd texmf-dist/tex/latex/libertine/T1LinuxLibertineT-TOsF.fd - texmf-dist/tex/latex/libertine/TS1LinuxBiolinumO-LF.fd - texmf-dist/tex/latex/libertine/TS1LinuxBiolinumO-OsF.fd - texmf-dist/tex/latex/libertine/TS1LinuxBiolinumO-TLF.fd - texmf-dist/tex/latex/libertine/TS1LinuxBiolinumO-TOsF.fd texmf-dist/tex/latex/libertine/TS1LinuxBiolinumT-LF.fd texmf-dist/tex/latex/libertine/TS1LinuxBiolinumT-OsF.fd texmf-dist/tex/latex/libertine/TS1LinuxBiolinumT-TLF.fd @@ -178227,10 +179793,6 @@ runfiles size=8155 texmf-dist/tex/latex/libertine/TS1LinuxLibertineInitialsT-TLF.fd texmf-dist/tex/latex/libertine/TS1LinuxLibertineMonoT-LF.fd texmf-dist/tex/latex/libertine/TS1LinuxLibertineMonoT-TLF.fd - texmf-dist/tex/latex/libertine/TS1LinuxLibertineO-LF.fd - texmf-dist/tex/latex/libertine/TS1LinuxLibertineO-OsF.fd - texmf-dist/tex/latex/libertine/TS1LinuxLibertineO-TLF.fd - texmf-dist/tex/latex/libertine/TS1LinuxLibertineO-TOsF.fd texmf-dist/tex/latex/libertine/TS1LinuxLibertineT-LF.fd texmf-dist/tex/latex/libertine/TS1LinuxLibertineT-OsF.fd texmf-dist/tex/latex/libertine/TS1LinuxLibertineT-TLF.fd @@ -178239,6 +179801,7 @@ runfiles size=8155 texmf-dist/tex/latex/libertine/libertine.sty texmf-dist/tex/latex/libertine/libertineMono.sty texmf-dist/tex/latex/libertine/libertineRoman.sty +catalogue-alias biolinum catalogue-ctan /fonts/libertine catalogue-license gpl ofl lppl catalogue-topics font font-body font-serif font-sans font-mono font-otf font-type1 font-supp font-t1enc @@ -178376,7 +179939,7 @@ catalogue-version 0.02 name libertinus-fonts category Package -revision 57948 +revision 72484 shortdesc The Libertinus font family longdesc This is a fork of the Linux Libertine and Linux Biolinum fonts longdesc that started as an OpenType math companion of the Libertine @@ -178386,7 +179949,7 @@ longdesc forked from Linux Libertine. Libertinus Sans: forked from Linux longdesc Biolinum. Libertinus Mono: forked from Linux Libertine Mono. longdesc Libertinus Math: an OpenType math font for use in OpenType longdesc math-capable applications like LuaTeX, XeTeX or MS Word 2007+. -docfiles size=279 +docfiles size=242 texmf-dist/doc/fonts/libertinus-fonts/AUTHORS.txt texmf-dist/doc/fonts/libertinus-fonts/CONTRIBUTING.md texmf-dist/doc/fonts/libertinus-fonts/CONTRIBUTORS.txt @@ -178397,11 +179960,11 @@ docfiles size=279 texmf-dist/doc/fonts/libertinus-fonts/OFL.txt texmf-dist/doc/fonts/libertinus-fonts/Opentype-Features.pdf texmf-dist/doc/fonts/libertinus-fonts/README.md details="Readme" - texmf-dist/doc/fonts/libertinus-fonts/Sample.pdf details="Font samples" texmf-dist/doc/fonts/libertinus-fonts/libertinus.css - texmf-dist/doc/fonts/libertinus-fonts/preview.pdf texmf-dist/doc/fonts/libertinus-fonts/preview.svg -runfiles size=871 + texmf-dist/doc/fonts/libertinus-fonts/sample.pdf details="Font samples" + texmf-dist/doc/fonts/libertinus-fonts/waterfalls.pdf +runfiles size=936 texmf-dist/fonts/opentype/public/libertinus-fonts/LibertinusKeyboard-Regular.otf texmf-dist/fonts/opentype/public/libertinus-fonts/LibertinusMath-Regular.otf texmf-dist/fonts/opentype/public/libertinus-fonts/LibertinusMono-Regular.otf @@ -178423,7 +179986,7 @@ catalogue-contact-repository https://github.com/alerque/libertinus catalogue-ctan /fonts/libertinus-fonts catalogue-license ofl catalogue-topics font font-body font-proportional font-mono font-serif font-sans font-multilingual font-maths font-otf -catalogue-version 7.040 +catalogue-version 7.051 name libertinus-otf category Package @@ -178449,360 +180012,385 @@ catalogue-version 0.32 name libertinus-type1 category Package -revision 67450 +revision 73445 shortdesc Support for using Libertinus fonts with LaTeX/pdfLaTeX 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 -docfiles size=362 +docfiles size=319 texmf-dist/doc/fonts/libertinus-type1/OFL.txt texmf-dist/doc/fonts/libertinus-type1/README details="Readme" + texmf-dist/doc/fonts/libertinus-type1/autoinst.sh texmf-dist/doc/fonts/libertinus-type1/libertinus-samples.pdf details="Font samples" texmf-dist/doc/fonts/libertinus-type1/libertinus-samples.tex texmf-dist/doc/fonts/libertinus-type1/libertinus-type1.pdf details="Package documentation" texmf-dist/doc/fonts/libertinus-type1/libertinus-type1.tex -runfiles size=5031 - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2dnbtf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2fcdyd.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2ojay3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2tlncs.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2u3q4p.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2vfnnw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2y652m.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_2yds7f.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_35favc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_36t55i.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_37i5h5.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3d54jy.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3j5xjf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3jolak.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3kirmv.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3kmpct.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3m644f.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3qta4x.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3ssu23.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3un72f.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3vqmyw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_3yrfnt.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4crdwc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4d42wm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4gaomz.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4hcz3c.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4mrx7q.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4q6kep.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4sdcjk.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4uwsiq.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4wbnoe.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4xoyfg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_4zqa2g.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_57bjkg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_5acxeg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_5cy3nd.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_5h7qbk.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_5jnf2k.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_5xa72p.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_63ftwl.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_674lrv.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6caxtj.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6ewxxu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6gletg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6h6srf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6hdezz.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6l4fbc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6lk76t.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_6wmeer.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_72youc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_75t36g.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_76xdns.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_77jah4.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_77t54r.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7aen2t.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7bccbz.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7d2mhk.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7hmj2z.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7lwjes.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7mm7zy.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7oodvn.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7vsebg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_7yclm6.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_a3f66t.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_aidrin.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_arfinu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_at32ur.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_avlujb.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_avlydd.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ayzaac.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_b4oezt.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_b5fzbp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_b7xqh5.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_bgegdt.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_bjbyqz.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_bn2i3n.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_bvhzzu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_bxwrog.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_c3bv3f.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_c4i7ev.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_c4nx3a.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_c6vmpn.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_c7grr2.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_calslh.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_cb34qf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_cefqwa.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ckbdgg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ckenly.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_cpinjp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_cslza4.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_cykel7.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_d2pxsd.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_d37b7c.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_dgc4ye.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_dhtsou.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_dkknmm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_dn22no.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_dsfsze.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_dzyoth.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_e35iwk.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_e5lu6a.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ecxtyf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ed5ai4.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_eejjqw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ep5pfz.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_epdddg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ercrba.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_erdvwd.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_esgnlu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_et5tau.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_exfok6.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_f2r76x.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_f3pcwn.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fili27.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fmdp7p.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fmriqv.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fph2zj.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fszxp3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fujx3h.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fuyass.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_fy3had.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_g3dkmi.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_g6etas.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gazpeh.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gc5t3w.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gekugp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gh4gmp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_goqnek.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gp3nhm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gq67ga.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gr4hit.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gz554e.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_gz7arp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hahfqq.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hboyu3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hej6xm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hhbt6z.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hhmpft.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hjeuwr.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hrrrjq.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hvvyjb.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hxvdny.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_hzjkgg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_i52ngl.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_iadd5v.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_iaq24h.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ibb6ig.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_icmtyb.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ighl2q.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_igmfoi.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ihsp6n.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_iknsvo.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_inpbes.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ipd343.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_is673m.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_iv4zj2.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_j6sgbi.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_jb5pke.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_jdjwkh.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_jfamas.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_jrenuz.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_jwzfsl.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_k62zaj.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_kbhblx.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_kehxxc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_koaj57.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_komy7m.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_kq3xmd.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_kwkowq.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_l5raak.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_l5ujiv.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_l5vej2.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_l6vzgi.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_l74upk.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_laenbp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lafzha.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lhntva.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lkanbr.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_llns2d.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_llzec3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lsubum.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lwzthx.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lyzgu3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lzae2z.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_lzywtf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_m254rf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_m2klan.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_m3c2oj.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_m3l6fs.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_m5c6xi.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_m7sqdm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mbfmc4.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mfadfl.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mi54ls.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mll6fo.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mlwm27.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mmgovh.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mphtgh.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mrbizy.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mvzwgg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mxiee2.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_mzxlpf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_n3cifc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_n3dtgz.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_n4gj6t.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_n4tewx.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_nl47lc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_nufysp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_nv3oiw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_o7mh5o.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_oaaihm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_obkmrl.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_obzz72.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_of47id.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_of4nbw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_olw3tj.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_onayya.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_opzo24.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ork5hb.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_orvmfm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_osdvzf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_oxank3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_p5b3to.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_p7snj6.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_pa7fun.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_pag3gg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_pb7os7.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_pdot6l.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_peeabe.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_pkzsom.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_poicuj.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ponsko.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ppaygs.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_pquqdo.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ptnx64.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_pydski.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_q2cvbs.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_q2ibpc.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_q4imkx.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_q4q2yp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_qcfvgl.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_qe2yqv.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_qpph5c.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_qqnp2h.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_qsv3bx.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_quwwcn.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_qylzkl.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_qzwhi6.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_r37ntu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_r4goj2.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_r7yss2.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rcarnw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rchowm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rfuadt.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ridgvo.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rlktsf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rpeiua.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rqhkdi.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rtitj6.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_rv4ogi.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_sceraq.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_segm3u.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_sewfus.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_sfissr.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_sihybe.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_sjlxxx.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_slsqbu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_snijqp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_sppvmf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_srwzhm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_st5lk5.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_sut3w7.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_szn4yf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_szwnvb.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_tevnlg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_tll2u3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_trmgk4.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_trxlme.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_tzl7op.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_u2zr7g.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_u7nqae.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ucipzb.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ucscsg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ugujza.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_uhqgc3.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_uhwxqu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_uoecuf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_usfuuy.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_usl52j.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_usz5ut.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_utifxg.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_uwmf7x.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_uxbjn5.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_uxf4m5.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_v5z4kv.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vafbri.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vejg7h.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vftr22.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vgw5na.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vhmker.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vizicw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vjxogo.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vkm6ln.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vmhi4g.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vmjjgq.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vtz4pu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vu5j2r.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_vvzoei.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_w5ro75.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_waqoej.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_wm6att.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_wogi6j.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_wozmdw.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_wrg6fm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_x7beke.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_xaezkf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_xfy7gm.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_xh3iko.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_xhfw3j.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_xjb3td.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_xpehld.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_xrj6hp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ya3yeu.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ya7mbv.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_yaf6wf.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_yahecb.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ygr64v.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_yki2t7.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ynfuvy.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_ysaokq.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_yt5vb5.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_yuwgqp.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_yzuq4p.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_z6ew44.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_z6nnva.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_zh5q6t.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_zjhiql.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_znslmj.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_zpwads.enc - texmf-dist/fonts/enc/dvips/libertinus-type1/lbts_zqzvht.enc +runfiles size=4520 + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_2dnbtf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_2fcdyd.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_2tlncs.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_2vfnnw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_2y652m.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_2yds7f.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_35favc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_36t55i.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_37i5h5.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_37jtjx.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3cokjk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3d54jy.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3j5xjf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3jolak.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3kirmv.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3kmpct.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3m644f.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3qta4x.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3ssu23.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3un72f.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3vqmyw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_3yrfnt.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_45gf2l.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4crdwc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4d42wm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4gaomz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4hcz3c.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4mrx7q.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4q6kep.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4sdcjk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4uwsiq.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4wbnoe.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4xoyfg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_4zqa2g.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_57bjkg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_5acxeg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_5cy3nd.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_5f7tjt.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_5h7qbk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_5jnf2k.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_63ftwl.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_667eeu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_674lrv.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6caxtj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6ewxxu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6gletg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6h6srf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6hdezz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6l4fbc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6lk76t.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6muo3k.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_6wmeer.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_72youc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_75t36g.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_76vk5v.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_76xdns.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_77jah4.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_77t54r.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7aen2t.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7bccbz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7d2mhk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7hmj2z.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7lwjes.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7mm7zy.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7np5uz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7oodvn.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7vsebg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_7yclm6.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_a3f66t.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_aidrin.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_at32ur.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_avlujb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_avlydd.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ayzaac.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_b4oezt.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_b5fzbp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_b5ulzv.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_b7xqh5.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_bgegdt.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_bjbyqz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_bn2i3n.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_bvhzzu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_bwr4ko.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_bxwrog.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_c3bv3f.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_c4i7ev.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_c4nx3a.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_c6vmpn.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_c7grr2.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_calslh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_cb34qf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_cefqwa.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ckbdgg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ckenly.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_cpinjp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_cslza4.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_cykel7.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_d2pxsd.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_d37b7c.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_d7j3zj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dashch.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dgc4ye.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dhtsou.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dkknmm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dn22no.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dprkig.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dsfsze.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_dzyoth.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_e2cf4v.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_e35iwk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_e5lu6a.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_eclek4.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ecxtyf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ed5ai4.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_eejjqw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ep5pfz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_epdddg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ercrba.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_erdvwd.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_esgnlu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_et5tau.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_exfok6.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_f2r76x.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_f3pcwn.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fafj4h.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fili27.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fmdp7p.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fmriqv.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fph2zj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fszxp3.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fuyass.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_fy3had.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_g3dkmi.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_g6etas.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_gazpeh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_gh4gmp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_gr4hit.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_gxlsis.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_gz7arp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hahfqq.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hej6xm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hgpggj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hhbt6z.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hhmpft.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hhyopg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hm3bfr.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hrrrjq.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hvubca.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hvvyjb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hxvdny.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_hzjkgg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_i52ngl.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_iadd5v.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_iaq24h.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ibb6ig.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_icmtyb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ighl2q.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_igmfoi.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ihkzot.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ihsp6n.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_iknsvo.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_inpbes.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ipd343.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_iskk3a.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_iv4zj2.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_j6sgbi.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_jb5pke.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_jdjwkh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_jfamas.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_jiz4dk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_jrenuz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_jvtoya.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_jwzfsl.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_k62zaj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_kbhblx.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_kehxxc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_kirbtk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_koaj57.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_komy7m.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_kq3xmd.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_kwkowq.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_kynajb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_l5ujiv.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_l5vej2.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_l6vzgi.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_l74upk.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_laenbp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lafzha.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lhntva.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lkanbr.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_llns2d.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_llzec3.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lsubum.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lwzthx.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lyzgu3.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lzae2z.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_lzywtf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_m254rf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_m2klan.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_m3c2oj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_m3l6fs.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_m5c6xi.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_m7sqdm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mbfmc4.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mfadfl.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mi54ls.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mll6fo.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mlwm27.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mmgovh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mphtgh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mrbizy.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mru3ev.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mvzwgg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_mxiee2.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_myww54.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_n3cifc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_n3dtgz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_n4gj6t.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_n4tewx.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_nl47lc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_nufysp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_o7mh5o.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_oaaihm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_obzz72.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_oe5ee4.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_of47id.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_of4nbw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_olk76w.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_olw3tj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_onayya.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_opzo24.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_or3pzs.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ork5hb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_orvmfm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_osdvzf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_oxank3.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_p2xkqy.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_p5b3to.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_p7snj6.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_pb7os7.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_pdot6l.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_peeabe.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_pkzsom.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_poicuj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ponsko.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_pquqdo.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ptnx64.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_pydski.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_q2cvbs.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_q2ibpc.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_q4imkx.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_q4q2yp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qbwrql.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qcfvgl.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qe2yqv.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qgowik.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qpph5c.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qqnp2h.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qsv3bx.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_qzwhi6.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_r37ntu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_r4goj2.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_r7yss2.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rcarnw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rchowm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rfuadt.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ridgvo.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rlktsf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rpeiua.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rqhkdi.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rt44aj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rtitj6.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rvhnvp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rwdf67.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_s4apdz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sceraq.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_segm3u.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sewfus.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sfissr.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sihybe.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sjlxxx.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_slsqbu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sncvby.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_snijqp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sppvmf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_srwzhm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_st5lk5.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_sut3w7.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_szn4yf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_szwnvb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_t2ckkh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_tc5bjz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_tevnlg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_tg6ewh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_tll2u3.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_trmgk4.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_trxlme.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_tvlhp3.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_tzl7op.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_tzy66j.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_u7nqae.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ubtjzz.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ucipzb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ucscsg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ugujza.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uhcuvh.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uhqgc3.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uhwxqu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uoecuf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_usfuuy.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_usl52j.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_usz5ut.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_utifxg.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uwmf7x.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uxbjn5.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uxf4m5.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_uywzpa.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_v5z4kv.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vejg7h.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vftr22.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vgw5na.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vhmker.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vizicw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vjxogo.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vmhi4g.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vmjjgq.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vtz4pu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vu5j2r.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_vvzoei.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_w42dre.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_w5ro75.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_wbnhrd.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_wogi6j.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_wozmdw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_wrg6fm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_wyvtce.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_x7beke.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_xaezkf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_xfy7gm.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_xgmem5.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_xh3iko.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_xhfw3j.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_xrj6hp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_y2inml.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ya3yeu.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yaf6wf.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yahecb.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yaunjw.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ygr64v.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yk7y77.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yki2t7.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ynfuvy.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_ysaokq.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yt5vb5.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yuwgqp.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_yzuq4p.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_z4iz37.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_z6nnva.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_zh5q6t.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_zjhiql.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_znslmj.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_zpwads.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_zqzvht.enc + texmf-dist/fonts/map/dvips/libertinus-type1/LibertinusMono.map texmf-dist/fonts/map/dvips/libertinus-type1/libertinus.map texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1.tfm @@ -178811,25 +180399,30 @@ runfiles size=5031 texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-ly1--base.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-ly1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-ot1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-t1--base.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-t1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-ts1--base.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-ts1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Italic-tlf-ly1--base.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Italic-tlf-ly1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Italic-tlf-ot1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Italic-tlf-t1--base.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Italic-tlf-t1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Italic-tlf-ts1--base.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Italic-tlf-ts1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-lgr--base.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-lgr.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ly1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ot1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t1.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t2a.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t2b.tfm + texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t2c.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-lgr.tfm @@ -178932,106 +180525,6 @@ runfiles size=5031 texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t2c.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2a--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2b--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2c--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2a--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2b--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2c--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2a--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2b--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2c--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2a--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2b--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2c--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ts1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ts1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-lgr--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-lgr.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-ly1--base.tfm @@ -179866,81 +181359,44 @@ runfiles size=5031 texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2c.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-lgr--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-lgr.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ly1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ot1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t2c.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-lgr--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-lgr.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ly1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ot1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t2c.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-lgr--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-lgr.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ly1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ly1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ot1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-lgr--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-lgr.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ly1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ot1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t2c.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-lgr--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-lgr.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ly1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ly1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ot1.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t2c.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ts1--base.tfm texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ts1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-lgr--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-lgr.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ly1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ly1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t1--base.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t2a.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t2b.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t2c.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ts1.tfm texmf-dist/fonts/type1/public/libertinus-type1/LibertinusMono-Bold.pfb - texmf-dist/fonts/type1/public/libertinus-type1/LibertinusMono-BoldOblique.pfb - texmf-dist/fonts/type1/public/libertinus-type1/LibertinusMono-Oblique.pfb + texmf-dist/fonts/type1/public/libertinus-type1/LibertinusMono-BoldItalic.pfb + texmf-dist/fonts/type1/public/libertinus-type1/LibertinusMono-Italic.pfb texmf-dist/fonts/type1/public/libertinus-type1/LibertinusMono-Regular.pfb texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSans-Bold.pfb - texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSans-BoldOblique.pfb texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSans-Italic.pfb texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSans-Regular.pfb texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSerif-Bold.pfb @@ -179950,16 +181406,16 @@ runfiles size=5031 texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSerif-Semibold.pfb texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSerif-SemiboldItalic.pfb texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSerifDisplay-Regular.pfb - texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSerifInitials-Regular.pfb texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-t1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1.vf + texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-ly1.vf + texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-t1.vf + texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-BoldItalic-tlf-ts1.vf + texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Italic-tlf-ly1.vf + texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Italic-tlf-t1.vf + texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Italic-tlf-ts1.vf + texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Regular-tlf-lgr.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Regular-tlf-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Regular-tlf-t1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1.vf @@ -179996,39 +181452,6 @@ runfiles size=5031 texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2c.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-t1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2a.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2b.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2c.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2a.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2b.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2c.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2a.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2b.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2c.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ly1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2a.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2b.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2c.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ts1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-lgr.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-lgr.vf @@ -180327,29 +181750,21 @@ runfiles size=5031 texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2b.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-t2c.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-lgr.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-t1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-lf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-lgr.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-t1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-osf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-lgr.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-sup-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-lgr.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-t1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tlf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-lgr.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ly1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-t1.vf texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifDisplay-Regular-tosf-ts1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-lgr.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ly1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-t1.vf - texmf-dist/fonts/vf/public/libertinus-type1/LibertinusSerifInitials-Regular-tlf-ts1.vf + texmf-dist/tex/latex/libertinus-type1/LGRLibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSans-OsF.fd texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSans-Sup.fd @@ -180360,12 +181775,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerif-Sup.fd texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-LF.fd - texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-OsF.fd - texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-Sup.fd - texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TLF.fd - texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/LGRLibertinusSerifInitials-TLF.fd texmf-dist/tex/latex/libertinus-type1/LY1LibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSans-OsF.fd @@ -180382,7 +181791,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-Sup.fd texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TLF.fd texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerifInitials-TLF.fd texmf-dist/tex/latex/libertinus-type1/OT1LibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSans-OsF.fd @@ -180399,7 +181807,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-Sup.fd texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TLF.fd texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerifInitials-TLF.fd texmf-dist/tex/latex/libertinus-type1/T1LibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/T1LibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/T1LibertinusSans-OsF.fd @@ -180416,7 +181823,7 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-Sup.fd texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TLF.fd texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerifInitials-TLF.fd + texmf-dist/tex/latex/libertinus-type1/T2ALibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSans-OsF.fd texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSans-Sup.fd @@ -180427,12 +181834,7 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerif-Sup.fd texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-LF.fd - texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-OsF.fd - texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-Sup.fd - texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-TLF.fd - texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T2ALibertinusSerifInitials-TLF.fd + texmf-dist/tex/latex/libertinus-type1/T2BLibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSans-OsF.fd texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSans-Sup.fd @@ -180443,12 +181845,7 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerif-Sup.fd texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-LF.fd - texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-OsF.fd - texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-Sup.fd - texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-TLF.fd - texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T2BLibertinusSerifInitials-TLF.fd + texmf-dist/tex/latex/libertinus-type1/T2CLibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSans-OsF.fd texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSans-Sup.fd @@ -180459,12 +181856,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerif-Sup.fd texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-LF.fd - texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-OsF.fd - texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-Sup.fd - texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-TLF.fd - texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T2CLibertinusSerifInitials-TLF.fd texmf-dist/tex/latex/libertinus-type1/TS1LibertinusMono-TLF.fd texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSans-LF.fd texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSans-OsF.fd @@ -180478,7 +181869,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-OsF.fd texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-TLF.fd texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerifInitials-TLF.fd texmf-dist/tex/latex/libertinus-type1/libertinus-type1.sty catalogue-also libertinus-fonts libertinus-otf catalogue-ctan /fonts/libertinus-type1 @@ -181694,7 +183084,7 @@ catalogue-topics font font-sans font-proportional font-body font-otf font-type1 name libris category Package -revision 19409 +revision 72484 shortdesc Libris ADF fonts, with LaTeX support longdesc LibrisADF is a sans-serif family designed to mimic Lydian. The longdesc bundle includes: fonts, in Adobe Type 1, TrueType and OpenType @@ -181703,90 +183093,96 @@ longdesc versions of the fonts. The LaTeX macros depend on the longdesc nfssext-cfr bundle. GPL licensing applies the fonts themselves; longdesc the support macros are distributed under LPPL licensing. execute addMap yly.map -docfiles size=138 +docfiles size=396 texmf-dist/doc/fonts/libris/COPYING texmf-dist/doc/fonts/libris/NOTICE.txt - texmf-dist/doc/fonts/libris/README details="Readme" + texmf-dist/doc/fonts/libris/README.md details="Readme" + texmf-dist/doc/fonts/libris/libris-tables.pdf + texmf-dist/doc/fonts/libris/libris-tables.tex + texmf-dist/doc/fonts/libris/librisadf-build.pdf + texmf-dist/doc/fonts/libris/librisadf-example.pdf + texmf-dist/doc/fonts/libris/librisadf-example.tex texmf-dist/doc/fonts/libris/librisadf.pdf details="Details of distribution" - texmf-dist/doc/fonts/libris/librisadf.tex texmf-dist/doc/fonts/libris/manifest.txt -srcfiles size=34 + texmf-dist/doc/fonts/libris/reglyph-yly.tex + texmf-dist/doc/fonts/libris/yly-drv.tex + texmf-dist/doc/fonts/libris/yly-map.tex +srcfiles size=47 texmf-dist/source/fonts/libris/libris-supp.etx - texmf-dist/source/fonts/libris/reglyph-yly.tex + texmf-dist/source/fonts/libris/librisadf-build.dtx + texmf-dist/source/fonts/libris/librisadf.dtx + texmf-dist/source/fonts/libris/librisadf.ins texmf-dist/source/fonts/libris/resetalt.mtx - texmf-dist/source/fonts/libris/t1-cfr.etx texmf-dist/source/fonts/libris/t1-libris.etx texmf-dist/source/fonts/libris/t1-librisswash.etx - texmf-dist/source/fonts/libris/ts1-euro.etx - texmf-dist/source/fonts/libris/yly-drv.tex - texmf-dist/source/fonts/libris/yly-map.tex runfiles size=169 - texmf-dist/fonts/afm/arkandis/libris/ylyb8a.afm - texmf-dist/fonts/afm/arkandis/libris/ylybi8a.afm - texmf-dist/fonts/afm/arkandis/libris/ylyr8a.afm - texmf-dist/fonts/afm/arkandis/libris/ylyri8a.afm + texmf-dist/fonts/afm/public/libris/ylyb8a.afm + texmf-dist/fonts/afm/public/libris/ylybi8a.afm + texmf-dist/fonts/afm/public/libris/ylyr8a.afm + texmf-dist/fonts/afm/public/libris/ylyri8a.afm texmf-dist/fonts/enc/dvips/libris/libris-supp.enc texmf-dist/fonts/enc/dvips/libris/t1-cfr-yly.enc texmf-dist/fonts/enc/dvips/libris/ts1-euro-yly.enc texmf-dist/fonts/map/dvips/libris/yly.map - texmf-dist/fonts/tfm/arkandis/libris/ylyb-t1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyb-ts1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyb8c.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyb8s.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyb8t.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylybi-t1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylybi-ts1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylybi8c.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylybi8s.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylybi8t.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylybiw8t.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylybw8t.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyr-t1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyr-ts1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyr8c.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyr8s.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyr8t.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyri-t1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyri-ts1.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyri8c.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyri8s.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyri8t.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyriw8t.tfm - texmf-dist/fonts/tfm/arkandis/libris/ylyrw8t.tfm - texmf-dist/fonts/type1/arkandis/libris/ylyb8a.pfb - texmf-dist/fonts/type1/arkandis/libris/ylyb8a.pfm - texmf-dist/fonts/type1/arkandis/libris/ylybi8a.pfb - texmf-dist/fonts/type1/arkandis/libris/ylybi8a.pfm - texmf-dist/fonts/type1/arkandis/libris/ylyr8a.pfb - texmf-dist/fonts/type1/arkandis/libris/ylyr8a.pfm - texmf-dist/fonts/type1/arkandis/libris/ylyri8a.pfb - texmf-dist/fonts/type1/arkandis/libris/ylyri8a.pfm - texmf-dist/fonts/vf/arkandis/libris/ylyb8c.vf - texmf-dist/fonts/vf/arkandis/libris/ylyb8t.vf - texmf-dist/fonts/vf/arkandis/libris/ylybi8c.vf - texmf-dist/fonts/vf/arkandis/libris/ylybi8t.vf - texmf-dist/fonts/vf/arkandis/libris/ylybiw8t.vf - texmf-dist/fonts/vf/arkandis/libris/ylybw8t.vf - texmf-dist/fonts/vf/arkandis/libris/ylyr8c.vf - texmf-dist/fonts/vf/arkandis/libris/ylyr8t.vf - texmf-dist/fonts/vf/arkandis/libris/ylyri8c.vf - texmf-dist/fonts/vf/arkandis/libris/ylyri8t.vf - texmf-dist/fonts/vf/arkandis/libris/ylyriw8t.vf - texmf-dist/fonts/vf/arkandis/libris/ylyrw8t.vf + texmf-dist/fonts/tfm/public/libris/ylyb-t1.tfm + texmf-dist/fonts/tfm/public/libris/ylyb-ts1.tfm + texmf-dist/fonts/tfm/public/libris/ylyb8c.tfm + texmf-dist/fonts/tfm/public/libris/ylyb8s.tfm + texmf-dist/fonts/tfm/public/libris/ylyb8t.tfm + texmf-dist/fonts/tfm/public/libris/ylybi-t1.tfm + texmf-dist/fonts/tfm/public/libris/ylybi-ts1.tfm + texmf-dist/fonts/tfm/public/libris/ylybi8c.tfm + texmf-dist/fonts/tfm/public/libris/ylybi8s.tfm + texmf-dist/fonts/tfm/public/libris/ylybi8t.tfm + texmf-dist/fonts/tfm/public/libris/ylybiw8t.tfm + texmf-dist/fonts/tfm/public/libris/ylybw8t.tfm + texmf-dist/fonts/tfm/public/libris/ylyr-t1.tfm + texmf-dist/fonts/tfm/public/libris/ylyr-ts1.tfm + texmf-dist/fonts/tfm/public/libris/ylyr8c.tfm + texmf-dist/fonts/tfm/public/libris/ylyr8s.tfm + texmf-dist/fonts/tfm/public/libris/ylyr8t.tfm + texmf-dist/fonts/tfm/public/libris/ylyri-t1.tfm + texmf-dist/fonts/tfm/public/libris/ylyri-ts1.tfm + texmf-dist/fonts/tfm/public/libris/ylyri8c.tfm + texmf-dist/fonts/tfm/public/libris/ylyri8s.tfm + texmf-dist/fonts/tfm/public/libris/ylyri8t.tfm + texmf-dist/fonts/tfm/public/libris/ylyriw8t.tfm + texmf-dist/fonts/tfm/public/libris/ylyrw8t.tfm + texmf-dist/fonts/type1/public/libris/ylyb8a.pfb + texmf-dist/fonts/type1/public/libris/ylyb8a.pfm + texmf-dist/fonts/type1/public/libris/ylybi8a.pfb + texmf-dist/fonts/type1/public/libris/ylybi8a.pfm + texmf-dist/fonts/type1/public/libris/ylyr8a.pfb + texmf-dist/fonts/type1/public/libris/ylyr8a.pfm + texmf-dist/fonts/type1/public/libris/ylyri8a.pfb + texmf-dist/fonts/type1/public/libris/ylyri8a.pfm + texmf-dist/fonts/vf/public/libris/ylyb8c.vf + texmf-dist/fonts/vf/public/libris/ylyb8t.vf + texmf-dist/fonts/vf/public/libris/ylybi8c.vf + texmf-dist/fonts/vf/public/libris/ylybi8t.vf + texmf-dist/fonts/vf/public/libris/ylybiw8t.vf + texmf-dist/fonts/vf/public/libris/ylybw8t.vf + texmf-dist/fonts/vf/public/libris/ylyr8c.vf + texmf-dist/fonts/vf/public/libris/ylyr8t.vf + texmf-dist/fonts/vf/public/libris/ylyri8c.vf + texmf-dist/fonts/vf/public/libris/ylyri8t.vf + texmf-dist/fonts/vf/public/libris/ylyriw8t.vf + texmf-dist/fonts/vf/public/libris/ylyrw8t.vf texmf-dist/tex/latex/libris/libris.sty texmf-dist/tex/latex/libris/t1yly.fd texmf-dist/tex/latex/libris/t1ylyw.fd texmf-dist/tex/latex/libris/ts1yly.fd texmf-dist/tex/latex/libris/ts1ylyw.fd catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/libris -catalogue-license gpl +catalogue-license lppl1.3c gpl2 catalogue-topics font font-type1 font-supp -catalogue-version 1.007 +catalogue-version 1.1 name lie-hasse category Package -revision 71751 +revision 73069 shortdesc Draw Hasse diagrams longdesc This package draws Hasse diagrams of the partially ordered sets longdesc of the simple roots of any complex simple Lie algebra. It uses @@ -181801,7 +183197,50 @@ runfiles size=15 catalogue-ctan /graphics/pgf/contrib/lie-hasse catalogue-license lppl1.3c catalogue-topics diagram pgf-tikz -catalogue-version 1.0 +catalogue-version 1.02 + +name liederbuch +category Package +revision 73548 +shortdesc A LaTeX package for storing songs or other content, and repeated reuse in documents +longdesc This package is meant for content which you reuse regularly, +longdesc like songs in small booklets. For example the booklets used at +longdesc church, weddings or similar events. It has two major parts: You +longdesc typeset your content once (most likely a song), garnish it with +longdesc some meta data and put it into a sty-file. From there you can +longdesc insert this content into your document with one single line. +longdesc The inserted content can have header and footer that use the +longdesc meta data (i.e. title, composer, lyricist). Inside these +longdesc content fragments, you can use the \notenzeile (stave line) +longdesc command to combine an image of a stave line with song lyrics. +longdesc If correctly used, the lyrics are placed correctly below the +longdesc notes and need most often no or only minor adjustments. With +longdesc that you can combine any stave image with LaTeX fonts. You can +longdesc find resources and inspiration in a demo project. +docfiles size=148 + texmf-dist/doc/latex/liederbuch/README.md details="Readme" + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/README_demo-project.txt + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuch.sty + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/CVLB80-OhAlteBurschenherrlichkeit.ly + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/CVLB80-OhAlteBurschenherrlichkeit.pdf + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/haenschenKlein.ly + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/TestLiederbuchSnippets/haenschenKlein.pdf + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/liederbuch-demo-projekt.pdf + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/liederbuch-demo-projekt.tex + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/printTestLiederbuch.pdf + texmf-dist/doc/latex/liederbuch/liederbuch-demo-project/printTestLiederbuch.tex + texmf-dist/doc/latex/liederbuch/liederbuch-documentation.pdf details="Package documentation" + texmf-dist/doc/latex/liederbuch/liederbuch-documentation.tex +runfiles size=18 + texmf-dist/tex/latex/liederbuch/liederbuch-babel.sty + texmf-dist/tex/latex/liederbuch/liederbuch-listofsongs.sty + texmf-dist/tex/latex/liederbuch/liederbuch.sty + texmf-dist/tex/latex/liederbuch/printliederbuch.sty +catalogue-contact-repository https://bitbucket.org/maestro-glanz/liederbuch-package/src/master +catalogue-ctan /macros/latex/contrib/liederbuch +catalogue-license lppl1.3 +catalogue-topics music expl3 +catalogue-version 1.1.0 name liftarm category Package @@ -182430,15 +183869,16 @@ catalogue-topics font font-type1 font-archaic name linearregression category Package -revision 71466 +revision 73123 shortdesc Calculate and display linear regressions -longdesc This package provides commands for computation of linear -longdesc regression, printing of results in tabular form and graphical -longdesc output. -docfiles size=97 +longdesc This package provides the definition of some document-level +longdesc commands (and some auxiliary functions) that perform the linear +longdesc regression on a set of data and present the data and the +longdesc results in tabular and in graphic form. +docfiles size=99 texmf-dist/doc/latex/linearregression/README.txt details="Readme" texmf-dist/doc/latex/linearregression/linearregression.pdf details="Package documentation" -srcfiles size=15 +srcfiles size=16 texmf-dist/source/latex/linearregression/linearregression.dtx texmf-dist/source/latex/linearregression/linearregressionpkg.ins runfiles size=4 @@ -182446,7 +183886,7 @@ runfiles size=4 catalogue-also xint-regression catalogue-ctan /macros/latex/contrib/linearregression catalogue-license lppl -catalogue-topics maths calculation +catalogue-topics maths calculation expl3 name linebreaker category Package @@ -182499,13 +183939,13 @@ catalogue-version 2.9 name lineno category Package -revision 67171 +revision 73638 shortdesc Line numbers on paragraphs 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. -docfiles size=289 +docfiles size=296 texmf-dist/doc/latex/lineno/CHANGEs.txt texmf-dist/doc/latex/lineno/COPYING.txt texmf-dist/doc/latex/lineno/README.md details="Readme" @@ -182530,9 +183970,9 @@ catalogue-also numline edmac ledmac ednotes manyfoot poemscol 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 lppl1.3a +catalogue-license lppl catalogue-topics typesetting line-nos -catalogue-version 5.3 +catalogue-version 5.4 name ling-macros category Package @@ -182936,12 +184376,12 @@ catalogue-version 2.7 name lisp-on-tex category Package -revision 38722 +revision 73165 shortdesc Execute LISP code in a LaTeX document longdesc The package provides a LISP interpreter written using TeX longdesc macros; it is provided as a LaTeX package. The interpreter longdesc static scoping, dynamic typing, and eager evaluation. -docfiles size=47 +docfiles size=111 texmf-dist/doc/latex/lisp-on-tex/LICENSE texmf-dist/doc/latex/lisp-on-tex/README.md details="Readme" texmf-dist/doc/latex/lisp-on-tex/examples/div2.pdf @@ -182957,6 +184397,7 @@ docfiles size=47 texmf-dist/doc/latex/lisp-on-tex/examples/rocket.tex texmf-dist/doc/latex/lisp-on-tex/examples/showfont.pdf texmf-dist/doc/latex/lisp-on-tex/examples/showfont.tex + texmf-dist/doc/latex/lisp-on-tex/tug2013/slide.pdf details="Slides from TUG 2013 presentation" runfiles size=22 texmf-dist/tex/latex/lisp-on-tex/lisp-arith.sty texmf-dist/tex/latex/lisp-on-tex/lisp-gc.sty @@ -182972,7 +184413,7 @@ runfiles size=22 catalogue-ctan /macros/latex/contrib/lisp-on-tex catalogue-license bsd catalogue-topics exec-foreign -catalogue-version 2.0 +catalogue-version 2.1 name listbib category Package @@ -183131,7 +184572,7 @@ catalogue-version 1.2 name listings category Package -revision 71355 +revision 72368 shortdesc Typeset source code listings using LaTeX longdesc The package enables the user to typeset programs (programming longdesc code) within LaTeX; the source code is read directly by TeX--no @@ -183179,7 +184620,7 @@ catalogue-also listing catalogue-ctan /macros/latex/contrib/listings catalogue-license lppl1.3c catalogue-topics listing verbatim synt-hlt macro-demo -catalogue-version 1.10b +catalogue-version 1.10c name listings-ext category Package @@ -183450,95 +184891,60 @@ catalogue-license lppl catalogue-topics toc-etc catalogue-version 0.2 -name litebook -category Package -revision 70777 -shortdesc A fresh cover and chapter design for books -longdesc This template provides a fresh cover and chapter design for -longdesc books. It was originally used for the reformatting of the -longdesc textbook General Relativity by R. Wald which you can download -longdesc from -longdesc https://github.com/xiamyphys/LaTeX-General-Relativity-R.Wald -longdesc Welcome to feedback bugs or ideas via email -longdesc xiamyphys@gmail.com. -docfiles size=201 - texmf-dist/doc/latex/litebook/License - texmf-dist/doc/latex/litebook/README.md details="Readme" - texmf-dist/doc/latex/litebook/cha/cha1.tex - texmf-dist/doc/latex/litebook/cha/cha2.tex - texmf-dist/doc/latex/litebook/figures/cover.jpeg - texmf-dist/doc/latex/litebook/litebook.pdf details="Package documentation" - texmf-dist/doc/latex/litebook/litebook.tex -runfiles size=2 - texmf-dist/tex/latex/litebook/litebook.cls -catalogue-contact-announce https://t.me/hsiastexcafe -catalogue-contact-bugs https://github.com/xiamyphys/LiteBook/issues -catalogue-contact-development https://github.com/xiamyphys -catalogue-contact-repository https://github.com/xiamyphys/LiteBook -catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC -catalogue-ctan /macros/latex/contrib/litebook -catalogue-license lppl1.3c -catalogue-topics book-pub class doc-templ -catalogue-version 0.2b - -name litesolution +name listparskip category Package -revision 71205 -shortdesc A LaTeX class for typesetting solutions of problems in exams, textbooks, etc. -longdesc This LaTeX class has been designed for typesetting solutions of -longdesc problems in exams, textbooks etc. Welcome to feedback bugs or -longdesc ideas via email xiamyphys@gmail.com. -docfiles size=125 - texmf-dist/doc/latex/litesolution/License - texmf-dist/doc/latex/litesolution/README.md details="Readme" - texmf-dist/doc/latex/litesolution/figure/Beautiful-realities.jpeg - texmf-dist/doc/latex/litesolution/figure/schrodinger.pdf - texmf-dist/doc/latex/litesolution/figure/universe.pdf - texmf-dist/doc/latex/litesolution/figure/universe.tex - texmf-dist/doc/latex/litesolution/litesolution.pdf details="Package documentation" - texmf-dist/doc/latex/litesolution/litesolution.tex -runfiles size=3 - texmf-dist/tex/latex/litesolution/litesolution.cls -catalogue-contact-announce https://t.me/hsiastexcafe -catalogue-contact-bugs https://github.com/xiamyphys/litesolution/issues -catalogue-contact-development https://github.com/xiamyphys -catalogue-contact-repository https://github.com/xiamyphys/litesolution -catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC -catalogue-ctan /macros/latex/contrib/litesolution +revision 73155 +shortdesc Adjust vertical space around lists +longdesc This package modifies list environments such that they add +longdesc \parskip and \partopsep before or after a list if and only if +longdesc the environment follows or precedes, respectively, a blank line +longdesc (i.e. a \par). +docfiles size=45 + texmf-dist/doc/latex/listparskip/README.txt details="Readme" + texmf-dist/doc/latex/listparskip/listparskip_code.pdf details="Code implementation" + texmf-dist/doc/latex/listparskip/listparskip_example.pdf details="Example of use" + texmf-dist/doc/latex/listparskip/listparskip_example.tex + texmf-dist/doc/latex/listparskip/listparskip_heading.tex + texmf-dist/doc/latex/listparskip/listparskip_user_guide.pdf details="User guide" + texmf-dist/doc/latex/listparskip/listparskip_user_guide.tex +srcfiles size=7 + texmf-dist/source/latex/listparskip/listparskip_code.dtx +runfiles size=1 + texmf-dist/tex/latex/listparskip/listparskip.sty +catalogue-ctan /macros/latex/contrib/listparskip catalogue-license lppl1.3c -catalogue-topics class doc-templ -catalogue-version 2.2b +catalogue-topics list-supp +catalogue-version 1.0 name litetable category Package -revision 70352 +revision 73811 shortdesc Class schedules with colorful course blocks -longdesc This template provides a beautiful design of class schedule -longdesc with colorful course blocks. If you find bugs when using this -longdesc template, or if you have better suggestions or ideas, or want -longdesc to participate in the development of the template or other -longdesc templates by me, welcome to contact me via email -longdesc xiamyphys@gmail.com. -docfiles size=167 +longdesc The litetable class provides a colorful timetable design, +longdesc developed by expl3 based on article and TikZ. +docfiles size=431 texmf-dist/doc/latex/litetable/License texmf-dist/doc/latex/litetable/README.md details="Readme" - texmf-dist/doc/latex/litetable/favicon.png - texmf-dist/doc/latex/litetable/litetable-cn.pdf details="Package documentation (Chinese)" language="zh" - texmf-dist/doc/latex/litetable/litetable-cn.tex texmf-dist/doc/latex/litetable/litetable-demo.pdf details="Example of use" texmf-dist/doc/latex/litetable/litetable-demo.tex - texmf-dist/doc/latex/litetable/litetable-en.pdf details="Package documentation (English)" - texmf-dist/doc/latex/litetable/litetable-en.tex -runfiles size=3 + texmf-dist/doc/latex/litetable/litetable-en-us.pdf details="Package documentation (English)" + texmf-dist/doc/latex/litetable/litetable-en-us.tex + texmf-dist/doc/latex/litetable/litetable-zh-cn.pdf details="Package documentation (Chinese)" language="zh" + texmf-dist/doc/latex/litetable/litetable-zh-cn.tex + texmf-dist/doc/latex/litetable/litetable-zh-hk.pdf details="Package documentation (Cantonese)" language="yue" + texmf-dist/doc/latex/litetable/litetable-zh-hk.tex +runfiles size=4 texmf-dist/tex/latex/litetable/litetable.cls -catalogue-contact-bugs https://github.com/xiamyphys/LiteTable/issues -catalogue-contact-development https://github.com/xiamyphys -catalogue-contact-repository https://github.com/xiamyphys/LiteTable +catalogue-contact-announce https://qm.qq.com/q/RGFmHwBecC +catalogue-contact-bugs https://github.com/myhsia/litetable/issues +catalogue-contact-development https://github.com/myhsia/ +catalogue-contact-home https://github.com/myhsia/litetable +catalogue-contact-repository https://github.com/myhsia/litetable catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC catalogue-ctan /macros/latex/contrib/litetable catalogue-license lppl1.3c -catalogue-topics table class doc-templ -catalogue-version 2.4c +catalogue-topics table class doc-templ expl3 +catalogue-version 3.2A name lithuanian category Package @@ -183652,13 +185058,13 @@ catalogue-version 3.1 name llncs category Package -revision 69629 +revision 72613 shortdesc Document class and bibliography style for Lecture Notes in Computer Science (LNCS) 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. -docfiles size=66 +docfiles size=67 texmf-dist/doc/latex/llncs/README.md details="Readme" texmf-dist/doc/latex/llncs/history.txt texmf-dist/doc/latex/llncs/llncsdoc.pdf details="Package documentation" @@ -183670,7 +185076,7 @@ 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.24 +catalogue-version 2.25 name llncsconf category Package @@ -184877,14 +186283,14 @@ catalogue-version 1.0 name lni category Package -revision 71687 +revision 73766 shortdesc Official class for the "Lecture Notes in Informatics" longdesc This is the official version of the class "lni" for submissions longdesc to the Lecture Notes in Informatics published by the longdesc Gesellschaft fur Informatik. To use it, download the file longdesc lni-author-template.tex and edit it in your favorite LaTeX longdesc editor. -docfiles size=101 +docfiles size=100 texmf-dist/doc/latex/lni/CHANGELOG.md texmf-dist/doc/latex/lni/CONTRIBUTING.md texmf-dist/doc/latex/lni/README.md details="Readme" @@ -184892,12 +186298,10 @@ docfiles size=101 texmf-dist/doc/latex/lni/lni-paper-example-de.bib texmf-dist/doc/latex/lni/lni-paper-example-de.tex texmf-dist/doc/latex/lni/lni.pdf details="Package documentation" -srcfiles size=26 +srcfiles size=18 texmf-dist/source/latex/lni/lni.dtx texmf-dist/source/latex/lni/lni.ins -runfiles size=19 - texmf-dist/bibtex/bst/lni/lni.bst - texmf-dist/bibtex/bst/lni/lnig.bst +runfiles size=7 texmf-dist/tex/latex/lni/lni.cls catalogue-also biblatex-lni catalogue-contact-bugs https://github.com/gi-ev/LNI/issues @@ -184905,7 +186309,7 @@ catalogue-contact-repository https://github.com/gi-ev/LNI catalogue-ctan /macros/latex/contrib/lni catalogue-license lppl1.3c catalogue-topics journalpub class doc-templ -catalogue-version 1.9 +catalogue-version 2.0 name lobster2 category Package @@ -185200,7 +186604,7 @@ catalogue-version 1.13 name logoetalab category Package -revision 68916 +revision 73069 shortdesc Insert Licence Etalab 2.0 logo longdesc This package provides commands to display the "Licence Ouverte longdesc Etalab 2.0" vector logo: vertical or horizontal version; some @@ -185225,8 +186629,6 @@ runfiles size=16 texmf-dist/tex/latex/logoetalab/LogoLicenceOuverte-Violet-H.pdf texmf-dist/tex/latex/logoetalab/LogoLicenceOuverte-Violet-V.pdf texmf-dist/tex/latex/logoetalab/logoetalab.sty -catalogue-contact-bugs https://github.com/cpierquet/logoetalab/issues -catalogue-contact-repository https://github.com/cpierquet/logoetalab catalogue-ctan /macros/latex/contrib/logoetalab catalogue-license lppl1.3c cc-by-2 catalogue-topics logo french graphics-use pgf-tikz @@ -185814,7 +187216,7 @@ catalogue-topics tut-latex bulgarian name lshort-chinese category Package -revision 67025 +revision 73160 catalogue lshort-zh-cn shortdesc Introduction to LaTeX, in Chinese longdesc A Chinese edition of the not so short introduction to LaTeX2e, @@ -185852,7 +187254,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.04 +catalogue-version 6.05 name lshort-czech category Package @@ -186077,13 +187479,13 @@ catalogue-topics tut-latex japanese-doc name lshort-korean category Package -revision 58468 +revision 73814 shortdesc Korean introduction to LaTeX longdesc A translation of Oetiker's original (not so) short longdesc introduction. -docfiles size=317 +docfiles size=321 texmf-dist/doc/latex/lshort-korean/README.md details="Readme" - texmf-dist/doc/latex/lshort-korean/lshort-ko-src-20210316.tar.gz + texmf-dist/doc/latex/lshort-korean/lshort-ko-src-20250208.tar.gz texmf-dist/doc/latex/lshort-korean/lshort-ko.pdf details="The document itself" language="ko" catalogue-ctan /info/lshort/korean catalogue-license fdl @@ -186363,15 +187765,15 @@ catalogue-version 4.00 name lstaddons category Package -revision 64967 +revision 72068 shortdesc Add-on packages for listings: autogobble and line background longdesc The bundle contains a small collection of add-on packages for longdesc the listings package. Current packages are: lstlinebgrd: colour longdesc the background of some or all lines of a listing; and longdesc lstautogobble: set the standard "gobble" option to the indent longdesc of the first line of the code. -docfiles size=99 - texmf-dist/doc/latex/lstaddons/README details="Readme" +docfiles size=104 + texmf-dist/doc/latex/lstaddons/README.txt details="Readme" texmf-dist/doc/latex/lstaddons/lstautogobble.pdf details="lstautogobble package documentation" texmf-dist/doc/latex/lstaddons/lstlinebgrd.pdf details="lstlinebgrd package documentation" srcfiles size=7 @@ -186387,7 +187789,7 @@ catalogue-contact-repository https://github.com/MartinScharrer/lstaddons.git catalogue-ctan /macros/latex/contrib/lstaddons catalogue-license lppl1.3 catalogue-topics listing -catalogue-version 0.1 +catalogue-version 0.2 name lstbayes category Package @@ -186455,7 +187857,7 @@ catalogue-version 0.1.9 name lt3luabridge category Package -revision 71704 +revision 73139 shortdesc Execute Lua code in any TeX engine that exposes the shell 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 @@ -186483,7 +187885,7 @@ 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.2.0 +catalogue-version 2.2.1 name lt3rawobjects category Package @@ -187122,21 +188524,23 @@ catalogue-version 1.0.3 name lua-tinyyaml category Package -revision 66776 -shortdesc A tiny YAML (subset) parser for pure Lua -longdesc The lua-tinyyaml package is a YAML (subset) parser written in -longdesc pure Lua. It is required by several other LuaTeX packages like -longdesc markdown and citeproc-lua. -docfiles size=1 +revision 73671 +shortdesc A tiny YAML (subset) parser in pure Lua +longdesc This package provides a YAML (subset) parser written in pure +longdesc Lua. It supports a subset of the YAML 1.2 specifications. It is +longdesc required by several other LuaTeX packages including markdown +longdesc and citeproc-lua. +docfiles size=51 texmf-dist/doc/luatex/lua-tinyyaml/README.md details="Readme" + texmf-dist/doc/luatex/lua-tinyyaml/lua-tinyyaml.pdf details="Package documentation" + texmf-dist/doc/luatex/lua-tinyyaml/lua-tinyyaml.tex runfiles size=6 texmf-dist/scripts/lua-tinyyaml/tinyyaml.lua -catalogue-contact-bugs https://github.com/api7/lua-tinyyaml/issues -catalogue-contact-repository https://github.com/api7/lua-tinyyaml +catalogue-contact-repository https://github.com/zepinglee/lua-tinyyaml catalogue-ctan /macros/luatex/generic/lua-tinyyaml catalogue-license mit catalogue-topics luatex parser -catalogue-version 0.4.3 +catalogue-version 0.4.4 name lua-typo category Package @@ -187349,7 +188753,7 @@ catalogue-version 3.0.1 name luaaddplot category Package -revision 62842 +revision 72350 shortdesc An extension to pgfplots' \addplot macro longdesc This package is an extension to pgfplots. It extends the longdesc \addplot macro by a facility which allows modification of data @@ -187370,7 +188774,7 @@ runfiles size=3 catalogue-ctan /macros/luatex/generic/luaaddplot catalogue-license lppl1.3 catalogue-topics graphics graphics-plot luatex -catalogue-version 1.0 +catalogue-version 1.0a name luabibentry category Package @@ -187526,7 +188930,7 @@ catalogue-version 1.0.2 name luacensor category Package -revision 71053 +revision 71922 shortdesc Securely redact sensitive information using Lua longdesc This package provides simple tools for creating redacted Its longdesc tools are useful for lawyers, workers in sensitive industries, @@ -187537,11 +188941,13 @@ 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. -docfiles size=47 - texmf-dist/doc/lualatex/luacensor/README - texmf-dist/doc/lualatex/luacensor/luacensor.pdf - texmf-dist/doc/lualatex/luacensor/luacensor.tex -runfiles size=4 +docfiles size=49 + texmf-dist/doc/lualatex/luacensor/OFL.txt + texmf-dist/doc/lualatex/luacensor/README.txt details="Readme" + texmf-dist/doc/lualatex/luacensor/luacensor-documentation.pdf details="Package documentation" + texmf-dist/doc/lualatex/luacensor/luacensor-documentation.tex +runfiles size=8 + texmf-dist/fonts/truetype/public/luacensor/Redacted-Regular.ttf texmf-dist/tex/lualatex/luacensor/luacensor.sty catalogue-contact-bugs https://github.com/ezgranet/luacensor/issues catalogue-contact-repository https://github.com/ezgranet/luacensor @@ -187620,24 +189026,24 @@ catalogue-version 1.4 name luafindfont category Package -revision 67468 +revision 73986 shortdesc Search fonts in the LuaTeX font database longdesc This Lua script searches for fonts in the font database. depend luafindfont.ARCH -docfiles size=38 +docfiles size=39 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/luafindfont-doc.pdf details="Package documentation" texmf-dist/doc/support/luafindfont/luafindfont-doc.tex -runfiles size=5 +runfiles size=6 texmf-dist/scripts/luafindfont/luafindfont.lua catalogue-alias findfont catalogue-ctan /support/luafindfont catalogue-license lppl1.3c catalogue-topics font-sel -catalogue-version 0.13 +catalogue-version 0.15 name luafindfont.aarch64-linux category Package @@ -187771,7 +189177,7 @@ catalogue-version 1.1 name luahbtex category TLCore -revision 71409 +revision 73848 shortdesc LuaTeX with HarfBuzz library for glyph shaping depend cm depend etex @@ -187790,108 +189196,108 @@ docfiles size=10 name luahbtex.aarch64-linux category TLCore -revision 70276 +revision 74078 shortdesc aarch64-linux files of luahbtex -binfiles arch=aarch64-linux size=2098 +binfiles arch=aarch64-linux size=2567 bin/aarch64-linux/luahbtex name luahbtex.amd64-freebsd category TLCore -revision 70276 +revision 74051 shortdesc amd64-freebsd files of luahbtex -binfiles arch=amd64-freebsd size=2822 +binfiles arch=amd64-freebsd size=2758 bin/amd64-freebsd/luahbtex name luahbtex.amd64-netbsd category TLCore -revision 71441 +revision 74058 shortdesc amd64-netbsd files of luahbtex -binfiles arch=amd64-netbsd size=2907 +binfiles arch=amd64-netbsd size=2768 bin/amd64-netbsd/luahbtex name luahbtex.armhf-linux category TLCore -revision 70489 +revision 74078 shortdesc armhf-linux files of luahbtex -binfiles arch=armhf-linux size=1731 +binfiles arch=armhf-linux size=1773 bin/armhf-linux/luahbtex name luahbtex.i386-freebsd category TLCore -revision 70276 +revision 74051 shortdesc i386-freebsd files of luahbtex -binfiles arch=i386-freebsd size=2822 +binfiles arch=i386-freebsd size=2758 bin/i386-freebsd/luahbtex name luahbtex.i386-linux category TLCore -revision 70276 +revision 74051 shortdesc i386-linux files of luahbtex -binfiles arch=i386-linux size=2120 +binfiles arch=i386-linux size=2586 bin/i386-linux/luahbtex name luahbtex.i386-netbsd category TLCore -revision 71441 +revision 74058 shortdesc i386-netbsd files of luahbtex -binfiles arch=i386-netbsd size=2685 +binfiles arch=i386-netbsd size=2558 bin/i386-netbsd/luahbtex name luahbtex.i386-solaris category TLCore -revision 70276 +revision 74051 shortdesc i386-solaris files of luahbtex -binfiles arch=i386-solaris size=1845 +binfiles arch=i386-solaris size=1826 bin/i386-solaris/luahbtex name luahbtex.universal-darwin category TLCore -revision 70274 +revision 74077 shortdesc universal-darwin files of luahbtex -binfiles arch=universal-darwin size=3673 +binfiles arch=universal-darwin size=4465 bin/universal-darwin/luahbtex name luahbtex.windows category TLCore -revision 71006 +revision 73947 shortdesc windows files of luahbtex -binfiles arch=windows size=1736 +binfiles arch=windows size=1744 bin/windows/luahbtex.dll bin/windows/luahbtex.exe name luahbtex.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of luahbtex -binfiles arch=x86_64-cygwin size=1893 +binfiles arch=x86_64-cygwin size=1884 bin/x86_64-cygwin/luahbtex.exe name luahbtex.x86_64-darwinlegacy category TLCore -revision 70380 +revision 74077 shortdesc x86_64-darwinlegacy files of luahbtex -binfiles arch=x86_64-darwinlegacy size=1711 +binfiles arch=x86_64-darwinlegacy size=1726 bin/x86_64-darwinlegacy/luahbtex name luahbtex.x86_64-linux category TLCore -revision 70276 +revision 74051 shortdesc x86_64-linux files of luahbtex -binfiles arch=x86_64-linux size=1989 +binfiles arch=x86_64-linux size=2432 bin/x86_64-linux/luahbtex name luahbtex.x86_64-linuxmusl category TLCore -revision 70276 +revision 74051 shortdesc x86_64-linuxmusl files of luahbtex -binfiles arch=x86_64-linuxmusl size=2148 +binfiles arch=x86_64-linuxmusl size=2573 bin/x86_64-linuxmusl/luahbtex name luahbtex.x86_64-solaris category TLCore -revision 70276 +revision 74051 shortdesc x86_64-solaris files of luahbtex -binfiles arch=x86_64-solaris size=2072 +binfiles arch=x86_64-solaris size=2041 bin/x86_64-solaris/luahbtex name luahttp @@ -188014,7 +189420,7 @@ catalogue-version 0.973 name luajittex category TLCore -revision 71409 +revision 73848 shortdesc LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz depend cm depend etex @@ -188036,9 +189442,9 @@ docfiles size=20 name luajittex.aarch64-linux category TLCore -revision 70276 +revision 74078 shortdesc aarch64-linux files of luajittex -binfiles arch=aarch64-linux size=3934 +binfiles arch=aarch64-linux size=4407 bin/aarch64-linux/luajithbtex bin/aarch64-linux/luajittex bin/aarch64-linux/texluajit @@ -188046,9 +189452,9 @@ binfiles arch=aarch64-linux size=3934 name luajittex.amd64-freebsd category TLCore -revision 71441 +revision 74051 shortdesc amd64-freebsd files of luajittex -binfiles arch=amd64-freebsd size=5002 +binfiles arch=amd64-freebsd size=4991 bin/amd64-freebsd/luajithbtex bin/amd64-freebsd/luajittex bin/amd64-freebsd/texluajit @@ -188056,9 +189462,9 @@ binfiles arch=amd64-freebsd size=5002 name luajittex.amd64-netbsd category TLCore -revision 71441 +revision 74058 shortdesc amd64-netbsd files of luajittex -binfiles arch=amd64-netbsd size=5087 +binfiles arch=amd64-netbsd size=5003 bin/amd64-netbsd/luajithbtex bin/amd64-netbsd/luajittex bin/amd64-netbsd/texluajit @@ -188066,9 +189472,9 @@ binfiles arch=amd64-netbsd size=5087 name luajittex.armhf-linux category TLCore -revision 70489 +revision 74078 shortdesc armhf-linux files of luajittex -binfiles arch=armhf-linux size=3215 +binfiles arch=armhf-linux size=3118 bin/armhf-linux/luajithbtex bin/armhf-linux/luajittex bin/armhf-linux/texluajit @@ -188076,9 +189482,9 @@ binfiles arch=armhf-linux size=3215 name luajittex.i386-freebsd category TLCore -revision 71441 +revision 74051 shortdesc i386-freebsd files of luajittex -binfiles arch=i386-freebsd size=5002 +binfiles arch=i386-freebsd size=4991 bin/i386-freebsd/luajithbtex bin/i386-freebsd/luajittex bin/i386-freebsd/texluajit @@ -188086,9 +189492,9 @@ binfiles arch=i386-freebsd size=5002 name luajittex.i386-linux category TLCore -revision 70276 +revision 74051 shortdesc i386-linux files of luajittex -binfiles arch=i386-linux size=3891 +binfiles arch=i386-linux size=4476 bin/i386-linux/luajithbtex bin/i386-linux/luajittex bin/i386-linux/texluajit @@ -188096,9 +189502,9 @@ binfiles arch=i386-linux size=3891 name luajittex.i386-netbsd category TLCore -revision 71441 +revision 74058 shortdesc i386-netbsd files of luajittex -binfiles arch=i386-netbsd size=4660 +binfiles arch=i386-netbsd size=4580 bin/i386-netbsd/luajithbtex bin/i386-netbsd/luajittex bin/i386-netbsd/texluajit @@ -188106,9 +189512,9 @@ binfiles arch=i386-netbsd size=4660 name luajittex.universal-darwin category TLCore -revision 70274 +revision 74077 shortdesc universal-darwin files of luajittex -binfiles arch=universal-darwin size=6973 +binfiles arch=universal-darwin size=7923 bin/universal-darwin/luajithbtex bin/universal-darwin/luajittex bin/universal-darwin/texluajit @@ -188116,9 +189522,9 @@ binfiles arch=universal-darwin size=6973 name luajittex.windows category TLCore -revision 71006 +revision 73947 shortdesc windows files of luajittex -binfiles arch=windows size=3947 +binfiles arch=windows size=4008 bin/windows/luajit51w64.dll bin/windows/luajithbtex.dll bin/windows/luajithbtex.exe @@ -188129,9 +189535,9 @@ binfiles arch=windows size=3947 name luajittex.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of luajittex -binfiles arch=x86_64-cygwin size=3531 +binfiles arch=x86_64-cygwin size=3529 bin/x86_64-cygwin/cygtexluajit-2.dll bin/x86_64-cygwin/luajithbtex.exe bin/x86_64-cygwin/luajittex.exe @@ -188140,9 +189546,9 @@ binfiles arch=x86_64-cygwin size=3531 name luajittex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 74077 shortdesc x86_64-darwinlegacy files of luajittex -binfiles arch=x86_64-darwinlegacy size=3260 +binfiles arch=x86_64-darwinlegacy size=3300 bin/x86_64-darwinlegacy/luajithbtex bin/x86_64-darwinlegacy/luajittex bin/x86_64-darwinlegacy/texluajit @@ -188150,9 +189556,9 @@ binfiles arch=x86_64-darwinlegacy size=3260 name luajittex.x86_64-linux category TLCore -revision 70276 +revision 74051 shortdesc x86_64-linux files of luajittex -binfiles arch=x86_64-linux size=3690 +binfiles arch=x86_64-linux size=4192 bin/x86_64-linux/luajithbtex bin/x86_64-linux/luajittex bin/x86_64-linux/texluajit @@ -188160,9 +189566,9 @@ binfiles arch=x86_64-linux size=3690 name luajittex.x86_64-linuxmusl category TLCore -revision 71441 +revision 74051 shortdesc x86_64-linuxmusl files of luajittex -binfiles arch=x86_64-linuxmusl size=3994 +binfiles arch=x86_64-linuxmusl size=4445 bin/x86_64-linuxmusl/luajithbtex bin/x86_64-linuxmusl/luajittex bin/x86_64-linuxmusl/texluajit @@ -188170,7 +189576,7 @@ binfiles arch=x86_64-linuxmusl size=3994 name luakeys category Package -revision 70908 +revision 72484 shortdesc A Lua module for parsing key-value options longdesc This package provides a Lua module that can parse key-value longdesc options like the TeX packages keyval, kvsetkeys, kvoptions, @@ -188194,7 +189600,7 @@ 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.14.0 +catalogue-version 0.15.0 name lualatex-doc-de category Package @@ -188446,6 +189852,51 @@ catalogue-license lppl1.3 catalogue-topics graphics maths pgf-tikz graphics-mpost luatex catalogue-version 0.7 +name luamml +category Package +revision 74063 +shortdesc Automatically generate MathML from LuaLaTeX math mode material +longdesc LuaMML is an experimental package to automatically generate a +longdesc MathML representation of mathematical expessions written in +longdesc LuaLaTeX documents. These MathML representations can be used +longdesc for improving accessibility or to ease conversion into new +longdesc output formats like HTML. +docfiles size=53 + texmf-dist/doc/lualatex/luamml/CHANGELOG.md + texmf-dist/doc/lualatex/luamml/README.md details="Readme" + texmf-dist/doc/lualatex/luamml/luamml.pdf details="Package documentation" +srcfiles size=8 + texmf-dist/source/lualatex/luamml/luamml.dtx +runfiles size=39 + texmf-dist/tex/lualatex/luamml/luamml-amsmath.lua + texmf-dist/tex/lualatex/luamml/luamml-array.lua + texmf-dist/tex/lualatex/luamml/luamml-convert.lua + texmf-dist/tex/lualatex/luamml/luamml-data-combining.lua + texmf-dist/tex/lualatex/luamml/luamml-data-stretchy.lua + texmf-dist/tex/lualatex/luamml/luamml-demo.sty + texmf-dist/tex/lualatex/luamml/luamml-legacy-mappings.lua + texmf-dist/tex/lualatex/luamml/luamml-lr.lua + texmf-dist/tex/lualatex/luamml/luamml-patches-amsmath.sty + texmf-dist/tex/lualatex/luamml/luamml-patches-amstext.sty + texmf-dist/tex/lualatex/luamml/luamml-patches-kernel.sty + texmf-dist/tex/lualatex/luamml/luamml-patches-lab-math.sty + texmf-dist/tex/lualatex/luamml/luamml-patches-mathtools.sty + texmf-dist/tex/lualatex/luamml/luamml-pdf-demo.sty + texmf-dist/tex/lualatex/luamml/luamml-pdf.sty + texmf-dist/tex/lualatex/luamml/luamml-structelemwriter.lua + texmf-dist/tex/lualatex/luamml/luamml-table.lua + texmf-dist/tex/lualatex/luamml/luamml-tex-annotate.lua + texmf-dist/tex/lualatex/luamml/luamml-tex.lua + texmf-dist/tex/lualatex/luamml/luamml-xmlwriter.lua + texmf-dist/tex/lualatex/luamml/luamml.sty +catalogue-contact-bugs https://github.com/zauguin/luamml/issues +catalogue-contact-repository https://github.com/latex3/luamml +catalogue-contact-support https://github.com/latex3/luamml/issues +catalogue-ctan /macros/luatex/latex/luamml +catalogue-license lppl1.3c +catalogue-topics luatex maths +catalogue-version 0.3.0 + name luamodulartables category Package revision 68893 @@ -188476,22 +189927,22 @@ catalogue-version 1.1 name luamplib category Package -revision 71745 +revision 74104 shortdesc Use LuaTeX's built-in MetaPost interpreter longdesc The package enables the user to specify MetaPost diagrams longdesc (which may include colour specifications from the color or longdesc xcolor packages) into a document, using LuaTeX's built-in longdesc MetaPost library. The facility is only available in PDF mode. -docfiles size=67 +docfiles size=87 texmf-dist/doc/luatex/luamplib/NEWS texmf-dist/doc/luatex/luamplib/README details="Readme" texmf-dist/doc/luatex/luamplib/luamplib.pdf details="Package documentation" texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex -srcfiles size=41 +srcfiles size=55 texmf-dist/source/luatex/luamplib/Makefile texmf-dist/source/luatex/luamplib/luamplib.dtx -runfiles size=24 +runfiles size=33 texmf-dist/tex/luatex/luamplib/luamplib.lua texmf-dist/tex/luatex/luamplib/luamplib.sty catalogue-contact-bugs https://github.com/lualatex/luamplib/issues @@ -188499,7 +189950,7 @@ 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.32.4 +catalogue-version 2.37.1 name luanumint category Package @@ -189003,9 +190454,30 @@ catalogue-ctan /macros/luatex/latex/luasseq catalogue-license lppl1.3 catalogue-topics maths luatex +name luatbls +category Package +revision 73999 +shortdesc Lua tables made accessible in LaTeX +longdesc This package provides a LaTeX interface to create, modify, and +longdesc use the Lua data structure >>tables<<. Lua tables can be +longdesc declared with the help of luakeys, and this package provides +longdesc facilities to set, get, check, iterate, apply, etc. to the +longdesc table. +docfiles size=27 + texmf-dist/doc/lualatex/luatbls/README.md details="Readme" + texmf-dist/doc/lualatex/luatbls/luatbls.pdf details="Package documentation" + texmf-dist/doc/lualatex/luatbls/luatbls.tex +runfiles size=6 + texmf-dist/tex/lualatex/luatbls/luatbls.lua + texmf-dist/tex/lualatex/luatbls/luatbls.sty +catalogue-contact-repository https://github.com/kalekje/luatbls +catalogue-ctan /macros/luatex/latex/luatbls +catalogue-license mit +catalogue-topics luatex parser + name luatex category TLCore -revision 71409 +revision 73850 shortdesc The LuaTeX engine longdesc LuaTeX is a greatly extended version of pdfTeX using Lua as an longdesc embedded scripting language. The LuaTeX project's main @@ -189025,8 +190497,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 -docfiles size=753 +docfiles size=780 + texmf-dist/doc/luatex/base/ChangeLog texmf-dist/doc/luatex/base/NEWS + texmf-dist/doc/luatex/base/graphics/Makefile + texmf-dist/doc/luatex/base/graphics/fontdir.fig + texmf-dist/doc/luatex/base/graphics/fontdir.pdf texmf-dist/doc/luatex/base/graphics/luaharfbuzz.pdf texmf-dist/doc/luatex/base/luatex-backend.tex texmf-dist/doc/luatex/base/luatex-callbacks.tex @@ -189073,9 +190549,9 @@ catalogue-topics engine name luatex.aarch64-linux category TLCore -revision 70276 +revision 74078 shortdesc aarch64-linux files of luatex -binfiles arch=aarch64-linux size=1744 +binfiles arch=aarch64-linux size=1757 bin/aarch64-linux/dviluatex bin/aarch64-linux/luatex bin/aarch64-linux/texlua @@ -189083,9 +190559,9 @@ binfiles arch=aarch64-linux size=1744 name luatex.amd64-freebsd category TLCore -revision 70276 +revision 74051 shortdesc amd64-freebsd files of luatex -binfiles arch=amd64-freebsd size=1982 +binfiles arch=amd64-freebsd size=1987 bin/amd64-freebsd/dviluatex bin/amd64-freebsd/luatex bin/amd64-freebsd/texlua @@ -189093,9 +190569,9 @@ binfiles arch=amd64-freebsd size=1982 name luatex.amd64-netbsd category TLCore -revision 70286 +revision 74058 shortdesc amd64-netbsd files of luatex -binfiles arch=amd64-netbsd size=1980 +binfiles arch=amd64-netbsd size=1984 bin/amd64-netbsd/dviluatex bin/amd64-netbsd/luatex bin/amd64-netbsd/texlua @@ -189103,9 +190579,9 @@ binfiles arch=amd64-netbsd size=1980 name luatex.armhf-linux category TLCore -revision 70489 +revision 74078 shortdesc armhf-linux files of luatex -binfiles arch=armhf-linux size=1405 +binfiles arch=armhf-linux size=1282 bin/armhf-linux/dviluatex bin/armhf-linux/luatex bin/armhf-linux/texlua @@ -189113,9 +190589,9 @@ binfiles arch=armhf-linux size=1405 name luatex.i386-freebsd category TLCore -revision 70276 +revision 74051 shortdesc i386-freebsd files of luatex -binfiles arch=i386-freebsd size=1982 +binfiles arch=i386-freebsd size=1987 bin/i386-freebsd/dviluatex bin/i386-freebsd/luatex bin/i386-freebsd/texlua @@ -189123,9 +190599,9 @@ binfiles arch=i386-freebsd size=1982 name luatex.i386-linux category TLCore -revision 70276 +revision 74051 shortdesc i386-linux files of luatex -binfiles arch=i386-linux size=1718 +binfiles arch=i386-linux size=1817 bin/i386-linux/dviluatex bin/i386-linux/luatex bin/i386-linux/texlua @@ -189133,9 +190609,9 @@ binfiles arch=i386-linux size=1718 name luatex.i386-netbsd category TLCore -revision 70286 +revision 74058 shortdesc i386-netbsd files of luatex -binfiles arch=i386-netbsd size=1817 +binfiles arch=i386-netbsd size=1830 bin/i386-netbsd/dviluatex bin/i386-netbsd/luatex bin/i386-netbsd/texlua @@ -189143,9 +190619,9 @@ binfiles arch=i386-netbsd size=1817 name luatex.i386-solaris category TLCore -revision 70276 +revision 74051 shortdesc i386-solaris files of luatex -binfiles arch=i386-solaris size=1481 +binfiles arch=i386-solaris size=1493 bin/i386-solaris/dviluatex bin/i386-solaris/luatex bin/i386-solaris/texlua @@ -189153,9 +190629,9 @@ binfiles arch=i386-solaris size=1481 name luatex.universal-darwin category TLCore -revision 70274 +revision 74077 shortdesc universal-darwin files of luatex -binfiles arch=universal-darwin size=3159 +binfiles arch=universal-darwin size=3167 bin/universal-darwin/dviluatex bin/universal-darwin/luatex bin/universal-darwin/texlua @@ -189163,9 +190639,9 @@ binfiles arch=universal-darwin size=3159 name luatex.windows category TLCore -revision 71441 +revision 73947 shortdesc windows files of luatex -binfiles arch=windows size=1931 +binfiles arch=windows size=1934 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 @@ -189198,9 +190674,9 @@ binfiles arch=windows size=1931 name luatex.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of luatex -binfiles arch=x86_64-cygwin size=1606 +binfiles arch=x86_64-cygwin size=1604 bin/x86_64-cygwin/cygtexlua53-5.dll bin/x86_64-cygwin/dviluatex bin/x86_64-cygwin/luatex.exe @@ -189209,9 +190685,9 @@ binfiles arch=x86_64-cygwin size=1606 name luatex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 74077 shortdesc x86_64-darwinlegacy files of luatex -binfiles arch=x86_64-darwinlegacy size=1475 +binfiles arch=x86_64-darwinlegacy size=1477 bin/x86_64-darwinlegacy/dviluatex bin/x86_64-darwinlegacy/luatex bin/x86_64-darwinlegacy/texlua @@ -189219,9 +190695,9 @@ binfiles arch=x86_64-darwinlegacy size=1475 name luatex.x86_64-linux category TLCore -revision 70276 +revision 74051 shortdesc x86_64-linux files of luatex -binfiles arch=x86_64-linux size=1619 +binfiles arch=x86_64-linux size=1656 bin/x86_64-linux/dviluatex bin/x86_64-linux/luatex bin/x86_64-linux/texlua @@ -189229,9 +190705,9 @@ binfiles arch=x86_64-linux size=1619 name luatex.x86_64-linuxmusl category TLCore -revision 71441 +revision 74051 shortdesc x86_64-linuxmusl files of luatex -binfiles arch=x86_64-linuxmusl size=1766 +binfiles arch=x86_64-linuxmusl size=1769 bin/x86_64-linuxmusl/dviluatex bin/x86_64-linuxmusl/luatex bin/x86_64-linuxmusl/texlua @@ -189239,9 +190715,9 @@ binfiles arch=x86_64-linuxmusl size=1766 name luatex.x86_64-solaris category TLCore -revision 70276 +revision 74051 shortdesc x86_64-solaris files of luatex -binfiles arch=x86_64-solaris size=1667 +binfiles arch=x86_64-solaris size=1681 bin/x86_64-solaris/dviluatex bin/x86_64-solaris/luatex bin/x86_64-solaris/texlua @@ -189302,13 +190778,13 @@ catalogue-version 1.3 name luatexja category Package -revision 71306 +revision 73780 shortdesc Typeset Japanese with Lua(La)TeX 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 -docfiles size=976 +docfiles size=985 texmf-dist/doc/luatex/luatexja/COPYING texmf-dist/doc/luatex/luatexja/README details="Readme" texmf-dist/doc/luatex/luatexja/jfm-test.lua @@ -189349,7 +190825,7 @@ srcfiles size=119 texmf-dist/source/luatex/luatexja/tool/table_jisx0208.tex texmf-dist/source/luatex/luatexja/tool/test_exist_nodelib.tex texmf-dist/source/luatex/luatexja/tool/unicodeBlocks.tex -runfiles size=422 +runfiles size=424 texmf-dist/tex/luatex/luatexja/addons/luatexja-adjust.sty texmf-dist/tex/luatex/luatexja/addons/luatexja-ajmacros.sty texmf-dist/tex/luatex/luatexja/addons/luatexja-fontspec-27c.sty @@ -189451,7 +190927,7 @@ catalogue-contact-repository https://github.com/luatexja/luatexja catalogue-ctan /macros/luatex/generic/luatexja catalogue-license bsd catalogue-topics japanese luatex class macro-gen expl3 -catalogue-version 20240514.0 +catalogue-version 20250208.0 name luatexko category Package @@ -189507,6 +190983,59 @@ catalogue-license pd catalogue-topics luatex catalogue-version 1.0.1 +name luatikz +category Package +revision 73087 +shortdesc A 2D graphics library to draw TikZ graphics using the Lua programming language +longdesc This package provides a comfort graphics library to work with +longdesc graphic objects as immutables in the Lua programming language. +longdesc It writes code for the TikZ package. It overloads operators, so +longdesc you can use standard math expressions to work with graphical +longdesc objects. There probably isn't anything that couldn't been done +longdesc just as well with pgfmath and TikZ directly. However, if a +longdesc graphic gets more complicated, Lua may just be easier to work +longdesc with as base. +docfiles size=58 + texmf-dist/doc/latex/luatikz/README.txt details="Readme" + texmf-dist/doc/latex/luatikz/example/bezier2.lua + texmf-dist/doc/latex/luatikz/example/bezier3a.lua + texmf-dist/doc/latex/luatikz/example/bezier3b.lua + texmf-dist/doc/latex/luatikz/example/blinea.lua + texmf-dist/doc/latex/luatikz/example/circle.lua + texmf-dist/doc/latex/luatikz/example/curvea.lua + texmf-dist/doc/latex/luatikz/example/curveb.lua + texmf-dist/doc/latex/luatikz/example/ellipse.lua + texmf-dist/doc/latex/luatikz/example/ellipseArc.lua + texmf-dist/doc/latex/luatikz/example/immute1.lua + texmf-dist/doc/latex/luatikz/example/immute2.lua + texmf-dist/doc/latex/luatikz/example/intro.lua + texmf-dist/doc/latex/luatikz/example/linea.lua + texmf-dist/doc/latex/luatikz/example/lineb.lua + texmf-dist/doc/latex/luatikz/example/linec.lua + texmf-dist/doc/latex/luatikz/example/lined.lua + texmf-dist/doc/latex/luatikz/example/nodea.lua + texmf-dist/doc/latex/luatikz/example/nodeb.lua + texmf-dist/doc/latex/luatikz/example/plota.lua + texmf-dist/doc/latex/luatikz/example/polylinea.lua + texmf-dist/doc/latex/luatikz/example/radon1.lua + texmf-dist/doc/latex/luatikz/example/recta.lua + texmf-dist/doc/latex/luatikz/example/shadea.lua + texmf-dist/doc/latex/luatikz/example/sierpinski.lua + texmf-dist/doc/latex/luatikz/example/spiral.lua + texmf-dist/doc/latex/luatikz/example/stylea.lua + texmf-dist/doc/latex/luatikz/example/superEllipse.lua + texmf-dist/doc/latex/luatikz/luatikz.pdf details="Package documentation" + texmf-dist/doc/latex/luatikz/luatikz.tex +runfiles size=11 + texmf-dist/tex/latex/luatikz/luatikz.lua + texmf-dist/tex/latex/luatikz/luatikz.sty +catalogue-contact-bugs https://gitlab.com/csc1/luatikz/-/issues +catalogue-contact-repository https://gitlab.com/csc1/luatikz +catalogue-ctan /graphics/pgf/contrib/luatikz +catalogue-license lppl1.3c mit +catalogue-topics graphics pgf-tikz luatex +catalogue-version 2.12.0 + name luatodonotes category Package revision 53825 @@ -189603,20 +191132,22 @@ catalogue-version 0.1m name luaxml category Package -revision 70112 +revision 72858 shortdesc Lua library for reading and serialising XML files 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. -docfiles size=39 +docfiles size=47 texmf-dist/doc/luatex/luaxml/README details="Readme" texmf-dist/doc/luatex/luaxml/luaxml.pdf details="Package documentation" texmf-dist/doc/luatex/luaxml/luaxml.tex -runfiles size=52 +runfiles size=62 texmf-dist/tex/luatex/luaxml/luaxml-cssquery.lua texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua + texmf-dist/tex/luatex/luaxml/luaxml-encodings.lua texmf-dist/tex/luatex/luaxml/luaxml-entities.lua + texmf-dist/tex/luatex/luaxml/luaxml-htmltemplates.lua texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua texmf-dist/tex/luatex/luaxml/luaxml-mod-html.lua texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua @@ -189624,17 +191155,19 @@ runfiles size=52 texmf-dist/tex/luatex/luaxml/luaxml-parse-query.lua texmf-dist/tex/luatex/luaxml/luaxml-pretty.lua texmf-dist/tex/luatex/luaxml/luaxml-stack.lua + texmf-dist/tex/luatex/luaxml/luaxml-sty.lua texmf-dist/tex/luatex/luaxml/luaxml-testxml.lua texmf-dist/tex/luatex/luaxml/luaxml-transform.lua + texmf-dist/tex/luatex/luaxml/luaxml.sty 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.1r +catalogue-topics foreign-import luatex use-lua expl3 +catalogue-version 0.2b name lutabulartools category Package -revision 67714 +revision 73345 shortdesc Some useful LuaLaTeX-based tabular tools longdesc This package provides some useful commands for tabular matter. longdesc It uses LuaLaTeX and offers the ability to combine the @@ -189652,9 +191185,36 @@ catalogue-ctan /macros/luatex/generic/lutabulartools catalogue-license mit catalogue-topics luatex table +name luwiantype +category Package +revision 73719 +shortdesc Typesetting package for Hieroglyphic Luwian +longdesc This package allows for typing in Hieroglyphic Luwian in LaTeX +longdesc documents, using relatively simple commands based on the Latin +longdesc transcriptions of the various signs. It also includes some +longdesc formatting commands designed to allow boustrophedon and +longdesc columns, as well as shorthands for symbols commonly used in +longdesc transcriptions. +docfiles size=223 + texmf-dist/doc/fonts/luwiantype/OFL.txt + texmf-dist/doc/fonts/luwiantype/README.md details="Readme" + texmf-dist/doc/fonts/luwiantype/U14400.pdf + texmf-dist/doc/fonts/luwiantype/lppl1-3c.txt + texmf-dist/doc/fonts/luwiantype/luwiantype-doc.pdf details="Package documentation" + texmf-dist/doc/fonts/luwiantype/luwiantype-doc.tex +runfiles size=99 + texmf-dist/fonts/truetype/public/luwiantype/LuwianFont.ttf + texmf-dist/tex/latex/luwiantype/luwiantype.sty +catalogue-contact-home https://glottophilos.com/luwiantype.html +catalogue-contact-support https://glottophilos.com/contact.php +catalogue-ctan /fonts/luwiantype +catalogue-license lppl1.3c ofl +catalogue-topics linguistic font-archaic font-ttf font-supp +catalogue-version 1.3 + name lwarp category Package -revision 70067 +revision 73623 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 @@ -189674,14 +191234,14 @@ 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 -docfiles size=850 +docfiles size=859 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" -srcfiles size=724 +srcfiles size=731 texmf-dist/source/latex/lwarp/lwarp.dtx texmf-dist/source/latex/lwarp/lwarp.ins -runfiles size=817 +runfiles size=820 texmf-dist/scripts/lwarp/lwarpmk.lua texmf-dist/tex/latex/lwarp/lwarp-2in1.sty texmf-dist/tex/latex/lwarp/lwarp-2up.sty @@ -190284,7 +191844,7 @@ catalogue-contact-bugs https://github.com/bdtc/lwarp catalogue-ctan /macros/latex/contrib/lwarp catalogue-license lppl1.3 catalogue-topics cvt-html -catalogue-version 0.916 +catalogue-version 0.918 name lwarp.aarch64-linux category Package @@ -190393,20 +191953,19 @@ binfiles arch=x86_64-solaris size=1 name lxfonts category Package -revision 32354 +revision 73728 shortdesc Set of slide fonts based on CM longdesc The bundle contains the traditional slides fonts revised to be longdesc completely usable both as text fonts and mathematics fonts; -longdesc they are fully integrate with the new operators, letters, +longdesc they are fully integrated with the new operators, letters, longdesc symbols and extensible delimiter fonts, as well as with the AMS longdesc fonts, all redone with the same stylistic parameters. execute addMixedMap lxfonts.map -docfiles size=139 - texmf-dist/doc/fonts/lxfonts/LXfonts-demo.pdf details="Package outline and samples" +docfiles size=138 + texmf-dist/doc/fonts/lxfonts/LXfonts-demo.pdf details="Example of use" texmf-dist/doc/fonts/lxfonts/LXfonts-demo.tex - texmf-dist/doc/fonts/lxfonts/LXfonts.readme details="Readme" - texmf-dist/doc/fonts/lxfonts/README details="Readme" - texmf-dist/doc/fonts/lxfonts/lxfonts.pdf + texmf-dist/doc/fonts/lxfonts/README.txt details="Readme" + texmf-dist/doc/fonts/lxfonts/lxfonts.pdf details="Package documentation" texmf-dist/doc/fonts/lxfonts/manifest.txt srcfiles size=8 texmf-dist/source/fonts/lxfonts/lxfonts.dtx @@ -190508,9 +192067,9 @@ runfiles size=397 texmf-dist/tex/latex/lxfonts/ulmsa.fd texmf-dist/tex/latex/lxfonts/ulmsb.fd catalogue-ctan /fonts/lxfonts -catalogue-license lppl +catalogue-license lppl1.3c catalogue-topics font font-mf font-type1 font-sans font-maths -catalogue-version 2.0b +catalogue-version 3.0 name ly1 category Package @@ -190717,7 +192276,7 @@ catalogue-version 0.63d name m-tx.aarch64-linux category Package -revision 65927 +revision 73915 shortdesc aarch64-linux files of m-tx binfiles arch=aarch64-linux size=33 bin/aarch64-linux/m-tx @@ -190725,7 +192284,7 @@ binfiles arch=aarch64-linux size=33 name m-tx.amd64-freebsd category Package -revision 69782 +revision 73792 shortdesc amd64-freebsd files of m-tx binfiles arch=amd64-freebsd size=37 bin/amd64-freebsd/m-tx @@ -190733,7 +192292,7 @@ binfiles arch=amd64-freebsd size=37 name m-tx.amd64-netbsd category Package -revision 65923 +revision 73802 shortdesc amd64-netbsd files of m-tx binfiles arch=amd64-netbsd size=37 bin/amd64-netbsd/m-tx @@ -190741,15 +192300,15 @@ binfiles arch=amd64-netbsd size=37 name m-tx.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of m-tx -binfiles arch=armhf-linux size=28 +binfiles arch=armhf-linux size=24 bin/armhf-linux/m-tx bin/armhf-linux/prepmx name m-tx.i386-freebsd category Package -revision 69782 +revision 73792 shortdesc i386-freebsd files of m-tx binfiles arch=i386-freebsd size=37 bin/i386-freebsd/m-tx @@ -190757,15 +192316,15 @@ binfiles arch=i386-freebsd size=37 name m-tx.i386-linux category Package -revision 69782 +revision 73792 shortdesc i386-linux files of m-tx -binfiles arch=i386-linux size=36 +binfiles arch=i386-linux size=39 bin/i386-linux/m-tx bin/i386-linux/prepmx name m-tx.i386-netbsd category Package -revision 65923 +revision 73802 shortdesc i386-netbsd files of m-tx binfiles arch=i386-netbsd size=35 bin/i386-netbsd/m-tx @@ -190773,7 +192332,7 @@ binfiles arch=i386-netbsd size=35 name m-tx.i386-solaris category Package -revision 69782 +revision 73792 shortdesc i386-solaris files of m-tx binfiles arch=i386-solaris size=32 bin/i386-solaris/m-tx @@ -190781,7 +192340,7 @@ binfiles arch=i386-solaris size=32 name m-tx.universal-darwin category Package -revision 69807 +revision 73806 shortdesc universal-darwin files of m-tx binfiles arch=universal-darwin size=84 bin/universal-darwin/m-tx @@ -190789,7 +192348,7 @@ binfiles arch=universal-darwin size=84 name m-tx.windows category Package -revision 69788 +revision 73796 shortdesc windows files of m-tx binfiles arch=windows size=34 bin/windows/m-tx.exe @@ -190797,7 +192356,7 @@ binfiles arch=windows size=34 name m-tx.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of m-tx binfiles arch=x86_64-cygwin size=32 bin/x86_64-cygwin/m-tx @@ -190805,7 +192364,7 @@ binfiles arch=x86_64-cygwin size=32 name m-tx.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of m-tx binfiles arch=x86_64-darwinlegacy size=32 bin/x86_64-darwinlegacy/m-tx @@ -190813,25 +192372,25 @@ binfiles arch=x86_64-darwinlegacy size=32 name m-tx.x86_64-linux category Package -revision 69782 +revision 73777 shortdesc x86_64-linux files of m-tx -binfiles arch=x86_64-linux size=32 +binfiles arch=x86_64-linux size=33 bin/x86_64-linux/m-tx bin/x86_64-linux/prepmx name m-tx.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of m-tx -binfiles arch=x86_64-linuxmusl size=33 +binfiles arch=x86_64-linuxmusl size=34 bin/x86_64-linuxmusl/m-tx bin/x86_64-linuxmusl/prepmx name m-tx.x86_64-solaris category Package -revision 69782 +revision 73792 shortdesc x86_64-solaris files of m-tx -binfiles arch=x86_64-solaris size=36 +binfiles arch=x86_64-solaris size=37 bin/x86_64-solaris/m-tx bin/x86_64-solaris/prepmx @@ -190973,26 +192532,29 @@ catalogue-version 1.7 name magicwatermark category Package -revision 63656 +revision 72044 shortdesc An easy and flexible way to set watermarks 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. -docfiles size=58 +docfiles size=63 texmf-dist/doc/latex/magicwatermark/README.md details="Readme" - texmf-dist/doc/latex/magicwatermark/magicwatermark-en.pdf details="Package documentation (English)" - texmf-dist/doc/latex/magicwatermark/magicwatermark-en.tex - texmf-dist/doc/latex/magicwatermark/magicwatermark.pdf details="Package documentation (Chinese)" language="zh" -srcfiles size=5 - texmf-dist/source/latex/magicwatermark/magicwatermark.dtx -runfiles size=2 + texmf-dist/doc/latex/magicwatermark/doc/magicwatermark-cn.pdf details="Package documentation (Chinese)" language="zh" + texmf-dist/doc/latex/magicwatermark/doc/magicwatermark-cn.tex + texmf-dist/doc/latex/magicwatermark/doc/magicwatermark-en.pdf details="Package documentation (English)" language="en" + texmf-dist/doc/latex/magicwatermark/doc/magicwatermark-en.tex +runfiles size=3 texmf-dist/tex/latex/magicwatermark/magicwatermark.sty +catalogue-contact-announce https://github.com/ljguo1020/magicwatermark catalogue-contact-bugs https://github.com/ljguo1020/magicwatermark/issues +catalogue-contact-development https://github.com/ljguo1020/magicwatermark +catalogue-contact-home https://github.com/ljguo1020/magicwatermark catalogue-contact-repository https://github.com/ljguo1020/magicwatermark +catalogue-contact-support 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 +catalogue-version 1.2B name magra category Package @@ -191051,7 +192613,7 @@ catalogue-version 0.0.1 name mahjong category Package -revision 58896 +revision 73437 shortdesc Typeset Mahjong Tiles using MPSZ Notation longdesc The mahjong package provides a LaTeX2e and LaTeX3 interface for longdesc typesetting mahjong tiles using an extended version of MPSZ @@ -191061,15 +192623,14 @@ longdesc mahjong tiles can be controlled using a package option and an longdesc optional argument of \mahjong. It is primarily aimed at Riichi longdesc (aka. Japanese) Mahjong but can be used to typeset any style of longdesc mahjong. -docfiles size=279 +docfiles size=281 texmf-dist/doc/latex/mahjong/LICENSE texmf-dist/doc/latex/mahjong/README.md details="Readme" texmf-dist/doc/latex/mahjong/mahjong-code.pdf texmf-dist/doc/latex/mahjong/mahjong-code.tex texmf-dist/doc/latex/mahjong/mahjong.pdf details="Package documentation" texmf-dist/doc/latex/mahjong/mahjong.tex -srcfiles size=7 - texmf-dist/source/latex/mahjong/Makefile +srcfiles size=6 texmf-dist/source/latex/mahjong/mahjong.dtx texmf-dist/source/latex/mahjong/mahjong.ins runfiles size=69 @@ -191115,32 +192676,35 @@ runfiles size=69 texmf-dist/tex/latex/mahjong/tiles/mahjong-Blank.pdf texmf-dist/tex/latex/mahjong/tiles/mahjong-Front.pdf texmf-dist/tex/latex/mahjong/tiles/mahjong-Space.pdf -catalogue-contact-home https://github.com/Schmitzi/mahjong-tex +catalogue-contact-home https://github.com/Schmytzi/mahjong-tex catalogue-ctan /graphics/mahjong catalogue-license mit cc-by-1 catalogue-topics graphics games expl3 -catalogue-version 1.0.1 +catalogue-version 1.1 name mailing category Package -revision 15878 +revision 71862 shortdesc Macros for mail merging longdesc This package is for use when sending a large number of letters, longdesc all with the same body text. The package's \addressfile command longdesc is used to specify who the letter is to be sent to; the body of longdesc the \mailingtext command specifies the text of the letters, longdesc possibly using macros defined in the \addressfile. -docfiles size=18 +docfiles size=40 + texmf-dist/doc/latex/mailing/CATALOG + texmf-dist/doc/latex/mailing/MANIFEST + texmf-dist/doc/latex/mailing/README details="Readme" texmf-dist/doc/latex/mailing/mailing.pdf details="Package documentation" - texmf-dist/doc/latex/mailing/manifest.txt srcfiles size=4 texmf-dist/source/latex/mailing/mailing.dtx texmf-dist/source/latex/mailing/mailing.ins runfiles size=1 texmf-dist/tex/latex/mailing/mailing.sty catalogue-ctan /macros/latex/contrib/mailing -catalogue-license lppl +catalogue-license lppl1.3c catalogue-topics mailing +catalogue-version 1.0c name mailmerge category Package @@ -191168,7 +192732,7 @@ catalogue-version 1.0 name make4ht category Package -revision 70112 +revision 72626 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 @@ -191176,13 +192740,13 @@ longdesc conversion process. It also provides a library which can be longdesc used to create customized conversion tools. depend make4ht.ARCH depend tex4ht -docfiles size=77 +docfiles size=79 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=97 +runfiles size=261 texmf-dist/scripts/make4ht/domfilters/make4ht-aeneas.lua texmf-dist/scripts/make4ht/domfilters/make4ht-booktabs.lua texmf-dist/scripts/make4ht/domfilters/make4ht-collapsetoc.lua @@ -191237,6 +192801,7 @@ runfiles size=97 texmf-dist/scripts/make4ht/lapp-mk4.lua texmf-dist/scripts/make4ht/make4ht texmf-dist/scripts/make4ht/make4ht-aeneas-config.lua + texmf-dist/scripts/make4ht/make4ht-char-def.lua texmf-dist/scripts/make4ht/make4ht-config.lua texmf-dist/scripts/make4ht/make4ht-dvireader.lua texmf-dist/scripts/make4ht/make4ht-errorlogparser.lua @@ -191253,7 +192818,7 @@ catalogue-contact-repository https://github.com/michal-h21/make4ht catalogue-ctan /support/make4ht catalogue-license lppl1.3 catalogue-topics cvt-html -catalogue-version 0.4 +catalogue-version 0.4b name make4ht.aarch64-linux category Package @@ -191730,7 +193295,7 @@ catalogue-topics index name makeindex.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of makeindex binfiles arch=aarch64-linux size=39 bin/aarch64-linux/makeindex @@ -191738,7 +193303,7 @@ binfiles arch=aarch64-linux size=39 name makeindex.amd64-freebsd category Package -revision 70276 +revision 73792 shortdesc amd64-freebsd files of makeindex binfiles arch=amd64-freebsd size=45 bin/amd64-freebsd/makeindex @@ -191746,7 +193311,7 @@ binfiles arch=amd64-freebsd size=45 name makeindex.amd64-netbsd category Package -revision 70286 +revision 73802 shortdesc amd64-netbsd files of makeindex binfiles arch=amd64-netbsd size=44 bin/amd64-netbsd/makeindex @@ -191754,15 +193319,15 @@ binfiles arch=amd64-netbsd size=44 name makeindex.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of makeindex -binfiles arch=armhf-linux size=34 +binfiles arch=armhf-linux size=31 bin/armhf-linux/makeindex bin/armhf-linux/mkindex name makeindex.i386-freebsd category Package -revision 70276 +revision 73792 shortdesc i386-freebsd files of makeindex binfiles arch=i386-freebsd size=45 bin/i386-freebsd/makeindex @@ -191770,15 +193335,15 @@ binfiles arch=i386-freebsd size=45 name makeindex.i386-linux category Package -revision 70276 +revision 73792 shortdesc i386-linux files of makeindex -binfiles arch=i386-linux size=42 +binfiles arch=i386-linux size=45 bin/i386-linux/makeindex bin/i386-linux/mkindex name makeindex.i386-netbsd category Package -revision 70286 +revision 73802 shortdesc i386-netbsd files of makeindex binfiles arch=i386-netbsd size=42 bin/i386-netbsd/makeindex @@ -191786,7 +193351,7 @@ binfiles arch=i386-netbsd size=42 name makeindex.i386-solaris category Package -revision 70276 +revision 73792 shortdesc i386-solaris files of makeindex binfiles arch=i386-solaris size=37 bin/i386-solaris/makeindex @@ -191794,7 +193359,7 @@ binfiles arch=i386-solaris size=37 name makeindex.universal-darwin category Package -revision 70274 +revision 73806 shortdesc universal-darwin files of makeindex binfiles arch=universal-darwin size=88 bin/universal-darwin/makeindex @@ -191802,14 +193367,14 @@ binfiles arch=universal-darwin size=88 name makeindex.windows category Package -revision 70269 +revision 73796 shortdesc windows files of makeindex binfiles arch=windows size=23 bin/windows/makeindex.exe name makeindex.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of makeindex binfiles arch=x86_64-cygwin size=21 bin/x86_64-cygwin/makeindex.exe @@ -191817,7 +193382,7 @@ binfiles arch=x86_64-cygwin size=21 name makeindex.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of makeindex binfiles arch=x86_64-darwinlegacy size=36 bin/x86_64-darwinlegacy/makeindex @@ -191825,7 +193390,7 @@ binfiles arch=x86_64-darwinlegacy size=36 name makeindex.x86_64-linux category Package -revision 70276 +revision 73777 shortdesc x86_64-linux files of makeindex binfiles arch=x86_64-linux size=39 bin/x86_64-linux/makeindex @@ -191833,17 +193398,17 @@ binfiles arch=x86_64-linux size=39 name makeindex.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of makeindex -binfiles arch=x86_64-linuxmusl size=39 +binfiles arch=x86_64-linuxmusl size=40 bin/x86_64-linuxmusl/makeindex bin/x86_64-linuxmusl/mkindex name makeindex.x86_64-solaris category Package -revision 70276 +revision 73792 shortdesc x86_64-solaris files of makeindex -binfiles arch=x86_64-solaris size=41 +binfiles arch=x86_64-solaris size=42 bin/x86_64-solaris/makeindex bin/x86_64-solaris/mkindex @@ -192224,6 +193789,32 @@ catalogue-license gpl catalogue-topics cite-supp marginal catalogue-version 1.0c +name marginalia +category Package +revision 74103 +shortdesc Non-floating marginal content with automatic placement for LuaLaTeX +longdesc This LuaLaTeX package allows the placement of marginal content +longdesc anywhere, without \marginpar's limits, and automatically +longdesc adjusts positions to prevent overlaps or content being pushed +longdesc off the page. In short, it tries to combine the best features +longdesc from the packages marginnote, marginfix and marginfit with +longdesc key-value settings that allow fine-grained customization. +docfiles size=304 + texmf-dist/doc/lualatex/marginalia/README.md details="Readme" + texmf-dist/doc/lualatex/marginalia/marginalia-doc-example.tex + texmf-dist/doc/lualatex/marginalia/marginalia-doc-ysep-explanation.pdf + texmf-dist/doc/lualatex/marginalia/marginalia-doc.pdf details="Package documentation" +srcfiles size=31 + texmf-dist/source/lualatex/marginalia/marginalia.dtx + texmf-dist/source/lualatex/marginalia/marginalia.ins +runfiles size=10 + texmf-dist/tex/lualatex/marginalia/marginalia.lua + texmf-dist/tex/lualatex/marginalia/marginalia.sty +catalogue-ctan /macros/luatex/latex/marginalia +catalogue-license lppl1.3c +catalogue-topics marginal notes luatex expl3 +catalogue-version 0.80.2 + name marginfit category Package revision 48281 @@ -192296,20 +193887,45 @@ catalogue-ctan /macros/latex/contrib/marginnote catalogue-license lppl1.3c catalogue-topics notes +name maritime +category Package +revision 74037 +shortdesc International maritime signal flags using TikZ +longdesc This package provides LaTeX commands for drawing international +longdesc maritime signal flags using TikZ (A-Z, NATO 0-9). +docfiles size=16 + texmf-dist/doc/latex/maritime/LICENSE + texmf-dist/doc/latex/maritime/README.md details="Readme" + texmf-dist/doc/latex/maritime/maritime-doc.pdf details="Package documentation" + texmf-dist/doc/latex/maritime/maritime-doc.tex +runfiles size=7 + texmf-dist/tex/latex/maritime/maritime.sty +catalogue-contact-repository https://github.com/sigilante/maritime +catalogue-ctan /graphics/pgf/contrib/maritime +catalogue-license mit +catalogue-topics graphics pgf-tikz +catalogue-version 1.0 + name markdown category Package -revision 71572 +revision 73628 shortdesc Converting and rendering markdown documents inside TeX longdesc The package provides facilities for the conversion of markdown longdesc markup to plain TeX. These are provided both in form of a Lua longdesc module and in form of plain TeX, LaTeX, and ConTeXt macro longdesc packages that enable the direct inclusion of markdown documents longdesc inside TeX documents. -docfiles size=599 +depend l3kernel +depend lt3luabridge +depend lua-tinyyaml +depend lua-uni-algos +depend markdown.ARCH +docfiles size=667 texmf-dist/doc/context/third/markdown/examples/context-mkiv.tex texmf-dist/doc/context/third/markdown/examples/example.md texmf-dist/doc/context/third/markdown/examples/scientists.csv texmf-dist/doc/generic/markdown/CHANGES.md + texmf-dist/doc/generic/markdown/DEPENDS.txt texmf-dist/doc/generic/markdown/README.md details="Readme" texmf-dist/doc/generic/markdown/VERSION texmf-dist/doc/generic/markdown/markdown.css @@ -192325,22 +193941,21 @@ docfiles size=599 texmf-dist/doc/optex/markdown/examples/example.md texmf-dist/doc/optex/markdown/examples/optex.tex texmf-dist/doc/optex/markdown/examples/scientists.csv -srcfiles size=243 +srcfiles size=263 texmf-dist/source/generic/markdown/docstrip.cfg texmf-dist/source/generic/markdown/markdown.dtx texmf-dist/source/generic/markdown/markdown.ins -runfiles size=119 +runfiles size=155 texmf-dist/scripts/markdown/markdown-cli.lua + texmf-dist/scripts/markdown/markdown2tex.lua texmf-dist/tex/context/third/markdown/t-markdown.tex texmf-dist/tex/context/third/markdown/t-markdownthemewitiko_markdown_defaults.tex texmf-dist/tex/generic/markdown/markdown.tex texmf-dist/tex/generic/markdown/markdownthemewitiko_markdown_defaults.tex - texmf-dist/tex/generic/markdown/markdownthemewitiko_tilde.tex texmf-dist/tex/latex/markdown/markdown.sty - texmf-dist/tex/latex/markdown/markdownthemewitiko_dot.sty - texmf-dist/tex/latex/markdown/markdownthemewitiko_graphicx_http.sty texmf-dist/tex/latex/markdown/markdownthemewitiko_markdown_defaults.sty - texmf-dist/tex/luatex/markdown/markdown-tinyyaml.lua + texmf-dist/tex/luatex/markdown/markdown-parser.lua + texmf-dist/tex/luatex/markdown/markdown-unicode-data.lua texmf-dist/tex/luatex/markdown/markdown.lua catalogue-contact-announce https://github.com/Witiko/markdown/releases catalogue-contact-bugs https://github.com/Witiko/markdown/issues @@ -192349,7 +193964,112 @@ catalogue-contact-repository https://github.com/Witiko/markdown catalogue-ctan /macros/generic/markdown catalogue-license lppl1.3c catalogue-topics markup -catalogue-version 3.6.1-0-g5a45a922 +catalogue-version 3.10.0-0-g626df6ad + +name markdown.aarch64-linux +category Package +revision 73628 +shortdesc aarch64-linux files of markdown +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/markdown2tex + +name markdown.amd64-freebsd +category Package +revision 73628 +shortdesc amd64-freebsd files of markdown +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/markdown2tex + +name markdown.amd64-netbsd +category Package +revision 73628 +shortdesc amd64-netbsd files of markdown +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/markdown2tex + +name markdown.armhf-linux +category Package +revision 73628 +shortdesc armhf-linux files of markdown +binfiles arch=armhf-linux size=1 + bin/armhf-linux/markdown2tex + +name markdown.i386-freebsd +category Package +revision 73628 +shortdesc i386-freebsd files of markdown +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/markdown2tex + +name markdown.i386-linux +category Package +revision 73628 +shortdesc i386-linux files of markdown +binfiles arch=i386-linux size=1 + bin/i386-linux/markdown2tex + +name markdown.i386-netbsd +category Package +revision 73628 +shortdesc i386-netbsd files of markdown +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/markdown2tex + +name markdown.i386-solaris +category Package +revision 73628 +shortdesc i386-solaris files of markdown +binfiles arch=i386-solaris size=1 + bin/i386-solaris/markdown2tex + +name markdown.universal-darwin +category Package +revision 73628 +shortdesc universal-darwin files of markdown +binfiles arch=universal-darwin size=1 + bin/universal-darwin/markdown2tex + +name markdown.windows +category Package +revision 73628 +shortdesc windows files of markdown +binfiles arch=windows size=2 + bin/windows/markdown2tex.exe + +name markdown.x86_64-cygwin +category Package +revision 73628 +shortdesc x86_64-cygwin files of markdown +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/markdown2tex + +name markdown.x86_64-darwinlegacy +category Package +revision 73628 +shortdesc x86_64-darwinlegacy files of markdown +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/markdown2tex + +name markdown.x86_64-linux +category Package +revision 73628 +shortdesc x86_64-linux files of markdown +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/markdown2tex + +name markdown.x86_64-linuxmusl +category Package +revision 73628 +shortdesc x86_64-linuxmusl files of markdown +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/markdown2tex + +name markdown.x86_64-solaris +category Package +revision 73628 +shortdesc x86_64-solaris files of markdown +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/markdown2tex name marvosym category Package @@ -192847,7 +194567,7 @@ catalogue-topics font font-type1 font-symbol-maths name mathalpha category Package -revision 61089 +revision 73505 shortdesc General package for loading maths alphabets in LaTeX longdesc Package mathalfa was renamed to mathalpha. For backward longdesc compatibility the old name will continue to be recognized in @@ -192855,22 +194575,30 @@ 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. -docfiles size=474 +execute addMap mathalpha.map +docfiles size=518 texmf-dist/doc/latex/mathalpha/README details="Readme" texmf-dist/doc/latex/mathalpha/mathalpha-doc.pdf details="Package documentation" texmf-dist/doc/latex/mathalpha/mathalpha-doc.tex -runfiles size=16 +runfiles size=52 + texmf-dist/fonts/map/dvips/mathalpha/mathalpha.map + texmf-dist/fonts/tfm/public/mathalpha/mathalpha-ncmbb-bold.tfm + texmf-dist/fonts/tfm/public/mathalpha/mathalpha-ncmbb-book.tfm + texmf-dist/fonts/tfm/public/mathalpha/mathalpha-ncmbb-regular.tfm + texmf-dist/fonts/type1/public/mathalpha/mathalpha-ncmbb-bold.pfb + texmf-dist/fonts/type1/public/mathalpha/mathalpha-ncmbb-book.pfb + texmf-dist/fonts/type1/public/mathalpha/mathalpha-ncmbb-regular.pfb texmf-dist/tex/latex/mathalpha/mathalfa.sty texmf-dist/tex/latex/mathalpha/mathalpha.sty catalogue-alias mathalfa catalogue-ctan /macros/latex/contrib/mathalpha catalogue-license lppl1.3c catalogue-topics maths -catalogue-version 1.143 +catalogue-version 1.145 name mathastext category Package -revision 69237 +revision 72671 shortdesc Use the text font in maths mode longdesc The package uses a text font (usually the document's text font) longdesc for the letters of the Latin alphabet needed when typesetting @@ -192882,24 +194610,20 @@ 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. -docfiles size=180 +docfiles size=204 texmf-dist/doc/latex/mathastext/ChangeLog.md texmf-dist/doc/latex/mathastext/README.md details="Readme" texmf-dist/doc/latex/mathastext/mathastext.pdf details="Package documentation" texmf-dist/doc/latex/mathastext/mathastext.tex - texmf-dist/doc/latex/mathastext/mathastexttestalphabets.tex - texmf-dist/doc/latex/mathastext/mathastexttestmathversions.tex - texmf-dist/doc/latex/mathastext/mathastexttestunicodelinux.tex - texmf-dist/doc/latex/mathastext/mathastexttestunicodemacos.tex -srcfiles size=119 +srcfiles size=132 texmf-dist/source/latex/mathastext/mathastext.dtx -runfiles size=29 +runfiles size=31 texmf-dist/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-license lppl1.3c catalogue-topics maths font-supp-maths font-sel -catalogue-version 1.3zb +catalogue-version 1.4e name mathcommand category Package @@ -194296,25 +196020,25 @@ catalogue-version 0.5 name mathfixs category Package -revision 49547 +revision 72887 shortdesc Fix various layout issues in math mode longdesc This is a LaTeX2e package to fix some odd behaviour in math longdesc mode such as spacing around fractions and roots, math symbols longdesc within bold text as well as capital Greek letters. It also adds longdesc some related macros. -docfiles size=76 +docfiles size=96 texmf-dist/doc/latex/mathfixs/README.txt details="Readme" texmf-dist/doc/latex/mathfixs/mafxsamp.tex texmf-dist/doc/latex/mathfixs/mathfixs.pdf details="Package documentation" -srcfiles size=13 +srcfiles size=20 texmf-dist/source/latex/mathfixs/mathfixs.dtx texmf-dist/source/latex/mathfixs/mathfixs.ins -runfiles size=3 +runfiles size=4 texmf-dist/tex/latex/mathfixs/mathfixs.sty catalogue-ctan /macros/latex/contrib/mathfixs catalogue-license lppl1.3 catalogue-topics maths bugfix -catalogue-version 1.01 +catalogue-version 1.12 name mathfont category Package @@ -194794,7 +196518,7 @@ binfiles arch=x86_64-solaris size=1 name mathtools category Package -revision 70838 +revision 72487 shortdesc Mathematical tools to use with amsmath longdesc Mathtools provides a series of packages designed to enhance the longdesc appearance of documents containing a lot of mathematics. The @@ -194813,13 +196537,14 @@ 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. depend amsmath -docfiles size=269 +docfiles size=292 texmf-dist/doc/latex/mathtools/README.md details="Package README" texmf-dist/doc/latex/mathtools/empheq.pdf texmf-dist/doc/latex/mathtools/mathtools.pdf details="Package documentation" texmf-dist/doc/latex/mathtools/mhsetup.pdf -srcfiles size=110 +srcfiles size=111 texmf-dist/source/latex/mathtools/empheq.dtx + texmf-dist/source/latex/mathtools/empheq.ins texmf-dist/source/latex/mathtools/mathtools.dtx texmf-dist/source/latex/mathtools/mathtools.ins texmf-dist/source/latex/mathtools/mhsetup.dtx @@ -194832,7 +196557,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.30 +catalogue-version 1.31 name matlab-prettifier category Package @@ -195025,16 +196750,14 @@ catalogue-version 0.5 name mcf2graph category Package -revision 70154 +revision 74038 shortdesc Draw chemical structure diagrams with MetaPost 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 MetaPost. -docfiles size=342 +docfiles size=423 texmf-dist/doc/metapost/mcf2graph/CHANGELOG texmf-dist/doc/metapost/mcf2graph/README details="Readme" - texmf-dist/doc/metapost/mcf2graph/main_lib.mcf - texmf-dist/doc/metapost/mcf2graph/mcf2graph.mp texmf-dist/doc/metapost/mcf2graph/mcf_exa_soc.mp texmf-dist/doc/metapost/mcf2graph/mcf_example.pdf details="Molecular Coding Format Examples" texmf-dist/doc/metapost/mcf2graph/mcf_example.tex @@ -195043,10 +196766,13 @@ docfiles size=342 texmf-dist/doc/metapost/mcf2graph/mcf_to_graph.cmd texmf-dist/doc/metapost/mcf2graph/template_lib.mcf texmf-dist/doc/metapost/mcf2graph/template_soc.mp +runfiles size=52 + texmf-dist/metapost/mcf2graph/main_lib.mcf + texmf-dist/metapost/mcf2graph/mcf2graph.mp catalogue-ctan /graphics/mcf2graph catalogue-license mit catalogue-topics graphics graphics-mpost chemistry -catalogue-version 5.12 +catalogue-version 5.19 name mcite category Package @@ -195431,7 +197157,7 @@ catalogue-version 0.13 name media9 category Package -revision 64047 +revision 72299 shortdesc Multimedia inclusion package with Adobe Reader-9/X compatibility longdesc The package provides an interface to embed interactive Flash longdesc (SWF) and 3D objects (Adobe U3D & PRC), as well as video and @@ -195443,7 +197169,7 @@ 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. -docfiles size=899 +docfiles size=905 texmf-dist/doc/latex/media9/ChangeLog texmf-dist/doc/latex/media9/README.txt texmf-dist/doc/latex/media9/media9.pdf details="Package documentation" @@ -195501,7 +197227,7 @@ catalogue-contact-repository https://gitlab.com/agrahn/media9 catalogue-ctan /macros/latex/contrib/media9 catalogue-license lppl catalogue-topics multimedia expl3 -catalogue-version 1.25 +catalogue-version 1.29 name medmath category Package @@ -195707,7 +197433,7 @@ catalogue-version 1.7e name memoize category Package -revision 70841 +revision 73025 shortdesc Externalization of graphics and memoization of compilation results in general longdesc Memoize is a package for externalization of graphics and longdesc memoization of compilation results in general, allowing the @@ -195722,7 +197448,7 @@ longdesc cross-referencing, TikZ overlays and Beamer, (v) works with all longdesc major engines and formats, and (vi) is adaptable to any longdesc workflow. depend memoize.ARCH -docfiles size=914 +docfiles size=964 texmf-dist/doc/generic/memoize/CHANGELOG.md texmf-dist/doc/generic/memoize/FILES texmf-dist/doc/generic/memoize/INSTALL.md @@ -195731,10 +197457,12 @@ docfiles size=914 texmf-dist/doc/generic/memoize/examples-src.zip texmf-dist/doc/generic/memoize/examples.zip texmf-dist/doc/generic/memoize/memoize-clean.1.md + texmf-dist/doc/generic/memoize/memoize-code.latexmkrc texmf-dist/doc/generic/memoize/memoize-code.pdf texmf-dist/doc/generic/memoize/memoize-code.sty texmf-dist/doc/generic/memoize/memoize-code.tex texmf-dist/doc/generic/memoize/memoize-doc-common.sty + texmf-dist/doc/generic/memoize/memoize-doc.latexmkrc texmf-dist/doc/generic/memoize/memoize-doc.mst texmf-dist/doc/generic/memoize/memoize-doc.pdf details="Package documentation" texmf-dist/doc/generic/memoize/memoize-doc.sty @@ -195753,11 +197481,15 @@ docfiles size=914 texmf-dist/doc/man/man1/memoize-extract.pl.man1.pdf texmf-dist/doc/man/man1/memoize-extract.py.1 texmf-dist/doc/man/man1/memoize-extract.py.man1.pdf -srcfiles size=40 +srcfiles size=47 texmf-dist/source/generic/memoize/Makefile + texmf-dist/source/generic/memoize/Makefile.advice + texmf-dist/source/generic/memoize/Makefile.collargs + texmf-dist/source/generic/memoize/Makefile.package + texmf-dist/source/generic/memoize/Makefile.runtimes texmf-dist/source/generic/memoize/memoize.edtx texmf-dist/source/generic/memoize/memoize.ins -runfiles size=62 +runfiles size=63 texmf-dist/scripts/memoize/memoize-clean.pl texmf-dist/scripts/memoize/memoize-clean.py texmf-dist/scripts/memoize/memoize-extract.pl @@ -195767,6 +197499,7 @@ runfiles size=62 texmf-dist/tex/context/third/memoize/t-nomemoize.tex texmf-dist/tex/generic/memoize/memoizable.code.tex texmf-dist/tex/latex/memoize/memoizable.sty + texmf-dist/tex/latex/memoize/memoize-beamer.code.tex texmf-dist/tex/latex/memoize/memoize-biblatex.code.tex texmf-dist/tex/latex/memoize/memoize.sty texmf-dist/tex/latex/memoize/nomemoize.sty @@ -195778,7 +197511,7 @@ catalogue-contact-repository https://github.com/sasozivanovic/memoize catalogue-ctan /macros/generic/memoize catalogue-license lppl1.3c catalogue-topics compilation ext-code cond-comp macro-gen graphics -catalogue-version 1.3.0 +catalogue-version 1.4.1 name memoize.aarch64-linux category Package @@ -196107,7 +197840,7 @@ catalogue-version 1.6.2 name mercatormap category Package -revision 56060 +revision 71976 shortdesc Spherical Mercator coordinate systems and Web Mercator tile integration longdesc This package extends TikZ with tools to create map graphics. longdesc The provided coordinate system relies on the Web Mercator @@ -196116,11 +197849,13 @@ longdesc package supports the seamless integration of graphics from longdesc public map tile servers by a Python script. Also, common map longdesc elements like markers, geodetic networks, bar scales, routes, longdesc orthodrome pieces, and more are part of the package. -docfiles size=6125 - texmf-dist/doc/latex/mercatormap/README details="Readme" +docfiles size=5708 + texmf-dist/doc/latex/mercatormap/CHANGES.md + texmf-dist/doc/latex/mercatormap/README.md details="Readme" texmf-dist/doc/latex/mercatormap/mercatormap-example.tex texmf-dist/doc/latex/mercatormap/mercatormap.bib texmf-dist/doc/latex/mercatormap/mercatormap.doc.abstract.tex + texmf-dist/doc/latex/mercatormap/mercatormap.doc.animations.tex texmf-dist/doc/latex/mercatormap/mercatormap.doc.definition.tex texmf-dist/doc/latex/mercatormap/mercatormap.doc.drawing.tex texmf-dist/doc/latex/mercatormap/mercatormap.doc.examples.tex @@ -196132,10 +197867,9 @@ docfiles size=6125 texmf-dist/doc/latex/mercatormap/mercatormap.doc.routes.tex texmf-dist/doc/latex/mercatormap/mercatormap.doc.scales.tex texmf-dist/doc/latex/mercatormap/mercatormap.doc.sty - texmf-dist/doc/latex/mercatormap/mercatormap.doc.versionhistory.tex texmf-dist/doc/latex/mercatormap/mercatormap.pdf details="Package documentation" texmf-dist/doc/latex/mercatormap/mercatormap.tex -runfiles size=30 +runfiles size=34 texmf-dist/tex/latex/mercatormap/mercatormap.sty texmf-dist/tex/latex/mercatormap/mercatorpy.def texmf-dist/tex/latex/mercatormap/mercatorsupplier.def @@ -196144,7 +197878,7 @@ catalogue-contact-home https://github.com/T-F-S/mercatormap catalogue-ctan /macros/latex/contrib/mercatormap catalogue-license lppl1.3 catalogue-topics cartography pgf-tikz graphics expl3 -catalogue-version 1.02 +catalogue-version 1.2.0 name merriweather category Package @@ -197512,7 +199246,7 @@ catalogue-version 1.2 name metafont category Package -revision 70015 +revision 73848 shortdesc A system for specifying fonts longdesc The program takes a programmatic specification of a font, and longdesc produces a bitmap font (whose properties are defined by a set @@ -197531,7 +199265,7 @@ depend kpathsea depend metafont.ARCH depend modes execute AddFormat name=mf engine=mf-nowin options="-translate-file=cp227.tcx mf.ini" fmttriggers=modes -docfiles size=36 +docfiles size=39 texmf-dist/doc/man/man1/inimf.1 texmf-dist/doc/man/man1/inimf.man1.pdf texmf-dist/doc/man/man1/mf-nowin.1 @@ -197574,7 +199308,7 @@ catalogue-topics mf-doc name metafont.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of metafont binfiles arch=aarch64-linux size=207 bin/aarch64-linux/inimf @@ -197583,7 +199317,7 @@ binfiles arch=aarch64-linux size=207 name metafont.amd64-freebsd category Package -revision 70276 +revision 73792 shortdesc amd64-freebsd files of metafont binfiles arch=amd64-freebsd size=229 bin/amd64-freebsd/inimf @@ -197592,25 +199326,25 @@ binfiles arch=amd64-freebsd size=229 name metafont.amd64-netbsd category Package -revision 70286 +revision 73802 shortdesc amd64-netbsd files of metafont -binfiles arch=amd64-netbsd size=226 +binfiles arch=amd64-netbsd size=225 bin/amd64-netbsd/inimf bin/amd64-netbsd/mf bin/amd64-netbsd/mf-nowin name metafont.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of metafont -binfiles arch=armhf-linux size=155 +binfiles arch=armhf-linux size=131 bin/armhf-linux/inimf bin/armhf-linux/mf bin/armhf-linux/mf-nowin name metafont.i386-freebsd category Package -revision 70276 +revision 73792 shortdesc i386-freebsd files of metafont binfiles arch=i386-freebsd size=229 bin/i386-freebsd/inimf @@ -197619,34 +199353,34 @@ binfiles arch=i386-freebsd size=229 name metafont.i386-linux category Package -revision 70276 +revision 73792 shortdesc i386-linux files of metafont -binfiles arch=i386-linux size=192 +binfiles arch=i386-linux size=211 bin/i386-linux/inimf bin/i386-linux/mf bin/i386-linux/mf-nowin name metafont.i386-netbsd category Package -revision 70286 +revision 73802 shortdesc i386-netbsd files of metafont -binfiles arch=i386-netbsd size=204 +binfiles arch=i386-netbsd size=206 bin/i386-netbsd/inimf bin/i386-netbsd/mf bin/i386-netbsd/mf-nowin name metafont.i386-solaris category Package -revision 70276 +revision 73792 shortdesc i386-solaris files of metafont -binfiles arch=i386-solaris size=174 +binfiles arch=i386-solaris size=176 bin/i386-solaris/inimf bin/i386-solaris/mf bin/i386-solaris/mf-nowin name metafont.universal-darwin category Package -revision 70274 +revision 73806 shortdesc universal-darwin files of metafont binfiles arch=universal-darwin size=567 bin/universal-darwin/inimf @@ -197655,7 +199389,7 @@ binfiles arch=universal-darwin size=567 name metafont.windows category Package -revision 70576 +revision 73796 shortdesc windows files of metafont binfiles arch=windows size=161 bin/windows/inimf.exe @@ -197664,45 +199398,45 @@ binfiles arch=windows size=161 name metafont.x86_64-cygwin category Package -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of metafont -binfiles arch=x86_64-cygwin size=186 +binfiles arch=x86_64-cygwin size=187 bin/x86_64-cygwin/inimf bin/x86_64-cygwin/mf-nowin.exe bin/x86_64-cygwin/mf.exe name metafont.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of metafont -binfiles arch=x86_64-darwinlegacy size=167 +binfiles arch=x86_64-darwinlegacy size=169 bin/x86_64-darwinlegacy/inimf bin/x86_64-darwinlegacy/mf bin/x86_64-darwinlegacy/mf-nowin name metafont.x86_64-linux category Package -revision 70276 +revision 73777 shortdesc x86_64-linux files of metafont -binfiles arch=x86_64-linux size=176 +binfiles arch=x86_64-linux size=220 bin/x86_64-linux/inimf bin/x86_64-linux/mf bin/x86_64-linux/mf-nowin name metafont.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of metafont -binfiles arch=x86_64-linuxmusl size=188 +binfiles arch=x86_64-linuxmusl size=190 bin/x86_64-linuxmusl/inimf bin/x86_64-linuxmusl/mf bin/x86_64-linuxmusl/mf-nowin name metafont.x86_64-solaris category Package -revision 70276 +revision 73792 shortdesc x86_64-solaris files of metafont -binfiles arch=x86_64-solaris size=198 +binfiles arch=x86_64-solaris size=200 bin/x86_64-solaris/inimf bin/x86_64-solaris/mf bin/x86_64-solaris/mf-nowin @@ -197762,7 +199496,7 @@ catalogue-version 0.12 name metalogox category Package -revision 70491 +revision 73571 shortdesc Adjust TeX logos, with font detection longdesc This package extends the metalogo package to automatically longdesc adjust the appearance of the logos TeX, LaTeX, LaTeX2e, @@ -197770,10 +199504,10 @@ 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 also supports the hologo and hvlogos packages. -docfiles size=147 +docfiles size=150 texmf-dist/doc/latex/metalogox/README.txt details="Readme" texmf-dist/doc/latex/metalogox/metalogox.pdf details="Package documentation" -srcfiles size=13 +srcfiles size=14 texmf-dist/source/latex/metalogox/metalogox.dtx texmf-dist/source/latex/metalogox/metalogox.ins runfiles size=8 @@ -197783,7 +199517,7 @@ catalogue-contact-repository https://github.com/bdtc/metalogox catalogue-ctan /macros/latex/contrib/metalogox catalogue-license lppl1.3 catalogue-topics logo -catalogue-version 1.06 +catalogue-version 1.07 name metanorma category Package @@ -197884,7 +199618,7 @@ catalogue-version 0.91 name metapost category Package -revision 70041 +revision 73850 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 @@ -198111,9 +199845,9 @@ catalogue-topics demo-code name metapost.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of metapost -binfiles arch=aarch64-linux size=564 +binfiles arch=aarch64-linux size=567 bin/aarch64-linux/dvitomp bin/aarch64-linux/mfplain bin/aarch64-linux/mpost @@ -198121,9 +199855,9 @@ binfiles arch=aarch64-linux size=564 name metapost.amd64-freebsd category Package -revision 70276 +revision 73792 shortdesc amd64-freebsd files of metapost -binfiles arch=amd64-freebsd size=1318 +binfiles arch=amd64-freebsd size=1315 bin/amd64-freebsd/dvitomp bin/amd64-freebsd/mfplain bin/amd64-freebsd/mpost @@ -198131,9 +199865,9 @@ binfiles arch=amd64-freebsd size=1318 name metapost.amd64-netbsd category Package -revision 70286 +revision 73802 shortdesc amd64-netbsd files of metapost -binfiles arch=amd64-netbsd size=1322 +binfiles arch=amd64-netbsd size=1327 bin/amd64-netbsd/dvitomp bin/amd64-netbsd/mfplain bin/amd64-netbsd/mpost @@ -198141,9 +199875,9 @@ binfiles arch=amd64-netbsd size=1322 name metapost.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of metapost -binfiles arch=armhf-linux size=489 +binfiles arch=armhf-linux size=382 bin/armhf-linux/dvitomp bin/armhf-linux/mfplain bin/armhf-linux/mpost @@ -198151,9 +199885,9 @@ binfiles arch=armhf-linux size=489 name metapost.i386-freebsd category Package -revision 70276 +revision 73792 shortdesc i386-freebsd files of metapost -binfiles arch=i386-freebsd size=1318 +binfiles arch=i386-freebsd size=1315 bin/i386-freebsd/dvitomp bin/i386-freebsd/mfplain bin/i386-freebsd/mpost @@ -198161,9 +199895,9 @@ binfiles arch=i386-freebsd size=1318 name metapost.i386-linux category Package -revision 70276 +revision 73792 shortdesc i386-linux files of metapost -binfiles arch=i386-linux size=692 +binfiles arch=i386-linux size=719 bin/i386-linux/dvitomp bin/i386-linux/mfplain bin/i386-linux/mpost @@ -198171,9 +199905,9 @@ binfiles arch=i386-linux size=692 name metapost.i386-netbsd category Package -revision 70286 +revision 73802 shortdesc i386-netbsd files of metapost -binfiles arch=i386-netbsd size=1167 +binfiles arch=i386-netbsd size=1169 bin/i386-netbsd/dvitomp bin/i386-netbsd/mfplain bin/i386-netbsd/mpost @@ -198181,9 +199915,9 @@ binfiles arch=i386-netbsd size=1167 name metapost.i386-solaris category Package -revision 70276 +revision 73792 shortdesc i386-solaris files of metapost -binfiles arch=i386-solaris size=576 +binfiles arch=i386-solaris size=582 bin/i386-solaris/dvitomp bin/i386-solaris/mfplain bin/i386-solaris/mpost @@ -198191,9 +199925,9 @@ binfiles arch=i386-solaris size=576 name metapost.universal-darwin category Package -revision 70274 +revision 73806 shortdesc universal-darwin files of metapost -binfiles arch=universal-darwin size=1234 +binfiles arch=universal-darwin size=1238 bin/universal-darwin/dvitomp bin/universal-darwin/mfplain bin/universal-darwin/mpost @@ -198201,9 +199935,9 @@ binfiles arch=universal-darwin size=1234 name metapost.windows category Package -revision 70269 +revision 73796 shortdesc windows files of metapost -binfiles arch=windows size=642 +binfiles arch=windows size=643 bin/windows/dvitomp.exe bin/windows/mfplain.exe bin/windows/mpost.dll @@ -198212,9 +199946,9 @@ binfiles arch=windows size=642 name metapost.x86_64-cygwin category Package -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of metapost -binfiles arch=x86_64-cygwin size=596 +binfiles arch=x86_64-cygwin size=593 bin/x86_64-cygwin/dvitomp bin/x86_64-cygwin/mfplain bin/x86_64-cygwin/mpost.exe @@ -198222,7 +199956,7 @@ binfiles arch=x86_64-cygwin size=596 name metapost.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of metapost binfiles arch=x86_64-darwinlegacy size=541 bin/x86_64-darwinlegacy/dvitomp @@ -198232,9 +199966,9 @@ binfiles arch=x86_64-darwinlegacy size=541 name metapost.x86_64-linux category Package -revision 70276 +revision 73777 shortdesc x86_64-linux files of metapost -binfiles arch=x86_64-linux size=603 +binfiles arch=x86_64-linux size=614 bin/x86_64-linux/dvitomp bin/x86_64-linux/mfplain bin/x86_64-linux/mpost @@ -198242,9 +199976,9 @@ binfiles arch=x86_64-linux size=603 name metapost.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of metapost -binfiles arch=x86_64-linuxmusl size=632 +binfiles arch=x86_64-linuxmusl size=629 bin/x86_64-linuxmusl/dvitomp bin/x86_64-linuxmusl/mfplain bin/x86_64-linuxmusl/mpost @@ -198252,9 +199986,9 @@ binfiles arch=x86_64-linuxmusl size=632 name metapost.x86_64-solaris category Package -revision 70276 +revision 73792 shortdesc x86_64-solaris files of metapost -binfiles arch=x86_64-solaris size=668 +binfiles arch=x86_64-solaris size=674 bin/x86_64-solaris/dvitomp bin/x86_64-solaris/mfplain bin/x86_64-solaris/mpost @@ -198756,7 +200490,7 @@ binfiles arch=x86_64-solaris size=3 name mf2pt1 category Package -revision 71731 +revision 71883 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 @@ -198780,7 +200514,7 @@ catalogue-also metatype1 catalogue-ctan /support/mf2pt1 catalogue-license lppl1.3c catalogue-topics font-proc -catalogue-version 2.7 +catalogue-version 2.8 name mf2pt1.aarch64-linux category Package @@ -198887,6 +200621,390 @@ shortdesc x86_64-solaris files of mf2pt1 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/mf2pt1 +name mfb-oldstyle +category Package +revision 71982 +shortdesc MFB Oldstyle serif fonts +longdesc Oldstyle is a serif font family designed for body text. This +longdesc typeface was originally designed by Morris Fuller Benton and +longdesc released by American Type Founders in 1909 as Century Oldstyle. +longdesc The family contains three fonts: regular, italic and bold. +longdesc (Currently, no bold italic font is provided.) Superior and +longdesc inferior figures are available for all fonts in the family. +longdesc Small capitals and old-style figures are available only for the +longdesc regular font. +execute addMap MFBOldstyle.map +docfiles size=509 + texmf-dist/doc/fonts/mfb-oldstyle/COPYING + texmf-dist/doc/fonts/mfb-oldstyle/MFBOldStyle-CharacterMap.pdf + texmf-dist/doc/fonts/mfb-oldstyle/README details="Readme" + texmf-dist/doc/fonts/mfb-oldstyle/mfb-oldstyle-doc.pdf details="Package documentation" + texmf-dist/doc/fonts/mfb-oldstyle/mfb-oldstyle-doc.tex +runfiles size=971 + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_2k4lec.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_2r5ytu.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_5lrov3.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_6mghgo.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_73nks5.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_777sfz.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_7nlkbe.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_7q6l4s.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_ahcimn.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_bgdhbr.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_cgi3xl.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_cwrjrk.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_e5y2zy.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_fy4cgk.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_hi6bgi.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_ikcbof.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_in623c.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_jaulpu.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_kod5rh.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_kosxnn.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_nduqlz.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_nrcrlb.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_oyw33c.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_q4fonx.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_qmdrba.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_radqz3.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_rxfd27.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_s7hq75.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_sbbrr6.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_traljt.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_uyp43f.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_wvbwpg.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_x5sf3h.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_xkajg4.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_xqrvjh.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_xx37di.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_y2ngde.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_y57hi6.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_ybcvk5.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_yjlipp.enc + texmf-dist/fonts/enc/dvips/mfb-oldstyle/a_ztec7x.enc + texmf-dist/fonts/map/dvips/mfb-oldstyle/MFBOldstyle.map + texmf-dist/fonts/opentype/public/mfb-oldstyle/MFBOldstyle-Bold.otf + texmf-dist/fonts/opentype/public/mfb-oldstyle/MFBOldstyle-Italic.otf + texmf-dist/fonts/opentype/public/mfb-oldstyle/MFBOldstyle-Regular.otf + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-inf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-inf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-inf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-inf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-inf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-inf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-inf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-lf-ts1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-numr-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-numr-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-numr-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-numr-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-numr-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-numr-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-numr-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-sup-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-sup-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-sup-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-sup-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-sup-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-sup-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-sup-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-ts1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-inf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-inf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-inf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-inf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-inf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-inf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-inf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-lf-ts1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-numr-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-numr-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-numr-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-numr-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-numr-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-numr-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-numr-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-sup-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-sup-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-sup-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-sup-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-sup-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-sup-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-sup-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-ts1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-inf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-inf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-inf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-inf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-inf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-inf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-inf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-lf-ts1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-numr-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-numr-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-numr-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-numr-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-numr-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-numr-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-numr-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-osf-ts1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-sup-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-sup-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-sup-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-sup-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-sup-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-sup-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-sup-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-ts1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-ly1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-ly1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-ot1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-ot1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-t1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-t1.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-t5--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-t5.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-ts1--base.tfm + texmf-dist/fonts/tfm/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-ts1.tfm + texmf-dist/fonts/type1/public/mfb-oldstyle/MFBOldstyle-Bold.pfb + texmf-dist/fonts/type1/public/mfb-oldstyle/MFBOldstyle-Italic.pfb + texmf-dist/fonts/type1/public/mfb-oldstyle/MFBOldstyle-Regular.pfb + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-dnom-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-inf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-inf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-inf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-lf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-lf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-lf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-lf-ts1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-numr-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-numr-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-numr-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-sup-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-sup-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-sup-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Bold-tlf-ts1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-dnom-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-inf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-inf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-inf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-lf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-lf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-lf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-lf-ts1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-numr-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-numr-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-numr-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-sup-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-sup-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-sup-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Italic-tlf-ts1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-dnom-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-inf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-inf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-inf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-ot1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-sc-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-lf-ts1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-numr-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-numr-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-numr-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-ot1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-sc-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-osf-ts1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-sup-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-sup-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-sup-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-ot1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-sc-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tlf-ts1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-ly1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-ot1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-sc-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-t1.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-t5.vf + texmf-dist/fonts/vf/public/mfb-oldstyle/MFBOldstyle-Regular-tosf-ts1.vf + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-Dnom.fd + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-Inf.fd + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-LF.fd + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-Numr.fd + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-OsF.fd + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-Sup.fd + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-TLF.fd + texmf-dist/tex/latex/mfb-oldstyle/LY1MFBOldstyle-TOsF.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-Dnom.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-Inf.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-LF.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-Numr.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-OsF.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-Sup.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-TLF.fd + texmf-dist/tex/latex/mfb-oldstyle/OT1MFBOldstyle-TOsF.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-Dnom.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-Inf.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-LF.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-Numr.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-OsF.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-Sup.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-TLF.fd + texmf-dist/tex/latex/mfb-oldstyle/T1MFBOldstyle-TOsF.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-Dnom.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-Inf.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-LF.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-Numr.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-OsF.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-Sup.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-TLF.fd + texmf-dist/tex/latex/mfb-oldstyle/T5MFBOldstyle-TOsF.fd + texmf-dist/tex/latex/mfb-oldstyle/TS1MFBOldstyle-LF.fd + texmf-dist/tex/latex/mfb-oldstyle/TS1MFBOldstyle-OsF.fd + texmf-dist/tex/latex/mfb-oldstyle/TS1MFBOldstyle-TLF.fd + texmf-dist/tex/latex/mfb-oldstyle/TS1MFBOldstyle-TOsF.fd + texmf-dist/tex/latex/mfb-oldstyle/mfb-oldstyle.sty +catalogue-contact-bugs https://github.com/dbenjaminmiller/mfb-oldstyle/issues +catalogue-contact-repository https://github.com/dbenjaminmiller/mfb-oldstyle +catalogue-ctan /fonts/mfb-oldstyle +catalogue-license cc0 +catalogue-topics font font-body font-otf font-proportional font-serif font-supp font-type1 +catalogue-version 1.0 + name mfirstuc category Package revision 64743 @@ -198984,7 +201102,7 @@ catalogue-version 1.002 name mflua category TLCore -revision 62774 +revision 73848 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. @@ -198992,6 +201110,9 @@ depend luatex depend metafont depend mflua.ARCH execute AddFormat name=mflua engine=mflua-nowin options="mf.ini" fmttriggers=luatex,metafont mode=disabled +docfiles size=7 + texmf-dist/doc/man/man1/mflua.1 + texmf-dist/doc/man/man1/mflua.man1.pdf runfiles size=48 texmf-dist/metafont/mflua/mflua.ini texmf-dist/metafont/mflua/mfluajit.ini @@ -199004,9 +201125,9 @@ runfiles size=48 name mflua.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of mflua -binfiles arch=aarch64-linux size=861 +binfiles arch=aarch64-linux size=867 bin/aarch64-linux/mflua bin/aarch64-linux/mflua-nowin bin/aarch64-linux/mfluajit @@ -199014,9 +201135,9 @@ binfiles arch=aarch64-linux size=861 name mflua.amd64-freebsd category TLCore -revision 71441 +revision 73909 shortdesc amd64-freebsd files of mflua -binfiles arch=amd64-freebsd size=1080 +binfiles arch=amd64-freebsd size=1105 bin/amd64-freebsd/mflua bin/amd64-freebsd/mflua-nowin bin/amd64-freebsd/mfluajit @@ -199024,9 +201145,9 @@ binfiles arch=amd64-freebsd size=1080 name mflua.amd64-netbsd category TLCore -revision 70286 +revision 73914 shortdesc amd64-netbsd files of mflua -binfiles arch=amd64-netbsd size=1074 +binfiles arch=amd64-netbsd size=1102 bin/amd64-netbsd/mflua bin/amd64-netbsd/mflua-nowin bin/amd64-netbsd/mfluajit @@ -199034,9 +201155,9 @@ binfiles arch=amd64-netbsd size=1074 name mflua.armhf-linux category TLCore -revision 70489 +revision 73915 shortdesc armhf-linux files of mflua -binfiles arch=armhf-linux size=665 +binfiles arch=armhf-linux size=526 bin/armhf-linux/mflua bin/armhf-linux/mflua-nowin bin/armhf-linux/mfluajit @@ -199044,9 +201165,9 @@ binfiles arch=armhf-linux size=665 name mflua.i386-freebsd category TLCore -revision 71441 +revision 73909 shortdesc i386-freebsd files of mflua -binfiles arch=i386-freebsd size=1080 +binfiles arch=i386-freebsd size=1105 bin/i386-freebsd/mflua bin/i386-freebsd/mflua-nowin bin/i386-freebsd/mfluajit @@ -199054,9 +201175,9 @@ binfiles arch=i386-freebsd size=1080 name mflua.i386-linux category TLCore -revision 70276 +revision 73909 shortdesc i386-linux files of mflua -binfiles arch=i386-linux size=868 +binfiles arch=i386-linux size=942 bin/i386-linux/mflua bin/i386-linux/mflua-nowin bin/i386-linux/mfluajit @@ -199064,9 +201185,9 @@ binfiles arch=i386-linux size=868 name mflua.i386-netbsd category TLCore -revision 71441 +revision 73914 shortdesc i386-netbsd files of mflua -binfiles arch=i386-netbsd size=966 +binfiles arch=i386-netbsd size=992 bin/i386-netbsd/mflua bin/i386-netbsd/mflua-nowin bin/i386-netbsd/mfluajit @@ -199074,17 +201195,17 @@ binfiles arch=i386-netbsd size=966 name mflua.i386-solaris category TLCore -revision 71441 +revision 73792 shortdesc i386-solaris files of mflua -binfiles arch=i386-solaris size=330 +binfiles arch=i386-solaris size=334 bin/i386-solaris/mflua bin/i386-solaris/mflua-nowin name mflua.universal-darwin category TLCore -revision 70274 +revision 73942 shortdesc universal-darwin files of mflua -binfiles arch=universal-darwin size=1628 +binfiles arch=universal-darwin size=1709 bin/universal-darwin/mflua bin/universal-darwin/mflua-nowin bin/universal-darwin/mfluajit @@ -199092,9 +201213,9 @@ binfiles arch=universal-darwin size=1628 name mflua.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of mflua -binfiles arch=windows size=1798 +binfiles arch=windows size=1864 bin/windows/mflua-nowin.exe bin/windows/mflua.exe bin/windows/mfluajit-nowin.exe @@ -199102,9 +201223,9 @@ binfiles arch=windows size=1798 name mflua.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of mflua -binfiles arch=x86_64-cygwin size=614 +binfiles arch=x86_64-cygwin size=612 bin/x86_64-cygwin/mflua-nowin bin/x86_64-cygwin/mflua.exe bin/x86_64-cygwin/mfluajit-nowin @@ -199112,9 +201233,9 @@ binfiles arch=x86_64-cygwin size=614 name mflua.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of mflua -binfiles arch=x86_64-darwinlegacy size=697 +binfiles arch=x86_64-darwinlegacy size=699 bin/x86_64-darwinlegacy/mflua bin/x86_64-darwinlegacy/mflua-nowin bin/x86_64-darwinlegacy/mfluajit @@ -199122,9 +201243,9 @@ binfiles arch=x86_64-darwinlegacy size=697 name mflua.x86_64-linux category TLCore -revision 70276 +revision 73909 shortdesc x86_64-linux files of mflua -binfiles arch=x86_64-linux size=799 +binfiles arch=x86_64-linux size=855 bin/x86_64-linux/mflua bin/x86_64-linux/mflua-nowin bin/x86_64-linux/mfluajit @@ -199132,9 +201253,9 @@ binfiles arch=x86_64-linux size=799 name mflua.x86_64-linuxmusl category TLCore -revision 71441 +revision 73909 shortdesc x86_64-linuxmusl files of mflua -binfiles arch=x86_64-linuxmusl size=865 +binfiles arch=x86_64-linuxmusl size=873 bin/x86_64-linuxmusl/mflua bin/x86_64-linuxmusl/mflua-nowin bin/x86_64-linuxmusl/mfluajit @@ -199142,9 +201263,9 @@ binfiles arch=x86_64-linuxmusl size=865 name mflua.x86_64-solaris category TLCore -revision 71441 +revision 73792 shortdesc x86_64-solaris files of mflua -binfiles arch=x86_64-solaris size=394 +binfiles arch=x86_64-solaris size=398 bin/x86_64-solaris/mflua bin/x86_64-solaris/mflua-nowin @@ -199285,12 +201406,12 @@ catalogue-version 1.0a name mfware category TLCore -revision 70015 +revision 73848 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 -docfiles size=42 +docfiles size=45 texmf-dist/doc/man/man1/gftodvi.1 texmf-dist/doc/man/man1/gftodvi.man1.pdf texmf-dist/doc/man/man1/gftopk.1 @@ -199317,9 +201438,9 @@ catalogue-topics collection name mfware.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of mfware -binfiles arch=aarch64-linux size=158 +binfiles arch=aarch64-linux size=159 bin/aarch64-linux/gftodvi bin/aarch64-linux/gftopk bin/aarch64-linux/gftype @@ -199329,7 +201450,7 @@ binfiles arch=aarch64-linux size=158 name mfware.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of mfware binfiles arch=amd64-freebsd size=198 bin/amd64-freebsd/gftodvi @@ -199341,7 +201462,7 @@ binfiles arch=amd64-freebsd size=198 name mfware.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of mfware binfiles arch=amd64-netbsd size=192 bin/amd64-netbsd/gftodvi @@ -199353,9 +201474,9 @@ binfiles arch=amd64-netbsd size=192 name mfware.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of mfware -binfiles arch=armhf-linux size=130 +binfiles arch=armhf-linux size=110 bin/armhf-linux/gftodvi bin/armhf-linux/gftopk bin/armhf-linux/gftype @@ -199365,7 +201486,7 @@ binfiles arch=armhf-linux size=130 name mfware.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of mfware binfiles arch=i386-freebsd size=198 bin/i386-freebsd/gftodvi @@ -199377,9 +201498,9 @@ binfiles arch=i386-freebsd size=198 name mfware.i386-linux category TLCore -revision 70571 +revision 73792 shortdesc i386-linux files of mfware -binfiles arch=i386-linux size=171 +binfiles arch=i386-linux size=184 bin/i386-linux/gftodvi bin/i386-linux/gftopk bin/i386-linux/gftype @@ -199389,7 +201510,7 @@ binfiles arch=i386-linux size=171 name mfware.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of mfware binfiles arch=i386-netbsd size=178 bin/i386-netbsd/gftodvi @@ -199401,9 +201522,9 @@ binfiles arch=i386-netbsd size=178 name mfware.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of mfware -binfiles arch=i386-solaris size=154 +binfiles arch=i386-solaris size=158 bin/i386-solaris/gftodvi bin/i386-solaris/gftopk bin/i386-solaris/gftype @@ -199413,7 +201534,7 @@ binfiles arch=i386-solaris size=154 name mfware.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of mfware binfiles arch=universal-darwin size=439 bin/universal-darwin/gftodvi @@ -199425,7 +201546,7 @@ binfiles arch=universal-darwin size=439 name mfware.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of mfware binfiles arch=windows size=49 bin/windows/gftodvi.exe @@ -199437,7 +201558,7 @@ binfiles arch=windows size=49 name mfware.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of mfware binfiles arch=x86_64-cygwin size=50 bin/x86_64-cygwin/gftodvi.exe @@ -199449,9 +201570,9 @@ binfiles arch=x86_64-cygwin size=50 name mfware.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of mfware -binfiles arch=x86_64-darwinlegacy size=153 +binfiles arch=x86_64-darwinlegacy size=154 bin/x86_64-darwinlegacy/gftodvi bin/x86_64-darwinlegacy/gftopk bin/x86_64-darwinlegacy/gftype @@ -199461,9 +201582,9 @@ binfiles arch=x86_64-darwinlegacy size=153 name mfware.x86_64-linux category TLCore -revision 70571 +revision 73777 shortdesc x86_64-linux files of mfware -binfiles arch=x86_64-linux size=155 +binfiles arch=x86_64-linux size=158 bin/x86_64-linux/gftodvi bin/x86_64-linux/gftopk bin/x86_64-linux/gftype @@ -199473,9 +201594,9 @@ binfiles arch=x86_64-linux size=155 name mfware.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of mfware -binfiles arch=x86_64-linuxmusl size=163 +binfiles arch=x86_64-linuxmusl size=167 bin/x86_64-linuxmusl/gftodvi bin/x86_64-linuxmusl/gftopk bin/x86_64-linuxmusl/gftype @@ -199485,9 +201606,9 @@ binfiles arch=x86_64-linuxmusl size=163 name mfware.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of mfware -binfiles arch=x86_64-solaris size=181 +binfiles arch=x86_64-solaris size=183 bin/x86_64-solaris/gftodvi bin/x86_64-solaris/gftopk bin/x86_64-solaris/gftype @@ -199637,13 +201758,13 @@ catalogue-version 0.6 name miama category Package -revision 54512 +revision 73481 shortdesc The Miama Nueva handwriting font with LaTeX support longdesc Miama Nueva is a handwriting / script font with over 1300 longdesc glyphs that supports latin, cyrillic, and greek. It comes longdesc complete with LaTeX support. execute addMap miama.map -docfiles size=96 +docfiles size=158 texmf-dist/doc/fonts/miama/README details="Readme" texmf-dist/doc/fonts/miama/miama.pdf details="Package documentation" srcfiles size=7 @@ -199685,11 +201806,11 @@ runfiles size=323 catalogue-ctan /fonts/miama catalogue-license ofl lppl1.3 catalogue-topics font font-calligraphic font-cyrillic font-greek font-multilingual font-otf font-type1 font-t1enc font-supp -catalogue-version 1.1 +catalogue-version 1.2 name microtype category Package -revision 70805 +revision 73928 shortdesc Subliminal refinements towards typographical perfection longdesc The package provides a LaTeX interface to the micro-typographic longdesc extensions that were introduced by pdfTeX and have since also @@ -199707,22 +201828,22 @@ longdesc The package will by default enable protrusion and expansion if longdesc they can safely be assumed to work. Disabling ligatures longdesc requires pdfTeX or LuaTeX, while the adjustment of interword longdesc spacing and of kerning only works with pdfTeX. Letterspacing is -longdesc available with pdfTeX or LuaTeX. The alternative package +longdesc available with pdfTeX, LuaTeX or XeTeX. 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. depend etoolbox -docfiles size=689 +docfiles size=698 texmf-dist/doc/latex/microtype/DEPENDS.txt texmf-dist/doc/latex/microtype/README.md details="Package README" texmf-dist/doc/latex/microtype/microtype-code.pdf details="Implementation details" texmf-dist/doc/latex/microtype/microtype.pdf details="User manual" texmf-dist/doc/latex/microtype/test-microtype.tex -srcfiles size=212 +srcfiles size=216 texmf-dist/source/latex/microtype/microtype-utf.dtx texmf-dist/source/latex/microtype/microtype.dtx texmf-dist/source/latex/microtype/microtype.ins -runfiles size=128 +runfiles size=134 texmf-dist/tex/latex/microtype/letterspace.sty texmf-dist/tex/latex/microtype/microtype-luatex.def texmf-dist/tex/latex/microtype/microtype-pdftex.def @@ -199758,7 +201879,7 @@ 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 3.1b +catalogue-version 3.2a name microtype-de category Package @@ -200013,7 +202134,7 @@ catalogue-version 0.96 name minim category Package -revision 70885 +revision 73816 shortdesc A modern plain format for the LuaTeX engine longdesc This is a modern plain format for the LuaTeX engine, adding longdesc improved low-level support for many LuaTeX extensions and newer @@ -200026,20 +202147,18 @@ 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. -docfiles size=107 +docfiles size=109 texmf-dist/doc/luatex/minim/EUPL-1.2-EN.txt texmf-dist/doc/luatex/minim/README details="Readme" texmf-dist/doc/luatex/minim/minim-alloc.doc texmf-dist/doc/luatex/minim/minim.doc texmf-dist/doc/luatex/minim/minim.pdf details="Package documentation" -runfiles size=30 +runfiles size=29 texmf-dist/tex/luatex/minim/minim-alloc.lua texmf-dist/tex/luatex/minim/minim-alloc.tex texmf-dist/tex/luatex/minim/minim-callbacks.lua texmf-dist/tex/luatex/minim/minim-doc.sty texmf-dist/tex/luatex/minim/minim-etex.tex - texmf-dist/tex/luatex/minim/minim-hooks.lua - texmf-dist/tex/luatex/minim/minim-hooks.tex texmf-dist/tex/luatex/minim/minim-lmodern.tex texmf-dist/tex/luatex/minim/minim-pdfresources.lua texmf-dist/tex/luatex/minim/minim-pdfresources.tex @@ -200051,7 +202170,7 @@ catalogue-contact-repository https://gitlab.com/renkema/minim catalogue-ctan /macros/luatex/generic/minim catalogue-license eupl catalogue-topics luatex format -catalogue-version 2024/1.6 +catalogue-version 2025/1.7 name minim-hatching category Package @@ -200075,18 +202194,19 @@ catalogue-version 2022/1.1 name minim-math category Package -revision 70885 +revision 73816 shortdesc Extensive maths for LuaTeX 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. -docfiles size=37 +docfiles size=39 texmf-dist/doc/luatex/minim-math/EUPL-1.2-EN.txt texmf-dist/doc/luatex/minim-math/README details="Readme" texmf-dist/doc/luatex/minim-math/minim-math.doc texmf-dist/doc/luatex/minim-math/minim-math.pdf details="Package documentation" + texmf-dist/doc/luatex/minim-math/minim-math.sty runfiles size=93 texmf-dist/tex/luatex/minim-math/minim-math-table.lua texmf-dist/tex/luatex/minim-math/minim-math.lua @@ -200096,11 +202216,11 @@ catalogue-contact-repository https://gitlab.com/renkema/minim catalogue-ctan /macros/luatex/generic/minim-math catalogue-license eupl catalogue-topics luatex maths -catalogue-version 2024/1.4 +catalogue-version 2025/1.5 name minim-mp category Package -revision 70885 +revision 73816 shortdesc Low-level mplib integration for LuaTeX longdesc This package offers low-level mplib integration for LuaLaTeX longdesc and plain LuaTeX. It is designed with the purpose of being easy @@ -200109,7 +202229,7 @@ longdesc is supported, as well as running TeX or lua code from within longdesc MetaPost. With the included minim-mp and minim-lamp format longdesc files, you can even use Lua(La)TeX as a stand-alone MetaPost longdesc compiler. -docfiles size=45 +docfiles size=48 texmf-dist/doc/luatex/minim-mp/EUPL-1.2-EN.txt texmf-dist/doc/luatex/minim-mp/README details="Readme" texmf-dist/doc/luatex/minim-mp/minim-mp.doc @@ -200128,11 +202248,11 @@ catalogue-contact-repository https://gitlab.com/renkema/minim catalogue-ctan /macros/luatex/generic/minim-mp catalogue-license eupl catalogue-topics luatex mp-supp mp-use -catalogue-version 2024/1.6 +catalogue-version 2025/1.7 name minim-pdf category Package -revision 70885 +revision 73816 shortdesc Low-level PDF integration for LuaTeX longdesc This package adds low-level support to plain LuaTeX for marking longdesc up the structure of a PDF document. The implementation is @@ -200143,7 +202263,7 @@ docfiles size=49 texmf-dist/doc/luatex/minim-pdf/README details="Readme" texmf-dist/doc/luatex/minim-pdf/minim-pdf.doc texmf-dist/doc/luatex/minim-pdf/minim-pdf.pdf details="Package documentation" -runfiles size=20 +runfiles size=19 texmf-dist/tex/luatex/minim-pdf/minim-languagecodes.lua texmf-dist/tex/luatex/minim-pdf/minim-pdf.lua texmf-dist/tex/luatex/minim-pdf/minim-pdf.tex @@ -200152,11 +202272,11 @@ catalogue-contact-repository https://gitlab.com/renkema/minim catalogue-ctan /macros/luatex/generic/minim-pdf catalogue-license eupl catalogue-topics luatex tagged-pdf pdf-feat -catalogue-version 2024/1.5 +catalogue-version 2025/1.6 name minim-xmp category Package -revision 70885 +revision 73816 shortdesc Embed XMP metadata in PDF with LuaTeX longdesc This package enables the inclusion of XMP (eXtensible Metadata longdesc Platform) data in the pdf output generated by (plain) LuaTeX. @@ -200174,7 +202294,7 @@ catalogue-contact-repository https://gitlab.com/renkema/minim catalogue-ctan /macros/luatex/generic/minim-xmp catalogue-license eupl catalogue-topics luatex pdf-feat -catalogue-version 2024/1.3 +catalogue-version 2025/1.4 name minimalist category Package @@ -200639,7 +202759,7 @@ catalogue-version 1.1 name minted category Package -revision 70838 +revision 73956 shortdesc Highlighted source code for LaTeX longdesc The package that facilitates expressive syntax highlighting in longdesc LaTeX using the powerful Pygments library. The package also @@ -200648,35 +202768,144 @@ longdesc output using fancyvrb. depend catchfile depend etoolbox depend float -depend framed depend fvextra -depend graphics -depend ifplatform -depend kvoptions -depend lineno +depend latex2pydata +depend minted.ARCH depend newfloat depend pdftexcmds +depend pgf +depend pgfopts depend tools -depend upquote depend xcolor -depend xstring -docfiles size=216 +docfiles size=140 + texmf-dist/doc/latex/minted/CHANGELOG_LATEXMINTED_PYTHON_PACKAGE.md + texmf-dist/doc/latex/minted/CHANGELOG_MINTED_LATEX_PACKAGE.md texmf-dist/doc/latex/minted/DEPENDS.txt texmf-dist/doc/latex/minted/README details="Readme" texmf-dist/doc/latex/minted/minted.pdf details="Package documentation" -srcfiles size=54 - texmf-dist/source/latex/minted/Makefile +srcfiles size=52 texmf-dist/source/latex/minted/minted.dtx texmf-dist/source/latex/minted/minted.ins -runfiles size=16 +runfiles size=359 + texmf-dist/scripts/minted/latex2pydata-0.4.1-py3-none-any.whl + texmf-dist/scripts/minted/latexminted-0.4.0-py3-none-any.whl + texmf-dist/scripts/minted/latexminted.py + texmf-dist/scripts/minted/latexrestricted-0.6.2-py3-none-any.whl + texmf-dist/scripts/minted/pygments-2.19.1-py3-none-any.whl texmf-dist/tex/latex/minted/minted.sty texmf-dist/tex/latex/minted/minted1.sty + texmf-dist/tex/latex/minted/minted2.sty catalogue-also texments verbments catalogue-contact-repository https://github.com/gpoore/minted catalogue-ctan /macros/latex/contrib/minted -catalogue-license lppl1.3 bsd3 +catalogue-license lppl1.3c lppl1.3 bsd3 catalogue-topics listing verbatim synt-hlt -catalogue-version 2.9 +catalogue-version 3.5.1 + +name minted.aarch64-linux +category Package +revision 72375 +shortdesc aarch64-linux files of minted +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/latexminted + +name minted.amd64-freebsd +category Package +revision 72375 +shortdesc amd64-freebsd files of minted +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/latexminted + +name minted.amd64-netbsd +category Package +revision 72375 +shortdesc amd64-netbsd files of minted +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/latexminted + +name minted.armhf-linux +category Package +revision 72375 +shortdesc armhf-linux files of minted +binfiles arch=armhf-linux size=1 + bin/armhf-linux/latexminted + +name minted.i386-freebsd +category Package +revision 72375 +shortdesc i386-freebsd files of minted +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/latexminted + +name minted.i386-linux +category Package +revision 72375 +shortdesc i386-linux files of minted +binfiles arch=i386-linux size=1 + bin/i386-linux/latexminted + +name minted.i386-netbsd +category Package +revision 72375 +shortdesc i386-netbsd files of minted +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/latexminted + +name minted.i386-solaris +category Package +revision 72375 +shortdesc i386-solaris files of minted +binfiles arch=i386-solaris size=1 + bin/i386-solaris/latexminted + +name minted.universal-darwin +category Package +revision 72375 +shortdesc universal-darwin files of minted +binfiles arch=universal-darwin size=1 + bin/universal-darwin/latexminted + +name minted.windows +category Package +revision 72375 +shortdesc windows files of minted +binfiles arch=windows size=2 + bin/windows/latexminted.exe + +name minted.x86_64-cygwin +category Package +revision 72375 +shortdesc x86_64-cygwin files of minted +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/latexminted + +name minted.x86_64-darwinlegacy +category Package +revision 72375 +shortdesc x86_64-darwinlegacy files of minted +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/latexminted + +name minted.x86_64-linux +category Package +revision 72375 +shortdesc x86_64-linux files of minted +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/latexminted + +name minted.x86_64-linuxmusl +category Package +revision 72375 +shortdesc x86_64-linuxmusl files of minted +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/latexminted + +name minted.x86_64-solaris +category Package +revision 72375 +shortdesc x86_64-solaris files of minted +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/latexminted name mintspirit category Package @@ -201351,7 +203580,7 @@ catalogue-version 2.0 name mitthesis category Package -revision 71695 +revision 73622 shortdesc A LaTeX template for an MIT thesis longdesc This class provides a LaTeX template for an MIT thesis or longdesc dissertation formatted according to the requirements of the @@ -201367,18 +203596,21 @@ longdesc distributions, ideally 11/2022 or later, but compatible with longdesc distributions back to 2020. This template replaces the older longdesc version of mitthesis.cls, which was first composed in the longdesc 1980s. -docfiles size=1109 +docfiles size=1253 texmf-dist/doc/latex/mitthesis/MIT-Thesis.pdf details="Example of use" texmf-dist/doc/latex/mitthesis/MIT-thesis-template/MIT-Thesis.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/abstract.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/acknowledgments.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/appendixa.tex + texmf-dist/doc/latex/mitthesis/MIT-thesis-template/appendixb.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/biography.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/chapter1.tex + texmf-dist/doc/latex/mitthesis/MIT-thesis-template/committee_members.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-defaultfonts.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-fira-newtxsf.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-heros-stix2.tex - texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-libertine.tex + texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-libertinus.tex + texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-lmodern.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-lucida.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-newtx-sans-text.tex texmf-dist/doc/latex/mitthesis/MIT-thesis-template/fontsets/mitthesis-newtx.tex @@ -201390,23 +203622,24 @@ docfiles size=1109 texmf-dist/doc/latex/mitthesis/README.md details="Readme" texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/No_cc_license.pdf texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/One_author_one_degree.pdf + texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/One_author_one_degree_two_departments.pdf texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/One_author_two_degrees.pdf texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/One_author_two_degrees_from_one_department.pdf texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/Two_authors_one_degree.pdf - texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/Two_authors_one_degree_two_departments.pdf texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/Two_authors_two_degrees.pdf texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/No_cc_license.tex texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/One_author_one_degree.tex + texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/One_author_one_degree_two_departments.tex texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/One_author_two_degrees.tex texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/One_author_two_degrees_from_one_department.tex texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/Two_authors_one_degree.tex - texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/Two_authors_one_degree_two_departments.tex texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/Two_authors_two_degrees.tex texmf-dist/doc/latex/mitthesis/examples/cover_page_samples/latex_sources/cover_compile.sh texmf-dist/doc/latex/mitthesis/examples/font_samples/Defaultfonts.pdf texmf-dist/doc/latex/mitthesis/examples/font_samples/Fira_Newtxsf.pdf texmf-dist/doc/latex/mitthesis/examples/font_samples/Heros-Stix2.pdf - texmf-dist/doc/latex/mitthesis/examples/font_samples/Libertine.pdf + texmf-dist/doc/latex/mitthesis/examples/font_samples/Libertinus.pdf + texmf-dist/doc/latex/mitthesis/examples/font_samples/Lmodern.pdf texmf-dist/doc/latex/mitthesis/examples/font_samples/Lucida.pdf texmf-dist/doc/latex/mitthesis/examples/font_samples/Newtx-sans-text.pdf texmf-dist/doc/latex/mitthesis/examples/font_samples/Newtx.pdf @@ -201416,7 +203649,8 @@ docfiles size=1109 texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Defaultfonts.tex texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Fira_Newtxsf.tex texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Heros-Stix2.tex - texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Libertine.tex + texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Libertinus.tex + texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Lmodern.tex texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Lucida.tex texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Newtx-sans-text.tex texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/Newtx.tex @@ -201427,12 +203661,12 @@ docfiles size=1109 texmf-dist/doc/latex/mitthesis/examples/font_samples/latex_sources/compile-font-samples.sh texmf-dist/doc/latex/mitthesis/mitthesis-doc/mitthesis-doc.pdf details="Package documentation" texmf-dist/doc/latex/mitthesis/mitthesis-doc/mitthesis-doc.tex -runfiles size=12 +runfiles size=13 texmf-dist/tex/latex/mitthesis/mitthesis.cls catalogue-ctan /macros/latex/contrib/mitthesis catalogue-license mit catalogue-topics class dissertation engineering humanities scientific-docs doc-templ expl3 -catalogue-version 1.13 +catalogue-version 1.19 name mkgrkindex category Package @@ -201870,7 +204104,7 @@ catalogue-topics gen-paper humanities name mlacls category Package -revision 67201 +revision 72271 shortdesc LaTeX class for MLA papers longdesc In the United States, secondary and undergraduate students are longdesc generally expected to adhere to the format prescribed by the @@ -201878,13 +204112,13 @@ 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. -docfiles size=1397 +docfiles size=1384 texmf-dist/doc/latex/mlacls/BUGS.md texmf-dist/doc/latex/mlacls/LICENSE texmf-dist/doc/latex/mlacls/README.md details="Readme" texmf-dist/doc/latex/mlacls/mla-example-image.jpg texmf-dist/doc/latex/mlacls/mla-example.bib - texmf-dist/doc/latex/mlacls/mla-example.pdf + texmf-dist/doc/latex/mlacls/mla-example.pdf details="Example of use" texmf-dist/doc/latex/mlacls/mla-example.tex texmf-dist/doc/latex/mlacls/mla.pdf details="Package documentation" srcfiles size=10 @@ -201898,7 +204132,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 1.0 +catalogue-version 1.1 name mlawriter category Package @@ -203373,7 +205607,7 @@ catalogue-version 1.0.1 name moderncv category Package -revision 71767 +revision 71837 shortdesc A modern curriculum vitae class longdesc The class provides facilities for typesetting modern longdesc curriculums vitae, both in a classic and in a casual style. It @@ -203395,12 +205629,11 @@ depend multirow depend tools depend url depend xcolor -docfiles size=83 +docfiles size=82 texmf-dist/doc/latex/moderncv/CHANGELOG texmf-dist/doc/latex/moderncv/KNOWN_BUGS texmf-dist/doc/latex/moderncv/LICENSE.txt texmf-dist/doc/latex/moderncv/README.md details="Readme" - texmf-dist/doc/latex/moderncv/commons/colors.tex texmf-dist/doc/latex/moderncv/manual/moderncv_userguide.pdf details="Package documentation" texmf-dist/doc/latex/moderncv/manual/moderncv_userguide.tex texmf-dist/doc/latex/moderncv/picture.eps @@ -203408,7 +205641,7 @@ docfiles size=83 texmf-dist/doc/latex/moderncv/publications.bib texmf-dist/doc/latex/moderncv/signature.png texmf-dist/doc/latex/moderncv/template.tex -runfiles size=104 +runfiles size=105 texmf-dist/tex/latex/moderncv/moderncv.cls texmf-dist/tex/latex/moderncv/moderncvbodyi.sty texmf-dist/tex/latex/moderncv/moderncvbodyii.sty @@ -203426,6 +205659,7 @@ runfiles size=104 texmf-dist/tex/latex/moderncv/moderncvcolororange.sty texmf-dist/tex/latex/moderncv/moderncvcolorpurple.sty texmf-dist/tex/latex/moderncv/moderncvcolorred.sty + texmf-dist/tex/latex/moderncv/moderncvcolors.tex texmf-dist/tex/latex/moderncv/moderncvcompatibility.sty texmf-dist/tex/latex/moderncv/moderncvdebugtools.sty texmf-dist/tex/latex/moderncv/moderncvfooti.sty @@ -203459,7 +205693,7 @@ catalogue-contact-repository https://github.com/moderncv/moderncv.git catalogue-ctan /macros/latex/contrib/moderncv catalogue-license lppl1.3c catalogue-topics cv class doc-templ -catalogue-version 2.3.1 +catalogue-version 2.4.1 name modernposter category Package @@ -203682,24 +205916,29 @@ catalogue-version 1.0 name moloch category Package -revision 71763 -shortdesc Beamer based on Metropolis theme -longdesc Moloch is a fork of the Metropolis Theme which fixes some -longdesc outstanding issues of this theme. -docfiles size=85 +revision 73490 +shortdesc Beamer theme based on Metropolis +longdesc Moloch is a clean and simple beamer theme. It is a fork of the +longdesc Metropolis theme, but has a more minimalistic and slightly less +longdesc opinionated design. +docfiles size=127 texmf-dist/doc/latex/moloch/CHANGELOG.md texmf-dist/doc/latex/moloch/LICENSE texmf-dist/doc/latex/moloch/README.md details="Readme" texmf-dist/doc/latex/moloch/moloch.pdf details="Package documentation" texmf-dist/doc/latex/moloch/moloch.tex -srcfiles size=13 +srcfiles size=15 + texmf-dist/source/latex/moloch/beamercolorthememoloch-highcontrast.dtx + texmf-dist/source/latex/moloch/beamercolorthememoloch-tomorrow.dtx texmf-dist/source/latex/moloch/beamercolorthememoloch.dtx texmf-dist/source/latex/moloch/beamerfontthememoloch.dtx texmf-dist/source/latex/moloch/beamerinnerthememoloch.dtx texmf-dist/source/latex/moloch/beamerouterthememoloch.dtx texmf-dist/source/latex/moloch/beamerthememoloch.dtx texmf-dist/source/latex/moloch/beamerthememoloch.ins -runfiles size=9 +runfiles size=12 + texmf-dist/tex/latex/moloch/beamercolorthememoloch-highcontrast.sty + texmf-dist/tex/latex/moloch/beamercolorthememoloch-tomorrow.sty texmf-dist/tex/latex/moloch/beamercolorthememoloch.sty texmf-dist/tex/latex/moloch/beamerfontthememoloch.sty texmf-dist/tex/latex/moloch/beamerinnerthememoloch.sty @@ -203711,7 +205950,7 @@ catalogue-contact-support https://github.com/jolars/moloch/discussions catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/moloch catalogue-license cc-by-sa-4 catalogue-topics presentation -catalogue-version 0.3.0 +catalogue-version 0.6.0 name mongolian-babel category Package @@ -208302,7 +210541,7 @@ catalogue-version 1.03 name morefloats category Package -revision 37927 +revision 73637 shortdesc Increase the number of simultaneous LaTeX floats longdesc LaTeX can, by default, only cope with 18 outstanding floats; longdesc any more, and you get the error "too many unprocessed floats". @@ -208311,21 +210550,21 @@ longdesc (which are independent of the help offered by e-TeX). However, longdesc if your floats can't be placed anywhere, extending the number longdesc of floats merely delays the arrival of the inevitable error longdesc message. -docfiles size=140 +docfiles size=144 texmf-dist/doc/latex/morefloats/README details="Readme" texmf-dist/doc/latex/morefloats/morefloats-example.pdf texmf-dist/doc/latex/morefloats/morefloats-example.tex texmf-dist/doc/latex/morefloats/morefloats.pdf details="Package documentation" -srcfiles size=23 +srcfiles size=22 texmf-dist/source/latex/morefloats/morefloats.drv texmf-dist/source/latex/morefloats/morefloats.dtx texmf-dist/source/latex/morefloats/morefloats.ins runfiles size=10 texmf-dist/tex/latex/morefloats/morefloats.sty catalogue-ctan /macros/latex/contrib/morefloats -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics float -catalogue-version 1.0h +catalogue-version 1.1a name morehype category Package @@ -208385,6 +210624,43 @@ catalogue-license lppl1.3 catalogue-topics hyper catalogue-version r0.83 +name moremath +category Package +revision 72072 +shortdesc Additional commands for typesetting maths +longdesc This package provides several document level commands to ease +longdesc typesetting of maths with LaTeX. This package provides +longdesc complementary commands to all operators defined by amsmath +longdesc which typeset the operators together with delimiters (which can +longdesc be scaled manually, automatically or not at all). These +longdesc commands also accept optional sub- and superscripts. +longdesc Additionally, this package provides several commands to typeset +longdesc gradient, divergence, curl, Laplace, and d'Alembert operators. +longdesc Those commands also accept an optional subscript and their +longdesc appearance can be modified using key-value options. Furthermore +longdesc several commands for producing row and column vectors, as well +longdesc as (anti-)diagonal matrices and identity matrices, utilizing +longdesc mathtools' matrix* family of environments, are provided. Most +longdesc of the document level commands defined by this package can also +longdesc be disabled using a package load-time option to avoid clashes +longdesc with commands defined by other packages. The package depends on +longdesc mathtools, bm (optional), and amssymb. +docfiles size=245 + texmf-dist/doc/latex/moremath/MANIFEST.md + texmf-dist/doc/latex/moremath/README.md details="Readme" + texmf-dist/doc/latex/moremath/moremath-doc.pdf details="Package documentation" +srcfiles size=46 + texmf-dist/source/latex/moremath/moremath.dtx + texmf-dist/source/latex/moremath/moremath.ins +runfiles size=10 + texmf-dist/tex/latex/moremath/moremath.sty +catalogue-contact-bugs https://github.com/Mister00X/moremath/issues +catalogue-contact-repository https://github.com/Mister00X/moremath +catalogue-ctan /macros/latex/contrib/moremath +catalogue-license lppl1.3 +catalogue-topics maths expl3 +catalogue-version 0.5.0 + name moresize category Package revision 17513 @@ -208591,6 +210867,176 @@ catalogue-ctan /macros/latex/contrib/movie15 catalogue-license lppl catalogue-topics multimedia obsolete +name mp-geom2d +category Package +revision 72638 +shortdesc Flat geometry with MetaPost +longdesc This package was written with the aim of providing MetaPost +longdesc macros for creating a geometry figure that closely matches an +longdesc imperative description: Let A be the point with coordinates +longdesc (2,3). Let B be the point with coordinates (4,5). Draw the line +longdesc (A, B). ... +docfiles size=586 + texmf-dist/doc/metapost/mp-geom2d/K001-1.dat + texmf-dist/doc/metapost/mp-geom2d/K001-2.dat + texmf-dist/doc/metapost/mp-geom2d/LICENSE + texmf-dist/doc/metapost/mp-geom2d/README.md details="Readme" + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/axessimilitude-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/axessimilitude.1 + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/axessimilitude.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles1-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles1-1.png + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles1.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles2-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles2-1.png + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles2.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles3-001.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles3-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles3-2.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles3.001 + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/cercles3.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/inter-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cercles/inter.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/coniques/ellipse-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/coniques/ellipse-2.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/coniques/ellipse-3.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/coniques/ellipse-4.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/coniques/ellipse.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/coniques/hyper-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/coniques/hyper.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/construction/ogiveentiers-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/construction/ogiveentiers.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp01-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp01.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp02-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp02.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp03-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp03.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp04-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp04.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp05-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp05.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp06-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp06.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp07-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp07.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp08-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/courbes/cp08.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/cubiques/K001-1.dat + texmf-dist/doc/metapost/mp-geom2d/exemples/cubiques/K001-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/cubiques/K001-2.dat + texmf-dist/doc/metapost/mp-geom2d/exemples/cubiques/K001.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/brach-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/brach.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/divers-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/divers.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/epicycloide-const-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/epicycloide-const.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/pascalline-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/pascalline.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/point-0.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/point.0 + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/point.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/polygone-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/polygone.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/vecteurs-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/divers/vecteurs.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/fonctions/cos-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/fonctions/cos.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/fonctions/fonction1-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/fonctions/fonction1.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/fonctions/fonction2-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/fonctions/fonction2.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol01-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol01.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol02-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol02.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol03-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol03.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol04-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol04.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol05-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol05.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol06-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol06.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol07-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/polaires/pol07.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/reperes/mptextmp.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/reperes/mpxerr.tex + texmf-dist/doc/metapost/mp-geom2d/exemples/reperes/reperes1-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/reperes/reperes1.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/reperes/reperes2-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/reperes/reperes2.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/svgnames/palette-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/svgnames/palette.1 + texmf-dist/doc/metapost/mp-geom2d/exemples/svgnames/palette.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/homothetie-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/homothetie.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/inversion-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/inversion.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/symetrie-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/symetrie.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/symetrieCentrale-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/transformations/symetrieCentrale.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/triangles/apollonius-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/triangles/apollonius.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/triangles/pedale-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/triangles/pedale.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/triangles/triangles-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/triangles/triangles.mp + texmf-dist/doc/metapost/mp-geom2d/exemples/vecteur/vecteur-1.pdf + texmf-dist/doc/metapost/mp-geom2d/exemples/vecteur/vecteur.mp + texmf-dist/doc/metapost/mp-geom2d/figure.pdf + texmf-dist/doc/metapost/mp-geom2d/fond.pdf + texmf-dist/doc/metapost/mp-geom2d/locctan.bib + texmf-dist/doc/metapost/mp-geom2d/mp-geom2d-doc.pdf details="Package documentation" language="fr" + texmf-dist/doc/metapost/mp-geom2d/mp-geom2d-doc.tex + texmf-dist/doc/metapost/mp-geom2d/solution0.dat +runfiles size=20 + texmf-dist/metapost/mp-geom2d/geom2d-arc.mp + texmf-dist/metapost/mp-geom2d/geom2d-c2d.mp + texmf-dist/metapost/mp-geom2d/geom2d-fct.mp + texmf-dist/metapost/mp-geom2d/geom2d-lbl.mp + texmf-dist/metapost/mp-geom2d/geom2d-main.mp + texmf-dist/metapost/mp-geom2d/geom2d-plt.mp + texmf-dist/metapost/mp-geom2d/geom2d-rep.mp + texmf-dist/metapost/mp-geom2d/geom2d-svgnames.mp + texmf-dist/metapost/mp-geom2d/geom2d-tra.mp + texmf-dist/metapost/mp-geom2d/geom2d.mp +catalogue-contact-bugs https://gitlab.gutenberg-asso.fr/mchupin/mp-geom2d/-/issues +catalogue-contact-repository https://gitlab.gutenberg-asso.fr/mchupin/mp-geom2d +catalogue-ctan /graphics/metapost/contrib/macros/mp-geom2d +catalogue-license lppl1.3c +catalogue-topics graphics graphics-mpost maths +catalogue-version 1.1 + +name mp-neuralnetwork +category Package +revision 73627 +shortdesc Drawing artificial neural networks with MetaPost and METAOBJ +longdesc This MetaPost package allows to draw artificial neural +longdesc networks. It is based on the METAOBJ package which provides +longdesc many tools to draw and arrange nodes. This package is in beta +longdesc version -- do not hesitate to report bugs, as well as requests +longdesc for improvement. +docfiles size=55 + texmf-dist/doc/metapost/mp-neuralnetwork/LICENSE + texmf-dist/doc/metapost/mp-neuralnetwork/README.md details="Readme" + texmf-dist/doc/metapost/mp-neuralnetwork/ctan.bib + texmf-dist/doc/metapost/mp-neuralnetwork/fond.pdf + texmf-dist/doc/metapost/mp-neuralnetwork/mp-neuralnetwork-doc-en.pdf details="Package documentation" + texmf-dist/doc/metapost/mp-neuralnetwork/mp-neuralnetwork-doc-en.tex + texmf-dist/doc/metapost/mp-neuralnetwork/mp-neuralnetwork-preamble.tex +runfiles size=4 + texmf-dist/metapost/mp-neuralnetwork/mp-neuralnetwork-metaobj-patch.mp + texmf-dist/metapost/mp-neuralnetwork/mp-neuralnetwork.mp +catalogue-contact-bugs https://gitlab.gutenberg-asso.fr/mchupin/mp-neuralnetwork/-/issues +catalogue-contact-repository https://gitlab.gutenberg-asso.fr/mchupin/mp-neuralnetwork +catalogue-ctan /graphics/metapost/contrib/macros/mp-neuralnetwork +catalogue-license lppl1.3c +catalogue-topics diagram graphics-mpost +catalogue-version 0.1 + name mp3d category Package revision 29349 @@ -208704,7 +211150,7 @@ catalogue-topics graphics-use name mpchess category Package -revision 67704 +revision 73149 shortdesc Drawing chess boards and positions with MetaPost longdesc This package allows you to draw chess boards and positions. The longdesc appearance of the drawings is modern and largely inspired by @@ -208713,7 +211159,7 @@ longdesc on MetaPost probably allows more graphic flexibility than the longdesc excellent LaTeX packages. This package is in beta version, do longdesc not hesitate to report bugs, as well as requests for longdesc improvement -docfiles size=524 +docfiles size=788 texmf-dist/doc/metapost/mpchess/LICENSE texmf-dist/doc/metapost/mpchess/README.md details="Readme" texmf-dist/doc/metapost/mpchess/ctan.bib @@ -208725,7 +211171,7 @@ docfiles size=524 texmf-dist/doc/metapost/mpchess/mpchess-preamble.tex texmf-dist/doc/metapost/mpchess/test.fen texmf-dist/doc/metapost/mpchess/test.pgn -runfiles size=51 +runfiles size=52 texmf-dist/fonts/truetype/public/mpchess/mpchessfont.ttf texmf-dist/metapost/mpchess/mpchess-cburnett.mp texmf-dist/metapost/mpchess/mpchess-chessboard.mp @@ -208734,13 +211180,13 @@ runfiles size=51 texmf-dist/metapost/mpchess/mpchess-pieces.mp texmf-dist/metapost/mpchess/mpchess-skak.mp texmf-dist/metapost/mpchess/mpchess.mp -catalogue-contact-bugs https://github.com/chupinmaxime/mpchess/issues -catalogue-contact-home https://plmlab.math.cnrs.fr/mchupin/mpchess -catalogue-contact-repository https://github.com/chupinmaxime/mpchess +catalogue-contact-bugs https://gitlab.gutenberg-asso.fr/mchupin/mpchess/-/issues +catalogue-contact-home https://gitlab.gutenberg-asso.fr/mchupin/mpchess +catalogue-contact-repository https://gitlab.gutenberg-asso.fr/mchupin/mpchess catalogue-ctan /graphics/metapost/contrib/macros/mpchess catalogue-license lppl1.3c gpl2+ catalogue-topics graphics graphics-mpost mp-use games -catalogue-version 0.7 +catalogue-version 0.9 name mpcolornames category Package @@ -209428,7 +211874,7 @@ catalogue-topics psychology journalpub bibtex-sty apa name msu-thesis category Package -revision 71741 +revision 71883 shortdesc Class for Michigan State University Master's and PhD theses longdesc This is a class file for producing dissertations and theses longdesc according to the Michigan State University Graduate School @@ -209460,7 +211906,7 @@ catalogue-contact-repository https://github.com/amunn/msu-thesis catalogue-ctan /macros/latex/contrib/msu-thesis catalogue-license lppl1.3 catalogue-topics class dissertation doc-templ std-conform -catalogue-version 4.3 +catalogue-version 4.3b name mtgreek category Package @@ -210054,16 +212500,16 @@ catalogue-version 0.2 name multirow category Package -revision 58396 +revision 72833 shortdesc Create tabular cells spanning multiple rows longdesc The package has a lot of flexibility, including an option for longdesc specifying an entry at the "natural" width of its text. The longdesc package is distributed with the bigdelim and bigstrut packages, longdesc which can be used to advantage with \multirow cells. -docfiles size=148 +docfiles size=157 texmf-dist/doc/latex/multirow/README details="Readme" texmf-dist/doc/latex/multirow/multirow.pdf details="Package documentation" -srcfiles size=23 +srcfiles size=24 texmf-dist/source/latex/multirow/multirow.dtx texmf-dist/source/latex/multirow/multirow.ins runfiles size=4 @@ -210076,7 +212522,7 @@ catalogue-contact-repository https://github.com/pietvo/multirow catalogue-ctan /macros/latex/contrib/multirow catalogue-license lppl1.3 catalogue-topics table -catalogue-version 2.8 +catalogue-version 2.9 name multitoc category Package @@ -210911,105 +213357,105 @@ catalogue-topics music name musixtnt.aarch64-linux category Package -revision 65927 +revision 73915 shortdesc aarch64-linux files of musixtnt binfiles arch=aarch64-linux size=4 bin/aarch64-linux/msxlint name musixtnt.amd64-freebsd category Package -revision 69782 +revision 73792 shortdesc amd64-freebsd files of musixtnt binfiles arch=amd64-freebsd size=6 bin/amd64-freebsd/msxlint name musixtnt.amd64-netbsd category Package -revision 65923 +revision 73802 shortdesc amd64-netbsd files of musixtnt binfiles arch=amd64-netbsd size=6 bin/amd64-netbsd/msxlint name musixtnt.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of musixtnt -binfiles arch=armhf-linux size=4 +binfiles arch=armhf-linux size=3 bin/armhf-linux/msxlint name musixtnt.i386-freebsd category Package -revision 69782 +revision 73792 shortdesc i386-freebsd files of musixtnt binfiles arch=i386-freebsd size=6 bin/i386-freebsd/msxlint name musixtnt.i386-linux category Package -revision 69782 +revision 73792 shortdesc i386-linux files of musixtnt -binfiles arch=i386-linux size=4 +binfiles arch=i386-linux size=5 bin/i386-linux/msxlint name musixtnt.i386-netbsd category Package -revision 65923 +revision 73802 shortdesc i386-netbsd files of musixtnt binfiles arch=i386-netbsd size=5 bin/i386-netbsd/msxlint name musixtnt.i386-solaris category Package -revision 69782 +revision 73792 shortdesc i386-solaris files of musixtnt binfiles arch=i386-solaris size=5 bin/i386-solaris/msxlint name musixtnt.universal-darwin category Package -revision 69807 +revision 73806 shortdesc universal-darwin files of musixtnt binfiles arch=universal-darwin size=34 bin/universal-darwin/msxlint name musixtnt.windows category Package -revision 70269 +revision 73796 shortdesc windows files of musixtnt binfiles arch=windows size=4 bin/windows/msxlint.exe name musixtnt.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of musixtnt binfiles arch=x86_64-cygwin size=4 bin/x86_64-cygwin/msxlint.exe name musixtnt.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of musixtnt binfiles arch=x86_64-darwinlegacy size=6 bin/x86_64-darwinlegacy/msxlint name musixtnt.x86_64-linux category Package -revision 69782 +revision 73777 shortdesc x86_64-linux files of musixtnt binfiles arch=x86_64-linux size=5 bin/x86_64-linux/msxlint name musixtnt.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of musixtnt -binfiles arch=x86_64-linuxmusl size=5 +binfiles arch=x86_64-linuxmusl size=6 bin/x86_64-linuxmusl/msxlint name musixtnt.x86_64-solaris category Package -revision 69782 +revision 73792 shortdesc x86_64-solaris files of musixtnt binfiles arch=x86_64-solaris size=6 bin/x86_64-solaris/msxlint @@ -211255,7 +213701,7 @@ catalogue-topics font-use font-supp name mxedruli category Package -revision 30021 +revision 71991 shortdesc A pair of fonts for different Georgian alphabets longdesc Two Georgian fonts, in both Metafont and Type 1 formats, which longdesc cover the Mxedruli and the Xucuri alphabets. @@ -211307,7 +213753,6 @@ runfiles size=112 texmf-dist/tex/latex/mxedruli/uxuc.fd texmf-dist/tex/latex/mxedruli/xucuri.sty catalogue-also georgian-stanier -catalogue-contact-home http://heinecke.pagesperso-orange.fr/mxedruli/ catalogue-ctan /fonts/georgian/mxedruli catalogue-license lppl catalogue-topics georgian font font-type1 font-mf @@ -211503,7 +213948,7 @@ catalogue-version 0.7 name naive-ebnf category Package -revision 67892 +revision 72843 shortdesc EBNF in plain text 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 @@ -211511,7 +213956,7 @@ longdesc Extended Backus-Naur Form (EBNF) notation. depend filecontentsdef depend l3kernel depend pgfopts -docfiles size=181 +docfiles size=148 texmf-dist/doc/latex/naive-ebnf/DEPENDS.txt texmf-dist/doc/latex/naive-ebnf/LICENSE.txt texmf-dist/doc/latex/naive-ebnf/README.md details="Readme" @@ -211525,19 +213970,19 @@ 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.15 +catalogue-version 0.0.18 name nameauth category Package -revision 69758 +revision 73749 shortdesc Name authority mechanism for consistency in body text and index -longdesc Publications, that reference many names, require editors and -longdesc proofreaders to track those names in the text and index. The +longdesc Publications that reference many names require editors and +longdesc proofreaders to track those names in text and index. The longdesc package offers name authority macros that allow authors and longdesc compilers to normalize occurrences of names, variant name -longdesc forms, and pen names in the text and index. This may help -longdesc minimize writing and production time and cost. -docfiles size=489 +longdesc forms, and pen names in text and index. This may help minimize +longdesc writing and production time and cost. +docfiles size=504 texmf-dist/doc/latex/nameauth/README.md details="Readme" texmf-dist/doc/latex/nameauth/beamer01.pdf texmf-dist/doc/latex/nameauth/beamer02.pdf @@ -211546,15 +213991,15 @@ docfiles size=489 texmf-dist/doc/latex/nameauth/compat.tex texmf-dist/doc/latex/nameauth/examples.tex texmf-dist/doc/latex/nameauth/nameauth.pdf details="Package documentation" -srcfiles size=160 +srcfiles size=169 texmf-dist/source/latex/nameauth/Makefile texmf-dist/source/latex/nameauth/nameauth.dtx -runfiles size=13 +runfiles size=14 texmf-dist/tex/latex/nameauth/nameauth.sty catalogue-ctan /macros/latex/contrib/nameauth catalogue-license lppl1.3 catalogue-topics editorial editorial-consistency -catalogue-version 4.0 +catalogue-version 4.1 name namedef category Package @@ -214045,6 +216490,34 @@ catalogue-license lppl catalogue-topics layout catalogue-version 1.3d +name neoschool +category Package +revision 73374 +shortdesc LaTeX class for teachers +longdesc This package provides secondary school teachers with a +longdesc comprehensive set of tools for creating educational documents +longdesc such as assessments, course materials, exercise sheets with +longdesc solutions, and more. It includes eight predefined color themes, +longdesc various class options for layout and typography, specialized +longdesc environments, dedicated commands, and multiple preformatted +longdesc header styles tailored to different document types. The package +longdesc integrates numerous commonly used LaTeX packages, which +longdesc significantly reduces the need for extensive preambles and +longdesc minimizes compatibility issues. Additionally, it is +longdesc multilingual, supporting French, English, and German. +docfiles size=145 + texmf-dist/doc/latex/neoschool/README.md details="Readme" + texmf-dist/doc/latex/neoschool/neoschool-fr.pdf details="Package documentation" language="fr" + texmf-dist/doc/latex/neoschool/neoschool-fr.tex + texmf-dist/doc/latex/neoschool/neoschool.pdf details="Package documentation" language="en" + texmf-dist/doc/latex/neoschool/neoschool.tex +runfiles size=61 + texmf-dist/tex/latex/neoschool/neoschool.cls +catalogue-ctan /macros/latex/contrib/neoschool +catalogue-license lppl1.3c +catalogue-topics teaching class +catalogue-version 1.0.0 + name nestquot category Package revision 27323 @@ -214140,7 +216613,7 @@ catalogue-version 2.0 name newcomputermodern category Package -revision 71570 +revision 73535 shortdesc Computer Modern fonts including matching non-latin alphabets longdesc This is a new assembly of Computer Modern fonts including longdesc extensions in many directions for both Latin based languages, @@ -214148,12 +216621,16 @@ 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. -docfiles size=4158 +docfiles size=4711 texmf-dist/doc/fonts/newcomputermodern/README details="Readme" texmf-dist/doc/fonts/newcomputermodern/colored-diacritics.pdf texmf-dist/doc/fonts/newcomputermodern/colored-diacritics.tex texmf-dist/doc/fonts/newcomputermodern/integral.pdf texmf-dist/doc/fonts/newcomputermodern/integral.tex + texmf-dist/doc/fonts/newcomputermodern/mathkern-example.pdf + texmf-dist/doc/fonts/newcomputermodern/mathkern-example.tex + texmf-dist/doc/fonts/newcomputermodern/mathkern-example2.pdf + texmf-dist/doc/fonts/newcomputermodern/mathkern-example2.tex texmf-dist/doc/fonts/newcomputermodern/newcm-doc.pdf details="Package documentation" texmf-dist/doc/fonts/newcomputermodern/newcm-doc.tex texmf-dist/doc/fonts/newcomputermodern/newcm-unimath-symbols.ltx @@ -214164,7 +216641,9 @@ docfiles size=4158 texmf-dist/doc/fonts/newcomputermodern/opticalmathlm.pdf texmf-dist/doc/fonts/newcomputermodern/opticalmathlm.tex texmf-dist/doc/fonts/newcomputermodern/source.txz -runfiles size=4193 + texmf-dist/doc/fonts/newcomputermodern/testmath-newcm-sans.pdf + texmf-dist/doc/fonts/newcomputermodern/testmath-newcm-sans.tex +runfiles size=4696 texmf-dist/fonts/opentype/public/newcomputermodern/NewCM08-Book.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCM08-BookItalic.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCM08-Italic.otf @@ -214180,6 +216659,7 @@ runfiles size=4193 texmf-dist/fonts/opentype/public/newcomputermodern/NewCM10Devanagari-Bold.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCM10Devanagari-Book.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCM10Devanagari-Regular.otf + texmf-dist/fonts/opentype/public/newcomputermodern/NewCMMath-Bold.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMMath-Book.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMMath-Regular.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMMono10-Bold.otf @@ -214198,6 +216678,7 @@ runfiles size=4193 texmf-dist/fonts/opentype/public/newcomputermodern/NewCMSans10-BookOblique.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMSans10-Oblique.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMSans10-Regular.otf + texmf-dist/fonts/opentype/public/newcomputermodern/NewCMSansMath-Regular.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMUncial08-Bold.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMUncial08-Book.otf texmf-dist/fonts/opentype/public/newcomputermodern/NewCMUncial08-Regular.otf @@ -214217,7 +216698,7 @@ catalogue-contact-repository https://git.gnu.org.ua/newcm.git catalogue-ctan /fonts/newcomputermodern catalogue-license gfl catalogue-topics font cherokee font-archaic font-body font-cm font-coptic font-cyrillic font-greek font-hebrew font-indic font-maths font-medieval font-mono font-multilingual font-otf font-proportional font-sans font-serif font-supp linguistic other-lang phonetic -catalogue-version 5.2.0 +catalogue-version 7.0.1 name newenviron category Package @@ -214402,7 +216883,7 @@ catalogue-version 0.55 name newpx category Package -revision 69792 +revision 73887 shortdesc Alternative uses of the PX fonts, with improved metrics longdesc This package, initially based on pxfonts, provides many fixes longdesc and enhancements to that package, and splits it in two parts @@ -215056,7 +217537,7 @@ runfiles size=3691 catalogue-ctan /fonts/newpx catalogue-license lppl gfl catalogue-topics font font-body font-maths font-serif font-proportional font-type1 font-otf font-supp font-t1enc -catalogue-version 1.536 +catalogue-version 1.541 name newsletr category Package @@ -215105,7 +217586,7 @@ catalogue-version 1.0 name newtx category Package -revision 71722 +revision 73393 shortdesc Alternative uses of the TX fonts, with improved metrics longdesc The bundle splits txfonts.sty (from the TX fonts distribution) longdesc into two independent packages, newtxtext.sty and newtxmath.sty, @@ -215134,7 +217615,7 @@ docfiles size=319 texmf-dist/doc/fonts/newtx/sample-ntx-crop.pdf texmf-dist/doc/fonts/newtx/sample-ptmx-crop.pdf texmf-dist/doc/fonts/newtx/sample-tx-crop.pdf -runfiles size=4488 +runfiles size=4490 texmf-dist/fonts/afm/public/newtx/LibertineI-5nu.afm texmf-dist/fonts/afm/public/newtx/LibertineMathBMI.afm texmf-dist/fonts/afm/public/newtx/LibertineMathBMI5.afm @@ -216214,7 +218695,7 @@ 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.751 +catalogue-version 1.756 name newtxsf category Package @@ -216544,21 +219025,28 @@ catalogue-version 1.1a name nfssext-cfr category Package -revision 43640 +revision 72454 shortdesc Extensions to the LaTeX NFSS longdesc The package is a development of nfssext.sty, distributed with longdesc the examples for the font installation guide. The package has longdesc been developed for use in packages such as cfr-lm and longdesc venturisadf, -docfiles size=49 - texmf-dist/doc/latex/nfssext-cfr/README details="Readme" +docfiles size=228 + texmf-dist/doc/latex/nfssext-cfr/README.md details="Readme" + texmf-dist/doc/latex/nfssext-cfr/manifest.txt texmf-dist/doc/latex/nfssext-cfr/nfssext-cfr.pdf details="Package documentation" - texmf-dist/doc/latex/nfssext-cfr/nfssext-cfr.tex -runfiles size=6 +srcfiles size=37 + texmf-dist/source/latex/nfssext-cfr/nfssext-cfr.dtx + texmf-dist/source/latex/nfssext-cfr/nfssext-cfr.ins +runfiles size=15 + texmf-dist/tex/latex/nfssext-cfr/nfssext-cfr-nfss.sty + texmf-dist/tex/latex/nfssext-cfr/nfssext-cfr-nnfss.sty texmf-dist/tex/latex/nfssext-cfr/nfssext-cfr.sty +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /macros/latex/contrib/nfssext-cfr -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics font-sel +catalogue-version 1.1 name nicefilelist category Package @@ -216622,7 +219110,7 @@ catalogue-version 1.1c name niceframe-type1 category Package -revision 68091 +revision 71849 shortdesc Type 1 versions of the fonts recommended in niceframe longdesc The bundle provides Adobe Type 1 versions of the fonts longdesc bbding10, dingbat, karta15, umranda and umrandb. @@ -216648,7 +219136,7 @@ catalogue-topics font font-type1 font-decor name nicematrix category Package -revision 71661 +revision 73674 shortdesc Improve the typesetting of mathematical matrices with PGF longdesc This package is based on the package array. It creates PGF/TikZ longdesc nodes under the cells of the array and uses these nodes to @@ -216659,22 +219147,22 @@ 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 tabular notes; etc. The package requires and loads l3keys2e, longdesc array, amsmath, pgfcore, and the module shapes of PGF. -docfiles size=1154 +docfiles size=1099 texmf-dist/doc/latex/nicematrix/README.md details="Readme" texmf-dist/doc/latex/nicematrix/nicematrix-code.pdf texmf-dist/doc/latex/nicematrix/nicematrix-french.pdf details="Package documentation in French" language="fr" texmf-dist/doc/latex/nicematrix/nicematrix-french.tex texmf-dist/doc/latex/nicematrix/nicematrix.pdf details="Package documentation" texmf-dist/doc/latex/nicematrix/nicematrix.tex -srcfiles size=149 +srcfiles size=154 texmf-dist/source/latex/nicematrix/nicematrix-code.dtx texmf-dist/source/latex/nicematrix/nicematrix.ins -runfiles size=97 +runfiles size=99 texmf-dist/tex/latex/nicematrix/nicematrix.sty catalogue-ctan /macros/latex/contrib/nicematrix catalogue-license lppl1.3 catalogue-topics maths matrix pgf-tikz expl3 -catalogue-version 6.28b +catalogue-version 7.1 name nicetext category Package @@ -216838,7 +219326,7 @@ catalogue-topics cv name nimbus15 category Package -revision 58839 +revision 72894 shortdesc Support files for Nimbus 2015 Core fonts longdesc The Nimbus 2015 Core fonts added Greek and Cyrillic glyphs. longdesc This package may be best suited as an add-on to the @@ -217153,7 +219641,7 @@ runfiles size=2049 catalogue-ctan /fonts/nimbus15 catalogue-license other-free lppl1.3 catalogue-topics font font-body font-proportional font-mono font-multilingual font-greek font-cyrillic font-type1 font-otf font-supp font-t1enc -catalogue-version 1.014 +catalogue-version 1.015 name nimsticks category Package @@ -217256,18 +219744,18 @@ catalogue-version 0.0.1 name njuthesis category Package -revision 71034 +revision 73206 shortdesc LaTeX thesis template for Nanjing University 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. -docfiles size=317 +docfiles size=318 texmf-dist/doc/latex/njuthesis/LICENSE texmf-dist/doc/latex/njuthesis/README.md details="Readme" texmf-dist/doc/latex/njuthesis/njuthesis.pdf details="Package documentation" language="zh" -srcfiles size=81 +srcfiles size=82 texmf-dist/source/latex/njuthesis/njuthesis.dtx texmf-dist/source/latex/njuthesis/njuthesis.ins runfiles size=34 @@ -217284,7 +219772,7 @@ 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.4.1 +catalogue-version 1.4.2 name njuvisual category Package @@ -217384,7 +219872,7 @@ catalogue-version 1.0 name nlctdoc category Package -revision 68448 +revision 73305 shortdesc Package documentation class longdesc The class provides support for the documentation of the longdesc author's packages, using koma-script. This class is provided @@ -217392,13 +219880,13 @@ longdesc "as is" solely for the benefit of anyone who wants to compile longdesc the documentation of those packages. docfiles size=1 texmf-dist/doc/latex/nlctdoc/README details="Readme" -runfiles size=32 +runfiles size=36 texmf-dist/tex/latex/nlctdoc/nlctdoc.cls texmf-dist/tex/latex/nlctdoc/nlctuserguide.sty catalogue-ctan /macros/latex/contrib/nlctdoc -catalogue-license lppl +catalogue-license lppl1.3 catalogue-topics doc-supp class -catalogue-version 1.10 +catalogue-version 1.12 name nmbib category Package @@ -217495,16 +219983,33 @@ catalogue-license lppl1.3 catalogue-topics macro-supp catalogue-version 1.0 +name nodepthtext +category Package +revision 73069 +shortdesc Change small texts to remove the depth of the letters +longdesc Modify small texts in order to remove depth of letters (for +longdesc small texts), with automatic raising/scaling. +docfiles size=92 + texmf-dist/doc/latex/nodepthtext/README.md details="Readme" + texmf-dist/doc/latex/nodepthtext/nodepthtext-doc.pdf details="Package documentation" + texmf-dist/doc/latex/nodepthtext/nodepthtext-doc.tex +runfiles size=1 + texmf-dist/tex/latex/nodepthtext/nodepthtext.sty +catalogue-ctan /macros/latex/contrib/nodepthtext +catalogue-license lppl1.3c +catalogue-topics font-supp typesetting +catalogue-version 0.1.0 + name nodetree category Package -revision 68244 +revision 72318 shortdesc Visualize node lists in a tree view longdesc nodetree is a development package that visualizes the structure longdesc of node lists. nodetree shows its debug informations in the longdesc console output when you compile a LuaTeX file. It uses a longdesc similar visual representation for node lists as the UNIX tree longdesc command for a folder structure. -docfiles size=81 +docfiles size=79 texmf-dist/doc/luatex/nodetree/README.md details="Readme" texmf-dist/doc/luatex/nodetree/nodetree-doc.tex texmf-dist/doc/luatex/nodetree/nodetree.pdf details="Package documentation" @@ -217522,7 +220027,7 @@ 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.3.0 +catalogue-version 2.4.0 name noindentafter category Package @@ -217823,30 +220328,29 @@ catalogue-version 2.4 name notebeamer category Package -revision 71192 +revision 73927 shortdesc A template for printing presentations on notepaper longdesc This template provides an easy way to put Beamer presentations longdesc on note paper and quickly produce notebooks. It is optimized longdesc for Goodnotes' default paper size. -docfiles size=949 - texmf-dist/doc/latex/notebeamer/License +docfiles size=98 texmf-dist/doc/latex/notebeamer/README.md details="Readme" - texmf-dist/doc/latex/notebeamer/figures/beamerdemo.pdf - texmf-dist/doc/latex/notebeamer/figures/paperdemo.pdf texmf-dist/doc/latex/notebeamer/notebeamer.pdf details="Package documentation" - texmf-dist/doc/latex/notebeamer/notebeamer.tex -runfiles size=3 +srcfiles size=5 + texmf-dist/source/latex/notebeamer/notebeamer.dtx + texmf-dist/source/latex/notebeamer/notebeamer.ins +runfiles size=2 texmf-dist/tex/latex/notebeamer/notebeamer.sty catalogue-contact-announce https://qm.qq.com/q/RGFmHwBecC -catalogue-contact-bugs https://github.com/xiamyphys/notebeamer/issues -catalogue-contact-development https://github.com/xiamyphys -catalogue-contact-home https://github.com/xiamyphys/notebeamer -catalogue-contact-repository https://github.com/xiamyphys/notebeamer +catalogue-contact-bugs https://github.com/myhsia/notebeamer/issues +catalogue-contact-development https://github.com/myhsia/ +catalogue-contact-home https://github.com/myhsia/notebeamer +catalogue-contact-repository https://github.com/myhsia/notebeamer catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC catalogue-ctan /macros/latex/contrib/notebeamer catalogue-license lppl1.3c catalogue-topics notes presentation doc-templ pgf-tikz -catalogue-version 3.0b +catalogue-version 4.0D name notes category Package @@ -224055,6 +226559,36 @@ catalogue-license lppl catalogue-topics journalpub physics catalogue-version 2.01a +name nstc-proposal +category Package +revision 72795 +shortdesc LaTeX classes for preparing grant proposals to National Science and Technology Council, Taiwan +longdesc This package consists of LaTeX classes for preparing grant +longdesc proposals to the National Science and Technology Council, +longdesc Taiwan, that is: CM03 CM302 which support typesetting in both +longdesc Chinese and English and are compatible with pdfLaTeX and XeTeX. +docfiles size=241 + texmf-dist/doc/latex/nstc-proposal/LICENSE + texmf-dist/doc/latex/nstc-proposal/README.md details="Readme" + texmf-dist/doc/latex/nstc-proposal/example/bibliography.pdf + texmf-dist/doc/latex/nstc-proposal/example/bibliography.tex + texmf-dist/doc/latex/nstc-proposal/example/proposal.pdf + texmf-dist/doc/latex/nstc-proposal/example/proposal.tex + texmf-dist/doc/latex/nstc-proposal/example/sample.bib + texmf-dist/doc/latex/nstc-proposal/nstc-proposal.pdf details="Package documentation (Traditional Chinese)" language="zh-tw" +srcfiles size=5 + texmf-dist/source/latex/nstc-proposal/nstc-proposal.dtx + texmf-dist/source/latex/nstc-proposal/nstc-proposal.ins +runfiles size=3 + texmf-dist/tex/latex/nstc-proposal/nstc-cm03.cls + texmf-dist/tex/latex/nstc-proposal/nstc-cm302.cls +catalogue-contact-bugs https://github.com/L-TChen/nstc-proposal/issues +catalogue-contact-repository https://github.com/L-TChen/nstc-proposal +catalogue-ctan /macros/latex/contrib/nstc-proposal +catalogue-license lppl1.3c +catalogue-topics class proposal +catalogue-version 1.0 + name ntgclass category Package revision 65522 @@ -224276,6 +226810,29 @@ catalogue-license lppl1.3c catalogue-topics portuguese numbers expl3 catalogue-version 1.0 +name numbersets +category Package +revision 72558 +shortdesc Display number sets with customizable typefaces +longdesc This package allows users to express mathematical concepts +longdesc related to sets of numbers using meaningful commands rather +longdesc than relying on visual representations. Key Features: Command +longdesc to specify typefaces for number sets. Interface for defining +longdesc typeface rules. Interface for creating commands that represent +longdesc number sets. Several predefined presets for common number sets. +docfiles size=20 + texmf-dist/doc/latex/numbersets/README.md details="Readme" + texmf-dist/doc/latex/numbersets/numbersets-doc.pdf details="Package documentation" + texmf-dist/doc/latex/numbersets/numbersets-doc.tex +runfiles size=1 + texmf-dist/tex/latex/numbersets/numbersets.sty +catalogue-contact-bugs https://github.com/enunun/numbersets/issues +catalogue-contact-repository https://github.com/enunun/numbersets +catalogue-ctan /macros/latex/contrib/numbersets +catalogue-license mit +catalogue-topics maths numbers expl3 +catalogue-version 0.2.0 + name numerica category Package revision 68021 @@ -224324,23 +226881,23 @@ catalogue-version 3.0.0 name numerica-tables category Package -revision 68193 +revision 72911 shortdesc Create multi-column tables of mathematical functions 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, l3kernel, l3packages, amsmath and mathtools. -docfiles size=223 +docfiles size=251 texmf-dist/doc/latex/numerica-tables/README.txt details="Readme" texmf-dist/doc/latex/numerica-tables/numerica-tables.pdf details="Package documentation" texmf-dist/doc/latex/numerica-tables/numerica-tables.tex -runfiles size=13 +runfiles size=16 texmf-dist/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 3.1.0 +catalogue-version 3.2.0 name numericplots category Package @@ -225111,7 +227668,7 @@ catalogue-version 1.0.0 name oberdiek category Package -revision 69038 +revision 71916 shortdesc A bundle of packages submitted by Heiko Oberdiek longdesc The bundle comprises packages to provide: aliascnt: 'alias longdesc counters'; bmpsize: get bitmap size and resolution data; @@ -225124,16 +227681,15 @@ longdesc producing English ordinals; eolgrab: collect arguments longdesc delimited by end of line; flags: setting and clearing flags in longdesc bit fields and converting the bit field into a decimal number; longdesc holtxdoc: extra documentation macros; hypbmsec: bookmarks in -longdesc sectioning commands; hypcap: anjusting anchors of captions; -longdesc 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; pdfcolparallel: fixes colour problems in -longdesc package parallel; pdfcolparcolumns: fixes colour problems in -longdesc package parcolumns; pdfcrypt: setting PDF encryption; -longdesc protecteddef: define a command that protected against -longdesc expansion; resizegather: automatically resize overly large -longdesc equations; rotchiffre: performs simple rotation cyphers; +longdesc sectioning commands; hypgotoe: experimental package for links +longdesc to embedded files; hyphsubst: substitute hyphenation patterns; +longdesc ifdraft: switch for option draft; iflang: provides expandable +longdesc checks for the current language; pdfcolparallel: fixes colour +longdesc problems in package parallel; pdfcolparcolumns: fixes colour +longdesc problems in package parcolumns; pdfcrypt: setting PDF +longdesc encryption; protecteddef: define a command that protected +longdesc against expansion; resizegather: automatically resize overly +longdesc large equations; rotchiffre: performs simple rotation cyphers; longdesc scrindex: redefines environment 'theindex' of package 'index', longdesc if a class from KOMA-Script is loaded; setouterhbox: set \hbox longdesc in outer horizontal mode; settobox: getting box sizes; @@ -225141,13 +227697,12 @@ longdesc stackrel: extensions of the \stackrel command; stampinclude: longdesc selects the files for \include by inspecting the timestamp of longdesc the .aux file(s); tabularht: tabulars with height longdesc specification; tabularkv: key value interface for tabular -longdesc parameters; telprint: print German telephone numbers; -longdesc thepdfnumber: canonical numbers for use in PDF files and -longdesc elsewhere; twoopt: commands with two optional arguments; Each -longdesc of the packages is represented by two files, a .dtx (documented -longdesc source) and a PDF file; the .ins file necessary for -longdesc installation is extracted by running the .dtx file with Plain -longdesc TeX. +longdesc parameters; thepdfnumber: canonical numbers for use in PDF +longdesc files and elsewhere; twoopt: commands with two optional +longdesc arguments; Each of the packages is represented by two files, a +longdesc .dtx (documented source) and a PDF file; the .ins file +longdesc necessary for installation is extracted by running the .dtx +longdesc file with Plain TeX. depend auxhook depend grfext depend grffile @@ -225155,7 +227710,7 @@ depend iftex depend infwarerr depend kvoptions depend pdftexcmds -docfiles size=2992 +docfiles size=2834 texmf-dist/doc/latex/oberdiek/README.md details="Bundle README" texmf-dist/doc/latex/oberdiek/aliascnt.pdf texmf-dist/doc/latex/oberdiek/bmpsize.pdf @@ -225175,7 +227730,6 @@ docfiles size=2992 texmf-dist/doc/latex/oberdiek/flags.pdf texmf-dist/doc/latex/oberdiek/holtxdoc.pdf texmf-dist/doc/latex/oberdiek/hypbmsec.pdf - texmf-dist/doc/latex/oberdiek/hypcap.pdf texmf-dist/doc/latex/oberdiek/hypgotoe-example.tex texmf-dist/doc/latex/oberdiek/hypgotoe.pdf texmf-dist/doc/latex/oberdiek/hyphsubst.pdf @@ -225202,10 +227756,9 @@ docfiles size=2992 texmf-dist/doc/latex/oberdiek/tabularht.pdf texmf-dist/doc/latex/oberdiek/tabularkv-example.tex texmf-dist/doc/latex/oberdiek/tabularkv.pdf - texmf-dist/doc/latex/oberdiek/telprint.pdf texmf-dist/doc/latex/oberdiek/thepdfnumber.pdf texmf-dist/doc/latex/oberdiek/twoopt.pdf -srcfiles size=232 +srcfiles size=218 texmf-dist/source/latex/oberdiek/aliascnt.dtx texmf-dist/source/latex/oberdiek/bmpsize.dtx texmf-dist/source/latex/oberdiek/centernot.dtx @@ -225220,7 +227773,6 @@ srcfiles size=232 texmf-dist/source/latex/oberdiek/flags.dtx texmf-dist/source/latex/oberdiek/holtxdoc.dtx texmf-dist/source/latex/oberdiek/hypbmsec.dtx - texmf-dist/source/latex/oberdiek/hypcap.dtx texmf-dist/source/latex/oberdiek/hypgotoe.dtx texmf-dist/source/latex/oberdiek/hyphsubst.dtx texmf-dist/source/latex/oberdiek/ifdraft.dtx @@ -225240,10 +227792,9 @@ srcfiles size=232 texmf-dist/source/latex/oberdiek/stampinclude.dtx texmf-dist/source/latex/oberdiek/tabularht.dtx texmf-dist/source/latex/oberdiek/tabularkv.dtx - texmf-dist/source/latex/oberdiek/telprint.dtx texmf-dist/source/latex/oberdiek/thepdfnumber.dtx texmf-dist/source/latex/oberdiek/twoopt.dtx -runfiles size=91 +runfiles size=88 texmf-dist/bibtex/bib/oberdiek/oberdiek-bundle.bib texmf-dist/bibtex/bib/oberdiek/oberdiek-source.bib texmf-dist/tex/generic/oberdiek/engord.sty @@ -225255,7 +227806,6 @@ runfiles size=91 texmf-dist/tex/generic/oberdiek/protecteddef.sty texmf-dist/tex/generic/oberdiek/rotchiffre.sty texmf-dist/tex/generic/oberdiek/setouterhbox.sty - texmf-dist/tex/generic/oberdiek/telprint.sty texmf-dist/tex/generic/oberdiek/thepdfnumber.sty texmf-dist/tex/latex/oberdiek/aliascnt.sty texmf-dist/tex/latex/oberdiek/bmpsize-base.sty @@ -225273,7 +227823,6 @@ runfiles size=91 texmf-dist/tex/latex/oberdiek/flags.sty texmf-dist/tex/latex/oberdiek/holtxdoc.sty texmf-dist/tex/latex/oberdiek/hypbmsec.sty - texmf-dist/tex/latex/oberdiek/hypcap.sty texmf-dist/tex/latex/oberdiek/hypgotoe.sty texmf-dist/tex/latex/oberdiek/ifdraft.sty texmf-dist/tex/latex/oberdiek/pdfcolparallel.sty @@ -225443,7 +227992,7 @@ catalogue-version 0.5 name ocgx2 category Package -revision 70696 +revision 72300 shortdesc Drop-in replacement for 'ocgx' and 'ocg-p' longdesc This package serves as a drop-in replacement for the packages longdesc ocgx by Paul Gaborit and ocg-p by Werner Moshammer for the @@ -225456,7 +228005,7 @@ longdesc packages. docfiles size=5 texmf-dist/doc/latex/ocgx2/ChangeLog texmf-dist/doc/latex/ocgx2/README.txt -runfiles size=35 +runfiles size=34 texmf-dist/tex/latex/ocgx2/fixocgx.sty texmf-dist/tex/latex/ocgx2/ocgbase.sty texmf-dist/tex/latex/ocgx2/ocgx2.sty @@ -225465,7 +228014,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.57 +catalogue-version 0.60 name ocherokee category Package @@ -225688,14 +228237,14 @@ catalogue-version 1.0.0 name odsfile category Package -revision 68204 +revision 72514 shortdesc Read OpenDocument Spreadsheet documents as LaTeX tables longdesc The distribution includes a package and a lua library that can longdesc together read OpenDocument spreadsheet documents as LaTeX longdesc tables. Cells in the tables may be processed by LaTeX macros, longdesc so that (for example) the package may be used for drawing some longdesc plots. The package uses lua's zip library. -docfiles size=33 +docfiles size=34 texmf-dist/doc/lualatex/odsfile/README details="Readme" texmf-dist/doc/lualatex/odsfile/odsfile.pdf details="Package documentation" texmf-dist/doc/lualatex/odsfile/odsfile.tex @@ -225706,7 +228255,7 @@ runfiles size=6 catalogue-ctan /macros/luatex/latex/odsfile catalogue-license lppl1.3c catalogue-topics foreign-import table luatex -catalogue-version 0.8 +catalogue-version 0.9 name ofs category Package @@ -227248,7 +229797,7 @@ catalogue-topics engine omega obsolete name omegaware category TLCore -revision 70015 +revision 73848 catalogue omega shortdesc A wide-character-set extension of TeX longdesc A development of TeX, which deals in multi-octet Unicode @@ -227259,7 +229808,7 @@ 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 -docfiles size=60 +docfiles size=64 texmf-dist/doc/man/man1/odvicopy.1 texmf-dist/doc/man/man1/odvicopy.man1.pdf texmf-dist/doc/man/man1/odvitype.1 @@ -227284,9 +229833,9 @@ catalogue-topics engine omega obsolete name omegaware.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of omegaware -binfiles arch=aarch64-linux size=303 +binfiles arch=aarch64-linux size=304 bin/aarch64-linux/odvicopy bin/aarch64-linux/odvitype bin/aarch64-linux/ofm2opl @@ -227303,9 +229852,9 @@ binfiles arch=aarch64-linux size=303 name omegaware.amd64-freebsd category TLCore -revision 71441 +revision 73792 shortdesc amd64-freebsd files of omegaware -binfiles arch=amd64-freebsd size=365 +binfiles arch=amd64-freebsd size=364 bin/amd64-freebsd/odvicopy bin/amd64-freebsd/odvitype bin/amd64-freebsd/ofm2opl @@ -227322,9 +229871,9 @@ binfiles arch=amd64-freebsd size=365 name omegaware.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of omegaware -binfiles arch=amd64-netbsd size=343 +binfiles arch=amd64-netbsd size=344 bin/amd64-netbsd/odvicopy bin/amd64-netbsd/odvitype bin/amd64-netbsd/ofm2opl @@ -227341,9 +229890,9 @@ binfiles arch=amd64-netbsd size=343 name omegaware.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of omegaware -binfiles arch=armhf-linux size=238 +binfiles arch=armhf-linux size=209 bin/armhf-linux/odvicopy bin/armhf-linux/odvitype bin/armhf-linux/ofm2opl @@ -227360,9 +229909,9 @@ binfiles arch=armhf-linux size=238 name omegaware.i386-freebsd category TLCore -revision 71441 +revision 73792 shortdesc i386-freebsd files of omegaware -binfiles arch=i386-freebsd size=365 +binfiles arch=i386-freebsd size=364 bin/i386-freebsd/odvicopy bin/i386-freebsd/odvitype bin/i386-freebsd/ofm2opl @@ -227379,9 +229928,9 @@ binfiles arch=i386-freebsd size=365 name omegaware.i386-linux category TLCore -revision 70571 +revision 73792 shortdesc i386-linux files of omegaware -binfiles arch=i386-linux size=313 +binfiles arch=i386-linux size=338 bin/i386-linux/odvicopy bin/i386-linux/odvitype bin/i386-linux/ofm2opl @@ -227398,9 +229947,9 @@ binfiles arch=i386-linux size=313 name omegaware.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of omegaware -binfiles arch=i386-netbsd size=323 +binfiles arch=i386-netbsd size=325 bin/i386-netbsd/odvicopy bin/i386-netbsd/odvitype bin/i386-netbsd/ofm2opl @@ -227417,9 +229966,9 @@ binfiles arch=i386-netbsd size=323 name omegaware.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of omegaware -binfiles arch=i386-solaris size=289 +binfiles arch=i386-solaris size=294 bin/i386-solaris/odvicopy bin/i386-solaris/odvitype bin/i386-solaris/ofm2opl @@ -227436,7 +229985,7 @@ binfiles arch=i386-solaris size=289 name omegaware.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of omegaware binfiles arch=universal-darwin size=805 bin/universal-darwin/odvicopy @@ -227455,7 +230004,7 @@ binfiles arch=universal-darwin size=805 name omegaware.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of omegaware binfiles arch=windows size=159 bin/windows/odvicopy.exe @@ -227474,7 +230023,7 @@ binfiles arch=windows size=159 name omegaware.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of omegaware binfiles arch=x86_64-cygwin size=143 bin/x86_64-cygwin/odvicopy.exe @@ -227493,7 +230042,7 @@ binfiles arch=x86_64-cygwin size=143 name omegaware.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of omegaware binfiles arch=x86_64-darwinlegacy size=277 bin/x86_64-darwinlegacy/odvicopy @@ -227512,9 +230061,9 @@ binfiles arch=x86_64-darwinlegacy size=277 name omegaware.x86_64-linux category TLCore -revision 70571 +revision 73777 shortdesc x86_64-linux files of omegaware -binfiles arch=x86_64-linux size=283 +binfiles arch=x86_64-linux size=287 bin/x86_64-linux/odvicopy bin/x86_64-linux/odvitype bin/x86_64-linux/ofm2opl @@ -227531,9 +230080,9 @@ binfiles arch=x86_64-linux size=283 name omegaware.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of omegaware -binfiles arch=x86_64-linuxmusl size=292 +binfiles arch=x86_64-linuxmusl size=299 bin/x86_64-linuxmusl/odvicopy bin/x86_64-linuxmusl/odvitype bin/x86_64-linuxmusl/ofm2opl @@ -227550,9 +230099,9 @@ binfiles arch=x86_64-linuxmusl size=292 name omegaware.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of omegaware -binfiles arch=x86_64-solaris size=328 +binfiles arch=x86_64-solaris size=329 bin/x86_64-solaris/odvicopy bin/x86_64-solaris/odvitype bin/x86_64-solaris/ofm2opl @@ -227567,6 +230116,34 @@ binfiles arch=x86_64-solaris size=328 bin/x86_64-solaris/wopl2ofm bin/x86_64-solaris/wovf2ovp +name omgtudoc-asoiu +category Package +revision 74102 +shortdesc A class for documents of the ASOIU department at Omsk State Technical University +longdesc This package provides a class for documents which are prepared +longdesc on the "Automatic systems for information processing and +longdesc control" (ASOIU) of Omsk State Technical University, Omsk, +longdesc Russia. The class is based on the article class and requires +longdesc XeLaTeX or LuaLaTeX for its proper working. Formatting complies +longdesc with the instructions issued on January 29, 2024 and at GOST +longdesc 7.32-2017. +docfiles size=103 + texmf-dist/doc/latex/omgtudoc-asoiu/README.md details="Readme" + texmf-dist/doc/latex/omgtudoc-asoiu/courseproj.tpt + texmf-dist/doc/latex/omgtudoc-asoiu/labreport.tpt + texmf-dist/doc/latex/omgtudoc-asoiu/minimal.tpt + texmf-dist/doc/latex/omgtudoc-asoiu/omgtudoc-asoiu.pdf details="Package documentation" +srcfiles size=15 + texmf-dist/source/latex/omgtudoc-asoiu/omgtudoc-asoiu.dtx + texmf-dist/source/latex/omgtudoc-asoiu/omgtudoc-asoiu.ins +runfiles size=4 + texmf-dist/tex/latex/omgtudoc-asoiu/omgtu-gost-numeric.bbx + texmf-dist/tex/latex/omgtudoc-asoiu/omgtudoc-asoiu.cls +catalogue-ctan /macros/unicodetex/latex/omgtudoc-asoiu +catalogue-license lppl1.3 +catalogue-topics class article-like std-conform +catalogue-version 1.1a + name onedown category Package revision 69067 @@ -229209,7 +231786,7 @@ catalogue-version 1.0 name optex category Package -revision 71642 +revision 73776 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, @@ -229225,8 +231802,8 @@ depend luatex depend optex.ARCH depend rsfs depend unicode-data -execute AddFormat name=optex engine=luatex options="optex.ini" fmttriggers=amsfonts,cm,ec,hyphen-base,lm,rsfs,unicode-data -docfiles size=534 +execute AddFormat name=optex engine=luahbtex options="optex.ini" fmttriggers=amsfonts,cm,ec,hyphen-base,lm,rsfs,unicode-data +docfiles size=539 texmf-dist/doc/man/man1/optex.1 texmf-dist/doc/man/man1/optex.man1.pdf texmf-dist/doc/optex/base/README details="Readme" @@ -229237,7 +231814,7 @@ docfiles size=534 texmf-dist/doc/optex/base/optex-techdoc.tex texmf-dist/doc/optex/base/optex-userdoc.tex texmf-dist/doc/optex/base/primitives.tex -runfiles size=579 +runfiles size=585 texmf-dist/tex/optex/base/alloc.opm texmf-dist/tex/optex/base/basic-macros.opm texmf-dist/tex/optex/base/bib-iso690.opm @@ -229284,11 +231861,14 @@ runfiles size=579 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-neohellenic.opm texmf-dist/tex/optex/base/f-newcm.opm texmf-dist/tex/optex/base/f-oldstandard.opm texmf-dist/tex/optex/base/f-overlock.opm texmf-dist/tex/optex/base/f-pagella.opm + texmf-dist/tex/optex/base/f-plex.opm texmf-dist/tex/optex/base/f-poltawski.opm + texmf-dist/tex/optex/base/f-raleway.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 @@ -229309,10 +231889,10 @@ runfiles size=579 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-kt.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/hisytnax-kt.opm texmf-dist/tex/optex/base/hyperlinks.opm texmf-dist/tex/optex/base/if-macros.opm texmf-dist/tex/optex/base/keyval.opm @@ -229377,109 +231957,109 @@ catalogue-contact-home http://petr.olsak.net/optex catalogue-ctan /macros/optex catalogue-license pd catalogue-topics format luatex plain-ext -catalogue-version 1.15 +catalogue-version 1.16 name optex.aarch64-linux category Package -revision 53804 +revision 73828 shortdesc aarch64-linux files of optex binfiles arch=aarch64-linux size=1 bin/aarch64-linux/optex name optex.amd64-freebsd category Package -revision 53804 +revision 73828 shortdesc amd64-freebsd files of optex binfiles arch=amd64-freebsd size=1 bin/amd64-freebsd/optex name optex.amd64-netbsd category Package -revision 53804 +revision 73828 shortdesc amd64-netbsd files of optex binfiles arch=amd64-netbsd size=1 bin/amd64-netbsd/optex name optex.armhf-linux category Package -revision 53804 +revision 73828 shortdesc armhf-linux files of optex binfiles arch=armhf-linux size=1 bin/armhf-linux/optex name optex.i386-freebsd category Package -revision 53804 +revision 73828 shortdesc i386-freebsd files of optex binfiles arch=i386-freebsd size=1 bin/i386-freebsd/optex name optex.i386-linux category Package -revision 53804 +revision 73828 shortdesc i386-linux files of optex binfiles arch=i386-linux size=1 bin/i386-linux/optex name optex.i386-netbsd category Package -revision 53804 +revision 73828 shortdesc i386-netbsd files of optex binfiles arch=i386-netbsd size=1 bin/i386-netbsd/optex name optex.i386-solaris category Package -revision 53804 +revision 73828 shortdesc i386-solaris files of optex binfiles arch=i386-solaris size=1 bin/i386-solaris/optex name optex.universal-darwin category Package -revision 57908 +revision 73828 shortdesc universal-darwin files of optex binfiles arch=universal-darwin size=1 bin/universal-darwin/optex name optex.windows category Package -revision 65891 +revision 73799 shortdesc windows files of optex binfiles arch=windows size=2 bin/windows/optex.exe name optex.x86_64-cygwin category Package -revision 53804 +revision 73828 shortdesc x86_64-cygwin files of optex binfiles arch=x86_64-cygwin size=1 bin/x86_64-cygwin/optex name optex.x86_64-darwinlegacy category Package -revision 53804 +revision 73828 shortdesc x86_64-darwinlegacy files of optex binfiles arch=x86_64-darwinlegacy size=1 bin/x86_64-darwinlegacy/optex name optex.x86_64-linux category Package -revision 53804 +revision 73828 shortdesc x86_64-linux files of optex binfiles arch=x86_64-linux size=1 bin/x86_64-linux/optex name optex.x86_64-linuxmusl category Package -revision 53804 +revision 73828 shortdesc x86_64-linuxmusl files of optex binfiles arch=x86_64-linuxmusl size=1 bin/x86_64-linuxmusl/optex name optex.x86_64-solaris category Package -revision 53804 +revision 73828 shortdesc x86_64-solaris files of optex binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/optex @@ -229820,39 +232400,6 @@ catalogue-license lppl1.3 catalogue-topics legal biblatex catalogue-version 1.7 -name osda -category Package -revision 71147 -shortdesc Commands for Proceedings of the Workshop on Open-Source Design Automation -longdesc This package automatically places a copyright notice as an -longdesc un-numbered footnote on the title page of a document that calls -longdesc \maketitle, indicating the information on the workshop where -longdesc the paper was presented, along with additional information on -longdesc the host conference, the license under which the document is -longdesc published, and a link to the corresponding web page of the -longdesc paper. The generated copyright notice contains a logo of the -longdesc workshop, and a QR code that points to the paper's web page (to -longdesc lead to further material). For cases when the copyright notice -longdesc is not automatically set in the title page's footnote, the -longdesc copyright notice can be set manually as well. -docfiles size=101 - texmf-dist/doc/latex/osda/README.md details="Readme" - texmf-dist/doc/latex/osda/example.png - texmf-dist/doc/latex/osda/osda.pdf details="Package documentation" -srcfiles size=9 - texmf-dist/source/latex/osda/osda.dtx - texmf-dist/source/latex/osda/osda.ins -runfiles size=4 - texmf-dist/tex/latex/osda/osda.sty -catalogue-contact-bugs https://osda.ws/r/vZnf4 -catalogue-contact-development https://osda.ws/r/AGryr -catalogue-contact-home https://osda.ws/r/ir2rh -catalogue-contact-repository https://osda.ws/r/X0mQT -catalogue-ctan /macros/latex/contrib/osda -catalogue-license lppl1.3 other-nonfree -catalogue-topics journalpub footnote -catalogue-version 1.4.0 - name oststud category Package revision 67217 @@ -230240,23 +232787,21 @@ catalogue-version 1.2 name outilsgeomtikz category Package -revision 69124 +revision 73069 shortdesc Some geometric tools, with TikZ 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, ... -docfiles size=135 +docfiles size=265 texmf-dist/doc/latex/outilsgeomtikz/OutilsGeomTikz-doc.pdf details="Package documentation" language="fr" texmf-dist/doc/latex/outilsgeomtikz/OutilsGeomTikz-doc.tex texmf-dist/doc/latex/outilsgeomtikz/README.md details="Readme" runfiles size=9 texmf-dist/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.5 +catalogue-version 0.1.6 name outline category Package @@ -230339,29 +232884,29 @@ catalogue-version 0.1 name overarrows category Package -revision 65853 +revision 73702 shortdesc Custom extensible arrows over math expressions 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. -docfiles size=145 +docfiles size=156 texmf-dist/doc/latex/overarrows/LICENSE texmf-dist/doc/latex/overarrows/README.md details="Readme" texmf-dist/doc/latex/overarrows/overarrows-doc.sty texmf-dist/doc/latex/overarrows/overarrows.pdf details="Package documentation" -srcfiles size=32 +srcfiles size=36 texmf-dist/source/latex/overarrows/overarrows.dtx texmf-dist/source/latex/overarrows/overarrows.ins -runfiles size=7 +runfiles size=8 texmf-dist/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-contact-bugs https://github.com/julienlabbe/latex-packages/issues +catalogue-contact-repository https://github.com/julienlabbe/latex-packages catalogue-ctan /macros/latex/contrib/overarrows catalogue-license lppl1.3c catalogue-topics maths pgf-tikz -catalogue-version 1.1 +catalogue-version 1.3 name overlays category Package @@ -230719,28 +233264,41 @@ catalogue-ctan /fonts/pacioli catalogue-license lppl catalogue-topics font font-mf font-historical -name padauk +name packdoc category Package -revision 42617 -shortdesc A high-quality TrueType font that supports the many diverse languages that use the Myanmar script -longdesc Padauk is a Unicode-based font family with broad support for -longdesc writing systems that use the Myanmar script. -docfiles size=11 - texmf-dist/doc/fonts/padauk/FONTLOG.txt - texmf-dist/doc/fonts/padauk/OFL-FAQ.txt - texmf-dist/doc/fonts/padauk/OFL.txt - texmf-dist/doc/fonts/padauk/README details="Readme" - texmf-dist/doc/fonts/padauk/README.TEXLIVE -runfiles size=418 - texmf-dist/fonts/truetype/public/padauk/Padauk-Bold.ttf - texmf-dist/fonts/truetype/public/padauk/Padauk-Regular.ttf - texmf-dist/fonts/truetype/public/padauk/PadaukBook-Bold.ttf - texmf-dist/fonts/truetype/public/padauk/PadaukBook-Regular.ttf -catalogue-contact-home http://software.sil.org/padauk/ -catalogue-ctan /fonts/padauk -catalogue-license ofl -catalogue-topics font-ttf -catalogue-version 3.002 +revision 73661 +shortdesc Document LaTeX packages in a consistent way +longdesc This package offers a variety of features for documenting LaTeX +longdesc packages, ensuring consistent presentation, cross-referencing, +longdesc and index generation. It also supports version and change +longdesc tracking to maintain a consistent change history. +depend enumitem +depend etoolbox +depend geometry +depend hyperref +depend marginnote +depend minted +depend nowidow +depend pgfopts +depend ragged2e +depend snaptodo +depend tcolorbox +depend tools +docfiles size=132 + texmf-dist/doc/latex/packdoc/DEPENDS.txt + texmf-dist/doc/latex/packdoc/README.md details="Readme" + texmf-dist/doc/latex/packdoc/license + texmf-dist/doc/latex/packdoc/packdoc-change-history-example.tex + texmf-dist/doc/latex/packdoc/packdoc-doc.pdf details="Package documentation" + texmf-dist/doc/latex/packdoc/packdoc-doc.tex +runfiles size=7 + texmf-dist/tex/latex/packdoc/packdoc.sty +catalogue-contact-bugs https://github.com/jandermoreira/packdoc/issues +catalogue-contact-home https://github.com/jandermoreira/packdoc +catalogue-ctan /macros/latex/contrib/packdoc +catalogue-license lppl1.3c +catalogue-topics doc-supp +catalogue-version 0.1 name padcount category Package @@ -230769,7 +233327,7 @@ catalogue-version 1.0 name pagecolor category Package -revision 66885 +revision 73636 shortdesc Interrogate page color longdesc This package provides the command \thepagecolor, which gives longdesc the current page (background) color, i. e. the argument used @@ -230800,7 +233358,7 @@ runfiles size=3 catalogue-ctan /macros/latex/contrib/pagecolor catalogue-license lppl1.3c catalogue-topics colour -catalogue-version 1.2c +catalogue-version 1.2d name pagecont category Package @@ -230848,7 +233406,7 @@ catalogue-version 1.6 name pagelayout category Package -revision 69486 +revision 71937 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, @@ -230860,10 +233418,10 @@ 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 pagelayout class also integrates the PGF/TikZ and tcolorbox longdesc LaTeX packages. depend pagelayout.ARCH -docfiles size=1273 +docfiles size=1275 texmf-dist/doc/latex/pagelayout/1x1.pdf texmf-dist/doc/latex/pagelayout/2x1.pdf texmf-dist/doc/latex/pagelayout/3x2.pdf @@ -230911,7 +233469,7 @@ catalogue-contact-repository https://github.com/friedemannbartels/latex-pagelayo catalogue-ctan /macros/latex/contrib/pagelayout catalogue-license lppl1.3c catalogue-topics layout pgf-tikz class -catalogue-version 1.1.0 +catalogue-version 1.1.1 name pagelayout.aarch64-linux category Package @@ -231108,32 +233666,35 @@ catalogue-version 1.10 name pageslts category Package -revision 39164 +revision 73400 shortdesc Variants of last page labels longdesc The package was designed as an extension of the lastpage -longdesc package -- as well as that package's LastPage label (created -longdesc \AtEndDocument) it adds a VeryLastPage (created +longdesc package -- as well as that package's LastPage label (created in +longdesc hook enddocument/afterlastpage, formerly \AtEndDocument) it +longdesc adds a VeryLastPage (created in the same hook, but formerly longdesc \AfterLastShipout). When more than one page numbering scheme is longdesc in operation (as in a book class document with frontmatter), longdesc the labels above do not give the total number of pages, so the longdesc package also provides labels pagesLTS.<numbering scheme>, where longdesc the numbering scheme is arabic, roman, etc. The package relies -longdesc on the undolabl package. -docfiles size=244 +longdesc on the undolabl package. Note: The "LTS" of the package name +longdesc stands for: "L" = number of Last page, "T" = Total number of +longdesc pages, "S" = page numbering Schemes (roman, arabic, ...) +docfiles size=247 texmf-dist/doc/latex/pageslts/README details="Readme" texmf-dist/doc/latex/pageslts/pageslts-example.pdf details="Package examples" texmf-dist/doc/latex/pageslts/pageslts-example.tex texmf-dist/doc/latex/pageslts/pageslts.pdf details="Package documentation" -srcfiles size=56 +srcfiles size=58 texmf-dist/source/latex/pageslts/pageslts.drv texmf-dist/source/latex/pageslts/pageslts.dtx texmf-dist/source/latex/pageslts/pageslts.ins -runfiles size=12 +runfiles size=11 texmf-dist/tex/latex/pageslts/pageslts.sty catalogue-ctan /macros/latex/contrib/pageslts -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics label-ref -catalogue-version 1.2f +catalogue-version 2.0d name palatino category Package @@ -231428,16 +233989,16 @@ catalogue-version 0.0c name panneauxroute category Package -revision 67951 +revision 73069 shortdesc Commands to display French road signs (vector graphics) longdesc The package provides commands to insert French road signs as longdesc vector graphics: \AffPanneau[graphicx options]{code} longdesc \prcode[graphicx options] -docfiles size=177 +docfiles size=194 texmf-dist/doc/latex/panneauxroute/PanneauxRoute-doc.pdf details="Package documentation" texmf-dist/doc/latex/panneauxroute/PanneauxRoute-doc.tex texmf-dist/doc/latex/panneauxroute/README.md details="Readme" -runfiles size=247 +runfiles size=292 texmf-dist/tex/latex/panneauxroute/Danger/PanneauRouteA13a.pdf texmf-dist/tex/latex/panneauxroute/Danger/PanneauRouteA13b.pdf texmf-dist/tex/latex/panneauxroute/Danger/PanneauRouteA14.pdf @@ -231489,6 +234050,7 @@ runfiles size=247 texmf-dist/tex/latex/panneauxroute/Indication/PanneauRouteC20a.pdf texmf-dist/tex/latex/panneauxroute/Indication/PanneauRouteC20c.pdf texmf-dist/tex/latex/panneauxroute/Indication/PanneauRouteC23.pdf + texmf-dist/tex/latex/panneauxroute/Indication/PanneauRouteC24a.pdf texmf-dist/tex/latex/panneauxroute/Indication/PanneauRouteC24a1.pdf texmf-dist/tex/latex/panneauxroute/Indication/PanneauRouteC24a4.pdf texmf-dist/tex/latex/panneauxroute/Indication/PanneauRouteC24b1.pdf @@ -231531,6 +234093,7 @@ runfiles size=247 texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB14_30.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB14_50.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB14_70.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB14_80.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB14_90.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB15.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB16.pdf @@ -231539,10 +234102,12 @@ runfiles size=247 texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB18b.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB18c.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB19.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB1j.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB2a.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB2b.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB2c.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB3.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB30_30.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB31.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB33_110.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB33_130.pdf @@ -231563,6 +234128,11 @@ runfiles size=247 texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6a1.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6a2.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6a3.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6b1.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6b2.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6b3.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6b4.pdf + texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6b5.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB6d.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB7a.pdf texmf-dist/tex/latex/panneauxroute/Interdiction/PanneauRouteB7b.pdf @@ -231610,6 +234180,21 @@ runfiles size=247 texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB44.pdf texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB45a.pdf texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB49.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB49VL.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB50a.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB50b.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB50c.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB50d.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB50e.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB51_30.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB52.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB53.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB54.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB55.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB56.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB57.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB58.pdf + texmf-dist/tex/latex/panneauxroute/Obligation/PanneauRouteB59.pdf texmf-dist/tex/latex/panneauxroute/PanneauxRoute.sty texmf-dist/tex/latex/panneauxroute/Services/PanneauRouteCE1.pdf texmf-dist/tex/latex/panneauxroute/Services/PanneauRouteCE10.pdf @@ -231648,12 +234233,20 @@ runfiles size=247 texmf-dist/tex/latex/panneauxroute/Services/PanneauRouteCE7.pdf texmf-dist/tex/latex/panneauxroute/Services/PanneauRouteCE8.pdf texmf-dist/tex/latex/panneauxroute/Services/PanneauRouteCE9.pdf -catalogue-contact-bugs https://github.com/cpierquet/PanneauxRoute/issues -catalogue-contact-repository https://github.com/cpierquet/PanneauxRoute + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK14.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK17.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK2.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK22.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK3.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK30.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK31.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK32.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK4.pdf + texmf-dist/tex/latex/panneauxroute/Temporaire/PanneauRouteAK5.pdf catalogue-ctan /macros/latex/contrib/panneauxroute catalogue-license lppl1.3c cc-by-sa-3 catalogue-topics french graphics-use -catalogue-version 0.1.0 +catalogue-version 0.1.2 name paper category Package @@ -231759,7 +234352,7 @@ catalogue-version 1.2b name papiergurvan category Package -revision 68239 +revision 73069 shortdesc Commands to work with Gurvan Paper longdesc This package provides commands to display Gurvan grids or longdesc Gurvan full pages, and also the possibility to write on lines. @@ -231776,8 +234369,6 @@ docfiles size=147 texmf-dist/doc/latex/papiergurvan/README.md details="Readme" runfiles size=4 texmf-dist/tex/latex/papiergurvan/PapierGurvan.sty -catalogue-contact-bugs https://github.com/cpierquet/papiergurvan/issues -catalogue-contact-repository https://github.com/cpierquet/papiergurvan catalogue-ctan /graphics/pgf/contrib/papiergurvan catalogue-license lppl1.3c catalogue-topics typeset-grid pgf-tikz french @@ -231785,18 +234376,18 @@ catalogue-version 0.1.0 name paracol category Package -revision 49560 +revision 72651 shortdesc Multiple columns with texts "in parallel" longdesc The package provides yet another multi-column typesetting longdesc mechanism by which you produce multi-column (e.g., bilingual) longdesc document switching and sychronizing each corresponding part in longdesc "parallel". -docfiles size=544 +docfiles size=657 texmf-dist/doc/latex/paracol/README details="Readme" - texmf-dist/doc/latex/paracol/paracol-man.pdf details="Package documentation" + texmf-dist/doc/latex/paracol/paracol-man.pdf details="User manual" texmf-dist/doc/latex/paracol/paracol-man.tex - texmf-dist/doc/latex/paracol/paracol.pdf -srcfiles size=267 + texmf-dist/doc/latex/paracol/paracol.pdf details="Complete package documentation" +srcfiles size=268 texmf-dist/source/latex/paracol/bgpaint.dtx texmf-dist/source/latex/paracol/impl.dtx texmf-dist/source/latex/paracol/man.dtx @@ -231806,13 +234397,15 @@ srcfiles size=267 texmf-dist/source/latex/paracol/probs.dtx texmf-dist/source/latex/paracol/pwfnote.dtx texmf-dist/source/latex/paracol/ref.dtx -runfiles size=26 +runfiles size=53 + texmf-dist/tex/latex/paracol/paracol-2018-12-31.sty texmf-dist/tex/latex/paracol/paracol.sty catalogue-also parallel parcolumns +catalogue-contact-repository https://codeberg.org/mgkurtz/paracol catalogue-ctan /macros/latex/contrib/paracol catalogue-license lppl catalogue-topics parallel linguistic -catalogue-version 1.35 +catalogue-version 1.36 name parades category Package @@ -232986,14 +235579,14 @@ catalogue-version 2.01 name pas-tableur category Package -revision 66860 +revision 72283 shortdesc Create a spreadsheet layout longdesc The package provides commands for creating a grid of longdesc rectangles, and commands for populating locations in the grid. longdesc PGF/TikZ is used for placement and population of the cells. -docfiles size=7 - texmf-dist/doc/latex/pas-tableur/README details="Readme" +docfiles size=8 texmf-dist/doc/latex/pas-tableur/README.TEXLIVE + texmf-dist/doc/latex/pas-tableur/README.txt details="Readme" texmf-dist/doc/latex/pas-tableur/doc.codes.tex texmf-dist/doc/latex/pas-tableur/doc.styles.tex texmf-dist/doc/latex/pas-tableur/pas-tableur.tex @@ -233002,7 +235595,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/pas-tableur catalogue-license lppl catalogue-topics alignment pgf-tikz -catalogue-version 2.05 +catalogue-version 2.06 name pascaltriangle category Package @@ -233050,6 +235643,25 @@ catalogue-ctan /macros/plain/formats/xmltex/contrib/passivetex catalogue-license other-free catalogue-topics foreign-import +name passopt +category Package +revision 72638 +shortdesc Passing options to packages or classes +longdesc This package allows to reset the global options of a loaded +longdesc macro package or document class, or to change the position of +longdesc the pre-passed options in the list to the right. +docfiles size=15 + texmf-dist/doc/latex/passopt/README.md details="Readme" + texmf-dist/doc/latex/passopt/passopt.pdf details="Package documentation" + texmf-dist/doc/latex/passopt/passopt.tex +runfiles size=1 + texmf-dist/tex/latex/passopt/passopt.sty +catalogue-contact-repository https://github.com/texno3/passopt +catalogue-ctan /macros/latex/contrib/passopt +catalogue-license cc-by-4 +catalogue-topics typeset-tool typesetting expl3 +catalogue-version 1.01c + name patch category Package revision 42428 @@ -233093,7 +235705,7 @@ catalogue-version 1.05 name patgen category TLCore -revision 70015 +revision 73848 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. @@ -233121,105 +235733,105 @@ catalogue-version 2.4 name patgen.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of patgen binfiles arch=aarch64-linux size=12 bin/aarch64-linux/patgen name patgen.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of patgen binfiles arch=amd64-freebsd size=14 bin/amd64-freebsd/patgen name patgen.amd64-netbsd category TLCore -revision 69797 +revision 73802 shortdesc amd64-netbsd files of patgen binfiles arch=amd64-netbsd size=13 bin/amd64-netbsd/patgen name patgen.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of patgen -binfiles arch=armhf-linux size=9 +binfiles arch=armhf-linux size=8 bin/armhf-linux/patgen name patgen.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of patgen binfiles arch=i386-freebsd size=14 bin/i386-freebsd/patgen name patgen.i386-linux category TLCore -revision 70571 +revision 73792 shortdesc i386-linux files of patgen -binfiles arch=i386-linux size=11 +binfiles arch=i386-linux size=13 bin/i386-linux/patgen name patgen.i386-netbsd category TLCore -revision 69797 +revision 73802 shortdesc i386-netbsd files of patgen binfiles arch=i386-netbsd size=12 bin/i386-netbsd/patgen name patgen.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of patgen -binfiles arch=i386-solaris size=12 +binfiles arch=i386-solaris size=13 bin/i386-solaris/patgen name patgen.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of patgen binfiles arch=universal-darwin size=55 bin/universal-darwin/patgen name patgen.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of patgen binfiles arch=windows size=8 bin/windows/patgen.exe name patgen.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of patgen binfiles arch=x86_64-cygwin size=9 bin/x86_64-cygwin/patgen.exe name patgen.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of patgen -binfiles arch=x86_64-darwinlegacy size=13 +binfiles arch=x86_64-darwinlegacy size=12 bin/x86_64-darwinlegacy/patgen name patgen.x86_64-linux category TLCore -revision 70571 +revision 73777 shortdesc x86_64-linux files of patgen binfiles arch=x86_64-linux size=10 bin/x86_64-linux/patgen name patgen.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of patgen -binfiles arch=x86_64-linuxmusl size=12 +binfiles arch=x86_64-linuxmusl size=14 bin/x86_64-linuxmusl/patgen name patgen.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of patgen binfiles arch=x86_64-solaris size=14 bin/x86_64-solaris/patgen @@ -234163,32 +236775,33 @@ catalogue-version 0.3 name pdfjam category Package -revision 71641 +revision 73677 shortdesc Shell scripts interfacing to pdfpages longdesc The package makes available the pdfjam shell script that longdesc provides a simple interface to much of the functionality of the longdesc excellent pdfpages package (by Andreas Matthias) for LaTeX. The -longdesc pdfjam script takes one or more PDF files (and/or JPG/PNG -longdesc graphics files) as input, and produces one or more PDF files as -longdesc output. It is useful for joining files together, selecting -longdesc pages, reducing several source pages onto one output page, -longdesc etc., etc. +longdesc pdfjam script takes one or more PDF (and/or JPG/PNG) files as +longdesc input, and produces one or more PDF files as output. It is +longdesc useful for joining files together, selecting pages, reducing +longdesc several source pages onto one output page, etc., etc. The +longdesc package contains no PDF documentation, but a comprehensive +longdesc --help output instead. depend pdfjam.ARCH -docfiles size=54 +docfiles size=27 texmf-dist/doc/man/man1/pdfjam.1 texmf-dist/doc/man/man1/pdfjam.man1.pdf texmf-dist/doc/support/pdfjam/COPYING texmf-dist/doc/support/pdfjam/README.md details="Readme" - texmf-dist/doc/support/pdfjam/VERSION + texmf-dist/doc/support/pdfjam/VERSION-4.1 texmf-dist/doc/support/pdfjam/pdfjam.conf - texmf-dist/doc/support/pdfjam/tests.zip -runfiles size=12 + texmf-dist/doc/support/pdfjam/zsh/_pdfjam +runfiles size=11 texmf-dist/scripts/pdfjam/pdfjam -catalogue-contact-repository https://github.com/rrthomas/pdfjam +catalogue-contact-repository https://github.com/pdfjam/pdfjam catalogue-ctan /support/pdfjam catalogue-license gpl2+ catalogue-topics pdfprocess -catalogue-version 3.12 +catalogue-version 4.1 name pdfjam.aarch64-linux category Package @@ -234290,22 +236903,22 @@ binfiles arch=x86_64-solaris size=1 name pdflatexpicscale category Package -revision 46617 +revision 72650 shortdesc Support software for downscaling graphics to be included by pdfLaTeX longdesc The package provides a script to scale pictures down to a longdesc target resolution before creating a PDF document with pdfLaTeX. depend pdflatexpicscale.ARCH -docfiles size=35 +docfiles size=38 texmf-dist/doc/support/pdflatexpicscale/README details="Readme" texmf-dist/doc/support/pdflatexpicscale/pdflatexpicscale.pdf details="Package documentation" texmf-dist/doc/support/pdflatexpicscale/pdflatexpicscale.tex texmf-dist/doc/support/pdflatexpicscale/testprinter.ps -runfiles size=2 +runfiles size=4 texmf-dist/scripts/pdflatexpicscale/pdflatexpicscale.pl catalogue-ctan /support/pdflatexpicscale catalogue-license lppl catalogue-topics graphics-prep -catalogue-version 0.32 +catalogue-version 0.50 name pdflatexpicscale.aarch64-linux category Package @@ -234438,7 +237051,7 @@ catalogue-version 0.13 name pdfmanagement-testphase category Package -revision 71339 +revision 74001 shortdesc LaTeX PDF management testphase bundle 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 @@ -234450,7 +237063,7 @@ 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. -docfiles size=2803 +docfiles size=2763 texmf-dist/doc/latex/pdfmanagement-testphase/CHANGELOG.md texmf-dist/doc/latex/pdfmanagement-testphase/README.md details="Readme" texmf-dist/doc/latex/pdfmanagement-testphase/hyperref-generic.pdf @@ -234473,7 +237086,7 @@ docfiles size=2803 texmf-dist/doc/latex/pdfmanagement-testphase/pdfmanagement-firstaid.pdf texmf-dist/doc/latex/pdfmanagement-testphase/pdfmanagement-testphase.pdf details="Package documentation" texmf-dist/doc/latex/pdfmanagement-testphase/update-metadata.txt -srcfiles size=206 +srcfiles size=208 texmf-dist/source/latex/pdfmanagement-testphase/hyperref-generic.dtx texmf-dist/source/latex/pdfmanagement-testphase/l3backend-testphase.dtx texmf-dist/source/latex/pdfmanagement-testphase/l3pdfannot.dtx @@ -234494,7 +237107,7 @@ srcfiles size=206 texmf-dist/source/latex/pdfmanagement-testphase/pdfmanagement-firstaid.dtx texmf-dist/source/latex/pdfmanagement-testphase/pdfmanagement-testphase.dtx texmf-dist/source/latex/pdfmanagement-testphase/pdfmanagement-testphase.ins -runfiles size=110 +runfiles size=111 texmf-dist/tex/latex/pdfmanagement-testphase/color-ltx.sty texmf-dist/tex/latex/pdfmanagement-testphase/colorspace-patches-tmp-ltx.sty texmf-dist/tex/latex/pdfmanagement-testphase/hgeneric-testphase.def @@ -234516,7 +237129,7 @@ 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.96i +catalogue-version 0.96p name pdfmarginpar category Package @@ -234628,7 +237241,7 @@ catalogue-version 1.4 name pdfpages category Package -revision 71386 +revision 73673 shortdesc Include PDF documents in LaTeX longdesc This package simplifies the inclusion of external multi-page longdesc PDF documents in LaTeX documents. Pages may be freely selected @@ -234642,14 +237255,14 @@ depend eso-pic depend graphics depend oberdiek depend tools -docfiles size=90 +docfiles size=57 texmf-dist/doc/latex/pdfpages/dummy-l.pdf texmf-dist/doc/latex/pdfpages/dummy.pdf texmf-dist/doc/latex/pdfpages/pdf-ex.tex texmf-dist/doc/latex/pdfpages/pdf-hyp.tex texmf-dist/doc/latex/pdfpages/pdf-toc.tex texmf-dist/doc/latex/pdfpages/pdfpages.pdf details="Package documentation" -srcfiles size=46 +srcfiles size=49 texmf-dist/source/latex/pdfpages/README texmf-dist/source/latex/pdfpages/pdfpages.dtx texmf-dist/source/latex/pdfpages/pdfpages.ins @@ -234662,10 +237275,11 @@ runfiles size=25 texmf-dist/tex/latex/pdfpages/pppdftex.def texmf-dist/tex/latex/pdfpages/ppvtex.def texmf-dist/tex/latex/pdfpages/ppxetex.def +catalogue-contact-repository https://github.com/AndreasMatthias/pdfpages catalogue-ctan /macros/latex/contrib/pdfpages catalogue-license lppl1.3c catalogue-topics graphics-incl pdf-feat -catalogue-version 0.6a +catalogue-version 0.6e name pdfpc category Package @@ -234902,7 +237516,7 @@ catalogue-topics debug-supp name pdftex category TLCore -revision 71605 +revision 74113 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 @@ -234923,7 +237537,7 @@ 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 -docfiles size=1400 +docfiles size=1756 texmf-dist/doc/man/man1/pdfetex.1 texmf-dist/doc/man/man1/pdfetex.man1.pdf texmf-dist/doc/man/man1/pdftex.1 @@ -235079,6 +237693,8 @@ docfiles size=1400 texmf-dist/doc/pdftex/tests/27-late-shipout/test-shipout.tex texmf-dist/doc/pdftex/tests/28-fake-interword-space-updated/Makefile texmf-dist/doc/pdftex/tests/28-fake-interword-space-updated/fake-interword-space.tex + texmf-dist/doc/pdftex/tests/28-fake-interword-space-updated/pdftexspace.pfb + texmf-dist/doc/pdftex/tests/28-fake-interword-space-updated/pdftexspace.tfm texmf-dist/doc/pdftex/tests/28-fake-interword-space-updated/pdftexspace/Makefile texmf-dist/doc/pdftex/tests/28-fake-interword-space-updated/pdftexspace/pdftexspace.pfb texmf-dist/doc/pdftex/tests/28-fake-interword-space-updated/pdftexspace/pdftexspace.pl @@ -235101,6 +237717,60 @@ docfiles size=1400 texmf-dist/doc/pdftex/tests/34-pdf-inclusion/Makefile texmf-dist/doc/pdftex/tests/34-pdf-inclusion/doc.tex texmf-dist/doc/pdftex/tests/34-pdf-inclusion/shadowbox.pdf + texmf-dist/doc/pdftex/tests/35-space-chars-lost-overfull/Makefile + texmf-dist/doc/pdftex/tests/35-space-chars-lost-overfull/f.tex + texmf-dist/doc/pdftex/tests/35-space-chars-lost-overfull/pdftexspace.pfb + texmf-dist/doc/pdftex/tests/35-space-chars-lost-overfull/pdftexspace.tfm + texmf-dist/doc/pdftex/tests/36-ptex-use-underscore/Makefile + texmf-dist/doc/pdftex/tests/36-ptex-use-underscore/f.tex + texmf-dist/doc/pdftex/tests/36-ptex-use-underscore/f2.tex + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/i.pdf + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/i.tex + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/test-1.jpg + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/test-2.jpg + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/test-3.jpg + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/test-4.jpg + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/test-5.jpg + texmf-dist/doc/pdftex/tests/37-ignore-tiny-image-resolutions/test-6.jpg + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/Makefile + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/a.bib + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/a1.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/a2.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/a3.bbl + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/a3.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/advanced-lnx.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/basic-w32.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/beamersam.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/changefontspace.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/compare_pdfs.rb + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/examples/ex5.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/examples/ex6.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/examples/ex6a.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/examples/ex6b.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/examples/ex6c.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/f.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/f2.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/f3.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/from-latex-tagged-pdf/arXiv-2401.05361v1.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/from-latex-tagged-pdf/arXiv-2401.09965v1.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/from-latex-tagged-pdf/glosuba.bbl + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/from-latex-tagged-pdf/glosuba.bib + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/from-latex-tagged-pdf/glosuba.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/mathspace.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/nsis_installer.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/postpdf.sh + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/sample2e.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/stdcoll.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/test-plain.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/tex-live.sty + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/texlive-en.tex + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/tlcockpit-packages.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/tlmgr-gui.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/tlshell-linux.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/tlshell-macos.png + texmf-dist/doc/pdftex/tests/38-interword-space-at-font-switch/tray-menu.png + texmf-dist/doc/pdftex/tests/39-ignore-primitive-error/Makefile + texmf-dist/doc/pdftex/tests/39-ignore-primitive-error/f.tex texmf-dist/doc/pdftex/tests/Common.mak runfiles size=68 texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map @@ -235241,9 +237911,9 @@ binfiles arch=x86_64-solaris size=1 name pdftex.aarch64-linux category TLCore -revision 70772 +revision 74078 shortdesc aarch64-linux files of pdftex -binfiles arch=aarch64-linux size=664 +binfiles arch=aarch64-linux size=746 bin/aarch64-linux/etex bin/aarch64-linux/pdfetex bin/aarch64-linux/pdftex @@ -235251,9 +237921,9 @@ binfiles arch=aarch64-linux size=664 name pdftex.amd64-freebsd category TLCore -revision 70768 +revision 74051 shortdesc amd64-freebsd files of pdftex -binfiles arch=amd64-freebsd size=703 +binfiles arch=amd64-freebsd size=710 bin/amd64-freebsd/etex bin/amd64-freebsd/pdfetex bin/amd64-freebsd/pdftex @@ -235261,9 +237931,9 @@ binfiles arch=amd64-freebsd size=703 name pdftex.amd64-netbsd category TLCore -revision 70758 +revision 74100 shortdesc amd64-netbsd files of pdftex -binfiles arch=amd64-netbsd size=700 +binfiles arch=amd64-netbsd size=701 bin/amd64-netbsd/etex bin/amd64-netbsd/pdfetex bin/amd64-netbsd/pdftex @@ -235271,9 +237941,9 @@ binfiles arch=amd64-netbsd size=700 name pdftex.armhf-linux category TLCore -revision 70772 +revision 74078 shortdesc armhf-linux files of pdftex -binfiles arch=armhf-linux size=396 +binfiles arch=armhf-linux size=474 bin/armhf-linux/etex bin/armhf-linux/pdfetex bin/armhf-linux/pdftex @@ -235281,9 +237951,9 @@ binfiles arch=armhf-linux size=396 name pdftex.i386-freebsd category TLCore -revision 70768 +revision 74051 shortdesc i386-freebsd files of pdftex -binfiles arch=i386-freebsd size=703 +binfiles arch=i386-freebsd size=710 bin/i386-freebsd/etex bin/i386-freebsd/pdfetex bin/i386-freebsd/pdftex @@ -235291,9 +237961,9 @@ binfiles arch=i386-freebsd size=703 name pdftex.i386-linux category TLCore -revision 70768 +revision 74051 shortdesc i386-linux files of pdftex -binfiles arch=i386-linux size=570 +binfiles arch=i386-linux size=665 bin/i386-linux/etex bin/i386-linux/pdfetex bin/i386-linux/pdftex @@ -235301,9 +237971,9 @@ binfiles arch=i386-linux size=570 name pdftex.i386-netbsd category TLCore -revision 70758 +revision 74100 shortdesc i386-netbsd files of pdftex -binfiles arch=i386-netbsd size=621 +binfiles arch=i386-netbsd size=625 bin/i386-netbsd/etex bin/i386-netbsd/pdfetex bin/i386-netbsd/pdftex @@ -235311,9 +237981,9 @@ binfiles arch=i386-netbsd size=621 name pdftex.i386-solaris category TLCore -revision 70768 +revision 74051 shortdesc i386-solaris files of pdftex -binfiles arch=i386-solaris size=547 +binfiles arch=i386-solaris size=566 bin/i386-solaris/etex bin/i386-solaris/pdfetex bin/i386-solaris/pdftex @@ -235321,9 +237991,9 @@ binfiles arch=i386-solaris size=547 name pdftex.universal-darwin category TLCore -revision 70767 +revision 74077 shortdesc universal-darwin files of pdftex -binfiles arch=universal-darwin size=1297 +binfiles arch=universal-darwin size=1408 bin/universal-darwin/etex bin/universal-darwin/pdfetex bin/universal-darwin/pdftex @@ -235331,9 +238001,9 @@ binfiles arch=universal-darwin size=1297 name pdftex.windows category TLCore -revision 70757 +revision 74079 shortdesc windows files of pdftex -binfiles arch=windows size=575 +binfiles arch=windows size=577 bin/windows/etex.exe bin/windows/pdfetex.exe bin/windows/pdftex.dll @@ -235341,9 +238011,9 @@ binfiles arch=windows size=575 name pdftex.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of pdftex -binfiles arch=x86_64-cygwin size=556 +binfiles arch=x86_64-cygwin size=559 bin/x86_64-cygwin/etex bin/x86_64-cygwin/pdfetex bin/x86_64-cygwin/pdftex.exe @@ -235351,9 +238021,9 @@ binfiles arch=x86_64-cygwin size=556 name pdftex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 74077 shortdesc x86_64-darwinlegacy files of pdftex -binfiles arch=x86_64-darwinlegacy size=511 +binfiles arch=x86_64-darwinlegacy size=515 bin/x86_64-darwinlegacy/etex bin/x86_64-darwinlegacy/pdfetex bin/x86_64-darwinlegacy/pdftex @@ -235361,9 +238031,9 @@ binfiles arch=x86_64-darwinlegacy size=511 name pdftex.x86_64-linux category TLCore -revision 70768 +revision 74051 shortdesc x86_64-linux files of pdftex -binfiles arch=x86_64-linux size=558 +binfiles arch=x86_64-linux size=653 bin/x86_64-linux/etex bin/x86_64-linux/pdfetex bin/x86_64-linux/pdftex @@ -235371,9 +238041,9 @@ binfiles arch=x86_64-linux size=558 name pdftex.x86_64-linuxmusl category TLCore -revision 71441 +revision 74051 shortdesc x86_64-linuxmusl files of pdftex -binfiles arch=x86_64-linuxmusl size=648 +binfiles arch=x86_64-linuxmusl size=724 bin/x86_64-linuxmusl/etex bin/x86_64-linuxmusl/pdfetex bin/x86_64-linuxmusl/pdftex @@ -235381,9 +238051,9 @@ binfiles arch=x86_64-linuxmusl size=648 name pdftex.x86_64-solaris category TLCore -revision 70768 +revision 74051 shortdesc x86_64-solaris files of pdftex -binfiles arch=x86_64-solaris size=632 +binfiles arch=x86_64-solaris size=642 bin/x86_64-solaris/etex bin/x86_64-solaris/pdfetex bin/x86_64-solaris/pdftex @@ -235415,7 +238085,7 @@ catalogue-version 0.33 name pdftosrc category TLCore -revision 70015 +revision 73848 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 @@ -235427,107 +238097,107 @@ docfiles size=9 name pdftosrc.aarch64-linux category TLCore -revision 65927 +revision 73915 shortdesc aarch64-linux files of pdftosrc -binfiles arch=aarch64-linux size=375 +binfiles arch=aarch64-linux size=455 bin/aarch64-linux/pdftosrc name pdftosrc.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of pdftosrc -binfiles arch=amd64-freebsd size=374 +binfiles arch=amd64-freebsd size=378 bin/amd64-freebsd/pdftosrc name pdftosrc.amd64-netbsd category TLCore -revision 65923 +revision 73802 shortdesc amd64-netbsd files of pdftosrc -binfiles arch=amd64-netbsd size=371 +binfiles arch=amd64-netbsd size=370 bin/amd64-netbsd/pdftosrc name pdftosrc.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of pdftosrc -binfiles arch=armhf-linux size=231 +binfiles arch=armhf-linux size=286 bin/armhf-linux/pdftosrc name pdftosrc.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of pdftosrc -binfiles arch=i386-freebsd size=374 +binfiles arch=i386-freebsd size=378 bin/i386-freebsd/pdftosrc name pdftosrc.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of pdftosrc -binfiles arch=i386-linux size=290 +binfiles arch=i386-linux size=358 bin/i386-linux/pdftosrc name pdftosrc.i386-netbsd category TLCore -revision 65923 +revision 73802 shortdesc i386-netbsd files of pdftosrc binfiles arch=i386-netbsd size=324 bin/i386-netbsd/pdftosrc name pdftosrc.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of pdftosrc -binfiles arch=i386-solaris size=296 +binfiles arch=i386-solaris size=311 bin/i386-solaris/pdftosrc name pdftosrc.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of pdftosrc -binfiles arch=universal-darwin size=609 +binfiles arch=universal-darwin size=711 bin/universal-darwin/pdftosrc name pdftosrc.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of pdftosrc binfiles arch=windows size=307 bin/windows/pdftosrc.exe name pdftosrc.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of pdftosrc -binfiles arch=x86_64-cygwin size=297 +binfiles arch=x86_64-cygwin size=298 bin/x86_64-cygwin/pdftosrc.exe name pdftosrc.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of pdftosrc -binfiles arch=x86_64-darwinlegacy size=271 +binfiles arch=x86_64-darwinlegacy size=272 bin/x86_64-darwinlegacy/pdftosrc name pdftosrc.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of pdftosrc -binfiles arch=x86_64-linux size=304 +binfiles arch=x86_64-linux size=373 bin/x86_64-linux/pdftosrc name pdftosrc.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of pdftosrc -binfiles arch=x86_64-linuxmusl size=374 +binfiles arch=x86_64-linuxmusl size=450 bin/x86_64-linuxmusl/pdftosrc name pdftosrc.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of pdftosrc -binfiles arch=x86_64-solaris size=344 +binfiles arch=x86_64-solaris size=350 bin/x86_64-solaris/pdftosrc name pdftricks @@ -235987,9 +238657,32 @@ shortdesc x86_64-solaris files of pedigree-perl binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/pedigree +name pegmatch +category Package +revision 74035 +shortdesc Parsing Expression Grammars for TeX +longdesc This package ports PEG (Parsing Expression Grammars) to TeX. +longdesc Following the design in LPEG (Parsing Expression Grammars for +longdesc Lua), it defines patterns as LaTeX3 variables, and offers +longdesc several operators to compose patterns. In general, PEG matching +longdesc is much more powerful than RE (Regular Expressions) matching. +docfiles size=45 + texmf-dist/doc/latex/pegmatch/README.md details="Readme" + texmf-dist/doc/latex/pegmatch/pegmatch.pdf details="Package documentation" + texmf-dist/doc/latex/pegmatch/pegmatch.tex +runfiles size=7 + texmf-dist/tex/latex/pegmatch/pegmatch.sty +catalogue-contact-bugs https://github.com/lvjr/pegmatch/issues +catalogue-contact-repository https://github.com/lvjr/pegmatch +catalogue-contact-support https://github.com/lvjr/pegmatch/discussions +catalogue-ctan /macros/latex/contrib/pegmatch +catalogue-license lppl1.3c +catalogue-topics parser expl3 +catalogue-version 2025B + name penlight category Package -revision 67716 +revision 73362 shortdesc Penlight Lua libraries made available to LuaLaTeX users longdesc This LuaLaTeX package provides a wrapper to use the penlight longdesc Lua libraries with LuaLaTeX, with some extra functionality @@ -235998,9 +238691,10 @@ docfiles size=9 texmf-dist/doc/luatex/penlight/README.md details="Readme" texmf-dist/doc/luatex/penlight/penlight.pdf details="Package documentation" texmf-dist/doc/luatex/penlight/penlight.tex -runfiles size=105 +runfiles size=106 texmf-dist/tex/luatex/penlight/penlight.lua texmf-dist/tex/luatex/penlight/penlight.sty +catalogue-also penlightplus catalogue-contact-repository https://github.com/kalekje/penlight catalogue-ctan /macros/luatex/generic/penlight catalogue-license mit @@ -236008,11 +238702,11 @@ catalogue-topics luatex name penlightplus category Package -revision 70656 +revision 74000 shortdesc Additions to the Penlight Lua libraries longdesc This package extends the penlight package by adding useful longdesc functions for interfacing with LaTeX. -docfiles size=26 +docfiles size=29 texmf-dist/doc/luatex/penlightplus/README.md details="Readme" texmf-dist/doc/luatex/penlightplus/penlightplus.pdf details="Package documentation" texmf-dist/doc/luatex/penlightplus/penlightplus.tex @@ -236068,7 +238762,7 @@ catalogue-version 2.3 name perltex category Package -revision 52162 +revision 73044 shortdesc Define LaTeX macros in terms of Perl code longdesc PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e longdesc package (perltex.sty) that, together, give the user the ability @@ -236083,7 +238777,7 @@ longdesc document-specific, noperltex.sty that is useful when longdesc distributing a document to places where PerlTeX is not longdesc available. depend perltex.ARCH -docfiles size=83 +docfiles size=122 texmf-dist/doc/latex/perltex/README details="Readme" texmf-dist/doc/latex/perltex/example.tex texmf-dist/doc/latex/perltex/perltex.pdf details="Package documentation" @@ -236098,7 +238792,7 @@ runfiles size=6 catalogue-ctan /macros/latex/contrib/perltex catalogue-license lppl catalogue-topics callback -catalogue-version 2.2 +catalogue-version 2.3 name perltex.aarch64-linux category Package @@ -237304,7 +239998,7 @@ catalogue-version 0.1 name pgf-periodictable category Package -revision 71739 +revision 73886 shortdesc Create custom periodic tables of elements 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 @@ -237313,9 +240007,9 @@ longdesc displaying the desired data for all the 118 elements. It can be longdesc done in different languages: English, French, German, longdesc Portuguese (from Portugal and from Brazil), Spanish, Italian longdesc and translations provided by user contributions -- currently in -longdesc Dutch only. Compatible with pdfLaTeX, LuaLaTeX and XeLaTeX -longdesc engines. -docfiles size=2282 +longdesc Dutch and Chinese. Compatible with pdfLaTeX, LuaLaTeX and +longdesc XeLaTeX engines. +docfiles size=2518 texmf-dist/doc/latex/pgf-periodictable/README details="Readme" texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_Ar.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_CS.tex @@ -237325,11 +240019,13 @@ docfiles size=2282 texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_Examples.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_O.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_OtherCont.tex + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_TipsTricks.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_TitleLegend.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_Z.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_blocksfamilies.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_buildCelll.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_commands.tex + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_decSep.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_density.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_eDist.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_exerciselayout.tex @@ -237341,6 +240037,15 @@ docfiles size=2282 texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_variations.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_nl.pdf texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_nl_en.pdf + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_user_compactPT.pdf + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_1.pdf + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_1.tex + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_2.pdf + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_2.tex + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_3.pdf + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_3.tex + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_fonts.pdf + texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPT_zh_fonts.tex texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_color.pdf texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_colorPicker.pdf texmf-dist/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_general.pdf @@ -237364,7 +240069,7 @@ docfiles size=2282 texmf-dist/doc/latex/pgf-periodictable/pgfPT.colorSchemes.info.tex texmf-dist/doc/latex/pgf-periodictable/pgfPT_radio_symbol.tex texmf-dist/doc/latex/pgf-periodictable/pgfPTcolorSchemes.html -runfiles size=600 +runfiles size=608 texmf-dist/tex/latex/pgf-periodictable/flags/pgfPT_flag0.pdf texmf-dist/tex/latex/pgf-periodictable/flags/pgfPT_flag1.pdf texmf-dist/tex/latex/pgf-periodictable/flags/pgfPT_flag10.pdf @@ -237518,11 +240223,12 @@ runfiles size=600 texmf-dist/tex/latex/pgf-periodictable/spectra/pgfPT_spec99.pdf texmf-dist/tex/latex/pgf-periodictable/translations/pgfPT.lang.nl.tex texmf-dist/tex/latex/pgf-periodictable/translations/pgfPT.lang.undefined.tex + texmf-dist/tex/latex/pgf-periodictable/translations/pgfPT.lang.zh.tex catalogue-contact-repository https://github.com/HugoPGomes/pgf-periodictable catalogue-ctan /graphics/pgf/contrib/pgf-periodictable catalogue-license lppl1.3 catalogue-topics chemistry pgf-tikz -catalogue-version 2.1.0a +catalogue-version 2.1.5 name pgf-pie category Package @@ -237598,15 +240304,21 @@ catalogue-version 1.1 name pgf-spectra category Package -revision 71735 +revision 71883 shortdesc Draw continuous or discrete spectra using PGF/TikZ -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, 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. +longdesc The purpose of this package is to draw the spectrum of elements +longdesc in a simple way. It relies on PGF/TikZ to draw the desired +longdesc spectrum, continuous or discrete. Data for the spectra of 98 +longdesc elements and their ions are available (from the NASA database +longdesc and from NIST). Lines data ranges from Extreme UV to Near IR +longdesc (from 10 to 4000 nanometers). It also allows the user to draw +longdesc spectra using their own data. It is possible to redshift the +longdesc lines of a spectrum, by directly entering the redshift value or +longdesc the velocity and the angle to compute the redshift value. +longdesc Spectral lines data can be presented in a table or exported to +longdesc a file. The package also provides color conversion (correlated +longdesc color temperature), shadings for use with TikZ and/or pgfplots +longdesc and color maps for use with pgfplots. docfiles size=1725 texmf-dist/doc/latex/pgf-spectra/README details="Readme" texmf-dist/doc/latex/pgf-spectra/figsManual.zip @@ -237630,7 +240342,7 @@ runfiles size=280 catalogue-ctan /graphics/pgf/contrib/pgf-spectra catalogue-license lppl1.3 catalogue-topics physics pgf-tikz -catalogue-version 3.0.1 +catalogue-version 3.0.1a name pgf-umlcd category Package @@ -237792,7 +240504,7 @@ catalogue-version 0.0.1 name pgfmath-xfp category Package -revision 59268 +revision 73423 shortdesc Define pgfmath functions using xfp longdesc This package allows to define pgfmath functions that use the longdesc xfp fpu for their calculations. The input arguments are parsed @@ -237804,10 +240516,10 @@ 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. -docfiles size=65 +docfiles size=66 texmf-dist/doc/latex/pgfmath-xfp/README.md details="Readme" texmf-dist/doc/latex/pgfmath-xfp/pgfmath-xfp.pdf details="Package documentation" -srcfiles size=4 +srcfiles size=5 texmf-dist/source/latex/pgfmath-xfp/pgfmath-xfp.dtx runfiles size=1 texmf-dist/tex/latex/pgfmath-xfp/pgfmath-xfp.sty @@ -237815,7 +240527,7 @@ 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 +catalogue-version 1.0a name pgfmolbio category Package @@ -237896,12 +240608,12 @@ catalogue-version 2.1a name pgfornament category Package -revision 55326 +revision 72029 shortdesc Drawing of Vectorian ornaments with PGF/TikZ longdesc This package allows the drawing of Vectorian ornaments (196) longdesc with PGF/TikZ. The documentation presents the syntax and longdesc parameters of the macro "pgfornament". -docfiles size=633 +docfiles size=627 texmf-dist/doc/latex/pgfornament/README.md details="Readme" texmf-dist/doc/latex/pgfornament/TeX_box.png texmf-dist/doc/latex/pgfornament/baseline.png @@ -238198,35 +240910,49 @@ catalogue-contact-home http://altermundus.fr catalogue-ctan /macros/latex/contrib/tkz/pgfornament catalogue-license lppl1.3 catalogue-topics graphics-plot decoration -catalogue-version 1.2 +catalogue-version 1.3 name pgfornament-han category Package -revision 68704 +revision 72640 shortdesc pgfornament library for Chinese traditional motifs and patterns longdesc This package provides a pgfornament library for Chinese longdesc traditional motifs and patterns. The command \pgfornamenthan longdesc takes the same options as \pgfornament from the pgfornament longdesc package, but renders Chinese traditional motifs instead. The longdesc list of supported motifs, as well as some examples, can be -longdesc found in the accompanying documentation. Yi pgfornament Hong -longdesc Bao De Ji Zhi ,Shi Xian Hui Zhi Yi Feng Tu Wen . -longdesc \pgfornamenthan He \pgfornament De Can Shu Shi Yi Yang De ;Bian -longdesc Yi De Chu Lai De Dang Ran Shi Yi Feng Wen Yang Liao . Hong Bao -longdesc Shou Ce Li You Wan Zheng De Wen Yang Lie Biao Yi Ji Shi Yong -longdesc Fan Li . -docfiles size=448 +longdesc found in the accompanying documentation. This bundle also +longdesc provides three beamer themes incorporating these motifs; sample +longdesc .tex files for creating beamer presentations and posters are +longdesc included. Yi pgfornament Hong Bao De Ji Zhi ,Shi Xian Hui Zhi +longdesc Yi Feng Tu Wen . \pgfornamenthan He \pgfornament De Can Shu Shi +longdesc Yi Yang De ; Bian Yi De Chu Lai De Dang Ran Shi Yi Feng Wen +longdesc Yang Liao . Hong Bao Shou Ce Li You Wan Zheng De Wen Yang Lie +longdesc Biao Yi Ji Shi Yong Fan Li . Wo Men Ye Ji Yu Zhe Xie Wen Yang +longdesc ,Kai Fa Liao San Kuan beamerZhu Ti , Bing Fu Shang Zhi Zuo +longdesc beamerHuan Deng Pian He Hai Bao De Shi Fan .texWen Dang . +docfiles size=956 texmf-dist/doc/latex/pgfornament-han/README.md details="Readme" - texmf-dist/doc/latex/pgfornament-han/heavenlyclouds-sample.pdf details="Sample of the HeavenlyClouds beamer theme" language="zh" - texmf-dist/doc/latex/pgfornament-han/heavenlyclouds-sample.tex texmf-dist/doc/latex/pgfornament-han/lppl-1-3c.txt texmf-dist/doc/latex/pgfornament-han/pgfornament-han-doc.pdf details="Package documentation (Chinese)" language="zh" texmf-dist/doc/latex/pgfornament-han/pgfornament-han-doc.tex - texmf-dist/doc/latex/pgfornament-han/tianqing-sample.pdf - texmf-dist/doc/latex/pgfornament-han/tianqing-sample.tex - texmf-dist/doc/latex/pgfornament-han/xiaoshan-sample.pdf details="Sample of the Xiaoshan beamer theme" language="zh" - texmf-dist/doc/latex/pgfornament-han/xiaoshan-sample.tex -runfiles size=138 + texmf-dist/doc/latex/pgfornament-han/samples/Cloud_types_en.pdf + texmf-dist/doc/latex/pgfornament-han/samples/SiO2.jpg + texmf-dist/doc/latex/pgfornament-han/samples/hangzhou-arch.jpg + texmf-dist/doc/latex/pgfornament-han/samples/heavenlyclouds-beamer-sample.pdf details="Sample of the HeavenlyClouds beamer theme" language="zh" + texmf-dist/doc/latex/pgfornament-han/samples/heavenlyclouds-beamer-sample.tex + texmf-dist/doc/latex/pgfornament-han/samples/heavenlyclouds-poster-sample.pdf details="Sample of the HeavenlyClouds poster theme" language="zh" + texmf-dist/doc/latex/pgfornament-han/samples/heavenlyclouds-poster-sample.tex + texmf-dist/doc/latex/pgfornament-han/samples/sample-refs.bib + texmf-dist/doc/latex/pgfornament-han/samples/tianqing-beamer-sample.pdf details="Sample of the Tianqing beamer theme" language="zh" + texmf-dist/doc/latex/pgfornament-han/samples/tianqing-beamer-sample.tex + texmf-dist/doc/latex/pgfornament-han/samples/tianqing-poster-sample.pdf details="Sample of the Tianqing poster theme" language="zh" + texmf-dist/doc/latex/pgfornament-han/samples/tianqing-poster-sample.tex + texmf-dist/doc/latex/pgfornament-han/samples/xiaoshan-beamer-sample.pdf details="Sample of the Xiaoshan beamer theme" language="zh" + texmf-dist/doc/latex/pgfornament-han/samples/xiaoshan-beamer-sample.tex + texmf-dist/doc/latex/pgfornament-han/samples/xiaoshan-poster-sample.pdf details="Sample of the Xiaoshan poster theme" language="zh" + texmf-dist/doc/latex/pgfornament-han/samples/xiaoshan-poster-sample.tex +runfiles size=139 texmf-dist/tex/latex/pgfornament-han/beamerthemeHeavenlyClouds.sty texmf-dist/tex/latex/pgfornament-han/beamerthemeTianQing.sty texmf-dist/tex/latex/pgfornament-han/beamerthemeXiaoshan.sty @@ -238469,6 +241195,31 @@ catalogue-license gpl3+ catalogue-topics graphics graphics-plot pgf-tikz catalogue-version 1.18.1 +name pgfplotsthemebeamer +category Package +revision 71954 +shortdesc Use colours from the current beamer theme in pgfplots +longdesc A LaTeX package for using colours from the current beamer theme +longdesc in pgfplots diagrams. +depend beamer +depend pgfopts +depend pgfplots +depend tools +docfiles size=43 + texmf-dist/doc/latex/pgfplotsthemebeamer/DEPENDS.txt + texmf-dist/doc/latex/pgfplotsthemebeamer/README.md details="Readme" + texmf-dist/doc/latex/pgfplotsthemebeamer/pgfplotsthemebeamer-doc-settings.sty + texmf-dist/doc/latex/pgfplotsthemebeamer/pgfplotsthemebeamer-doc.pdf details="Package documentation" + texmf-dist/doc/latex/pgfplotsthemebeamer/pgfplotsthemebeamer-doc.tex +runfiles size=1 + texmf-dist/tex/latex/pgfplotsthemebeamer/pgfplotsthemebeamer.sty +catalogue-contact-bugs https://github.com/samcarter/pgfplotsthemebeamer/issues +catalogue-contact-repository https://github.com/samcarter/pgfplotsthemebeamer +catalogue-ctan /graphics/pgf/contrib/pgfplotsthemebeamer +catalogue-license lppl1.3c +catalogue-topics colour graphics presentation graphics-plot +catalogue-version 0.2 + name phaistos category Package revision 18651 @@ -238956,7 +241707,7 @@ catalogue-topics float name photobook category Package -revision 68313 +revision 71843 shortdesc A document class for typesetting photo books longdesc The photobook LaTeX document class extends the book class longdesc defining a set of parameters, meta-macros, macros and @@ -238999,14 +241750,14 @@ docfiles size=54 texmf-dist/doc/latex/photobook/scripts/cls2tex.sh texmf-dist/doc/latex/photobook/scripts/make-spreads.cfg.example texmf-dist/doc/latex/photobook/scripts/make-spreads.sh -runfiles size=43 +runfiles size=44 texmf-dist/tex/latex/photobook/photobook.cls catalogue-contact-home https://github.com/flynx/photobook catalogue-contact-repository https://github.com/flynx/photobook catalogue-ctan /macros/latex/contrib/photobook catalogue-license bsd3 catalogue-topics class -catalogue-version 0.1.29 +catalogue-version 0.1.31 name physconst category Package @@ -239057,11 +241808,52 @@ docfiles size=69 texmf-dist/doc/latex/physics/physics.tex runfiles size=8 texmf-dist/tex/latex/physics/physics.sty +catalogue-also physics-patch catalogue-ctan /macros/latex/contrib/physics catalogue-license lppl catalogue-topics physics maths catalogue-version 1.3 +name physics-patch +category Package +revision 74066 +shortdesc Patches for the physics package, and integration of physics and siunitx packages +longdesc This package requires the amsmath, etoolbox, xcolor, xparse, +longdesc and xstring packages. Commands that have different definitions +longdesc come with PT in the beginning of their name (e.g. \PTmqty). +longdesc physics-patch has covered all commands in physics since version +longdesc 2.0, so there's no need to load physics. It is ok to load +longdesc physics before this package. This package will silently +longdesc overrides macros in physics with an improved version. To use +longdesc the original version provided by physics, load physics before +longdesc this package and use the nooverride option (not recommended). +longdesc This package pretends that physics package is loaded so that +longdesc this package won't be overriden if loading physics is called +longdesc afterward and packages loaded afterward that checks whether +longdesc physics is loaded to determine its behavior (e.g. siunitx) work +longdesc correctly. To disable this, use the nopretend option (not +longdesc recommended). If siuitx is loaded before this package, this +longdesc package will define \ITquantity and \ITqty as the integration +longdesc of the improved definition of physics's \qty (in \PHquantity +longdesc and \PHqty) and siuitx's \SI. You can optionally set the +longdesc siintegrate option to override \PTquantity and \PTqty with +longdesc \ITqty (not recommended). +docfiles size=37 + texmf-dist/doc/latex/physics-patch/LICENSE.txt + texmf-dist/doc/latex/physics-patch/README.txt details="Readme" + texmf-dist/doc/latex/physics-patch/physics-patch.pdf details="Package documentation" + texmf-dist/doc/latex/physics-patch/physics-patch.tex +runfiles size=17 + texmf-dist/tex/latex/physics-patch/physics-patch.sty +catalogue-also physics +catalogue-contact-announce https://github.com/Willie169/physics-patch/releases +catalogue-contact-bugs https://github.com/Willie169/physics-patch/issues +catalogue-contact-repository https://github.com/Willie169/physics-patch +catalogue-ctan /macros/latex/contrib/physics-patch +catalogue-license lppl1.3c +catalogue-topics physics maths scientific-docs +catalogue-version 2.4 + name physics2 category Package revision 69369 @@ -239284,7 +242076,7 @@ catalogue-topics documentation name pictochrono category Package -revision 69855 +revision 73069 shortdesc Insert "chronometer pictograms" with a duration longdesc Small package to insert, inline with automatic height and longdesc vertical offset, small "pictogram chronometers" to indicate a @@ -239295,8 +242087,6 @@ docfiles size=62 texmf-dist/doc/latex/pictochrono/pictochrono-doc.tex runfiles size=2 texmf-dist/tex/latex/pictochrono/pictochrono.sty -catalogue-contact-bugs https://github.com/cpierquet/pictochrono/issues -catalogue-contact-repository https://github.com/cpierquet/pictochrono catalogue-ctan /graphics/pgf/contrib/pictochrono catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz @@ -239496,20 +242286,20 @@ catalogue-topics doc-supp name piton category Package -revision 71343 +revision 73498 shortdesc Typeset informatic listings with LPEG of LuaLaTeX longdesc This package uses the Lua library LPEG to typeset and highlight longdesc informatic listings in several languages. It requires the use longdesc of LuaLaTeX. It won't work with XeLaTeX, nor pdfLaTeX. -docfiles size=389 +docfiles size=397 texmf-dist/doc/lualatex/piton/README.md details="Readme" texmf-dist/doc/lualatex/piton/piton-french.pdf details="Package documentation (French)" language="fr" texmf-dist/doc/lualatex/piton/piton-french.tex texmf-dist/doc/lualatex/piton/piton.pdf details="Package documentation (English)" -srcfiles size=70 +srcfiles size=81 texmf-dist/source/lualatex/piton/piton.dtx texmf-dist/source/lualatex/piton/piton.ins -runfiles size=27 +runfiles size=31 texmf-dist/tex/lualatex/piton/piton.lua texmf-dist/tex/lualatex/piton/piton.sty catalogue-also codehigh @@ -239517,7 +242307,7 @@ catalogue-contact-repository https://github.com/fpantigny/piton catalogue-ctan /macros/luatex/latex/piton catalogue-license lppl1.3 catalogue-topics listing synt-hlt luatex expl3 -catalogue-version 3.0b +catalogue-version 4.2b name pittetd category Package @@ -239573,11 +242363,11 @@ catalogue-version 1.0.2 name pixelarttikz category Package -revision 70964 +revision 73309 shortdesc Work with PixelArts, with TikZ longdesc The package defines commands and an environment for displaying longdesc pixel arts. -docfiles size=399 +docfiles size=417 texmf-dist/doc/latex/pixelarttikz/PAkoala.csv texmf-dist/doc/latex/pixelarttikz/PAsorciere.csv texmf-dist/doc/latex/pixelarttikz/PAyoda.csv @@ -239589,14 +242379,15 @@ docfiles size=399 texmf-dist/doc/latex/pixelarttikz/base.csv texmf-dist/doc/latex/pixelarttikz/cap.csv texmf-dist/doc/latex/pixelarttikz/test1.csv -runfiles size=9 + texmf-dist/doc/latex/pixelarttikz/testlist.csv +runfiles size=11 texmf-dist/tex/latex/pixelarttikz/PixelArtTikz.sty -catalogue-contact-bugs https://github.com/cpierquet/PixelArtTikz/issues -catalogue-contact-repository https://github.com/cpierquet/PixelArtTikz +catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex catalogue-ctan /graphics/pgf/contrib/pixelarttikz catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz -catalogue-version 0.1.4 +catalogue-version 0.1.6 name pkfix category Package @@ -240566,13 +243357,13 @@ catalogue-version 1.0 name plantuml category Package -revision 67097 +revision 73377 shortdesc Support for rendering UML diagrams using PlantUML longdesc PlantUML is a program which transforms text into UML diagrams. longdesc This LaTeX package allows for embedding PlantUML diagrams using longdesc the PlantUML source. Currently, this project runs with LuaLaTeX longdesc only. -docfiles size=25 +docfiles size=26 texmf-dist/doc/lualatex/plantuml/CHANGELOG.md texmf-dist/doc/lualatex/plantuml/README.md details="Readme" texmf-dist/doc/lualatex/plantuml/example-class-relations--latex.tex @@ -240581,6 +243372,7 @@ docfiles size=25 texmf-dist/doc/lualatex/plantuml/example-component-diagram.tex texmf-dist/doc/lualatex/plantuml/example-minimal.png texmf-dist/doc/lualatex/plantuml/example-minimal.tex + texmf-dist/doc/lualatex/plantuml/example-multiple-diagrams-svg.tex texmf-dist/doc/lualatex/plantuml/plantuml.pdf details="Package documentation" texmf-dist/doc/lualatex/plantuml/release.sh runfiles size=2 @@ -240591,7 +243383,7 @@ catalogue-contact-repository https://github.com/koppor/plantuml/ catalogue-ctan /macros/luatex/latex/plantuml catalogue-license lppl1.3c catalogue-topics uml luatex use-lua -catalogue-version 0.3.2 +catalogue-version 0.4.0 name plari category Package @@ -240639,7 +243431,7 @@ catalogue-version 0.1 name platex category Package -revision 71363 +revision 73848 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 @@ -240769,7 +243561,7 @@ catalogue-topics format class japanese name platex-tools category Package -revision 66185 +revision 72097 shortdesc pLaTeX standard tools bundle longdesc This bundle is an extended version of the latex-tools bundle longdesc developed by the LaTeX team, mainly intended to support @@ -240796,9 +243588,9 @@ docfiles size=164 texmf-dist/doc/latex/platex-tools/pxeveryshi.tex texmf-dist/doc/latex/platex-tools/pxftnright.pdf details="Documentation of the pxftnright package" language="ja" texmf-dist/doc/latex/platex-tools/pxftnright.tex - texmf-dist/doc/latex/platex-tools/pxmulticol.pdf details="Documentation of the pxxspace package" language="ja" + texmf-dist/doc/latex/platex-tools/pxmulticol.pdf details="Documentation of the pxmulticol package" language="ja" texmf-dist/doc/latex/platex-tools/pxmulticol.tex - texmf-dist/doc/latex/platex-tools/pxxspace.pdf details="Documentation of the pxmulticol package" language="ja" + texmf-dist/doc/latex/platex-tools/pxxspace.pdf details="Documentation of the pxxspace package" language="ja" texmf-dist/doc/latex/platex-tools/pxxspace.tex runfiles size=13 texmf-dist/tex/latex/platex-tools/plarray.sty @@ -241381,7 +244173,7 @@ catalogue-topics font font-display font-body font-serif font-proportional font-o name plex category Package -revision 69154 +revision 73028 shortdesc Support for IBM Plex fonts longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX longdesc support for the IBM Plex families of fonts. Serif, Sans and @@ -241394,7 +244186,7 @@ docfiles size=144 texmf-dist/doc/fonts/plex/README details="Readme" texmf-dist/doc/fonts/plex/plex-samples.pdf details="Font samples" texmf-dist/doc/fonts/plex/plex-samples.tex -runfiles size=7743 +runfiles size=7926 texmf-dist/fonts/enc/dvips/plex/plx_3xjvyq.enc texmf-dist/fonts/enc/dvips/plex/plx_4rpw27.enc texmf-dist/fonts/enc/dvips/plex/plx_5wdxh7.enc @@ -241423,6 +244215,7 @@ runfiles size=7743 texmf-dist/fonts/enc/dvips/plex/plx_sebx3h.enc texmf-dist/fonts/enc/dvips/plex/plx_umrhwx.enc texmf-dist/fonts/map/dvips/plex/plex.map + texmf-dist/fonts/opentype/ibm/plex/IBMPlexMath-Regular.otf texmf-dist/fonts/opentype/ibm/plex/IBMPlexMono-Bold.otf texmf-dist/fonts/opentype/ibm/plex/IBMPlexMono-BoldItalic.otf texmf-dist/fonts/opentype/ibm/plex/IBMPlexMono-ExtraLight.otf @@ -243006,39 +245799,27 @@ catalogue-topics font font-proportional font-body font-mono font-sans font-type1 name plex-otf category Package -revision 68238 +revision 73766 shortdesc Support for the OpenType font IBM Plex longdesc This package supports the free otf fonts from the IBM Plex longdesc project which are available from GitHub or already part of your longdesc system (Windows/Linux/...). This package supports only XeLaTeX longdesc or LuaLaTeX; for pdfLaTeX use plex-mono.sty, plex-sans.sty, -longdesc and/or plex-serif.sty from the plex package. IBM Plex has no -longdesc math symbols. You will have to use one of the existing math -longdesc fonts if you need them. -docfiles size=193 +longdesc and/or plex-serif.sty from the plex package. +docfiles size=186 texmf-dist/doc/fonts/plex-otf/Changes - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-1.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-10.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-11.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-2.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-3.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-4.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-5.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-6.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-7.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-8.tex - texmf-dist/doc/fonts/plex-otf/Examples/plex-otf-9.tex texmf-dist/doc/fonts/plex-otf/README.md details="Readme" texmf-dist/doc/fonts/plex-otf/plex-otf-doc.bib + texmf-dist/doc/fonts/plex-otf/plex-otf-doc.fonts texmf-dist/doc/fonts/plex-otf/plex-otf-doc.pdf details="Package documentation" texmf-dist/doc/fonts/plex-otf/plex-otf-doc.tex -runfiles size=6 +runfiles size=4 texmf-dist/tex/latex/plex-otf/plex-otf.sty catalogue-also plex catalogue-ctan /fonts/plex-otf catalogue-license lppl1.3 catalogue-topics font-absent font-serif font-sans font-proportional font-mono font-otf -catalogue-version 0.08a +catalogue-version 0.11 name plimsoll category Package @@ -243226,14 +246007,14 @@ catalogue-version 1.4 name pmdraw category Package -revision 71405 +revision 73626 shortdesc Draw elements of the diagram monoids longdesc This package allows you to draw elements of the diagram longdesc monoids, commonly referred to as diagrams. The package provides longdesc a lot of flexibility to draw most diagrams and can be longdesc customised as needed. It makes use of the TikZ and keyval longdesc packages. -docfiles size=153 +docfiles size=163 texmf-dist/doc/latex/pmdraw/README.md details="Readme" texmf-dist/doc/latex/pmdraw/examples/example-1.tex texmf-dist/doc/latex/pmdraw/examples/example-10.tex @@ -243262,12 +246043,12 @@ docfiles size=153 texmf-dist/doc/latex/pmdraw/examples/example-9.tex texmf-dist/doc/latex/pmdraw/pmdraw.pdf details="Package documentation" texmf-dist/doc/latex/pmdraw/pmdraw.tex -runfiles size=19 +runfiles size=28 texmf-dist/tex/latex/pmdraw/pmdraw.sty catalogue-ctan /graphics/pgf/contrib/pmdraw catalogue-license lppl1.3 catalogue-topics maths physics graphics diagram pgf-tikz -catalogue-version 1.4 +catalogue-version 1.7 name pmgraph category Package @@ -243290,7 +246071,7 @@ catalogue-version 1.0 name pmhanguljamo category Package -revision 71464 +revision 73884 shortdesc Poor man's Hangul Jamo input method longdesc This package provides a Hangul transliteration input method longdesc that allows to typeset Korean letters (Hangul) using the proper @@ -243314,7 +246095,7 @@ catalogue-also kotex-utf catalogue-ctan /language/korean/pmhanguljamo catalogue-license lppl1.3 catalogue-topics korean xetex expl3 -catalogue-version 1.1 +catalogue-version 1.1.2 name pmx category Package @@ -243366,7 +246147,7 @@ catalogue-version 3.00 name pmx.aarch64-linux category Package -revision 65927 +revision 73915 shortdesc aarch64-linux files of pmx binfiles arch=aarch64-linux size=159 bin/aarch64-linux/pmxab @@ -243374,7 +246155,7 @@ binfiles arch=aarch64-linux size=159 name pmx.amd64-freebsd category Package -revision 69782 +revision 73792 shortdesc amd64-freebsd files of pmx binfiles arch=amd64-freebsd size=198 bin/amd64-freebsd/pmxab @@ -243382,7 +246163,7 @@ binfiles arch=amd64-freebsd size=198 name pmx.amd64-netbsd category Package -revision 65923 +revision 73802 shortdesc amd64-netbsd files of pmx binfiles arch=amd64-netbsd size=198 bin/amd64-netbsd/pmxab @@ -243390,15 +246171,15 @@ binfiles arch=amd64-netbsd size=198 name pmx.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of pmx -binfiles arch=armhf-linux size=134 +binfiles arch=armhf-linux size=123 bin/armhf-linux/pmxab bin/armhf-linux/scor2prt name pmx.i386-freebsd category Package -revision 69782 +revision 73792 shortdesc i386-freebsd files of pmx binfiles arch=i386-freebsd size=198 bin/i386-freebsd/pmxab @@ -243406,31 +246187,31 @@ binfiles arch=i386-freebsd size=198 name pmx.i386-linux category Package -revision 69782 +revision 73792 shortdesc i386-linux files of pmx -binfiles arch=i386-linux size=167 +binfiles arch=i386-linux size=178 bin/i386-linux/pmxab bin/i386-linux/scor2prt name pmx.i386-netbsd category Package -revision 65923 +revision 73802 shortdesc i386-netbsd files of pmx -binfiles arch=i386-netbsd size=176 +binfiles arch=i386-netbsd size=177 bin/i386-netbsd/pmxab bin/i386-netbsd/scor2prt name pmx.i386-solaris category Package -revision 69782 +revision 73792 shortdesc i386-solaris files of pmx -binfiles arch=i386-solaris size=139 +binfiles arch=i386-solaris size=140 bin/i386-solaris/pmxab bin/i386-solaris/scor2prt name pmx.universal-darwin category Package -revision 69807 +revision 73806 shortdesc universal-darwin files of pmx binfiles arch=universal-darwin size=366 bin/universal-darwin/pmxab @@ -243438,7 +246219,7 @@ binfiles arch=universal-darwin size=366 name pmx.windows category Package -revision 69788 +revision 73796 shortdesc windows files of pmx binfiles arch=windows size=145 bin/windows/pmxab.exe @@ -243446,7 +246227,7 @@ binfiles arch=windows size=145 name pmx.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of pmx binfiles arch=x86_64-cygwin size=167 bin/x86_64-cygwin/pmxab.exe @@ -243454,31 +246235,31 @@ binfiles arch=x86_64-cygwin size=167 name pmx.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of pmx -binfiles arch=x86_64-darwinlegacy size=143 +binfiles arch=x86_64-darwinlegacy size=144 bin/x86_64-darwinlegacy/pmxab bin/x86_64-darwinlegacy/scor2prt name pmx.x86_64-linux category Package -revision 69782 +revision 73777 shortdesc x86_64-linux files of pmx -binfiles arch=x86_64-linux size=157 +binfiles arch=x86_64-linux size=161 bin/x86_64-linux/pmxab bin/x86_64-linux/scor2prt name pmx.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of pmx -binfiles arch=x86_64-linuxmusl size=169 +binfiles arch=x86_64-linuxmusl size=170 bin/x86_64-linuxmusl/pmxab bin/x86_64-linuxmusl/scor2prt name pmx.x86_64-solaris category Package -revision 69782 +revision 73792 shortdesc x86_64-solaris files of pmx binfiles arch=x86_64-solaris size=165 bin/x86_64-solaris/pmxab @@ -243486,7 +246267,7 @@ binfiles arch=x86_64-solaris size=165 name pmxchords category Package -revision 39249 +revision 73868 shortdesc Produce chord information to go with pmx output longdesc The bundle supplements pmx, providing the means of typesetting longdesc chords above the notes of a score. The bundle contains: macros @@ -243497,25 +246278,25 @@ depend pmxchords.ARCH docfiles size=164 texmf-dist/doc/man/man1/pmxchords.1 texmf-dist/doc/man/man1/pmxchords.man1.pdf - texmf-dist/doc/pmxchords/README details="Readme" - texmf-dist/doc/pmxchords/chordsRef.pdf details="Reference table (English)" language="en" - texmf-dist/doc/pmxchords/chordsRef.tex - texmf-dist/doc/pmxchords/chordsRefCZ.pdf details="Reference table (Czech)" language="cs" - texmf-dist/doc/pmxchords/chordsRefCZ.tex - texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pdf - texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pmx - texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pdf - texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pmx - texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pdf - texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pmx - texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pdf - texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pmx - texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/README details="Readme" - texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pdf - texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pmx - texmf-dist/doc/pmxchords/gpl-2.0.txt - texmf-dist/doc/pmxchords/pmxchords-install.pdf - texmf-dist/doc/pmxchords/pmxchords-install.tex + texmf-dist/doc/support/pmxchords/README details="Readme" + texmf-dist/doc/support/pmxchords/chordsRef.pdf details="Reference table (English)" language="en" + texmf-dist/doc/support/pmxchords/chordsRef.tex + texmf-dist/doc/support/pmxchords/chordsRefCZ.pdf details="Reference table (Czech)" language="cs" + texmf-dist/doc/support/pmxchords/chordsRefCZ.tex + texmf-dist/doc/support/pmxchords/examples/jazz/misty/misty.pdf + texmf-dist/doc/support/pmxchords/examples/jazz/misty/misty.pmx + texmf-dist/doc/support/pmxchords/examples/jazz/schema/schema.pdf + texmf-dist/doc/support/pmxchords/examples/jazz/schema/schema.pmx + texmf-dist/doc/support/pmxchords/examples/jazz/schema/schema_full.pdf + texmf-dist/doc/support/pmxchords/examples/jazz/schema/schema_full.pmx + texmf-dist/doc/support/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pdf + texmf-dist/doc/support/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pmx + texmf-dist/doc/support/pmxchords/examples/noel/pasli_ovce_valasi/README details="Readme" + texmf-dist/doc/support/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pdf + texmf-dist/doc/support/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pmx + texmf-dist/doc/support/pmxchords/gpl-2.0.txt + texmf-dist/doc/support/pmxchords/pmxchords-install.pdf + texmf-dist/doc/support/pmxchords/pmxchords-install.tex runfiles size=9 texmf-dist/scripts/pmxchords/ChordsTr.lua texmf-dist/scripts/pmxchords/pmxchords.lua @@ -244772,7 +247553,7 @@ catalogue-version 1.101 name polyglossia category Package -revision 70491 +revision 73666 shortdesc An alternative to babel for XeLaTeX and LuaLaTeX longdesc This package provides a complete Babel replacement for users of longdesc LuaLaTeX and XeLaTeX; it relies on the fontspec package, @@ -244783,29 +247564,12 @@ depend fontspec depend iftex depend makecmds depend xkeyval -docfiles size=262 +docfiles size=151 + texmf-dist/doc/latex/polyglossia/LICENSE.txt texmf-dist/doc/latex/polyglossia/README.md details="Readme" - texmf-dist/doc/latex/polyglossia/example-arabic.pdf - texmf-dist/doc/latex/polyglossia/example-arabic.tex - texmf-dist/doc/latex/polyglossia/example-chinese.pdf - texmf-dist/doc/latex/polyglossia/example-chinese.tex - texmf-dist/doc/latex/polyglossia/example-japanese.pdf - texmf-dist/doc/latex/polyglossia/example-japanese.tex - texmf-dist/doc/latex/polyglossia/example-korean.pdf - texmf-dist/doc/latex/polyglossia/example-korean.tex - texmf-dist/doc/latex/polyglossia/example-odia.pdf - texmf-dist/doc/latex/polyglossia/example-odia.tex - texmf-dist/doc/latex/polyglossia/example-thai.pdf - texmf-dist/doc/latex/polyglossia/example-thai.tex - texmf-dist/doc/latex/polyglossia/examples.pdf - texmf-dist/doc/latex/polyglossia/examples.tex texmf-dist/doc/latex/polyglossia/polyglossia.pdf details="Package documentation" texmf-dist/doc/latex/polyglossia/polyglossia.tex - texmf-dist/doc/latex/polyglossia/test-welsh.pdf - texmf-dist/doc/latex/polyglossia/test-welsh.tex -srcfiles size=263 - texmf-dist/source/latex/polyglossia/polyglossia.dtx -runfiles size=401 +runfiles size=398 texmf-dist/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.map texmf-dist/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.tec texmf-dist/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.map @@ -244827,7 +247591,7 @@ runfiles size=401 texmf-dist/tex/latex/polyglossia/cal-util.def texmf-dist/tex/latex/polyglossia/devanagaridigits.sty texmf-dist/tex/latex/polyglossia/farsical.sty - texmf-dist/tex/latex/polyglossia/gloss-acadien.ldf + texmf-dist/tex/latex/polyglossia/gloss-acadian.ldf texmf-dist/tex/latex/polyglossia/gloss-aeb.ldf texmf-dist/tex/latex/polyglossia/gloss-af.ldf texmf-dist/tex/latex/polyglossia/gloss-afb.ldf @@ -244881,6 +247645,7 @@ runfiles size=401 texmf-dist/tex/latex/polyglossia/gloss-ckb-Arab.ldf texmf-dist/tex/latex/polyglossia/gloss-ckb-Latn.ldf texmf-dist/tex/latex/polyglossia/gloss-ckb.ldf + texmf-dist/tex/latex/polyglossia/gloss-classiclatin.ldf texmf-dist/tex/latex/polyglossia/gloss-cop.ldf texmf-dist/tex/latex/polyglossia/gloss-coptic.ldf texmf-dist/tex/latex/polyglossia/gloss-croatian.ldf @@ -244913,6 +247678,7 @@ runfiles size=401 texmf-dist/tex/latex/polyglossia/gloss-dsb.ldf texmf-dist/tex/latex/polyglossia/gloss-dutch.ldf texmf-dist/tex/latex/polyglossia/gloss-dv.ldf + texmf-dist/tex/latex/polyglossia/gloss-ecclesiasticlatin.ldf texmf-dist/tex/latex/polyglossia/gloss-el-monoton.ldf texmf-dist/tex/latex/polyglossia/gloss-el-polyton.ldf texmf-dist/tex/latex/polyglossia/gloss-el.ldf @@ -244995,9 +247761,6 @@ runfiles size=401 texmf-dist/tex/latex/polyglossia/gloss-lao.ldf texmf-dist/tex/latex/polyglossia/gloss-latex.ldf texmf-dist/tex/latex/polyglossia/gloss-latin.ldf - texmf-dist/tex/latex/polyglossia/gloss-latinclassic.ldf - texmf-dist/tex/latex/polyglossia/gloss-latinecclesiastic.ldf - texmf-dist/tex/latex/polyglossia/gloss-latinmedieval.ldf texmf-dist/tex/latex/polyglossia/gloss-latvian.ldf texmf-dist/tex/latex/polyglossia/gloss-lithuanian.ldf texmf-dist/tex/latex/polyglossia/gloss-lo.ldf @@ -245010,6 +247773,7 @@ runfiles size=401 texmf-dist/tex/latex/polyglossia/gloss-malay.ldf texmf-dist/tex/latex/polyglossia/gloss-malayalam.ldf texmf-dist/tex/latex/polyglossia/gloss-marathi.ldf + texmf-dist/tex/latex/polyglossia/gloss-medievallatin.ldf texmf-dist/tex/latex/polyglossia/gloss-mk.ldf texmf-dist/tex/latex/polyglossia/gloss-ml.ldf texmf-dist/tex/latex/polyglossia/gloss-mn.ldf @@ -245074,8 +247838,8 @@ runfiles size=401 texmf-dist/tex/latex/polyglossia/hijrical.sty texmf-dist/tex/latex/polyglossia/nkonumbers.sty texmf-dist/tex/latex/polyglossia/odiadigits.sty + texmf-dist/tex/latex/polyglossia/polyglossia-cjk-spacing.lua texmf-dist/tex/latex/polyglossia/polyglossia-french.lua - texmf-dist/tex/latex/polyglossia/polyglossia-korean.lua texmf-dist/tex/latex/polyglossia/polyglossia-latin.lua texmf-dist/tex/latex/polyglossia/polyglossia-punct.lua texmf-dist/tex/latex/polyglossia/polyglossia-sanskrit.lua @@ -245090,7 +247854,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 2.1 +catalogue-version 2.4 name polyhedra category Package @@ -245158,6 +247922,24 @@ catalogue-license lppl catalogue-topics maths catalogue-version 1.0 +name polyomino +category Package +revision 71991 +shortdesc Polyominoes using TikZ and LaTeX3 +longdesc This package is based on the package TikZ and can be used to +longdesc draw polyominoes. It is possible to define custom styles, pics +longdesc and grids. +docfiles size=31 + texmf-dist/doc/latex/polyomino/README.md details="Readme" + texmf-dist/doc/latex/polyomino/polyomino.pdf details="Package documentation" + texmf-dist/doc/latex/polyomino/polyomino.tex +runfiles size=4 + texmf-dist/tex/latex/polyomino/polyomino.sty +catalogue-ctan /graphics/pgf/contrib/polyomino +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz expl3 +catalogue-version 1.0 + name polytable category Package revision 55837 @@ -245285,7 +248067,7 @@ catalogue-version 1.1 name postit category Package -revision 67344 +revision 73069 shortdesc A LaTeX package for displaying Post-it notes longdesc This package provides some commands and options for creating longdesc Post-it-like boxes with tcolorbox: an environment PostIt with @@ -245299,8 +248081,6 @@ docfiles size=273 texmf-dist/doc/latex/postit/postit-doc-fr.tex runfiles size=13 texmf-dist/tex/latex/postit/postit.sty -catalogue-contact-bugs https://github.com/cpierquet/postit/issues -catalogue-contact-repository https://github.com/cpierquet/postit catalogue-ctan /macros/latex/contrib/postit catalogue-license lppl1.3c catalogue-topics decoration boxing @@ -245308,7 +248088,7 @@ catalogue-version 0.1.3 name postnotes category Package -revision 69102 +revision 73045 shortdesc Endnotes for LaTeX longdesc This is an endnotes package for LaTeX. Its user interface longdesc provides means to print multiple sections of notes along the @@ -245320,7 +248100,7 @@ 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. -docfiles size=268 +docfiles size=294 texmf-dist/doc/latex/postnotes/CHANGELOG.md texmf-dist/doc/latex/postnotes/DEPENDS.txt texmf-dist/doc/latex/postnotes/README.md details="Readme" @@ -245328,16 +248108,16 @@ docfiles size=268 texmf-dist/doc/latex/postnotes/postnotes-code.tex texmf-dist/doc/latex/postnotes/postnotes-doc.pdf details="User manual" texmf-dist/doc/latex/postnotes/postnotes-doc.tex -srcfiles size=27 +srcfiles size=39 texmf-dist/source/latex/postnotes/postnotes.dtx texmf-dist/source/latex/postnotes/postnotes.ins -runfiles size=12 +runfiles size=20 texmf-dist/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.8 +catalogue-version 0.5.1 name powerdot category Package @@ -245459,7 +248239,7 @@ catalogue-version 1.0.0 name ppmcheckpdf category Package -revision 69527 +revision 73030 shortdesc Convert PDF to PNG and compare PNG files after l3build longdesc The build system l3build normally writes the contents of some longdesc boxes from .lvt files into corresponding .tlg files. Sometimes @@ -245470,7 +248250,10 @@ longdesc alternative option for regression testing: instead of printing longdesc the contents of boxes in .lvt files, PDF files are converted to longdesc PNG files and you can compare the PNG files after l3build has longdesc finished its work. -docfiles size=9 +depend ppmcheckpdf.ARCH +docfiles size=26 + texmf-dist/doc/man/man1/ppmcheckpdf.1 + texmf-dist/doc/man/man1/ppmcheckpdf.man1.pdf texmf-dist/doc/support/ppmcheckpdf/README.txt details="Readme" texmf-dist/doc/support/ppmcheckpdf/ppmcheckpdf.pdf details="Package documentation" texmf-dist/doc/support/ppmcheckpdf/ppmcheckpdf.tex @@ -245479,8 +248262,113 @@ runfiles size=2 catalogue-contact-repository https://github.com/lvjr/ppmcheck catalogue-ctan /support/ppmcheckpdf catalogue-license lppl1.3c -catalogue-topics log-manip -catalogue-version 2024B +catalogue-topics use-lua +catalogue-version 2024C + +name ppmcheckpdf.aarch64-linux +category Package +revision 73030 +shortdesc aarch64-linux files of ppmcheckpdf +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/ppmcheckpdf + +name ppmcheckpdf.amd64-freebsd +category Package +revision 73030 +shortdesc amd64-freebsd files of ppmcheckpdf +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/ppmcheckpdf + +name ppmcheckpdf.amd64-netbsd +category Package +revision 73030 +shortdesc amd64-netbsd files of ppmcheckpdf +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/ppmcheckpdf + +name ppmcheckpdf.armhf-linux +category Package +revision 73030 +shortdesc armhf-linux files of ppmcheckpdf +binfiles arch=armhf-linux size=1 + bin/armhf-linux/ppmcheckpdf + +name ppmcheckpdf.i386-freebsd +category Package +revision 73030 +shortdesc i386-freebsd files of ppmcheckpdf +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/ppmcheckpdf + +name ppmcheckpdf.i386-linux +category Package +revision 73030 +shortdesc i386-linux files of ppmcheckpdf +binfiles arch=i386-linux size=1 + bin/i386-linux/ppmcheckpdf + +name ppmcheckpdf.i386-netbsd +category Package +revision 73030 +shortdesc i386-netbsd files of ppmcheckpdf +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/ppmcheckpdf + +name ppmcheckpdf.i386-solaris +category Package +revision 73030 +shortdesc i386-solaris files of ppmcheckpdf +binfiles arch=i386-solaris size=1 + bin/i386-solaris/ppmcheckpdf + +name ppmcheckpdf.universal-darwin +category Package +revision 73030 +shortdesc universal-darwin files of ppmcheckpdf +binfiles arch=universal-darwin size=1 + bin/universal-darwin/ppmcheckpdf + +name ppmcheckpdf.windows +category Package +revision 73030 +shortdesc windows files of ppmcheckpdf +binfiles arch=windows size=2 + bin/windows/ppmcheckpdf.exe + +name ppmcheckpdf.x86_64-cygwin +category Package +revision 73030 +shortdesc x86_64-cygwin files of ppmcheckpdf +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/ppmcheckpdf + +name ppmcheckpdf.x86_64-darwinlegacy +category Package +revision 73030 +shortdesc x86_64-darwinlegacy files of ppmcheckpdf +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/ppmcheckpdf + +name ppmcheckpdf.x86_64-linux +category Package +revision 73030 +shortdesc x86_64-linux files of ppmcheckpdf +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/ppmcheckpdf + +name ppmcheckpdf.x86_64-linuxmusl +category Package +revision 73030 +shortdesc x86_64-linuxmusl files of ppmcheckpdf +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/ppmcheckpdf + +name ppmcheckpdf.x86_64-solaris +category Package +revision 73030 +shortdesc x86_64-solaris files of ppmcheckpdf +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/ppmcheckpdf name ppr-prv category Package @@ -245506,7 +248394,7 @@ catalogue-version 0.13c name ppt-slides category Package -revision 71155 +revision 72584 shortdesc Good-looking slide decks a la PowerPoint (PPT) longdesc This LaTeX package helps you create slide decks as good-looking longdesc as with PowerPointtm, but more precise, uniform, and visually @@ -245524,7 +248412,7 @@ depend tikzpagenodes depend tools depend varwidth depend xcolor -docfiles size=256 +docfiles size=236 texmf-dist/doc/latex/ppt-slides/DEPENDS.txt texmf-dist/doc/latex/ppt-slides/LICENSE.txt texmf-dist/doc/latex/ppt-slides/README.md details="Readme" @@ -245544,7 +248432,7 @@ 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.3.3 +catalogue-version 0.4.0 name pracjourn category Package @@ -245894,25 +248782,25 @@ catalogue-version 1.6 name principia category Package -revision 66625 +revision 73662 shortdesc Notations for typesetting the "Principia Mathematica" longdesc This package supports typesetting the Peanese notation in longdesc Volumes I-III of Whitehead and Russell's 1910 "Principia longdesc Mathematica". docfiles size=160 - texmf-dist/doc/latex/principia/List_of_Definitions.pdf details="List of definitions" - texmf-dist/doc/latex/principia/List_of_Definitions.tex + texmf-dist/doc/latex/principia/List-of-Definitions.pdf details="List of definitions" + texmf-dist/doc/latex/principia/List-of-Definitions.tex texmf-dist/doc/latex/principia/README details="Readme" texmf-dist/doc/latex/principia/principia.pdf details="Package documentation" texmf-dist/doc/latex/principia/principia.tex -runfiles size=10 +runfiles size=11 texmf-dist/tex/latex/principia/principia.sty catalogue-contact-home https://logicalatomist.github.io/principia/ catalogue-contact-repository https://github.com/LogicalAtomist/principia catalogue-ctan /macros/latex/contrib/principia catalogue-license lppl1.3c catalogue-topics book-pub -catalogue-version 2.0 +catalogue-version 3.2 name printlen category Package @@ -245936,6 +248824,33 @@ catalogue-license lppl catalogue-topics debug-supp doc-debug catalogue-version 1.1a +name prisma-flow-diagram +category Package +revision 73530 +shortdesc This package provides an abstraction for creating PRISMA 2009 flow diagrams in LaTeX +longdesc This package provides an abstraction for creating PRISMA 2009 +longdesc flow diagrams in LaTeX. It simplifies the process of building +longdesc these diagrams by providing intuitive commands while +longdesc maintaining full compatibility with TikZ. +docfiles size=34 + texmf-dist/doc/latex/prisma-flow-diagram/CITATION.cff + texmf-dist/doc/latex/prisma-flow-diagram/LICENSE + texmf-dist/doc/latex/prisma-flow-diagram/README.md details="Readme" + texmf-dist/doc/latex/prisma-flow-diagram/example.png + texmf-dist/doc/latex/prisma-flow-diagram/example.tex +runfiles size=1 + texmf-dist/tex/latex/prisma-flow-diagram/prisma-flow-diagram.sty +catalogue-contact-announce https://github.com/ezefranca/prisma-flow-diagram/releases +catalogue-contact-bugs https://github.com/ezefranca/prisma-flow-diagram/issues +catalogue-contact-development https://github.com/ezefranca/prisma-flow-diagram +catalogue-contact-home https://github.com/ezefranca/prisma-flow-diagram +catalogue-contact-repository https://github.com/ezefranca/prisma-flow-diagram +catalogue-contact-support https://github.com/ezefranca/prisma-flow-diagram +catalogue-ctan /macros/latex/contrib/prisma-flow-diagram +catalogue-license lppl1.3c +catalogue-topics diagram-flow pgf-tikz +catalogue-version 1.0.0 + name proba category Package revision 15878 @@ -246099,7 +249014,7 @@ catalogue-version 1.1 name profcollege category Package -revision 71706 +revision 72198 shortdesc A LaTeX package for French maths teachers in college longdesc This package provides some commands to help French mathematics longdesc teachers for 11-16 years olds, for example: \Tableau[Metre] to @@ -246108,12 +249023,12 @@ 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. -docfiles size=4051 +docfiles size=4057 texmf-dist/doc/latex/profcollege/PfCLogoNumberHive.png texmf-dist/doc/latex/profcollege/README details="Readme" texmf-dist/doc/latex/profcollege/profcollege-doc.pdf details="Package documentation" language="fr" texmf-dist/doc/latex/profcollege/profcollege-doc.zip -runfiles size=2974 +runfiles size=3002 texmf-dist/metapost/profcollege/PfCAfficheur.mp texmf-dist/metapost/profcollege/PfCAllumettes.mp texmf-dist/metapost/profcollege/PfCArithmetique.mp @@ -246140,6 +249055,7 @@ runfiles size=2974 texmf-dist/metapost/profcollege/PfCPseudo.mp texmf-dist/metapost/profcollege/PfCScratch.mp texmf-dist/metapost/profcollege/PfCScratchpdf.mp + texmf-dist/metapost/profcollege/PfCSketch.mp texmf-dist/metapost/profcollege/PfCSolid.mp texmf-dist/metapost/profcollege/PfCSvgnames.mp texmf-dist/metapost/profcollege/PfCTurtleTestRemplis.mp @@ -246350,11 +249266,13 @@ runfiles size=2974 texmf-dist/tex/latex/profcollege/PfCCAN.tex texmf-dist/tex/latex/profcollege/PfCCalculatrice.tex texmf-dist/tex/latex/profcollege/PfCCalculsCroises.tex + texmf-dist/tex/latex/profcollege/PfCCalculsDetailles.tex texmf-dist/tex/latex/profcollege/PfCCalculsFractions.tex texmf-dist/tex/latex/profcollege/PfCCalisson.tex texmf-dist/tex/latex/profcollege/PfCCartesJeux.tex texmf-dist/tex/latex/profcollege/PfCCartesMentales.tex texmf-dist/tex/latex/profcollege/PfCCartographie.tex + texmf-dist/tex/latex/profcollege/PfCCheque.tex texmf-dist/tex/latex/profcollege/PfCCible.tex texmf-dist/tex/latex/profcollege/PfCCibleQOp.tex texmf-dist/tex/latex/profcollege/PfCColorilude.tex @@ -246471,6 +249389,7 @@ runfiles size=2974 texmf-dist/tex/latex/profcollege/PfCSommeAngles.tex texmf-dist/tex/latex/profcollege/PfCSquaro.tex texmf-dist/tex/latex/profcollege/PfCStatistiques.tex + texmf-dist/tex/latex/profcollege/PfCTableauDoubleEntree.tex texmf-dist/tex/latex/profcollege/PfCTableauxUnites.tex texmf-dist/tex/latex/profcollege/PfCTablesOperations.tex texmf-dist/tex/latex/profcollege/PfCTectonic.tex @@ -246490,7 +249409,7 @@ catalogue-also proflycee catalogue-ctan /macros/latex/contrib/profcollege catalogue-license lppl1.3c catalogue-topics maths french teaching -catalogue-version 0.99-A-g +catalogue-version 0.99-A-j name proflabo category Package @@ -246512,26 +249431,46 @@ catalogue-version 1.0 name proflycee category Package -revision 71414 +revision 73852 shortdesc A LaTeX package for French maths teachers in high school 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. -docfiles size=532 +longdesc teachers for 15-18 years olds, for example: solve equations to +longdesc approximation ; calculate an approximate value of an integral ; +longdesc present Python code or pseudocode, a Python execution console ; +longdesc simplify calculations in fractional form, simplify roots ; +longdesc display and use a trigonometric circle ; display a small +longdesc diagram for the sign of an affine function or a trinomial ; ... +docfiles size=668 texmf-dist/doc/latex/proflycee/ProfLycee-doc.pdf details="Package documentation" language="fr" texmf-dist/doc/latex/proflycee/ProfLycee-docctan.zip texmf-dist/doc/latex/proflycee/ProfLycee-exemples-pyluatex.pdf details="Examples using pyluatex" language="fr" texmf-dist/doc/latex/proflycee/ProfLycee-exemples-pythontex.pdf details="Examples using python" language="fr" texmf-dist/doc/latex/proflycee/README.md details="Readme" -runfiles size=143 +runfiles size=278 texmf-dist/metapost/proflycee/PfLEspace.mp + texmf-dist/tex/latex/proflycee/ProfLycee-Light.sty texmf-dist/tex/latex/proflycee/ProfLycee.sty + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-bronze-cup.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-bronze-medal-flat.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-bronze-medal.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-checked.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-crossed.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-gold-cup.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-gold-medal-flat.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-gold-medal.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-mouse-center.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-mouse-left.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-mouse-right.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-mouse.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-notok.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-ok.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-silver-cup.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-silver-medal-flat.pdf + texmf-dist/tex/latex/proflycee/pflcliparts/pfl-silver-medal.pdf texmf-dist/tex/latex/proflycee/proflycee-tools-aleatoire.tex texmf-dist/tex/latex/proflycee/proflycee-tools-analyse.tex texmf-dist/tex/latex/proflycee/proflycee-tools-arithm.tex + texmf-dist/tex/latex/proflycee/proflycee-tools-cliparts.tex texmf-dist/tex/latex/proflycee/proflycee-tools-competences.tex texmf-dist/tex/latex/proflycee/proflycee-tools-complexes.tex texmf-dist/tex/latex/proflycee/proflycee-tools-ecritures.tex @@ -246549,33 +249488,33 @@ runfiles size=143 texmf-dist/tex/latex/proflycee/proflycee-tools-suites.tex texmf-dist/tex/latex/proflycee/proflycee-tools-trigo.tex catalogue-also profcollege -catalogue-contact-bugs https://github.com/cpierquet/ProfLycee/issues -catalogue-contact-repository https://github.com/cpierquet/ProfLycee +catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex catalogue-ctan /macros/latex/contrib/proflycee -catalogue-license lppl1.3c +catalogue-license lppl1.3c cc0 cc-by-sa-3 catalogue-topics maths french teaching expl3 pgf-tikz -catalogue-version 3.04c +catalogue-version 3.11a name profmaquette category Package -revision 71161 +revision 73826 shortdesc Use exercises in different types of documents longdesc This LaTeX package can help French maths teachers to put one longdesc and the same exercise into different sorts of documents. -docfiles size=100 - texmf-dist/doc/latex/profmaquette/ProfMaquette-doc.pdf details="Package documentation" language="fr" - texmf-dist/doc/latex/profmaquette/ProfMaquette-doc.zip +docfiles size=117 texmf-dist/doc/latex/profmaquette/README details="Readme" -runfiles size=36 + texmf-dist/doc/latex/profmaquette/profmaquette-doc.pdf details="Package documentation" language="fr" + texmf-dist/doc/latex/profmaquette/profmaquette-doc.zip +runfiles size=51 texmf-dist/tex/latex/profmaquette/ProfMaquette.sty catalogue-ctan /macros/latex/contrib/profmaquette catalogue-license lppl1.3c catalogue-topics teaching exercise maths -catalogue-version 0.94 +catalogue-version 0.99-o name profsio category Package -revision 71302 +revision 73718 shortdesc Commands (with TikZ) to work with French "BTS SIO" maths themes longdesc This package provides some commands (in French) to work with: longdesc tables of Karnaugh ; MPM graphs ; simple graphs. @@ -246591,12 +249530,12 @@ docfiles size=184 texmf-dist/doc/latex/profsio/README.md details="Readme" runfiles size=40 texmf-dist/tex/latex/profsio/ProfSio.sty -catalogue-contact-bugs https://github.com/cpierquet/profsio/issues -catalogue-contact-repository https://github.com/cpierquet/profsio +catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex catalogue-ctan /graphics/pgf/contrib/profsio catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz maths -catalogue-version 0.2.8 +catalogue-version 0.3.0 name program category Package @@ -246664,7 +249603,7 @@ catalogue-version 1.0b~4 name projlib category Package -revision 70305 +revision 72789 shortdesc A collection of facilitative tools longdesc ProjLib is a collection of tools to help you write LaTeX longdesc documents. With the main package ProjLib loaded, you no longer @@ -246700,6 +249639,27 @@ catalogue-ctan /macros/latex/contrib/projlib catalogue-license lppl1.3c catalogue-topics misc-support expl3 +name pronunciation +category Package +revision 73701 +shortdesc American English Pronunciation +longdesc This style file is designed for automatically typing phonetic +longdesc symbols in American English. The system supports as many as +longdesc 21,082 English words all told. The main packages used in +longdesc pronunciation.sty are ifthen, xparse and tipa. +docfiles size=48 + texmf-dist/doc/latex/pronunciation/README.txt details="Readme" + texmf-dist/doc/latex/pronunciation/pronunciation-en.pdf details="Package documentation (English)" + texmf-dist/doc/latex/pronunciation/pronunciation-en.tex + texmf-dist/doc/latex/pronunciation/pronunciation-jp.pdf details="Package documentation (Japanese)" language="ja" + texmf-dist/doc/latex/pronunciation/pronunciation-jp.tex +runfiles size=368 + texmf-dist/tex/latex/pronunciation/pronunciation.sty +catalogue-ctan /macros/latex/contrib/pronunciation +catalogue-license lppl1.3c +catalogue-topics phonetic linguistic +catalogue-version 1.0.2 + name proof-at-the-end category Package revision 69602 @@ -246762,7 +249722,7 @@ catalogue-version 1.04 name prooftrees category Package -revision 67399 +revision 72665 shortdesc Forest-based proof trees (symbolic logic) longdesc The package supports drawing proof trees of the kind often used longdesc in introductory logic classes, especially those aimed at @@ -246777,8 +249737,8 @@ longdesc for trees which cite line numbers in justifications for proof longdesc lines or branch closures. prooftrees is based on forest and, longdesc hence, TikZ. The package requires version 2.0.2 of Forest for longdesc expected results and will not work with version 1. -docfiles size=250 - texmf-dist/doc/latex/prooftrees/README details="Readme" +docfiles size=316 + texmf-dist/doc/latex/prooftrees/README.md details="Readme" texmf-dist/doc/latex/prooftrees/manifest.txt texmf-dist/doc/latex/prooftrees/prooftrees.pdf details="Package documentation" texmf-dist/doc/latex/prooftrees/prooftrees.tex @@ -246786,10 +249746,11 @@ docfiles size=250 runfiles size=11 texmf-dist/tex/latex/prooftrees/prooftrees.sty catalogue-also forest +catalogue-contact-repository https://codeberg.org/cfr/prooftrees catalogue-ctan /graphics/pgf/contrib/prooftrees -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics tree pgf-tikz logic -catalogue-version 0.8 svn 9582 +catalogue-version 0.9 name properties category Package @@ -247068,7 +250029,7 @@ catalogue-version 1.13 name prtec category Package -revision 71742 +revision 71883 shortdesc A template for PRTEC conference papers longdesc This package provides a LaTeX class, a BibTeX style, and a longdesc LaTeX template to format conference papers for the Pacific Rim @@ -247076,7 +250037,7 @@ longdesc Thermal Engineering Conference (PRTEC). The .tex and .cls files longdesc are commented and should be self-explanatory. The package longdesc depends on newtx. docfiles size=142 - texmf-dist/doc/latex/prtec/PRTEC24-template.pdf + texmf-dist/doc/latex/prtec/PRTEC24-template.pdf details="Example of use" texmf-dist/doc/latex/prtec/PRTEC24-template.tex texmf-dist/doc/latex/prtec/README.md details="Readme" texmf-dist/doc/latex/prtec/prtec-sample.bib @@ -247086,8 +250047,8 @@ runfiles size=12 texmf-dist/tex/latex/prtec/prtec.cls catalogue-ctan /macros/latex/contrib/prtec catalogue-license mit -catalogue-topics class bibtex-sty confproc engineering scientific-docs -catalogue-version 1.06 +catalogue-topics class doc-templ bibtex-sty confproc engineering scientific-docs +catalogue-version 1.07 name przechlewski-book category Package @@ -247180,7 +250141,7 @@ catalogue-version 1.70 name ps2eps.aarch64-linux category TLCore -revision 65927 +revision 73915 shortdesc aarch64-linux files of ps2eps binfiles arch=aarch64-linux size=4 bin/aarch64-linux/bbox @@ -247188,7 +250149,7 @@ binfiles arch=aarch64-linux size=4 name ps2eps.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of ps2eps binfiles arch=amd64-freebsd size=4 bin/amd64-freebsd/bbox @@ -247196,7 +250157,7 @@ binfiles arch=amd64-freebsd size=4 name ps2eps.amd64-netbsd category TLCore -revision 65923 +revision 73802 shortdesc amd64-netbsd files of ps2eps binfiles arch=amd64-netbsd size=4 bin/amd64-netbsd/bbox @@ -247204,7 +250165,7 @@ binfiles arch=amd64-netbsd size=4 name ps2eps.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of ps2eps binfiles arch=armhf-linux size=4 bin/armhf-linux/bbox @@ -247212,7 +250173,7 @@ binfiles arch=armhf-linux size=4 name ps2eps.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of ps2eps binfiles arch=i386-freebsd size=4 bin/i386-freebsd/bbox @@ -247220,15 +250181,15 @@ binfiles arch=i386-freebsd size=4 name ps2eps.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of ps2eps -binfiles arch=i386-linux size=4 +binfiles arch=i386-linux size=5 bin/i386-linux/bbox bin/i386-linux/ps2eps name ps2eps.i386-netbsd category TLCore -revision 65923 +revision 73802 shortdesc i386-netbsd files of ps2eps binfiles arch=i386-netbsd size=4 bin/i386-netbsd/bbox @@ -247236,7 +250197,7 @@ binfiles arch=i386-netbsd size=4 name ps2eps.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of ps2eps binfiles arch=i386-solaris size=4 bin/i386-solaris/bbox @@ -247244,7 +250205,7 @@ binfiles arch=i386-solaris size=4 name ps2eps.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of ps2eps binfiles arch=universal-darwin size=30 bin/universal-darwin/bbox @@ -247252,7 +250213,7 @@ binfiles arch=universal-darwin size=30 name ps2eps.windows category TLCore -revision 69788 +revision 73796 shortdesc windows files of ps2eps binfiles arch=windows size=5 bin/windows/bbox.exe @@ -247260,7 +250221,7 @@ binfiles arch=windows size=5 name ps2eps.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of ps2eps binfiles arch=x86_64-cygwin size=4 bin/x86_64-cygwin/bbox.exe @@ -247268,7 +250229,7 @@ binfiles arch=x86_64-cygwin size=4 name ps2eps.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of ps2eps binfiles arch=x86_64-darwinlegacy size=5 bin/x86_64-darwinlegacy/bbox @@ -247276,7 +250237,7 @@ binfiles arch=x86_64-darwinlegacy size=5 name ps2eps.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of ps2eps binfiles arch=x86_64-linux size=5 bin/x86_64-linux/bbox @@ -247284,15 +250245,15 @@ binfiles arch=x86_64-linux size=5 name ps2eps.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of ps2eps -binfiles arch=x86_64-linuxmusl size=4 +binfiles arch=x86_64-linuxmusl size=5 bin/x86_64-linuxmusl/bbox bin/x86_64-linuxmusl/ps2eps name ps2eps.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of ps2eps binfiles arch=x86_64-solaris size=5 bin/x86_64-solaris/bbox @@ -247322,7 +250283,7 @@ catalogue-topics ps-manip font-proc name ps2pk.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of ps2pk binfiles arch=aarch64-linux size=64 bin/aarch64-linux/mag @@ -247332,7 +250293,7 @@ binfiles arch=aarch64-linux size=64 name ps2pk.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of ps2pk binfiles arch=amd64-freebsd size=69 bin/amd64-freebsd/mag @@ -247342,9 +250303,9 @@ binfiles arch=amd64-freebsd size=69 name ps2pk.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of ps2pk -binfiles arch=amd64-netbsd size=69 +binfiles arch=amd64-netbsd size=70 bin/amd64-netbsd/mag bin/amd64-netbsd/pfb2pfa bin/amd64-netbsd/pk2bm @@ -247352,9 +250313,9 @@ binfiles arch=amd64-netbsd size=69 name ps2pk.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of ps2pk -binfiles arch=armhf-linux size=48 +binfiles arch=armhf-linux size=42 bin/armhf-linux/mag bin/armhf-linux/pfb2pfa bin/armhf-linux/pk2bm @@ -247362,7 +250323,7 @@ binfiles arch=armhf-linux size=48 name ps2pk.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of ps2pk binfiles arch=i386-freebsd size=69 bin/i386-freebsd/mag @@ -247372,9 +250333,9 @@ binfiles arch=i386-freebsd size=69 name ps2pk.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of ps2pk -binfiles arch=i386-linux size=62 +binfiles arch=i386-linux size=72 bin/i386-linux/mag bin/i386-linux/pfb2pfa bin/i386-linux/pk2bm @@ -247382,7 +250343,7 @@ binfiles arch=i386-linux size=62 name ps2pk.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of ps2pk binfiles arch=i386-netbsd size=63 bin/i386-netbsd/mag @@ -247392,9 +250353,9 @@ binfiles arch=i386-netbsd size=63 name ps2pk.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of ps2pk -binfiles arch=i386-solaris size=54 +binfiles arch=i386-solaris size=55 bin/i386-solaris/mag bin/i386-solaris/pfb2pfa bin/i386-solaris/pk2bm @@ -247402,7 +250363,7 @@ binfiles arch=i386-solaris size=54 name ps2pk.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of ps2pk binfiles arch=universal-darwin size=207 bin/universal-darwin/mag @@ -247412,7 +250373,7 @@ binfiles arch=universal-darwin size=207 name ps2pk.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of ps2pk binfiles arch=windows size=51 bin/windows/mag.exe @@ -247422,7 +250383,7 @@ binfiles arch=windows size=51 name ps2pk.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of ps2pk binfiles arch=x86_64-cygwin size=41 bin/x86_64-cygwin/mag.exe @@ -247432,7 +250393,7 @@ binfiles arch=x86_64-cygwin size=41 name ps2pk.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of ps2pk binfiles arch=x86_64-darwinlegacy size=58 bin/x86_64-darwinlegacy/mag @@ -247442,9 +250403,9 @@ binfiles arch=x86_64-darwinlegacy size=58 name ps2pk.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of ps2pk -binfiles arch=x86_64-linux size=62 +binfiles arch=x86_64-linux size=63 bin/x86_64-linux/mag bin/x86_64-linux/pfb2pfa bin/x86_64-linux/pk2bm @@ -247452,9 +250413,9 @@ binfiles arch=x86_64-linux size=62 name ps2pk.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of ps2pk -binfiles arch=x86_64-linuxmusl size=63 +binfiles arch=x86_64-linuxmusl size=67 bin/x86_64-linuxmusl/mag bin/x86_64-linuxmusl/pfb2pfa bin/x86_64-linuxmusl/pk2bm @@ -247462,9 +250423,9 @@ binfiles arch=x86_64-linuxmusl size=63 name ps2pk.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of ps2pk -binfiles arch=x86_64-solaris size=66 +binfiles arch=x86_64-solaris size=67 bin/x86_64-solaris/mag bin/x86_64-solaris/pfb2pfa bin/x86_64-solaris/pk2bm @@ -248457,7 +251418,7 @@ catalogue-version 1.06b name pst-circ category Package -revision 60464 +revision 72519 shortdesc PSTricks package for drawing electric circuits longdesc The package is built using PSTricks and in particular pst-node. longdesc It can easily draw current 2-terminal devices and some 3- and @@ -248466,7 +251427,7 @@ 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. -docfiles size=174 +docfiles size=288 texmf-dist/doc/generic/pst-circ/Changes texmf-dist/doc/generic/pst-circ/README details="Readme" texmf-dist/doc/generic/pst-circ/pst-circ-doc.bib @@ -248479,28 +251440,28 @@ runfiles size=57 catalogue-ctan /graphics/pstricks/contrib/pst-circ catalogue-license lppl catalogue-topics diagram-circ pstricks -catalogue-version 2.19 +catalogue-version 2.20 name pst-coil category Package -revision 62977 +revision 72030 shortdesc A PSTricks package for coils, etc longdesc Pst-coil is a PSTricks based package for coils and zigzags and longdesc for coil and zigzag node connections. -docfiles size=83 +docfiles size=927 texmf-dist/doc/generic/pst-coil/Changes texmf-dist/doc/generic/pst-coil/README details="Package README" texmf-dist/doc/generic/pst-coil/pst-coil-doc.bib texmf-dist/doc/generic/pst-coil/pst-coil-doc.pdf details="Package documentation" texmf-dist/doc/generic/pst-coil/pst-coil-doc.tex -runfiles size=5 +runfiles size=6 texmf-dist/dvips/pst-coil/pst-coil.pro texmf-dist/tex/generic/pst-coil/pst-coil.tex texmf-dist/tex/latex/pst-coil/pst-coil.sty catalogue-ctan /graphics/pstricks/contrib/pst-coil catalogue-license lppl catalogue-topics graphics-use pstricks physics -catalogue-version 1.07 +catalogue-version 1.08 name pst-contourplot category Package @@ -248635,7 +251596,7 @@ catalogue-version 0.16 name pst-diffraction category Package -revision 71657 +revision 71819 shortdesc Print diffraction patterns from various apertures longdesc The package enables the user to draw (using PSTricks) the longdesc diffraction patterns for different geometric forms of apertures @@ -248647,7 +251608,7 @@ 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). -docfiles size=5563 +docfiles size=5639 texmf-dist/doc/generic/pst-diffraction/Changes texmf-dist/doc/generic/pst-diffraction/README details="Readme" texmf-dist/doc/generic/pst-diffraction/pst-diffraction-doc.bib @@ -248659,7 +251620,7 @@ runfiles size=6 catalogue-ctan /graphics/pstricks/contrib/pst-diffraction catalogue-license lppl catalogue-topics graphics-use pstricks physics -catalogue-version 2.04a +catalogue-version 2.06a name pst-electricfield category Package @@ -249759,7 +252720,7 @@ catalogue-version 2.2 name pst-node category Package -revision 71724 +revision 71773 shortdesc Nodes and node connections in PSTricks longdesc The package enables the user to connect information, and to longdesc place labels, without knowing (in advance) the actual positions @@ -249769,14 +252730,14 @@ 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. -docfiles size=224 +docfiles size=238 texmf-dist/doc/generic/pst-node/Changes texmf-dist/doc/generic/pst-node/README details="Readme" texmf-dist/doc/generic/pst-node/psmatrix-docDE.bib - texmf-dist/doc/generic/pst-node/psmatrix-docDE.pdf + texmf-dist/doc/generic/pst-node/psmatrix-docDE.pdf details="psmatrix documentation (German)" language="de" texmf-dist/doc/generic/pst-node/psmatrix-docDE.tex texmf-dist/doc/generic/pst-node/pst-node-doc.bib - texmf-dist/doc/generic/pst-node/pst-node-doc.pdf details="Package documentation (English)" language="en" + texmf-dist/doc/generic/pst-node/pst-node-doc.pdf details="Package documentation (English)" texmf-dist/doc/generic/pst-node/pst-node-doc.tex runfiles size=29 texmf-dist/dvips/pst-node/pst-node.pro @@ -249787,7 +252748,7 @@ runfiles size=29 catalogue-ctan /graphics/pstricks/contrib/pst-node catalogue-license lppl catalogue-topics graphics-in-tex linguistic -catalogue-version 1.43 +catalogue-version 1.45 name pst-ob3d category Package @@ -249877,12 +252838,12 @@ catalogue-version 6.1 name pst-optic category Package -revision 71545 +revision 72694 shortdesc Drawing optics diagrams longdesc A package for drawing both reflective and refractive optics longdesc diagrams. The package requires pstricks later than version longdesc 1.10. -docfiles size=142 +docfiles size=145 texmf-dist/doc/generic/pst-optic/Changes texmf-dist/doc/generic/pst-optic/README details="Readme" texmf-dist/doc/generic/pst-optic/pst-optic-doc.bib @@ -249894,7 +252855,7 @@ runfiles size=20 catalogue-ctan /graphics/pstricks/contrib/pst-optic catalogue-license lppl catalogue-topics physics optics diagram pstricks -catalogue-version 1.04 +catalogue-version 1.05 name pst-osci category Package @@ -251234,7 +254195,7 @@ catalogue-version 1.5e name pstricks category Package -revision 71752 +revision 72868 catalogue pstricks-base shortdesc PostScript macros for TeX longdesc PSTricks offers an extensive collection of macros for @@ -251253,7 +254214,7 @@ 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. -docfiles size=2321 +docfiles size=2320 texmf-dist/doc/generic/pstricks/PSTricks.bib texmf-dist/doc/generic/pstricks/README details="Readme" texmf-dist/doc/generic/pstricks/ctandir.sty @@ -251307,7 +254268,7 @@ docfiles size=2321 texmf-dist/doc/generic/pstricks/pst-user.tgz texmf-dist/doc/generic/pstricks/pstricks-bug.tex texmf-dist/doc/generic/pstricks/pstricks-doc.pdf -runfiles size=130 +runfiles size=131 texmf-dist/dvips/pstricks/pst-algparser.pro texmf-dist/dvips/pstricks/pst-dots.pro texmf-dist/dvips/pstricks/pst-dots97.pro @@ -251345,7 +254306,7 @@ 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.19c +catalogue-version 3.21 name pstricks-add category Package @@ -251534,7 +254495,7 @@ catalogue-version p17 name psutils.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of psutils binfiles arch=aarch64-linux size=102 bin/aarch64-linux/epsffit @@ -251549,7 +254510,7 @@ binfiles arch=aarch64-linux size=102 name psutils.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of psutils binfiles arch=amd64-freebsd size=122 bin/amd64-freebsd/epsffit @@ -251564,7 +254525,7 @@ binfiles arch=amd64-freebsd size=122 name psutils.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of psutils binfiles arch=amd64-netbsd size=120 bin/amd64-netbsd/epsffit @@ -251579,9 +254540,9 @@ binfiles arch=amd64-netbsd size=120 name psutils.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of psutils -binfiles arch=armhf-linux size=81 +binfiles arch=armhf-linux size=69 bin/armhf-linux/epsffit bin/armhf-linux/extractres bin/armhf-linux/includeres @@ -251594,7 +254555,7 @@ binfiles arch=armhf-linux size=81 name psutils.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of psutils binfiles arch=i386-freebsd size=122 bin/i386-freebsd/epsffit @@ -251609,9 +254570,9 @@ binfiles arch=i386-freebsd size=122 name psutils.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of psutils -binfiles arch=i386-linux size=106 +binfiles arch=i386-linux size=120 bin/i386-linux/epsffit bin/i386-linux/extractres bin/i386-linux/includeres @@ -251624,7 +254585,7 @@ binfiles arch=i386-linux size=106 name psutils.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of psutils binfiles arch=i386-netbsd size=108 bin/i386-netbsd/epsffit @@ -251639,9 +254600,9 @@ binfiles arch=i386-netbsd size=108 name psutils.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of psutils -binfiles arch=i386-solaris size=97 +binfiles arch=i386-solaris size=98 bin/i386-solaris/epsffit bin/i386-solaris/extractres bin/i386-solaris/includeres @@ -251654,7 +254615,7 @@ binfiles arch=i386-solaris size=97 name psutils.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of psutils binfiles arch=universal-darwin size=342 bin/universal-darwin/epsffit @@ -251669,7 +254630,7 @@ binfiles arch=universal-darwin size=342 name psutils.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of psutils binfiles arch=windows size=37 bin/windows/epsffit.exe @@ -251684,7 +254645,7 @@ binfiles arch=windows size=37 name psutils.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of psutils binfiles arch=x86_64-cygwin size=38 bin/x86_64-cygwin/epsffit.exe @@ -251699,9 +254660,9 @@ binfiles arch=x86_64-cygwin size=38 name psutils.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of psutils -binfiles arch=x86_64-darwinlegacy size=98 +binfiles arch=x86_64-darwinlegacy size=97 bin/x86_64-darwinlegacy/epsffit bin/x86_64-darwinlegacy/extractres bin/x86_64-darwinlegacy/includeres @@ -251714,9 +254675,9 @@ binfiles arch=x86_64-darwinlegacy size=98 name psutils.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of psutils -binfiles arch=x86_64-linux size=103 +binfiles arch=x86_64-linux size=104 bin/x86_64-linux/epsffit bin/x86_64-linux/extractres bin/x86_64-linux/includeres @@ -251729,9 +254690,9 @@ binfiles arch=x86_64-linux size=103 name psutils.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of psutils -binfiles arch=x86_64-linuxmusl size=105 +binfiles arch=x86_64-linuxmusl size=110 bin/x86_64-linuxmusl/epsffit bin/x86_64-linuxmusl/extractres bin/x86_64-linuxmusl/includeres @@ -251744,9 +254705,9 @@ binfiles arch=x86_64-linuxmusl size=105 name psutils.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of psutils -binfiles arch=x86_64-solaris size=115 +binfiles arch=x86_64-solaris size=118 bin/x86_64-solaris/epsffit bin/x86_64-solaris/extractres bin/x86_64-solaris/includeres @@ -251759,7 +254720,7 @@ binfiles arch=x86_64-solaris size=115 name ptex category Package -revision 70058 +revision 73848 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 @@ -251776,7 +254737,7 @@ depend uptex execute AddFormat name=eptex engine=euptex options="*eptex.ini" patterns=language.def fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts,etex execute AddFormat name=ptex engine=euptex options="ptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts execute addKanjiMap ptex-@jaEmbed@@jaVariant@.map -docfiles size=67 +docfiles size=69 texmf-dist/doc/man/man1/eptex.1 texmf-dist/doc/man/man1/eptex.man1.pdf texmf-dist/doc/man/man1/makejvf.1 @@ -252412,9 +255373,9 @@ catalogue-topics japanese-doc name ptex.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of ptex -binfiles arch=aarch64-linux size=704 +binfiles arch=aarch64-linux size=716 bin/aarch64-linux/eptex bin/aarch64-linux/makejvf bin/aarch64-linux/mendex @@ -252430,9 +255391,9 @@ binfiles arch=aarch64-linux size=704 name ptex.amd64-freebsd category Package -revision 71441 +revision 73909 shortdesc amd64-freebsd files of ptex -binfiles arch=amd64-freebsd size=1478 +binfiles arch=amd64-freebsd size=1485 bin/amd64-freebsd/eptex bin/amd64-freebsd/makejvf bin/amd64-freebsd/mendex @@ -252448,9 +255409,9 @@ binfiles arch=amd64-freebsd size=1478 name ptex.amd64-netbsd category Package -revision 71441 +revision 74100 shortdesc amd64-netbsd files of ptex -binfiles arch=amd64-netbsd size=1480 +binfiles arch=amd64-netbsd size=1496 bin/amd64-netbsd/eptex bin/amd64-netbsd/makejvf bin/amd64-netbsd/mendex @@ -252466,9 +255427,9 @@ binfiles arch=amd64-netbsd size=1480 name ptex.armhf-linux category Package -revision 70489 +revision 73915 shortdesc armhf-linux files of ptex -binfiles arch=armhf-linux size=607 +binfiles arch=armhf-linux size=492 bin/armhf-linux/eptex bin/armhf-linux/makejvf bin/armhf-linux/mendex @@ -252484,9 +255445,9 @@ binfiles arch=armhf-linux size=607 name ptex.i386-freebsd category Package -revision 71441 +revision 73909 shortdesc i386-freebsd files of ptex -binfiles arch=i386-freebsd size=1478 +binfiles arch=i386-freebsd size=1485 bin/i386-freebsd/eptex bin/i386-freebsd/makejvf bin/i386-freebsd/mendex @@ -252502,9 +255463,9 @@ binfiles arch=i386-freebsd size=1478 name ptex.i386-linux category Package -revision 70276 +revision 73909 shortdesc i386-linux files of ptex -binfiles arch=i386-linux size=841 +binfiles arch=i386-linux size=885 bin/i386-linux/eptex bin/i386-linux/makejvf bin/i386-linux/mendex @@ -252520,9 +255481,9 @@ binfiles arch=i386-linux size=841 name ptex.i386-netbsd category Package -revision 71441 +revision 74100 shortdesc i386-netbsd files of ptex -binfiles arch=i386-netbsd size=1314 +binfiles arch=i386-netbsd size=1327 bin/i386-netbsd/eptex bin/i386-netbsd/makejvf bin/i386-netbsd/mendex @@ -252538,9 +255499,9 @@ binfiles arch=i386-netbsd size=1314 name ptex.i386-solaris category Package -revision 70276 +revision 73909 shortdesc i386-solaris files of ptex -binfiles arch=i386-solaris size=710 +binfiles arch=i386-solaris size=727 bin/i386-solaris/eptex bin/i386-solaris/makejvf bin/i386-solaris/mendex @@ -252556,9 +255517,9 @@ binfiles arch=i386-solaris size=710 name ptex.universal-darwin category Package -revision 70274 +revision 73942 shortdesc universal-darwin files of ptex -binfiles arch=universal-darwin size=1567 +binfiles arch=universal-darwin size=1587 bin/universal-darwin/eptex bin/universal-darwin/makejvf bin/universal-darwin/mendex @@ -252574,9 +255535,9 @@ binfiles arch=universal-darwin size=1567 name ptex.windows category Package -revision 70576 +revision 73841 shortdesc windows files of ptex -binfiles arch=windows size=822 +binfiles arch=windows size=836 bin/windows/eptex.exe bin/windows/makejvf.exe bin/windows/mendex.exe @@ -252593,12 +255554,11 @@ binfiles arch=windows size=822 name ptex.x86_64-cygwin category Package -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of ptex -binfiles arch=x86_64-cygwin size=799 +binfiles arch=x86_64-cygwin size=658 bin/x86_64-cygwin/cygptexenc-1.dll bin/x86_64-cygwin/eptex - bin/x86_64-cygwin/eptex.exe bin/x86_64-cygwin/makejvf.exe bin/x86_64-cygwin/mendex.exe bin/x86_64-cygwin/pbibtex @@ -252613,9 +255573,9 @@ binfiles arch=x86_64-cygwin size=799 name ptex.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of ptex -binfiles arch=x86_64-darwinlegacy size=677 +binfiles arch=x86_64-darwinlegacy size=685 bin/x86_64-darwinlegacy/eptex bin/x86_64-darwinlegacy/makejvf bin/x86_64-darwinlegacy/mendex @@ -252631,9 +255591,9 @@ binfiles arch=x86_64-darwinlegacy size=677 name ptex.x86_64-linux category Package -revision 71441 +revision 73909 shortdesc x86_64-linux files of ptex -binfiles arch=x86_64-linux size=743 +binfiles arch=x86_64-linux size=767 bin/x86_64-linux/eptex bin/x86_64-linux/makejvf bin/x86_64-linux/mendex @@ -252649,9 +255609,9 @@ binfiles arch=x86_64-linux size=743 name ptex.x86_64-linuxmusl category Package -revision 71441 +revision 73909 shortdesc x86_64-linuxmusl files of ptex -binfiles arch=x86_64-linuxmusl size=774 +binfiles arch=x86_64-linuxmusl size=782 bin/x86_64-linuxmusl/eptex bin/x86_64-linuxmusl/makejvf bin/x86_64-linuxmusl/mendex @@ -252667,9 +255627,9 @@ binfiles arch=x86_64-linuxmusl size=774 name ptex.x86_64-solaris category Package -revision 70276 +revision 73909 shortdesc x86_64-solaris files of ptex -binfiles arch=x86_64-solaris size=822 +binfiles arch=x86_64-solaris size=838 bin/x86_64-solaris/eptex bin/x86_64-solaris/makejvf bin/x86_64-solaris/mendex @@ -253145,7 +256105,7 @@ catalogue-version 1.0.1 name pwebmac category Package -revision 71345 +revision 72015 shortdesc Consolidated WEB macros for DVI and PDF output longdesc The original WEB system by Donald Knuth has the macros longdesc webmac.tex that produce DVI output only; for historic reasons, @@ -253166,9 +256126,10 @@ 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. -docfiles size=15 +docfiles size=16 texmf-dist/doc/plain/pwebmac/README.md details="Readme" texmf-dist/doc/plain/pwebmac/Xerrorlog.tex + texmf-dist/doc/plain/pwebmac/editorsnote.tex texmf-dist/doc/plain/pwebmac/index.md texmf-dist/doc/plain/pwebmac/makeall texmf-dist/doc/plain/pwebmac/trapman.ch @@ -253180,7 +256141,7 @@ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /web/pwebmac catalogue-license pd catalogue-topics litprog -catalogue-version 4.12 +catalogue-version 5.0 name pxbase category Package @@ -253213,7 +256174,7 @@ catalogue-version 1.4 name pxchfon category Package -revision 68103 +revision 72097 shortdesc Japanese font setup for pLaTeX and upLaTeX longdesc This package enables users to declare in their document which longdesc physical fonts should be used for the standard Japanese @@ -253225,7 +256186,7 @@ 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. -docfiles size=109 +docfiles size=115 texmf-dist/doc/platex/pxchfon/LICENSE texmf-dist/doc/platex/pxchfon/README-ja.md details="Readme" language="ja" texmf-dist/doc/platex/pxchfon/README.md details="Readme" @@ -253237,7 +256198,7 @@ docfiles size=109 texmf-dist/doc/platex/pxchfon/sample-2004jis.tex texmf-dist/doc/platex/pxchfon/sample-pxchfon.pdf texmf-dist/doc/platex/pxchfon/sample-pxchfon.tex -runfiles size=107 +runfiles size=108 texmf-dist/fonts/sfd/pxchfon/PXcjk0.sfd texmf-dist/fonts/tfm/public/pxchfon/cfjam-r-l0j.tfm texmf-dist/fonts/tfm/public/pxchfon/cfjam-r-l5j.tfm @@ -253329,7 +256290,7 @@ catalogue-contact-repository https://github.com/zr-tex8r/PXchfon catalogue-ctan /macros/jptex/latex/pxchfon catalogue-license mit catalogue-topics japanese font-supp -catalogue-version 2.0 +catalogue-version 2.2 name pxcjkcat category Package @@ -253576,18 +256537,18 @@ catalogue-version 1.0 name pxjahyper category Package -revision 66272 +revision 72114 shortdesc Hyperref support for pLaTeX 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. -docfiles size=47 +docfiles size=51 texmf-dist/doc/platex/pxjahyper/LICENSE texmf-dist/doc/platex/pxjahyper/README-ja.md details="Readme (Japanese)" language="ja" texmf-dist/doc/platex/pxjahyper/README.md details="Readme" texmf-dist/doc/platex/pxjahyper/pxjahyper.pdf details="Package documentation (Japanese)" language="ja" texmf-dist/doc/platex/pxjahyper/pxjahyper.tex -runfiles size=23 +runfiles size=25 texmf-dist/tex/platex/pxjahyper/pxjahyper-ajm.def texmf-dist/tex/platex/pxjahyper/pxjahyper-enc.sty texmf-dist/tex/platex/pxjahyper/pxjahyper-uni.def @@ -253596,7 +256557,7 @@ catalogue-contact-repository https://github.com/zr-tex8r/PXjahyper catalogue-ctan /macros/jptex/latex/pxjahyper catalogue-license mit catalogue-topics japanese hyper -catalogue-version 1.3 +catalogue-version 1.5 name pxjodel category Package @@ -254553,7 +257514,7 @@ catalogue-version 0.6.3 name pynotebook category Package -revision 70818 +revision 73069 shortdesc pynotebook presents (raw, Markdown or Python) codes (and execution with LuaLaTeX) as in a Jupyter Notebook longdesc This package provides environments to (re)create a jupyter longdesc notebook with: raw blocks markdown blocks (with full LaTeX @@ -254567,9 +257528,6 @@ docfiles size=141 texmf-dist/doc/latex/pynotebook/pynotebook-examples-pitonpyluatex.tex runfiles size=5 texmf-dist/tex/latex/pynotebook/pynotebook.sty -catalogue-contact-bugs https://github.com/cpierquet/pynotebook/issues -catalogue-contact-home https://github.com/cpierquet/pynotebook -catalogue-contact-repository https://github.com/cpierquet/pynotebook catalogue-ctan /macros/latex/contrib/pynotebook catalogue-license lppl1.3c catalogue-topics listing boxing callback @@ -255079,7 +258037,7 @@ catalogue-version 0.3.1901.1401 name qstest category Package -revision 15878 +revision 73069 shortdesc Bundle for unit tests and pattern matching longdesc This is the public release of the qstest bundle (written for longdesc DocScape Publisher) (C) 2006, 2007 QuinScape GmbH. The bundle @@ -255110,7 +258068,7 @@ runfiles size=5 texmf-dist/tex/latex/qstest/qstest.sty catalogue-ctan /macros/latex/contrib/qstest catalogue-license lppl -catalogue-topics units +catalogue-topics debug-supp name qsymbols category Package @@ -255702,24 +258660,22 @@ catalogue-version 1.0 name quizztex category Package -revision 68823 +revision 73069 shortdesc Create quizzes like in TV shows longdesc This LaTeX package permits to create quizzes in the style of longdesc the TV shows << Qui veut gagner des millions ? >> ("Who Wants longdesc to Be a Millionaire?") or << Tout le monde veut prendre sa longdesc place ! >>. -docfiles size=141 +docfiles size=143 texmf-dist/doc/latex/quizztex/README.md details="Readme" texmf-dist/doc/latex/quizztex/quizztex-doc-fr.pdf details="Package documentation" language="fr" texmf-dist/doc/latex/quizztex/quizztex-doc-fr.tex runfiles size=11 texmf-dist/tex/latex/quizztex/quizztex.sty -catalogue-contact-bugs https://github.com/cpierquet/quizztex/issues -catalogue-contact-repository https://github.com/cpierquet/quizztex catalogue-ctan /macros/latex/contrib/quizztex catalogue-license lppl1.3c catalogue-topics exam pgf-tikz -catalogue-version 0.1.2 +catalogue-version 0.1.4 name quotchap category Package @@ -255831,7 +258787,7 @@ catalogue-version 1.0 name quran category Package -revision 67791 +revision 72223 shortdesc An easy way to typeset any part of The Holy Quran longdesc This package offers the user an easy way to typeset The Holy longdesc Quran. It has been inspired by the lipsum and ptext packages @@ -255840,7 +258796,7 @@ longdesc part of the Quran based on its popular division, including longdesc surah, ayah, juz, hizb, quarter, and page. Besides the Arabic longdesc original, translations to English, German, French, and Persian longdesc are provided, as well as an English transliteration. -docfiles size=271 +docfiles size=272 texmf-dist/doc/latex/quran/README details="Readme" texmf-dist/doc/latex/quran/quran-doc.pdf details="Package documentation" texmf-dist/doc/latex/quran/quran-doc.tex @@ -255872,7 +258828,7 @@ catalogue-contact-repository https://github.com/javadr/quran catalogue-ctan /macros/unicodetex/latex/quran catalogue-license lppl1.3c catalogue-topics arabic macro-supp xetex dummy-gen -catalogue-version 2.2 +catalogue-version 2.3 name quran-bn category Package @@ -255965,6 +258921,32 @@ catalogue-license lppl1.3c catalogue-topics xetex macro-supp catalogue-version 0.1 +name quran-es +category Package +revision 72203 +shortdesc Spanish Translations for the quran package +longdesc The package is designed for typesetting several Spanish +longdesc translations of the Holy Quran. It extends the quran package by +longdesc adding three additional Spanish translations. +docfiles size=35 + texmf-dist/doc/xelatex/quran-es/README details="Readme" + texmf-dist/doc/xelatex/quran-es/quran-es-doc.pdf details="Package documentation" + texmf-dist/doc/xelatex/quran-es/quran-es-doc.tex + texmf-dist/doc/xelatex/quran-es/quran-es-test.pdf + texmf-dist/doc/xelatex/quran-es/quran-es-test.tex + texmf-dist/doc/xelatex/quran-es/quran.png +runfiles size=835 + texmf-dist/tex/xelatex/quran-es/quran-es.sty + texmf-dist/tex/xelatex/quran-es/qurantext-esi.translation.def + texmf-dist/tex/xelatex/quran-es/qurantext-esii.translation.def + texmf-dist/tex/xelatex/quran-es/qurantext-esiii.translation.def +catalogue-contact-bugs https://github.com/javadr/quran-es/issues +catalogue-contact-repository https://github.com/javadr/quran-es +catalogue-ctan /macros/xetex/latex/quran-es +catalogue-license lppl1.3c +catalogue-topics dummy-gen macro-supp spanish xetex +catalogue-version 0.1 + name quran-id category Package revision 68747 @@ -256953,7 +259935,7 @@ catalogue-version 0.2 name randexam category Package -revision 71754 +revision 71883 shortdesc Make an exam paper and its randomized variants longdesc This class helps you make an exam paper and its randomized longdesc variants. It mainly focuses on making math exam papers, but you @@ -256981,7 +259963,26 @@ catalogue-contact-support https://github.com/lvjr/randexam/discussions catalogue-ctan /macros/latex/contrib/randexam catalogue-license lppl1.3c catalogue-topics exam -catalogue-version 2024E +catalogue-version 2024F + +name randintlist +category Package +revision 73304 +shortdesc Creating random integer number lists, with repeating and sorting options +longdesc This package (like luarandom, but without the obligation to use +longdesc LuaLaTeX) provides some macros for creating random integer +longdesc number lists between a and b. This list can have multiple +longdesc numbers or not, and this list can be sorted or not. +docfiles size=27 + texmf-dist/doc/latex/randintlist/README.md details="Readme" + texmf-dist/doc/latex/randintlist/randintlist-doc.pdf details="Package documentation" + texmf-dist/doc/latex/randintlist/randintlist-doc.tex +runfiles size=2 + texmf-dist/tex/latex/randintlist/randintlist.sty +catalogue-ctan /macros/latex/contrib/randintlist +catalogue-license lppl1.3c +catalogue-topics random calculation +catalogue-version 0.1.3 name random category Package @@ -257424,6 +260425,31 @@ catalogue-license mit catalogue-topics maths amusements catalogue-version 1.1 +name rebuttal +category Package +revision 72851 +shortdesc Markup for structured journal and conference paper rebuttals +longdesc This package provides means for writing structured journal and +longdesc conference paper rebuttals. +docfiles size=164 + texmf-dist/doc/latex/rebuttal/01-scrlttr2.tex + texmf-dist/doc/latex/rebuttal/02-article.tex + texmf-dist/doc/latex/rebuttal/README.md details="Readme" + texmf-dist/doc/latex/rebuttal/examples/01-scrlttr2.pdf + texmf-dist/doc/latex/rebuttal/examples/02-article.pdf + texmf-dist/doc/latex/rebuttal/rebuttal.pdf details="Package documentation" + texmf-dist/doc/latex/rebuttal/rebuttal.tex +srcfiles size=8 + texmf-dist/source/latex/rebuttal/rebuttal.dtx + texmf-dist/source/latex/rebuttal/rebuttal.ins +runfiles size=4 + texmf-dist/tex/latex/rebuttal/rebuttal.sty +catalogue-contact-repository https://github.com/sergiud/rebuttal +catalogue-ctan /macros/latex/contrib/rebuttal +catalogue-license lppl1.3 +catalogue-topics letter struc-mkup journalpub misc-paper +catalogue-version 0.1.1 + name rec-thy category Package revision 70806 @@ -257519,7 +260545,7 @@ catalogue-version 2.0 name recorder-fingering category Package -revision 68595 +revision 73711 shortdesc Package to display recorder fingering diagrams longdesc This package provides support for generating and displaying longdesc fingering diagrams for baroque fingering recorders and the tin @@ -257532,14 +260558,14 @@ docfiles size=52 texmf-dist/doc/latex/recorder-fingering/recorder-fingering.bib texmf-dist/doc/latex/recorder-fingering/recorder-fingering.pdf details="Package documentation" texmf-dist/doc/latex/recorder-fingering/recorder-fingering.tex -runfiles size=7 +runfiles size=8 texmf-dist/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 expl3 -catalogue-version 1.3b +catalogue-version 1.4 name rectopma category Package @@ -257810,13 +260836,13 @@ catalogue-version 2.0 name regstats category Package -revision 66795 +revision 73635 shortdesc Information about register use longdesc The package will report number of used registers (counter, longdesc dimen, skip, muskip, box, token, input, output, math families, longdesc languages, insertions), and will compare the number to the longdesc maximum available number of such registers. -docfiles size=137 +docfiles size=138 texmf-dist/doc/latex/regstats/README details="Readme" texmf-dist/doc/latex/regstats/regstats-example.log texmf-dist/doc/latex/regstats/regstats-example.pdf @@ -257832,18 +260858,18 @@ catalogue-also regcount catalogue-ctan /macros/latex/contrib/regstats catalogue-license lppl1.3c catalogue-topics debug-supp -catalogue-version 1.1a +catalogue-version 1.1b name regulatory category Package -revision 69611 +revision 72197 shortdesc Flexible drafting of legal documents, especially in Dutch longdesc This package aims to simplify the writing process, especially longdesc for Dutch legal authors. It has also been implemented in longdesc English and can be expanded to include other languages. The longdesc package offers macros for typical legal structures and contains longdesc a referencing system. -docfiles size=177 +docfiles size=179 texmf-dist/doc/latex/regulatory/README.md details="Readme" texmf-dist/doc/latex/regulatory/example.md texmf-dist/doc/latex/regulatory/example1-en.pdf @@ -257865,19 +260891,18 @@ docfiles size=177 texmf-dist/doc/latex/regulatory/regulatory-nl.tex texmf-dist/doc/latex/regulatory/regulatory-preamble.tex texmf-dist/doc/latex/regulatory/regulatory.tex -runfiles size=9 - texmf-dist/tex/latex/regulatory/fc-dutch.def +runfiles size=6 texmf-dist/tex/latex/regulatory/regulatory.sty catalogue-contact-home https://xerdi.com/free-software#regulatory catalogue-contact-repository https://github.com/Xerdi/regulatory catalogue-ctan /macros/latex/contrib/regulatory catalogue-license lppl1.3c catalogue-topics legal dutch -catalogue-version 0.0.3 +catalogue-version 0.0.4 name reledmac category Package -revision 71236 +revision 73810 shortdesc Typeset scholarly editions longdesc A package for typesetting scholarly critical editions, longdesc replacing the established ledmac and eledmac packages. Ledmac @@ -257885,7 +260910,7 @@ 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. -docfiles size=3415 +docfiles size=3574 texmf-dist/doc/latex/reledmac/README.md details="Readme" texmf-dist/doc/latex/reledmac/doc-include/migrate-mac.dtx texmf-dist/doc/latex/reledmac/doc-include/migrate-par.dtx @@ -258139,19 +261164,19 @@ catalogue-version 1.1 name reptheorem category Package -revision 70789 +revision 72495 shortdesc Repetition of theorem environments longdesc When writing a large manuscript, it is sometimes beneficial to longdesc repeat a theorem (or lemma or...) at an earlier or later point longdesc for didactical purposes. However, thmtools's built-in longdesc restatable only allows replicating theorems after they have -longdesc been stated, and only in the same document. Reptheorem solves +longdesc been stated, and only in the same document. This package solves longdesc the issue by making use of the .aux file, and also introduces longdesc its own file extension, .thm, to replicate theorems in other longdesc files. -docfiles size=68 +docfiles size=72 texmf-dist/doc/latex/reptheorem/README.md details="Readme" - texmf-dist/doc/latex/reptheorem/reptheorem.pdf details="Package documentation" + texmf-dist/doc/latex/reptheorem/reptheorem-doc.pdf details="Package documentation" srcfiles size=5 texmf-dist/source/latex/reptheorem/reptheorem.dtx texmf-dist/source/latex/reptheorem/reptheorem.ins @@ -258161,7 +261186,7 @@ catalogue-contact-repository https://github.com/jessestraat/reptheorem catalogue-ctan /macros/latex/contrib/reptheorem catalogue-license lppl1.3c catalogue-topics maths-theorem -catalogue-version 1.0 +catalogue-version 1.3 name rerunfilecheck category Package @@ -258230,7 +261255,7 @@ catalogue-version 1.0 name resolsysteme category Package -revision 71707 +revision 73069 shortdesc Work on linear systems using xint or pyluatex longdesc This package provides some commands (in French) to perform longdesc calculations on small (2x2 or 3x3 or 4x4) linear systems, with @@ -258250,8 +261275,6 @@ docfiles size=136 texmf-dist/doc/latex/resolsysteme/ResolSysteme-exemples.tex runfiles size=39 texmf-dist/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 @@ -258285,7 +261308,7 @@ catalogue-version 1.35 name responsive category Package -revision 69147 +revision 71800 shortdesc Responsive design methods for LaTeX longdesc Responsive design aims to display text and other design longdesc elements well on variety of outputs, including electronic @@ -258307,8 +261330,8 @@ catalogue-contact-bugs https://github.com/michal-h21/responsive-latex/issues catalogue-contact-home https://github.com/michal-h21/responsive-latex catalogue-ctan /macros/latex/contrib/responsive catalogue-license lppl1.3 -catalogue-topics typesetting -catalogue-version 0.1 +catalogue-topics typesetting expl3 +catalogue-version 0.1a name rest-api category Package @@ -263859,14 +266882,14 @@ catalogue-version 1.2 name romanbar category Package -revision 25005 +revision 73634 shortdesc Write roman number with "bars" longdesc 'Bars', in the present context, are lines above and below text longdesc that abut with the text. Barred roman numerals are sometimes longdesc found in publications. The package provides a function that longdesc prints barred roman numerals (converting arabic numerals if longdesc necessary). The package also provides a predicate \ifnumeric. -docfiles size=93 +docfiles size=95 texmf-dist/doc/latex/romanbar/README details="Readme" texmf-dist/doc/latex/romanbar/romanbar-example.pdf details="Sample of usage" texmf-dist/doc/latex/romanbar/romanbar-example.tex @@ -263878,9 +266901,9 @@ srcfiles size=10 runfiles size=2 texmf-dist/tex/latex/romanbar/romanbar.sty catalogue-ctan /macros/latex/contrib/romanbar -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics numbers -catalogue-version 1.0f +catalogue-version 1.0g name romanbarpagenumber category Package @@ -263904,10 +266927,9 @@ catalogue-license lppl1.3 catalogue-topics numbers page-nos catalogue-version 1.0 -name romande +name romandeadf category Package -revision 19537 -catalogue romandeadf +revision 72484 shortdesc Romande ADF fonts and LaTeX support longdesc Romande ADF is a serif font family with oldstyle figures, longdesc designed as a substitute for Times, Tiffany or Caslon. The @@ -263922,118 +266944,126 @@ longdesc package files provide access to these features in LaTeX as longdesc explained in the documentation. The LaTeX support requires the longdesc nfssext-cfr and the xkeyval packages. execute addMap yrd.map -docfiles size=86 - texmf-dist/doc/fonts/romande/COPYING - texmf-dist/doc/fonts/romande/NOTICE.txt - texmf-dist/doc/fonts/romande/README details="Readme" - texmf-dist/doc/fonts/romande/manifest.txt - texmf-dist/doc/fonts/romande/romandeadf.pdf details="Package documentation" - texmf-dist/doc/fonts/romande/romandeadf.tex -srcfiles size=25 - texmf-dist/source/fonts/romande/reglyph-yrd.tex - texmf-dist/source/fonts/romande/romande-supp.etx - texmf-dist/source/fonts/romande/t1-romandeadf-alt.etx - texmf-dist/source/fonts/romande/t1-romandeadf.etx - texmf-dist/source/fonts/romande/ts1-euro.etx - texmf-dist/source/fonts/romande/yrd-drv.tex - texmf-dist/source/fonts/romande/yrd-map.tex +docfiles size=408 + texmf-dist/doc/fonts/romandeadf/COPYING + texmf-dist/doc/fonts/romandeadf/NOTICE.txt + texmf-dist/doc/fonts/romandeadf/README.md details="Readme" + texmf-dist/doc/fonts/romandeadf/manifest.txt + texmf-dist/doc/fonts/romandeadf/reglyph-yrd.tex + texmf-dist/doc/fonts/romandeadf/romande-tables.pdf + texmf-dist/doc/fonts/romandeadf/romande-tables.tex + texmf-dist/doc/fonts/romandeadf/romandeadf-build.pdf + texmf-dist/doc/fonts/romandeadf/romandeadf-example.pdf + texmf-dist/doc/fonts/romandeadf/romandeadf-example.tex + texmf-dist/doc/fonts/romandeadf/romandeadf-tables.tex + texmf-dist/doc/fonts/romandeadf/romandeadf.pdf details="Package documentation" + texmf-dist/doc/fonts/romandeadf/yrd-drv.tex + texmf-dist/doc/fonts/romandeadf/yrd-map.tex +srcfiles size=46 + texmf-dist/source/fonts/romandeadf/romande-supp.etx + texmf-dist/source/fonts/romandeadf/romandeadf-build.dtx + texmf-dist/source/fonts/romandeadf/romandeadf.dtx + texmf-dist/source/fonts/romandeadf/romandeadf.ins + texmf-dist/source/fonts/romandeadf/t1-romandeadf-alt.etx + texmf-dist/source/fonts/romandeadf/t1-romandeadf.etx runfiles size=281 - texmf-dist/fonts/afm/arkandis/romande/yrdd8a.afm - texmf-dist/fonts/afm/arkandis/romande/yrddc8a.afm - texmf-dist/fonts/afm/arkandis/romande/yrddi8a.afm - texmf-dist/fonts/afm/arkandis/romande/yrdr8a.afm - texmf-dist/fonts/afm/arkandis/romande/yrdrc8a.afm - texmf-dist/fonts/afm/arkandis/romande/yrdri8a.afm - texmf-dist/fonts/afm/arkandis/romande/yrdriw8a.afm - texmf-dist/fonts/enc/dvips/romande/romande-supp.enc - texmf-dist/fonts/enc/dvips/romande/t1-romandeadf-alt.enc - texmf-dist/fonts/enc/dvips/romande/t1-romandeadf.enc - texmf-dist/fonts/enc/dvips/romande/ts1-euro-yrd.enc - texmf-dist/fonts/map/dvips/romande/yrd.map - texmf-dist/fonts/tfm/arkandis/romande/s-yrdd.tfm - texmf-dist/fonts/tfm/arkandis/romande/s-yrddi.tfm - texmf-dist/fonts/tfm/arkandis/romande/s-yrdr.tfm - texmf-dist/fonts/tfm/arkandis/romande/s-yrdri.tfm - texmf-dist/fonts/tfm/arkandis/romande/s-yrdriw.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdd.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrddi.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdr.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdri.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-alt-yrdriw.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-yrdd.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-yrddc.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-yrddi.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-yrdr.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-yrdrc.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-yrdri.tfm - texmf-dist/fonts/tfm/arkandis/romande/t1-romandeadf-yrdriw.tfm - texmf-dist/fonts/tfm/arkandis/romande/ts1-yrdd.tfm - texmf-dist/fonts/tfm/arkandis/romande/ts1-yrddi.tfm - texmf-dist/fonts/tfm/arkandis/romande/ts1-yrdr.tfm - texmf-dist/fonts/tfm/arkandis/romande/ts1-yrdri.tfm - texmf-dist/fonts/tfm/arkandis/romande/ts1-yrdriw.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdd8c.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdd8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdda8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrddai8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrddc8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrddi8c.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrddi8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdr8c.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdr8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdra8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdrai8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdraiw8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdrc8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdri8c.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdri8t.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdriw8c.tfm - texmf-dist/fonts/tfm/arkandis/romande/yrdriw8t.tfm - texmf-dist/fonts/type1/arkandis/romande/yrdd8a.pfb - texmf-dist/fonts/type1/arkandis/romande/yrdd8a.pfm - texmf-dist/fonts/type1/arkandis/romande/yrddc8a.pfb - texmf-dist/fonts/type1/arkandis/romande/yrddc8a.pfm - texmf-dist/fonts/type1/arkandis/romande/yrddi8a.pfb - texmf-dist/fonts/type1/arkandis/romande/yrddi8a.pfm - texmf-dist/fonts/type1/arkandis/romande/yrdr8a.pfb - texmf-dist/fonts/type1/arkandis/romande/yrdr8a.pfm - texmf-dist/fonts/type1/arkandis/romande/yrdrc8a.pfb - texmf-dist/fonts/type1/arkandis/romande/yrdrc8a.pfm - texmf-dist/fonts/type1/arkandis/romande/yrdri8a.pfb - texmf-dist/fonts/type1/arkandis/romande/yrdri8a.pfm - texmf-dist/fonts/type1/arkandis/romande/yrdriw8a.pfb - texmf-dist/fonts/type1/arkandis/romande/yrdriw8a.pfm - texmf-dist/fonts/vf/arkandis/romande/yrdd8c.vf - texmf-dist/fonts/vf/arkandis/romande/yrdd8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdda8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrddai8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrddc8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrddi8c.vf - texmf-dist/fonts/vf/arkandis/romande/yrddi8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdr8c.vf - texmf-dist/fonts/vf/arkandis/romande/yrdr8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdra8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdrai8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdraiw8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdrc8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdri8c.vf - texmf-dist/fonts/vf/arkandis/romande/yrdri8t.vf - texmf-dist/fonts/vf/arkandis/romande/yrdriw8c.vf - texmf-dist/fonts/vf/arkandis/romande/yrdriw8t.vf - texmf-dist/tex/latex/romande/romande.sty - texmf-dist/tex/latex/romande/t1yrd.fd - texmf-dist/tex/latex/romande/t1yrda.fd - texmf-dist/tex/latex/romande/t1yrdaw.fd - texmf-dist/tex/latex/romande/t1yrdw.fd - texmf-dist/tex/latex/romande/ts1yrd.fd - texmf-dist/tex/latex/romande/ts1yrda.fd - texmf-dist/tex/latex/romande/ts1yrdaw.fd - texmf-dist/tex/latex/romande/ts1yrdw.fd + texmf-dist/fonts/afm/public/romandeadf/yrdd8a.afm + texmf-dist/fonts/afm/public/romandeadf/yrddc8a.afm + texmf-dist/fonts/afm/public/romandeadf/yrddi8a.afm + texmf-dist/fonts/afm/public/romandeadf/yrdr8a.afm + texmf-dist/fonts/afm/public/romandeadf/yrdrc8a.afm + texmf-dist/fonts/afm/public/romandeadf/yrdri8a.afm + texmf-dist/fonts/afm/public/romandeadf/yrdriw8a.afm + texmf-dist/fonts/enc/dvips/romandeadf/romande-supp.enc + texmf-dist/fonts/enc/dvips/romandeadf/t1-romandeadf-alt.enc + texmf-dist/fonts/enc/dvips/romandeadf/t1-romandeadf.enc + texmf-dist/fonts/enc/dvips/romandeadf/ts1-euro-yrd.enc + texmf-dist/fonts/map/dvips/romandeadf/yrd.map + texmf-dist/fonts/tfm/public/romandeadf/s-yrdd.tfm + texmf-dist/fonts/tfm/public/romandeadf/s-yrddi.tfm + texmf-dist/fonts/tfm/public/romandeadf/s-yrdr.tfm + texmf-dist/fonts/tfm/public/romandeadf/s-yrdri.tfm + texmf-dist/fonts/tfm/public/romandeadf/s-yrdriw.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-alt-yrdd.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-alt-yrddi.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-alt-yrdr.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-alt-yrdri.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-alt-yrdriw.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-yrdd.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-yrddc.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-yrddi.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-yrdr.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-yrdrc.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-yrdri.tfm + texmf-dist/fonts/tfm/public/romandeadf/t1-romandeadf-yrdriw.tfm + texmf-dist/fonts/tfm/public/romandeadf/ts1-yrdd.tfm + texmf-dist/fonts/tfm/public/romandeadf/ts1-yrddi.tfm + texmf-dist/fonts/tfm/public/romandeadf/ts1-yrdr.tfm + texmf-dist/fonts/tfm/public/romandeadf/ts1-yrdri.tfm + texmf-dist/fonts/tfm/public/romandeadf/ts1-yrdriw.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdd8c.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdd8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdda8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrddai8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrddc8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrddi8c.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrddi8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdr8c.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdr8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdra8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdrai8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdraiw8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdrc8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdri8c.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdri8t.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdriw8c.tfm + texmf-dist/fonts/tfm/public/romandeadf/yrdriw8t.tfm + texmf-dist/fonts/type1/public/romandeadf/yrdd8a.pfb + texmf-dist/fonts/type1/public/romandeadf/yrdd8a.pfm + texmf-dist/fonts/type1/public/romandeadf/yrddc8a.pfb + texmf-dist/fonts/type1/public/romandeadf/yrddc8a.pfm + texmf-dist/fonts/type1/public/romandeadf/yrddi8a.pfb + texmf-dist/fonts/type1/public/romandeadf/yrddi8a.pfm + texmf-dist/fonts/type1/public/romandeadf/yrdr8a.pfb + texmf-dist/fonts/type1/public/romandeadf/yrdr8a.pfm + texmf-dist/fonts/type1/public/romandeadf/yrdrc8a.pfb + texmf-dist/fonts/type1/public/romandeadf/yrdrc8a.pfm + texmf-dist/fonts/type1/public/romandeadf/yrdri8a.pfb + texmf-dist/fonts/type1/public/romandeadf/yrdri8a.pfm + texmf-dist/fonts/type1/public/romandeadf/yrdriw8a.pfb + texmf-dist/fonts/type1/public/romandeadf/yrdriw8a.pfm + texmf-dist/fonts/vf/public/romandeadf/yrdd8c.vf + texmf-dist/fonts/vf/public/romandeadf/yrdd8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdda8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrddai8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrddc8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrddi8c.vf + texmf-dist/fonts/vf/public/romandeadf/yrddi8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdr8c.vf + texmf-dist/fonts/vf/public/romandeadf/yrdr8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdra8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdrai8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdraiw8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdrc8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdri8c.vf + texmf-dist/fonts/vf/public/romandeadf/yrdri8t.vf + texmf-dist/fonts/vf/public/romandeadf/yrdriw8c.vf + texmf-dist/fonts/vf/public/romandeadf/yrdriw8t.vf + texmf-dist/tex/latex/romandeadf/romande.sty + texmf-dist/tex/latex/romandeadf/t1yrd.fd + texmf-dist/tex/latex/romandeadf/t1yrda.fd + texmf-dist/tex/latex/romandeadf/t1yrdaw.fd + texmf-dist/tex/latex/romandeadf/t1yrdw.fd + texmf-dist/tex/latex/romandeadf/ts1yrd.fd + texmf-dist/tex/latex/romandeadf/ts1yrda.fd + texmf-dist/tex/latex/romandeadf/ts1yrdaw.fd + texmf-dist/tex/latex/romandeadf/ts1yrdw.fd catalogue-contact-home http://arkandis.tuxfamily.org/ +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/romandeadf -catalogue-license lppl +catalogue-license lppl1.3c gpl2 catalogue-topics font font-type1 -catalogue-version 1.008-v7-sc +catalogue-version 2.1 name romanneg category Package @@ -264848,7 +267878,7 @@ catalogue-version 2.2 name rpgicons category Package -revision 71269 +revision 73609 shortdesc Icons for tabletop role-playing games longdesc This package provides a set of high-quality icons for use in longdesc notes for tabletop role-playing games. The icons are meant to @@ -264856,7 +267886,7 @@ longdesc be used in the body text, but they can also be used in other longdesc contexts such as graphics or diagrams. The package comes in two longdesc variants, one based on the l3draw package, and the other on longdesc PGF/TikZ. -docfiles size=141 +docfiles size=139 texmf-dist/doc/latex/rpgicons/LICENSE texmf-dist/doc/latex/rpgicons/README.md details="Readme" texmf-dist/doc/latex/rpgicons/rpgicons-doc.pdf details="Package documentation" @@ -264870,7 +267900,7 @@ catalogue-contact-repository https://github.com/jasperhabicht/rpgicons catalogue-ctan /macros/latex/contrib/rpgicons catalogue-license lppl1.3c catalogue-topics games graphics pgf-tikz expl3 -catalogue-version 1.8.3 +catalogue-version 1.8.6 name rrgtrees category Package @@ -265063,27 +268093,26 @@ catalogue-topics german legal name rub-kunstgeschichte category Package -revision 71373 +revision 73739 shortdesc A class for the art history institute at Ruhr University Bochum longdesc This package provides a LaTeX class implementing the guidelines longdesc on scientific writing of the art history institute longdesc (Kunstgeschichtliches Institut) at Ruhr University Bochum. -docfiles size=68 +docfiles size=140 texmf-dist/doc/latex/rub-kunstgeschichte/README.md details="Readme" texmf-dist/doc/latex/rub-kunstgeschichte/rub-kunstgeschichte-example.pdf details="Example document" - texmf-dist/doc/latex/rub-kunstgeschichte/rub-kunstgeschichte-example.tex + texmf-dist/doc/latex/rub-kunstgeschichte/rub-kunstgeschichte-example.tex details="Source code of example document" texmf-dist/doc/latex/rub-kunstgeschichte/rub-kunstgeschichte.pdf details="Package documentation" -srcfiles size=3 +srcfiles size=10 texmf-dist/source/latex/rub-kunstgeschichte/rub-kunstgeschichte.dtx texmf-dist/source/latex/rub-kunstgeschichte/rub-kunstgeschichte.ins -runfiles size=1 +runfiles size=3 texmf-dist/tex/latex/rub-kunstgeschichte/rub-kunstgeschichte.cls -catalogue-contact-bugs https://github.com/rub-kgi/rub-kunstgeschichte-latex/issues catalogue-contact-repository https://github.com/rub-kgi/rub-kunstgeschichte-latex catalogue-ctan /macros/latex/contrib/rub-kunstgeschichte catalogue-license lppl1.3c catalogue-topics class doc-templ std-conform -catalogue-version 0.1.0 +catalogue-version 0.5.0 name rubik category Package @@ -265362,7 +268391,7 @@ catalogue-version 1 name runcode category Package -revision 69471 +revision 73500 shortdesc Execute foreign source code and embed the result in the pdf file longdesc This LaTeX package executes programming source codes (including longdesc all command line tools) from within LaTeX and embeds the output @@ -265374,7 +268403,7 @@ 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. -docfiles size=121 +docfiles size=122 texmf-dist/doc/latex/runcode/README details="Readme" texmf-dist/doc/latex/runcode/generated/runcode_troubleshoot_inln2.tex texmf-dist/doc/latex/runcode/generated/runcode_troubleshoot_inln4.tex @@ -265394,7 +268423,7 @@ 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 2.3 +catalogue-version 2.4 name runtexshebang category Package @@ -265805,12 +268834,12 @@ catalogue-version 1.3.0 name sankey category Package -revision 61874 +revision 73396 shortdesc Draw Sankey diagrams with TikZ 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. -docfiles size=253 +docfiles size=223 texmf-dist/doc/latex/sankey/README details="Readme" texmf-dist/doc/latex/sankey/sankey-example-energy.tex texmf-dist/doc/latex/sankey/sankey-example1.tex @@ -265829,7 +268858,7 @@ 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.1 +catalogue-version 3.0.2 name sanskrit category Package @@ -265958,16 +268987,25 @@ catalogue-topics font font-virtual font-supp-maths font-cm font-sans name sansmathfonts category Package -revision 68777 +revision 72563 shortdesc Extended Computer Modern sans serif fonts longdesc Sans serif small caps and math fonts for use with Computer longdesc Modern. execute addMap sansmathfonts.map -docfiles size=95 +docfiles size=158 texmf-dist/doc/fonts/sansmathfonts/README.txt details="Readme" + texmf-dist/doc/fonts/sansmathfonts/cmsmfbx12.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfbx17.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfbx8.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfbx9.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfxi10.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfxi12.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfxi17.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfxi8.vpl + texmf-dist/doc/fonts/sansmathfonts/cmsmfxi9.vpl texmf-dist/doc/fonts/sansmathfonts/sansmathfonts.pdf details="Package documentation" texmf-dist/doc/fonts/sansmathfonts/sansmathfonts.tex -runfiles size=1988 +runfiles size=1998 texmf-dist/fonts/map/dvips/sansmathfonts/sansmathfonts.map texmf-dist/fonts/source/public/sansmathfonts/cmsmfIPiXi10.mf texmf-dist/fonts/source/public/sansmathfonts/cmsmfIPiXi12.mf @@ -266197,6 +269235,10 @@ runfiles size=1988 texmf-dist/fonts/tfm/public/sansmathfonts/cmssbsy7.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmssbsy8.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmssbsy9.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssbx12-cmsmfcopy.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssbx17-cmsmfcopy.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssbx8-cmsmfcopy.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssbx9-cmsmfcopy.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmssbxcsc10.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmsscsc10.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmsscsc8.tfm @@ -266227,6 +269269,11 @@ runfiles size=1988 texmf-dist/fonts/tfm/public/sansmathfonts/cmsssy8.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmsssy9.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmssu10.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssxi10-cmsmfcopy.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssxi12-cmsmfcopy.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssxi17-cmsmfcopy.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssxi8-cmsmfcopy.tfm + texmf-dist/fonts/tfm/public/sansmathfonts/cmssxi9-cmsmfcopy.tfm texmf-dist/fonts/tfm/public/sansmathfonts/cmssxicsc10.tfm texmf-dist/fonts/tfm/public/sansmathfonts/eczi0500.tfm texmf-dist/fonts/tfm/public/sansmathfonts/eczi0600.tfm @@ -266842,6 +269889,30 @@ catalogue-license lppl1.3 catalogue-topics graphics-manip catalogue-version 1.8 +name scaletextbullet +category Package +revision 73926 +shortdesc Resize the \textbullet without changing its vertical center +longdesc This package enables the user to resize the \textbullet without +longdesc moving its vertical center. This process is not fully automated +longdesc -- the user must use \settextbulletfactor to set the +longdesc \textbullet factor to the correct value to display the resized +longdesc \textbullet at the correct height. +docfiles size=35 + texmf-dist/doc/latex/scaletextbullet/CHANGELOG.md + texmf-dist/doc/latex/scaletextbullet/README.txt details="Readme" + texmf-dist/doc/latex/scaletextbullet/beery.cls + texmf-dist/doc/latex/scaletextbullet/scaletextbullet-code.pdf details="Documented code" + texmf-dist/doc/latex/scaletextbullet/scaletextbullet-code.tex + texmf-dist/doc/latex/scaletextbullet/scaletextbullet.pdf details="Package documentation" + texmf-dist/doc/latex/scaletextbullet/scaletextbullet.tex +runfiles size=3 + texmf-dist/tex/latex/scaletextbullet/scaletextbullet.sty +catalogue-ctan /macros/latex/contrib/scaletextbullet +catalogue-license lppl1.3c +catalogue-topics list-bull font-supp-misc expl3 +catalogue-version 2.0.0 + name scanpages category Package revision 42633 @@ -266986,7 +270057,7 @@ depend willowtreebook name scheme-context category Scheme -revision 59636 +revision 73338 shortdesc ConTeXt scheme longdesc This is the TeX Live scheme for installing ConTeXt. depend antt @@ -266996,7 +270067,6 @@ depend collection-context depend collection-metapost depend dejavu depend eulervm -depend gentium-tug depend iwona depend kurier depend ly1 @@ -267211,7 +270281,7 @@ depend zapfding name scheme-tetex category Scheme -revision 59715 +revision 74022 shortdesc teTeX scheme (more than medium, but nowhere near full) longdesc TeX Live scheme nearly equivalent to the teTeX distribution longdesc that was maintained by Thomas Esser. @@ -267271,7 +270341,6 @@ depend subfigure depend supertabular depend tamethebeast depend tds -depend tex-refs depend tie depend web depend xpdfopen @@ -267938,7 +271007,7 @@ catalogue-version 1.033 name schooldocs category Package -revision 69659 +revision 73466 shortdesc Various layout styles for school documents longdesc The aim of this package is to offer diverse layout styles for longdesc school-related documents. It serves well in creating exercise @@ -267947,7 +271016,7 @@ longdesc geometry (dimensions of text and margins) and the title longdesc formatting. Various styles are available defining settings for longdesc headers, footers or alternative title formatting, providing longdesc many customizable features. -docfiles size=110 +docfiles size=134 texmf-dist/doc/latex/schooldocs/README.md details="Readme" texmf-dist/doc/latex/schooldocs/schooldocs-examples.pdf details="Example of use" texmf-dist/doc/latex/schooldocs/schooldocs-examples.tex @@ -267960,7 +271029,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/schooldocs catalogue-license lppl1.3 catalogue-topics teaching exercise exam course-material -catalogue-version 1.5 +catalogue-version 1.6 name schule category Package @@ -268362,7 +271431,7 @@ catalogue-version 5 name schwalbe-chess category Package -revision 63708 +revision 73582 shortdesc Typeset the German chess magazine "Die Schwalbe" longdesc The package is based on chess-problem-diagrams, which in its longdesc turn has a dependency on the bartel-chess-fonts. @@ -268377,9 +271446,9 @@ runfiles size=12 texmf-dist/tex/latex/schwalbe-chess/schwalbe.sty texmf-dist/tex/latex/schwalbe-chess/swruler.sty catalogue-ctan /macros/latex/contrib/schwalbe-chess -catalogue-license lppl1.2 +catalogue-license lppl1.3c catalogue-topics journalpub games class -catalogue-version 2.12 +catalogue-version 2.13 name scientific-thesis-cover category Package @@ -268544,7 +271613,7 @@ catalogue-version 2.1 name scrabble category Package -revision 69599 +revision 73069 shortdesc Commands for Scrabble boards longdesc This package provides some commands (in English and in French) longdesc to work with a Scrabble Board : \ScrabbleBoard and @@ -268559,8 +271628,6 @@ docfiles size=288 texmf-dist/doc/latex/scrabble/Scrabble-doc-fr.tex runfiles size=8 texmf-dist/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 @@ -268703,9 +271770,51 @@ catalogue-license lppl1.3 catalogue-topics drama-script catalogue-version 1.1 +name scrhack +category Package +revision 72608 +shortdesc Compatibility package to emulate the former KOMA-Script package scrhack +longdesc Up to version 3.41, the scrhack package was part of +longdesc KOMA-Script. It was originally intended to improve the +longdesc compatibility of third-party packages with KOMA-Script. +longdesc However, most of the so-called hacks also added additional +longdesc functionality to the corresponding third-party package. On the +longdesc other hand, it was sometimes urgent to react to a change in +longdesc such a third-party package, which was difficult to do from +longdesc within a large collection like KOMA-Script. Therefore, the +longdesc scrhack part of KOMA-Script was split into several independent +longdesc packages. And the scrhack spin-off was made to emulate the +longdesc former KOMA-Script package of the same name. +docfiles size=152 + texmf-dist/doc/latex/scrhack/LICENSE.md + texmf-dist/doc/latex/scrhack/README.md details="Readme" + texmf-dist/doc/latex/scrhack/scrhack-2023-07-07.pdf + texmf-dist/doc/latex/scrhack/scrhack.pdf details="Package documentation" +srcfiles size=29 + texmf-dist/source/latex/scrhack/scrhack-2023-07-07.dtx + texmf-dist/source/latex/scrhack/scrhack.dtx +runfiles size=21 + texmf-dist/tex/latex/scrhack/float.hak + texmf-dist/tex/latex/scrhack/floatrow.hak + texmf-dist/tex/latex/scrhack/hyperref.hak + texmf-dist/tex/latex/scrhack/listings.hak + texmf-dist/tex/latex/scrhack/lscape.hak + texmf-dist/tex/latex/scrhack/nomencl.hak + texmf-dist/tex/latex/scrhack/scrhack-2023-07-07.sty + texmf-dist/tex/latex/scrhack/scrhack.sty + texmf-dist/tex/latex/scrhack/setspace.hak + texmf-dist/tex/latex/scrhack/standardsections.hak +catalogue-contact-bugs https://github.com/komascript/third-party-enhancements/issues +catalogue-contact-home https://github.com/komascript/third-party-enhancements +catalogue-contact-repository https://github.com/komascript/third-party-enhancements/tree/main/scrhack +catalogue-ctan /macros/latex/contrib/scrhack +catalogue-license lppl1.3c +catalogue-topics bugfix expl3 +catalogue-version 3.42 + name scripture category Package -revision 69232 +revision 73276 shortdesc A LaTeX style for typesetting Bible quotations longdesc The scripture package provides a set of macros for typesetting longdesc quotations from the Bible. It provides many features commonly @@ -268713,20 +271822,20 @@ 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. -docfiles size=237 +docfiles size=283 texmf-dist/doc/latex/scripture/README.md details="Readme" texmf-dist/doc/latex/scripture/scripture.pdf details="Package documentation" -srcfiles size=42 +srcfiles size=66 texmf-dist/source/latex/scripture/scripture.dtx texmf-dist/source/latex/scripture/scripture.ins -runfiles size=19 +runfiles size=34 texmf-dist/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 expl3 -catalogue-version 2.0 +catalogue-version 2.1 name scrjrnl category Package @@ -268750,21 +271859,21 @@ catalogue-version 0.1 name scrlayer-fancyhdr category Package -revision 63844 -shortdesc Combining package fancyhdr with KOMA-Script's scrlayer +revision 73851 +shortdesc Combining fancyhdr with KOMA-Script's scrlayer longdesc This LaTeX package uses KOMA-Script's scrlayer to redefine the longdesc page styles of package fancyhdr. This allows the combination of longdesc features of fancyhdr with features of scrlayer. Before longdesc KOMA-Script v3.33 scrlayer-fancyhdr was part of KOMA-Script longdesc itself. -docfiles size=84 +docfiles size=85 texmf-dist/doc/latex/scrlayer-fancyhdr/LICENSE.md texmf-dist/doc/latex/scrlayer-fancyhdr/MANIFEST.md texmf-dist/doc/latex/scrlayer-fancyhdr/README.md details="Readme" - texmf-dist/doc/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.pdf details="Package documentation" -srcfiles size=10 + texmf-dist/doc/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.pdf details="Package documentation" language="en,de" +srcfiles size=11 texmf-dist/source/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.dtx -runfiles size=1 +runfiles size=2 texmf-dist/tex/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.sty catalogue-contact-announce https://github.com/komascript/scrlayer-fancyhdr/wiki catalogue-contact-bugs https://github.com/komascript/scrlayer-fancyhdr/issues @@ -268773,7 +271882,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.2 +catalogue-version 0.4 name scrlttr2copy category Package @@ -269048,7 +272157,7 @@ catalogue-version 1.2.1 name se2thesis category Package -revision 71620 +revision 72569 shortdesc A Thesis Class for the Chair of Software Engineering II at the University of Passau, Germany longdesc The se2thesis bundle provides a document class for writing a longdesc theses with the Chair of Software Engineering II at the @@ -269060,7 +272169,7 @@ 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. -docfiles size=158 +docfiles size=160 texmf-dist/doc/latex/se2thesis/CHANGELOG.md texmf-dist/doc/latex/se2thesis/LICENSE.txt texmf-dist/doc/latex/se2thesis/README.md details="Readme" @@ -269068,7 +272177,7 @@ docfiles size=158 texmf-dist/doc/latex/se2thesis/se2thesis-master-thesis-example.tex texmf-dist/doc/latex/se2thesis/se2thesis.pdf details="Package documentation" texmf-dist/doc/latex/se2thesis/se2thesis.tex -srcfiles size=31 +srcfiles size=32 texmf-dist/source/latex/se2thesis/se2colors.dtx texmf-dist/source/latex/se2thesis/se2fonts.dtx texmf-dist/source/latex/se2thesis/se2packages.dtx @@ -269085,8 +272194,8 @@ 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 4.2.0 +catalogue-topics class dissertation doc-templ expl3 +catalogue-version 4.4.0 name secdot category Package @@ -269268,7 +272377,7 @@ catalogue-topics dvi-proc name seetexk.aarch64-linux category TLCore -revision 69782 +revision 73915 shortdesc aarch64-linux files of seetexk binfiles arch=aarch64-linux size=29 bin/aarch64-linux/dvibook @@ -269278,7 +272387,7 @@ binfiles arch=aarch64-linux size=29 name seetexk.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of seetexk binfiles arch=amd64-freebsd size=44 bin/amd64-freebsd/dvibook @@ -269288,7 +272397,7 @@ binfiles arch=amd64-freebsd size=44 name seetexk.amd64-netbsd category TLCore -revision 69797 +revision 73802 shortdesc amd64-netbsd files of seetexk binfiles arch=amd64-netbsd size=40 bin/amd64-netbsd/dvibook @@ -269298,9 +272407,9 @@ binfiles arch=amd64-netbsd size=40 name seetexk.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of seetexk -binfiles arch=armhf-linux size=24 +binfiles arch=armhf-linux size=21 bin/armhf-linux/dvibook bin/armhf-linux/dviconcat bin/armhf-linux/dviselect @@ -269308,7 +272417,7 @@ binfiles arch=armhf-linux size=24 name seetexk.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of seetexk binfiles arch=i386-freebsd size=44 bin/i386-freebsd/dvibook @@ -269318,9 +272427,9 @@ binfiles arch=i386-freebsd size=44 name seetexk.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of seetexk -binfiles arch=i386-linux size=29 +binfiles arch=i386-linux size=33 bin/i386-linux/dvibook bin/i386-linux/dviconcat bin/i386-linux/dviselect @@ -269328,7 +272437,7 @@ binfiles arch=i386-linux size=29 name seetexk.i386-netbsd category TLCore -revision 69797 +revision 73802 shortdesc i386-netbsd files of seetexk binfiles arch=i386-netbsd size=34 bin/i386-netbsd/dvibook @@ -269338,9 +272447,9 @@ binfiles arch=i386-netbsd size=34 name seetexk.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of seetexk -binfiles arch=i386-solaris size=38 +binfiles arch=i386-solaris size=39 bin/i386-solaris/dvibook bin/i386-solaris/dviconcat bin/i386-solaris/dviselect @@ -269348,7 +272457,7 @@ binfiles arch=i386-solaris size=38 name seetexk.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of seetexk binfiles arch=universal-darwin size=164 bin/universal-darwin/dvibook @@ -269358,7 +272467,7 @@ binfiles arch=universal-darwin size=164 name seetexk.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of seetexk binfiles arch=windows size=28 bin/windows/dvibook.exe @@ -269368,7 +272477,7 @@ binfiles arch=windows size=28 name seetexk.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of seetexk binfiles arch=x86_64-cygwin size=28 bin/x86_64-cygwin/dvibook.exe @@ -269378,7 +272487,7 @@ binfiles arch=x86_64-cygwin size=28 name seetexk.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of seetexk binfiles arch=x86_64-darwinlegacy size=33 bin/x86_64-darwinlegacy/dvibook @@ -269388,7 +272497,7 @@ binfiles arch=x86_64-darwinlegacy size=33 name seetexk.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of seetexk binfiles arch=x86_64-linux size=31 bin/x86_64-linux/dvibook @@ -269398,9 +272507,9 @@ binfiles arch=x86_64-linux size=31 name seetexk.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of seetexk -binfiles arch=x86_64-linuxmusl size=32 +binfiles arch=x86_64-linuxmusl size=36 bin/x86_64-linuxmusl/dvibook bin/x86_64-linuxmusl/dviconcat bin/x86_64-linuxmusl/dviselect @@ -269408,9 +272517,9 @@ binfiles arch=x86_64-linuxmusl size=32 name seetexk.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of seetexk -binfiles arch=x86_64-solaris size=38 +binfiles arch=x86_64-solaris size=39 bin/x86_64-solaris/dvibook bin/x86_64-solaris/dviconcat bin/x86_64-solaris/dviselect @@ -269924,7 +273033,7 @@ catalogue-version 0.45 name sepfootnotes category Package -revision 71725 +revision 71883 shortdesc Support footnotes and endnotes from separate files longdesc The package supports footnotes and endnotes from separate longdesc files. This is achieved with commands \sepfootnotecontent and @@ -269939,7 +273048,7 @@ runfiles size=3 catalogue-ctan /macros/latex/contrib/sepfootnotes catalogue-license lppl1.3 catalogue-topics footnote -catalogue-version 0.3c +catalogue-version 0.3d name sepnum category Package @@ -270159,17 +273268,18 @@ catalogue-version 6.7b name setspaceenhanced category Package -revision 68493 +revision 72852 shortdesc An enhancement of the setspace package longdesc This package adds support for all font sizes, even non-integer longdesc resp. non-pt sizes to package setspace. This not only improves longdesc compatibility with KOMA-Script but also corrects the stretch longdesc value of the usual font sizes. -docfiles size=81 +docfiles size=84 texmf-dist/doc/latex/setspaceenhanced/LICENSE.md texmf-dist/doc/latex/setspaceenhanced/README.md details="Readme" + texmf-dist/doc/latex/setspaceenhanced/announcement.txt texmf-dist/doc/latex/setspaceenhanced/setspaceenhanced.pdf details="Package documentation" -srcfiles size=7 +srcfiles size=8 texmf-dist/source/latex/setspaceenhanced/setspaceenhanced.dtx runfiles size=2 texmf-dist/tex/latex/setspaceenhanced/setspaceenhanced.sty @@ -270179,7 +273289,7 @@ catalogue-contact-repository https://github.com/komascript/third-party-enhanceme catalogue-ctan /macros/latex/contrib/setspaceenhanced catalogue-license lppl1.3c catalogue-topics line-space expl3 -catalogue-version 1.02 +catalogue-version 1.04 name seu-ml-assign category Package @@ -271209,12 +274319,12 @@ catalogue-version 1.7a name sidenotes category Package -revision 54524 +revision 72264 shortdesc Typeset notes containing rich content, in the margin longdesc The package allows typesetting of texts with notes, figures, longdesc citations, captions and tables in the margin. This is common longdesc (for example) in science text books. -docfiles size=79 +docfiles size=83 texmf-dist/doc/latex/sidenotes/README details="Readme" texmf-dist/doc/latex/sidenotes/caesar_example.pdf texmf-dist/doc/latex/sidenotes/caesar_example.tex @@ -271229,7 +274339,7 @@ catalogue-also footmisc catalogue-ctan /macros/latex/contrib/sidenotes catalogue-license lppl1.3 catalogue-topics marginal -catalogue-version 1.00a +catalogue-version 1.20 name sidenotesplus category Package @@ -271337,12 +274447,12 @@ catalogue-version 1.5b name sillypage category Package -revision 66349 +revision 71889 shortdesc John Cleese's Silly Walk as page numbering style 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. -docfiles size=82 +docfiles size=83 texmf-dist/doc/latex/sillypage/README.md details="Readme" texmf-dist/doc/latex/sillypage/sillypage-example.pdf details="Example of use" texmf-dist/doc/latex/sillypage/sillypage-example.tex @@ -271350,7 +274460,7 @@ docfiles size=82 srcfiles size=4 texmf-dist/source/latex/sillypage/sillypage.dtx texmf-dist/source/latex/sillypage/sillypage.ins -runfiles size=8 +runfiles size=9 texmf-dist/tex/latex/sillypage/sillypage.sty texmf-dist/tex/latex/sillypage/sillywalk-map.pdf catalogue-contact-bugs https://github.com/cereda/sillypage/issues @@ -271358,30 +274468,28 @@ 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 +catalogue-version 1.7 name sim-os-menus category Package -revision 68843 +revision 73954 shortdesc Insert 'terminal' or 'context menu' or 'viewers' like in an OS longdesc This is a package to present, like in an OS: a fake terminal longdesc (with tcolorbox); a fake context menu with sub-menus (with longdesc TikZ); a fake viewer (with tcolorbox). -docfiles size=205 +docfiles size=257 texmf-dist/doc/latex/sim-os-menus/README.md details="Readme" texmf-dist/doc/latex/sim-os-menus/sim-os-menus-doc-fr.pdf texmf-dist/doc/latex/sim-os-menus/sim-os-menus-doc-fr.tex texmf-dist/doc/latex/sim-os-menus/sim-os-menus-doc.pdf details="Package documentation" texmf-dist/doc/latex/sim-os-menus/sim-os-menus-doc.tex -runfiles size=8 +runfiles size=10 texmf-dist/tex/latex/sim-os-menus/sim-os-menus.sty -catalogue-contact-bugs https://github.com/cpierquet/sim-os-menus/issues -catalogue-contact-home https://github.com/cpierquet/sim-os-menus -catalogue-contact-repository https://github.com/cpierquet/sim-os-menus +catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex catalogue-ctan /macros/latex/contrib/sim-os-menus catalogue-license lppl1.3c catalogue-topics presentation boxing comp-sci -catalogue-version 0.1.1 +catalogue-version 0.1.4 name simple-resume-cv category Package @@ -271505,19 +274613,19 @@ catalogue-version 1.6a name simpleicons category Package -revision 71715 +revision 73980 shortdesc Simple Icons for LaTeX 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 -docfiles size=669 +docfiles size=677 texmf-dist/doc/fonts/simpleicons/README.md details="Readme" texmf-dist/doc/fonts/simpleicons/bindings.tex texmf-dist/doc/fonts/simpleicons/simpleicons.pdf details="Package documentation" texmf-dist/doc/fonts/simpleicons/simpleicons.tex -runfiles size=1347 +runfiles size=1346 texmf-dist/fonts/enc/dvips/simpleicons/simpleiconseight.enc texmf-dist/fonts/enc/dvips/simpleicons/simpleiconsfive.enc texmf-dist/fonts/enc/dvips/simpleicons/simpleiconsfour.enc @@ -271566,9 +274674,9 @@ runfiles size=1347 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-license cc0 catalogue-topics font font-symbol font-supp-symbol font-otf font-type1 -catalogue-version 12.4.0 +catalogue-version 14.6.0 name simpleinvoice category Package @@ -271656,7 +274764,7 @@ catalogue-version 1.1.1 name simpler-wick category Package -revision 39074 +revision 71991 shortdesc Simpler Wick contractions longdesc In every quantum field theory course, there will be a chapter longdesc about Wick's theorem and how it can be used to convert a very @@ -271675,7 +274783,8 @@ docfiles size=27 runfiles size=2 texmf-dist/tex/latex/simpler-wick/simpler-wick.sty catalogue-also simplewick -catalogue-contact-repository https://jp-ellis.github.io/projects/simpler-wick/ +catalogue-contact-home https://jpellis.me/projects/simpler-wick +catalogue-contact-repository https://github.com/JP-Ellis/simpler-wick catalogue-ctan /macros/latex/contrib/simpler-wick catalogue-license lppl1.3 catalogue-topics physics @@ -271943,34 +275052,29 @@ catalogue-version 1.36 name siunitx category Package -revision 71621 +revision 73546 shortdesc A comprehensive (SI) units package -longdesc Typesetting values with units requires care to ensure that the -longdesc combined mathematical meaning of the value plus unit -longdesc combination is clear. In particular, the SI units system lays -longdesc down a consistent set of units with rules on how they are to be -longdesc used. However, different countries and publishers have -longdesc differing conventions on the exact appearance of numbers (and -longdesc units). A number of LaTeX packages have been developed to -longdesc provide consistent application of the various rules: SIunits, -longdesc sistyle, unitsdef and units are the leading examples. The -longdesc numprint package provides a large number of number-related -longdesc functions, while dcolumn and rccol provide tools for -longdesc typesetting tabular numbers. The siunitx package takes the best -longdesc from the existing packages, and adds new features and a -longdesc consistent interface. A number of new ideas have been -longdesc incorporated, to fill gaps in the existing provision. The -longdesc package also provides backward-compatibility with SIunits, -longdesc sistyle, unitsdef and units. The aim is to have one package to -longdesc handle all of the possible unit-related needs of LaTeX users. -longdesc The package relies on LaTeX 3 support from the l3kernel and -longdesc l3packages bundles. -docfiles size=351 +longdesc Physical quantities have both numbers and units, and each +longdesc physical quantity should be expressed as the product of a +longdesc number and a unit. Typesetting physical quantities requires +longdesc care to ensure that the combined mathematical meaning of the +longdesc number-unit combination is clear. In particular, the SI units +longdesc system lays down a consistent set of units with rules on how +longdesc these are to be used. However, different countries and +longdesc publishers have differing conventions on the exact appearance +longdesc of numbers (and units). The siunitx package provides a set of +longdesc tools for authors to typeset quantities in a consistent way. +longdesc The package has an extended set of configuration options which +longdesc make it possible to follow varying typographic conventions with +longdesc the same input syntax. The package includes automated +longdesc processing of numbers and units, and the ability to control +longdesc tabular alignment of numbers. +docfiles size=240 texmf-dist/doc/latex/siunitx/CHANGELOG.md texmf-dist/doc/latex/siunitx/README.md details="Readme" texmf-dist/doc/latex/siunitx/siunitx-code.pdf details="Code documentation" texmf-dist/doc/latex/siunitx/siunitx.pdf details="User manual" -srcfiles size=190 +srcfiles size=195 texmf-dist/source/latex/siunitx/siunitx-abbreviation.dtx texmf-dist/source/latex/siunitx/siunitx-angle.dtx texmf-dist/source/latex/siunitx/siunitx-binary.dtx @@ -271989,7 +275093,7 @@ srcfiles size=190 texmf-dist/source/latex/siunitx/siunitx.dtx texmf-dist/source/latex/siunitx/siunitx.ins texmf-dist/source/latex/siunitx/siunitx.tex -runfiles size=159 +runfiles size=162 texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg texmf-dist/tex/latex/siunitx/siunitx-binary.cfg texmf-dist/tex/latex/siunitx/siunitx-v2.sty @@ -272001,39 +275105,28 @@ 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 3.3.19 +catalogue-version 3.4.4 name sjtutex category Package -revision 71663 +revision 73925 shortdesc LaTeX classes for Shanghai Jiao Tong University longdesc SJTUTeX aims to establish a simple and easy-to-use collection longdesc of document classes for Shanghai Jiao Tong University, longdesc including the thesis document class sjtuthesis, as well as the longdesc regular document classes sjtuarticle and sjtureport. -docfiles size=178 +docfiles size=177 texmf-dist/doc/latex/sjtutex/README.md details="Readme" texmf-dist/doc/latex/sjtutex/sjtutex.pdf details="Package documentation" language="zh" -srcfiles size=53 +srcfiles size=52 texmf-dist/source/latex/sjtutex/sjtutex.dtx -runfiles size=130 - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-adobe-ja.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-adobe-zh.def +runfiles size=171 texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-adobe.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-fandol-ja.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-fandol-zh.def texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-fandol.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-founder-ja.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-founder-zh.def texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-founder.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-mac-ja.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-mac-zh.def + texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-hanyi.def texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-mac.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-ubuntu-ja.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-ubuntu-zh.def texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-ubuntu.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-windows-ja.def - texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-windows-zh.def texmf-dist/tex/latex/sjtutex/font/sjtu-cjk-font-windows.def texmf-dist/tex/latex/sjtutex/font/sjtu-math-font-cambria.def texmf-dist/tex/latex/sjtutex/font/sjtu-math-font-libertinus.def @@ -272053,22 +275146,10 @@ runfiles size=130 texmf-dist/tex/latex/sjtutex/font/sjtu-text-font-stixtwo.def texmf-dist/tex/latex/sjtutex/font/sjtu-text-font-times.def texmf-dist/tex/latex/sjtutex/font/sjtu-text-font-xits.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-generic-de.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-generic-en.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-generic-ja.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-generic-zh.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-thesis-de.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-thesis-en.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-thesis-ja.def - texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-thesis-zh.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-generic-de.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-generic-en.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-generic-ja.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-generic-zh.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-thesis-de.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-thesis-en.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-thesis-ja.def - texmf-dist/tex/latex/sjtutex/name/sjtu-name-thesis-zh.def + texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-de.def + texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-en.def + texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-ja.def + texmf-dist/tex/latex/sjtutex/lang/sjtu-lang-zh.def texmf-dist/tex/latex/sjtutex/scheme/sjtu-scheme-de.def texmf-dist/tex/latex/sjtutex/scheme/sjtu-scheme-en.def texmf-dist/tex/latex/sjtutex/scheme/sjtu-scheme-ja.def @@ -272076,19 +275157,28 @@ runfiles size=130 texmf-dist/tex/latex/sjtutex/sjtuarticle.cls texmf-dist/tex/latex/sjtutex/sjtureport.cls texmf-dist/tex/latex/sjtutex/sjtuthesis.cls - texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-badge-red.pdf - texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-badge-small-red.pdf - texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-red.pdf - texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-small-red.pdf - texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-name-red.pdf + texmf-dist/tex/latex/sjtutex/thesis/sjtu-thesis-de.def + texmf-dist/tex/latex/sjtutex/thesis/sjtu-thesis-en.def + texmf-dist/tex/latex/sjtutex/thesis/sjtu-thesis-ja.def + texmf-dist/tex/latex/sjtutex/thesis/sjtu-thesis-zh.def + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-badge-cor-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-badge-reg-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-eng-h-cor-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-eng-h-reg-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-std-c-cor-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-std-c-reg-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-std-h-cor-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-std-h-reg-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-std-v-cor-red.pdf + texmf-dist/tex/latex/sjtutex/vi/sjtu-vi-logo-std-v-reg-red.pdf catalogue-contact-announce https://github.com/sjtug/SJTUTeX/releases catalogue-contact-bugs https://github.com/sjtug/SJTUTeX/issues catalogue-contact-home https://sjtug.org/ catalogue-contact-repository https://github.com/sjtug/SJTUTeX catalogue-ctan /macros/latex/contrib/sjtutex catalogue-license lppl1.3c -catalogue-topics class dissertation article-like report-like chinese -catalogue-version 2.1.3 +catalogue-topics class dissertation article-like report-like chinese expl3 +catalogue-version 2.2 name skak category Package @@ -272390,7 +275480,7 @@ catalogue-version 0.52 name skdoc category Package -revision 56950 +revision 73385 shortdesc Documentation and extraction for packages and document classes longdesc The class provides the functionality and implementation of longdesc packages and document classes. It is loosely based on the ydoc @@ -272399,7 +275489,7 @@ longdesc differences. The class defines a MacroCode environment which longdesc offers an alternative to the usual docstrip method of longdesc installing packages. It has the ability to generate both longdesc documentation and code in a single run of a single file. -docfiles size=81 +docfiles size=85 texmf-dist/doc/latex/skdoc/README details="Readme" texmf-dist/doc/latex/skdoc/skdoc.pdf details="Package documentation" srcfiles size=32 @@ -272409,12 +275499,12 @@ runfiles size=13 texmf-dist/tex/latex/skdoc/skdoc.cls catalogue-ctan /macros/latex/contrib/skdoc catalogue-license lppl1.3 -catalogue-topics doc-supp class -catalogue-version 1.5d +catalogue-topics doc-supp class expl3 +catalogue-version 1.5e name skeldoc category Package -revision 57922 +revision 73465 shortdesc Placeholders for unfinished documents longdesc This package lets you produce placeholder elements for longdesc documents under development, similar to the skeleton screens @@ -272423,7 +275513,7 @@ longdesc It also has a mechanism for attaching explanatory endnotes to longdesc these placeholders, or to anything else in your document. The longdesc same note mechanism can also be used with ordinary content, longdesc e.g., as a to-do mechanism. -docfiles size=59 +docfiles size=62 texmf-dist/doc/latex/skeldoc/LICENSE texmf-dist/doc/latex/skeldoc/README.md details="Readme" texmf-dist/doc/latex/skeldoc/skeldoc.pdf details="Package documentation" @@ -272435,7 +275525,7 @@ catalogue-contact-repository https://github.com/mlhetland/skeldoc.sty catalogue-ctan /macros/latex/contrib/skeldoc catalogue-license mit catalogue-topics dummy-gen editorial notes rule expl3 -catalogue-version 0.1.2 +catalogue-version 0.1.3 name skeycommand category Package @@ -276639,7 +279729,7 @@ catalogue-version 2.8 name spbmark category Package -revision 71768 +revision 73781 shortdesc Customize superscripts and subscripts longdesc This package provides three commands \super, \sub and \supersub longdesc to improve the layout of superscripts and subscripts which can @@ -276649,13 +279739,13 @@ docfiles size=30 texmf-dist/doc/latex/spbmark/README.md details="Readme" texmf-dist/doc/latex/spbmark/spbmark.pdf details="Package documentation" texmf-dist/doc/latex/spbmark/spbmark.tex -runfiles size=5 +runfiles size=6 texmf-dist/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.46l +catalogue-version 1.46x name spectral category Package @@ -278040,7 +281130,7 @@ catalogue-version 1.3.3 name spelatex category Package -revision 71581 +revision 73664 shortdesc Create PDF documents with hyperlinks to audiofragments longdesc This package equips the PDF that is generated with LaTeX with longdesc hyperlinks to audio files that contain the spoken equivalent of @@ -278058,54 +281148,50 @@ longdesc but it will be extended in the future. You can package your PDF longdesc together with the audio-files (in your favorite archive format) longdesc and make it available to your users, such that the only longdesc requirements to read your text and listen to the audio are a -longdesc suited PDF reader and media player. Not all readers and players -longdesc work. Working readers are: okular, acrobat reader, pdfxchange -longdesc viewer. Working media players are: SoX, totem, vlc. The package -longdesc is part of the SpeLbox package, consisting of an Emacs Org-mode -longdesc exporter, called ox-spelatex (under development, will be -longdesc released later), the LaTeX spelatex package itself, a perl -longdesc script spel-wizard.pl available from CPAN in the SpeL::Wizard -longdesc module that converts text to speech (doing the magic, parsing -longdesc your equations). The package also functions without the -longdesc Org-Mode exporter, the latter just being there to make use more -longdesc convenient. For the text-to-speech conversion, one can use free -longdesc options (festival, balabolka, ...) or paying services (e.g. AWS -longdesc polly). -docfiles size=3860 - texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0-1.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0-2.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0-3.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0.m3u - texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/2.0.0.0.0-1.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/2.0.0.0.0-2.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/2.0.0.0.0-3.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/2.0.0.0.0.m3u - texmf-dist/doc/latex/spelatex/Example/example-spel/2.0.0.0.0.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/3.0.0.0.0-1.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/3.0.0.0.0-2.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/3.0.0.0.0.m3u - texmf-dist/doc/latex/spelatex/Example/example-spel/3.0.0.0.0.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/4.0.0.0.0-1.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/4.0.0.0.0-2.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/4.0.0.0.0.m3u - texmf-dist/doc/latex/spelatex/Example/example-spel/4.0.0.0.0.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/5.0.0.0.0.m3u - texmf-dist/doc/latex/spelatex/Example/example-spel/5.0.0.0.0.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/5.1.0.0.0-1.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/5.1.0.0.0.m3u - texmf-dist/doc/latex/spelatex/Example/example-spel/5.1.0.0.0.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/5.2.0.0.0-1.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/5.2.0.0.0-star-1.ogg - texmf-dist/doc/latex/spelatex/Example/example-spel/5.2.0.0.0.m3u - texmf-dist/doc/latex/spelatex/Example/example-spel/5.2.0.0.0.ogg +longdesc suited PDF reader and media player. For the text-to-speech +longdesc conversion, one can use free options (festival, balabolka, ...) +longdesc or paying services (e.g. AWS polly). +docfiles size=5866 + texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0.0-2.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/1.0.0.0.0.0-3.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.1.0.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.1.0.0.0.0-2.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.1.0.0.0.0-3.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.1.0.0.0.0.m3u + texmf-dist/doc/latex/spelatex/Example/example-spel/2.1.0.0.0.0.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.2.0.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.2.0.0.0.0-2.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.2.0.0.0.0.m3u + texmf-dist/doc/latex/spelatex/Example/example-spel/2.2.0.0.0.0.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.3.0.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.3.0.0.0.0.m3u + texmf-dist/doc/latex/spelatex/Example/example-spel/2.3.0.0.0.0.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/2.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.1.0.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.1.0.0.0.0-2.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.1.0.0.0.0.m3u + texmf-dist/doc/latex/spelatex/Example/example-spel/3.1.0.0.0.0.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.0.0.0.0.m3u + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.0.0.0.0.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.1.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.1.0.0.0.m3u + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.1.0.0.0.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.2.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.2.0.0.0.m3u + texmf-dist/doc/latex/spelatex/Example/example-spel/3.2.2.0.0.0.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/3.ogg texmf-dist/doc/latex/spelatex/Example/example-spel/author.ogg texmf-dist/doc/latex/spelatex/Example/example-spel/date.ogg + texmf-dist/doc/latex/spelatex/Example/example-spel/star-1.ogg texmf-dist/doc/latex/spelatex/Example/example-spel/title.ogg texmf-dist/doc/latex/spelatex/Example/example.pdf texmf-dist/doc/latex/spelatex/Example/example.tex texmf-dist/doc/latex/spelatex/LICENSE texmf-dist/doc/latex/spelatex/README details="Readme" + texmf-dist/doc/latex/spelatex/spelatex-spel/0.0.0.0.0-1.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/0.0.0.0.0-star-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/1.0.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/1.0.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/1.1.0.0.0-1.ogg @@ -278130,7 +281216,6 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/1.3.0.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/1.3.0.0.0-10.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/1.3.0.0.0-11.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/1.3.0.0.0-12.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/1.3.0.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/1.3.0.0.0-3.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/1.3.0.0.0-4.ogg @@ -278154,46 +281239,36 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-1.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-10.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-11.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-3.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-4.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-5.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-6.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-7.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-8.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0-9.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.1.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-1.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-10.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-11.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-12.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-3.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-4.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-5.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-6.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-7.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-8.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0-9.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.2.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0-2.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0-3.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0-4.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0-5.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0-6.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.3.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0-3.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0-4.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0-5.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0-6.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.4.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.5.0.0-1.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.5.0.0-2.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.5.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.5.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.6.0.0-1.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.6.0.0-2.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.6.0.0-3.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.6.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/2.2.6.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.3.0.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.3.0.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.3.0.0.0-3.ogg @@ -278204,7 +281279,6 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/2.4.0.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.4.0.0.0-3.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.4.0.0.0-4.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/2.4.0.0.0-5.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/2.4.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/2.4.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/3.0.0.0.0.m3u @@ -278236,6 +281310,7 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/3.3.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/3.4.0.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/3.4.0.0.0-2.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/3.4.0.0.0-3.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/3.4.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/3.4.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.0.0.0.0.m3u @@ -278247,7 +281322,6 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.0.0.0-5.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.0.0.0-6.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.0.0.0-7.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.0.0.0-8.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.1.0.0-1.ogg @@ -278269,8 +281343,6 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.3.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.4.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.4.0.0-2.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.4.0.0-3.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.4.0.0-4.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.4.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.4.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.5.0.0-1.ogg @@ -278283,7 +281355,6 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.6.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.6.0.0-3.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.6.0.0-4.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.6.0.0-5.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.6.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.6.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.7.0.0-1.ogg @@ -278292,6 +281363,19 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.7.0.0-4.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.7.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.7.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.8.0.0-1.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.8.0.0-2.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.8.0.0-3.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.8.0.0-4.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.8.0.0-5.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.8.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.8.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.9.0.0-1.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.9.0.0-2.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.9.0.0-3.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.9.0.0-4.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.9.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/4.1.9.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.2.0.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.2.0.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/4.2.0.0.0-3.ogg @@ -278311,6 +281395,11 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0-1.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0-2.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0-3.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0-4.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0-5.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0-6.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.1.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/6.2.2.0.0-1.ogg @@ -278348,6 +281437,7 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/6.6.1.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/6.6.1.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/6.6.2.0.0-1.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/6.6.2.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/6.6.2.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/6.6.2.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/6.7.0.0.0-1.ogg @@ -278374,12 +281464,20 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/7.10.1.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.10.2.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/7.10.2.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.10.3.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.10.3.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.10.4.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.10.4.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.0.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.1.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.1.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.2.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.2.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.3.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.3.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.4.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.4.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.5.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.11.5.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.12.0.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.12.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.2.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/7.2.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.3.0.0.0.m3u @@ -278394,30 +281492,28 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/7.7.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.0.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.1.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.1.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.2.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.2.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.3.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.3.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.4.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.4.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.5.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.5.0.0.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.6.0.0.m3u - texmf-dist/doc/latex/spelatex/spelatex-spel/7.8.6.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.1.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.1.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.2.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.2.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.3.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.3.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.4.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.4.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.5.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.5.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.6.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.6.0.0.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.7.0.0.m3u + texmf-dist/doc/latex/spelatex/spelatex-spel/7.9.7.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0-3.ogg - texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0-star-1.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0-star-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0-star-3.ogg + texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0-star-4.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0.m3u texmf-dist/doc/latex/spelatex/spelatex-spel/8.0.0.0.0.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/author.ogg @@ -278426,19 +281522,19 @@ docfiles size=3860 texmf-dist/doc/latex/spelatex/spelatex-spel/footnote-2.ogg texmf-dist/doc/latex/spelatex/spelatex-spel/title.ogg texmf-dist/doc/latex/spelatex/spelatex.pdf details="Package documentation" -srcfiles size=22 +srcfiles size=24 texmf-dist/source/latex/spelatex/spelatex.dtx texmf-dist/source/latex/spelatex/spelatex.ins -runfiles size=4 +runfiles size=5 texmf-dist/tex/latex/spelatex/spelatex.sty catalogue-ctan /macros/latex/contrib/spelatex catalogue-license lppl1.3 catalogue-topics multimedia expl3 -catalogue-version 0.91 +catalogue-version 0.95 name spelling category Package -revision 30715 +revision 73571 shortdesc Support for spell-checking of LuaTeX documents longdesc The package aids spell-checking of TeX documents compiled with longdesc the LuaTeX engine. It can give visual feedback in PDF output @@ -278462,6 +281558,8 @@ runfiles size=19 texmf-dist/scripts/spelling/spelling-stage-3.lua texmf-dist/scripts/spelling/spelling-stage-4.lua texmf-dist/tex/luatex/spelling/spelling.sty +catalogue-contact-bugs https://github.com/sh2d/spelling/issues +catalogue-contact-repository https://github.com/sh2d/spelling catalogue-ctan /macros/luatex/generic/spelling catalogue-license lppl1.3 catalogue-topics luatex spell @@ -278947,6 +282045,156 @@ catalogue-license lppl catalogue-topics verbatim catalogue-version 1.0 +name sqltex +category Package +revision 72396 +shortdesc An SQL Preprocessor for LaTeX +longdesc SQLTeX is a preprocessor that enables the use of SQL statements +longdesc in LaTeX. The SQLTeX perl script reads an input file containing +longdesc the LaTeX source with SQL commands, and writes a LaTeX file in +longdesc which the SQL commands have been replaced by the values from +longdesc their execution. It is possible to select a field for +longdesc substitution in your LaTeX document, or to be used as input in +longdesc another SQL command. (When an SQL command returns multiple +longdesc fields and/or rows, the values can only be used within the +longdesc document.) The default is to use MySQL databases, but Pg, +longdesc Sybase, Oracle, Ingres, mSQL and PostgreSQL are also supported. +depend sqltex.ARCH +docfiles size=90 + texmf-dist/doc/support/sqltex/SQLTeX.pdf details="Package documentation" + texmf-dist/doc/support/sqltex/SQLTeX.tex +srcfiles size=65 + texmf-dist/source/support/sqltex/Makefile.am + texmf-dist/source/support/sqltex/Makefile.in + texmf-dist/source/support/sqltex/README.md + texmf-dist/source/support/sqltex/aclocal.m4 + texmf-dist/source/support/sqltex/aclocal/ax_prog_perl_modules.m4 + texmf-dist/source/support/sqltex/configure + texmf-dist/source/support/sqltex/configure.ac + texmf-dist/source/support/sqltex/doc/Makefile.am + texmf-dist/source/support/sqltex/doc/Makefile.in + texmf-dist/source/support/sqltex/install-sh + texmf-dist/source/support/sqltex/man/Makefile.am + texmf-dist/source/support/sqltex/man/Makefile.in + texmf-dist/source/support/sqltex/man/sqltex.man + texmf-dist/source/support/sqltex/missing + texmf-dist/source/support/sqltex/src/Makefile.am + texmf-dist/source/support/sqltex/src/Makefile.in +runfiles size=13 + texmf-dist/scripts/sqltex/SQLTeX.cfg + texmf-dist/scripts/sqltex/SQLTeX_r.dat + texmf-dist/scripts/sqltex/sqltex +catalogue-contact-repository https://github.com/oveas/sqltex +catalogue-ctan /support/sqltex +catalogue-license lppl +catalogue-topics db-access +catalogue-version 3.0 + +name sqltex.aarch64-linux +category Package +revision 72338 +shortdesc aarch64-linux files of sqltex +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/sqltex + +name sqltex.amd64-freebsd +category Package +revision 72338 +shortdesc amd64-freebsd files of sqltex +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/sqltex + +name sqltex.amd64-netbsd +category Package +revision 72338 +shortdesc amd64-netbsd files of sqltex +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/sqltex + +name sqltex.armhf-linux +category Package +revision 72338 +shortdesc armhf-linux files of sqltex +binfiles arch=armhf-linux size=1 + bin/armhf-linux/sqltex + +name sqltex.i386-freebsd +category Package +revision 72338 +shortdesc i386-freebsd files of sqltex +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/sqltex + +name sqltex.i386-linux +category Package +revision 72338 +shortdesc i386-linux files of sqltex +binfiles arch=i386-linux size=1 + bin/i386-linux/sqltex + +name sqltex.i386-netbsd +category Package +revision 72338 +shortdesc i386-netbsd files of sqltex +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/sqltex + +name sqltex.i386-solaris +category Package +revision 72338 +shortdesc i386-solaris files of sqltex +binfiles arch=i386-solaris size=1 + bin/i386-solaris/sqltex + +name sqltex.universal-darwin +category Package +revision 72338 +shortdesc universal-darwin files of sqltex +binfiles arch=universal-darwin size=1 + bin/universal-darwin/sqltex + +name sqltex.windows +category Package +revision 72338 +shortdesc windows files of sqltex +binfiles arch=windows size=2 + bin/windows/sqltex.exe + +name sqltex.x86_64-cygwin +category Package +revision 72338 +shortdesc x86_64-cygwin files of sqltex +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/sqltex + +name sqltex.x86_64-darwinlegacy +category Package +revision 72338 +shortdesc x86_64-darwinlegacy files of sqltex +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/sqltex + +name sqltex.x86_64-linux +category Package +revision 72338 +shortdesc x86_64-linux files of sqltex +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/sqltex + +name sqltex.x86_64-linuxmusl +category Package +revision 72338 +shortdesc x86_64-linuxmusl files of sqltex +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/sqltex + +name sqltex.x86_64-solaris +category Package +revision 72338 +shortdesc x86_64-solaris files of sqltex +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/sqltex + name sr-vorl category Package revision 59333 @@ -279212,7 +282460,7 @@ binfiles arch=x86_64-solaris size=1 name srdp-mathematik category Package -revision 70807 +revision 73016 shortdesc Typeset Austrian SRDP in mathematics longdesc This package provides basic commands for the defined formats of longdesc the Austrian sRDP (Standardisierte Reife- und Diplomprufung) in @@ -279230,7 +282478,7 @@ runfiles size=48 catalogue-ctan /macros/latex/contrib/srdp-mathematik catalogue-license lppl1.3c catalogue-topics exam maths std-conform -catalogue-version 1.13.0 +catalogue-version 1.13.1 name sseq category Package @@ -279255,6 +282503,56 @@ catalogue-license lppl catalogue-topics maths catalogue-version 2.01 +name sshrc-insight +category Package +revision 72623 +shortdesc A LaTeX class for SSHRC Insight Grant proposals +longdesc The sshrc-insight LaTeX class facilitates the preparation of +longdesc funding proposals for the Insight Grants program of Canada's +longdesc Social Sciences and Humanities Research Council (SSHRC). It has +longdesc the following key features: Formats the proposal according to +longdesc the SSHRC's specifications. Allows parts of the proposal to be +longdesc compiled into separate PDFs to attach to the appropriate places +longdesc in the online application form. Alternatively, allows the +longdesc proposal to be compiled into a single PDF in order to +longdesc facilitate the writing and pre-submission reviewing process. +longdesc Ensures that citation numbering remains consistent regardless +longdesc whether the proposal is compiled as separate PDFs or a single +longdesc PDF. Provides character counts for long-answer form fields. +longdesc Supports preparation of proposals in either English or French. +longdesc Compatible with pdfLaTeX, XeLaTeX, and LuaLaTeX. +docfiles size=138 + texmf-dist/doc/latex/sshrc-insight/README.md details="Readme" + texmf-dist/doc/latex/sshrc-insight/budget_justification.tex + texmf-dist/doc/latex/sshrc-insight/career_interruptions.tex + texmf-dist/doc/latex/sshrc-insight/detailed_description.tex + texmf-dist/doc/latex/sshrc-insight/exclusion_of_potential_reviewers.tex + texmf-dist/doc/latex/sshrc-insight/expected_outcomes.tex + texmf-dist/doc/latex/sshrc-insight/insight_proposal.bib + texmf-dist/doc/latex/sshrc-insight/insight_proposal.pdf details="Example of use" + texmf-dist/doc/latex/sshrc-insight/insight_proposal.tex + texmf-dist/doc/latex/sshrc-insight/knowledge_mobilization_plan.tex + texmf-dist/doc/latex/sshrc-insight/list_of_references.tex + texmf-dist/doc/latex/sshrc-insight/multi-interdisciplinary_evaluation.tex + texmf-dist/doc/latex/sshrc-insight/previous_critiques.tex + texmf-dist/doc/latex/sshrc-insight/research-creation_support_material.tex + texmf-dist/doc/latex/sshrc-insight/research_contributions.tex + texmf-dist/doc/latex/sshrc-insight/research_team.tex + texmf-dist/doc/latex/sshrc-insight/sshrc-insight.pdf details="Package documentation" + texmf-dist/doc/latex/sshrc-insight/summary.tex +srcfiles size=12 + texmf-dist/source/latex/sshrc-insight/sshrc-insight.dtx + texmf-dist/source/latex/sshrc-insight/sshrc-insight.ins +runfiles size=2 + texmf-dist/tex/latex/sshrc-insight/sshrc-insight.cls +catalogue-contact-bugs https://github.com/logological/sshrc-insight/issues +catalogue-contact-home https://logological.org/sshrc-insight +catalogue-contact-repository https://github.com/logological/sshrc-insight +catalogue-ctan /macros/latex/contrib/sshrc-insight +catalogue-license lppl1.3c +catalogue-topics class proposal +catalogue-version 2024.1.0 + name sslides category Package revision 32293 @@ -279454,7 +282752,7 @@ catalogue-version 1.2 name starray category Package -revision 70796 +revision 73984 shortdesc A structured array (of properties) based on expl3 longdesc This package implements vector-like 'structures', like in 'C' longdesc and other programming languages. So it is possible to store @@ -279474,7 +282772,7 @@ catalogue-contact-repository https://github.com/alceu-frigeri/starray catalogue-ctan /macros/latex/contrib/starray catalogue-license lppl1.3c gpl catalogue-topics package-devel expl3 -catalogue-version 1.9 +catalogue-version 1.9b name startex category Package @@ -280530,7 +283828,7 @@ catalogue-version 3.4.0 name stickstoo category Package -revision 60793 +revision 72368 shortdesc A reworking of STIX2 longdesc SticksToo is a reworking of the STIX2 fonts with support files longdesc focussing on enhancements of support for LaTeX users wishing to @@ -280545,7 +283843,7 @@ docfiles size=119 texmf-dist/doc/fonts/stickstoo/README details="Readme" texmf-dist/doc/fonts/stickstoo/stickstoo-doc.pdf details="Package documentation" texmf-dist/doc/fonts/stickstoo/stickstoo-doc.tex -runfiles size=6094 +runfiles size=6097 texmf-dist/fonts/afm/public/stickstoo/SticksTooText-Bold.afm texmf-dist/fonts/afm/public/stickstoo/SticksTooText-BoldItalic.afm texmf-dist/fonts/afm/public/stickstoo/SticksTooText-Italic.afm @@ -281110,11 +284408,14 @@ runfiles size=6094 texmf-dist/tex/latex/stickstoo/TS1SticksTooText-OsF.fd texmf-dist/tex/latex/stickstoo/TS1SticksTooText-TLF.fd texmf-dist/tex/latex/stickstoo/TS1SticksTooText-TOsF.fd + texmf-dist/tex/latex/stickstoo/ly1minstickstootext.fd + texmf-dist/tex/latex/stickstoo/ot1minstickstootext.fd texmf-dist/tex/latex/stickstoo/stickstootext.sty + texmf-dist/tex/latex/stickstoo/t1minstickstootext.fd 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.035 +catalogue-version 1.036 name stix category Package @@ -281515,6 +284816,30 @@ catalogue-ctan /fonts/stmaryrd catalogue-license lppl catalogue-topics comp-theory font font-symbol-maths font-mf font-type1 +name stocksize +category Package +revision 72957 +shortdesc A flexible and easy interface to paper (stock) dimensions +longdesc The package geometry is excellent for customizing the page +longdesc layout. However, using the \newgeometry command to change the +longdesc page size in the middle of the document only affects the typing +longdesc area and does not affect the real paper (stock) size. This +longdesc package circumvents this situation by resizing the paper +longdesc (stock) size to the new page layout. +docfiles size=31 + texmf-dist/doc/latex/stocksize/README.md details="Readme" + texmf-dist/doc/latex/stocksize/stocksize-doc.pdf details="Package documentation" + texmf-dist/doc/latex/stocksize/stocksize-doc.tex +runfiles size=1 + texmf-dist/tex/latex/stocksize/stocksize.sty +catalogue-contact-bugs https://github.com/joaomlourenco/stocksize/issues +catalogue-contact-repository https://github.com/joaomlourenco/stocksize +catalogue-contact-support https://github.com/joaomlourenco/stocksize/discussions +catalogue-ctan /macros/latex/contrib/stocksize +catalogue-license lppl1.3c +catalogue-topics geometry +catalogue-version 1.0.3 + name storebox category Package revision 64967 @@ -282056,6 +285381,43 @@ catalogue-ctan /graphics/metapost/contrib/macros/suanpan catalogue-license lppl catalogue-topics games mp-use +name suanpan-l3 +category Package +revision 72540 +shortdesc Traditional Chinese 7-bids suanpan (abacus) package based on l3draw +longdesc This traditional Chinese 7-bids abacus drawing package utilizes +longdesc l3draw and is developed with expl3. It can effectively manage +longdesc both upper and lower bids, while also considering bottom bid, +longdesc top bid, and hanging bid. The package offers a unique +longdesc environment for drawing abacuses, denoted as suanpan. Within +longdesc this environment, 7 specialized macros are available for the +longdesc creation of abacuses. The \rod macro is used to lay out a +longdesc single rod, while the \rod* macro draws a counting point on +longdesc this rod's beam. The \rods macro is capable of laying out a set +longdesc of rods. The \bid macro colors the specified bid. The \bids +longdesc macro colors all inner bids that are near the beam, while the +longdesc \bids* macro colors all outer bids that are far from the beam. +longdesc Lastly, the \lrframe macro is used to lay out the left and +longdesc right frames of an abacus. At the same time, the package offers +longdesc customization options for abacus, including line width, draw +longdesc color, fill color, bid space, rod space, etc. These can be +longdesc configured through package options, suanpan environment +longdesc options, or the \suanpanset macro. +docfiles size=124 + texmf-dist/doc/latex/suanpan-l3/README.md details="Readme" + texmf-dist/doc/latex/suanpan-l3/build.sh + texmf-dist/doc/latex/suanpan-l3/suanpan-l3.pdf details="Package documentation" language="zh,en" + texmf-dist/doc/latex/suanpan-l3/suanpan-l3.tex +runfiles size=13 + texmf-dist/tex/latex/suanpan-l3/suanpan-l3.sty +catalogue-contact-bugs https://gitee.com/nwafu_nan/suan-pan/issues +catalogue-contact-development https://gitee.com/nwafu_nan/suan-pan/pulls +catalogue-contact-repository https://gitee.com/nwafu_nan/suan-pan +catalogue-ctan /macros/latex/contrib/suanpan-l3 +catalogue-license lppl1.3c +catalogue-topics expl3 diagram +catalogue-version 1.2.4 + name subdepth category Package revision 15878 @@ -282103,7 +285465,7 @@ catalogue-version 0.1 name subeqn category Package -revision 15878 +revision 71864 shortdesc Package for subequation numbering longdesc Sometimes it is necessary to be able to refer to subexpressions longdesc of an equation. In order to do that these subexpressions should @@ -282114,10 +285476,13 @@ longdesc Braams made them available for LaTeX2e. Note that this package longdesc is not compatible with the package subeqnarray (written by longdesc Johannes Braams), but it can be used together with the LaTeX longdesc class options leqno and fleqn. -docfiles size=25 - texmf-dist/doc/latex/subeqn/manifest.txt +docfiles size=77 + texmf-dist/doc/latex/subeqn/CATALOG + texmf-dist/doc/latex/subeqn/MANIFEST + texmf-dist/doc/latex/subeqn/README details="Readme" + texmf-dist/doc/latex/subeqn/subeqn-sample.pdf details="Example of use" + texmf-dist/doc/latex/subeqn/subeqn-sample.tex texmf-dist/doc/latex/subeqn/subeqn.pdf details="Package documentation" - texmf-dist/doc/latex/subeqn/subeqn.tex srcfiles size=4 texmf-dist/source/latex/subeqn/subeqn.dtx texmf-dist/source/latex/subeqn/subeqn.ins @@ -282125,13 +285490,13 @@ runfiles size=1 texmf-dist/tex/latex/subeqn/subeqn.sty catalogue-also subeqnarray catalogue-ctan /macros/latex/contrib/subeqn -catalogue-license lppl +catalogue-license lppl1.3c catalogue-topics maths -catalogue-version 2.0b +catalogue-version 2.0c name subeqnarray category Package -revision 15878 +revision 71865 shortdesc Equation array with sub numbering longdesc This package defines the subeqnarray and subeqnarray* longdesc environments, which behave like the corresponding eqnarray and @@ -282140,20 +285505,23 @@ longdesc numbered like 1a, 1b, 1c, etc. To refer to these numbers an longdesc extra label command \slabel is provided. Users are urged to longdesc consider the alignment capabilities of the amsmath bundle, longdesc which produce better results than eqnarray-related macros. -docfiles size=33 - texmf-dist/doc/latex/subeqnarray/manifest.txt +docfiles size=73 + texmf-dist/doc/latex/subeqnarray/CATALOG + texmf-dist/doc/latex/subeqnarray/MANIFEST + texmf-dist/doc/latex/subeqnarray/README details="Readme" + texmf-dist/doc/latex/subeqnarray/subeqnarray-sample.pdf details="Example of use" + texmf-dist/doc/latex/subeqnarray/subeqnarray-sample.tex texmf-dist/doc/latex/subeqnarray/subeqnarray.pdf details="Package documentation" - texmf-dist/doc/latex/subeqnarray/subeqnarray.tex -srcfiles size=5 +srcfiles size=4 texmf-dist/source/latex/subeqnarray/subeqnarray.dtx texmf-dist/source/latex/subeqnarray/subeqnarray.ins runfiles size=2 texmf-dist/tex/latex/subeqnarray/subeqnarray.sty catalogue-also subeqn catalogue-ctan /macros/latex/contrib/subeqnarray -catalogue-license lppl +catalogue-license lppl1.3c catalogue-topics maths-syseqn -catalogue-version 2.1c +catalogue-version 2.1e name subfig category Package @@ -282447,7 +285815,7 @@ catalogue-version 1.0a name suftesi category Package -revision 68204 +revision 73055 shortdesc A document class for typesetting theses, books and articles longdesc The class can be used to typeset any kind of book (originally longdesc designed for use in the humanities). @@ -282462,7 +285830,7 @@ runfiles size=25 catalogue-ctan /macros/latex/contrib/suftesi catalogue-license lppl1.3 catalogue-topics class book-pub dissertation -catalogue-version 3.2.1 +catalogue-version 3.2.6 name sugconf category Package @@ -282485,6 +285853,42 @@ catalogue-ctan /macros/latex/contrib/conferences/sugconf catalogue-license lppl catalogue-topics class journalpub doc-templ std-conform +name sunpath +category Package +revision 72604 +shortdesc Draw sun path charts +longdesc This package can help to draw sun path charts using a polar +longdesc coordinate system. +docfiles size=151 + texmf-dist/doc/latex/sunpath/README.md details="Readme" + texmf-dist/doc/latex/sunpath/horizontal-coordinate.pdf + texmf-dist/doc/latex/sunpath/horizontal-coordinate.tex + texmf-dist/doc/latex/sunpath/releasenote.txt + texmf-dist/doc/latex/sunpath/sunpath.article.pdf + texmf-dist/doc/latex/sunpath/sunpath.article.tex + texmf-dist/doc/latex/sunpath/sunpath.docpart.tex + texmf-dist/doc/latex/sunpath/sunpath.equidistance.pdf + texmf-dist/doc/latex/sunpath/sunpath.equidistance.tex + texmf-dist/doc/latex/sunpath/sunpath.pdf details="Package documentation" + texmf-dist/doc/latex/sunpath/sunpath.scrartcl.pdf + texmf-dist/doc/latex/sunpath/sunpath.scrartcl.tex + texmf-dist/doc/latex/sunpath/sunpath.spherical.pdf + texmf-dist/doc/latex/sunpath/sunpath.spherical.tex + texmf-dist/doc/latex/sunpath/sunpath.tex + texmf-dist/doc/latex/sunpath/sunpath.track.pdf + texmf-dist/doc/latex/sunpath/sunpath.track.tex +srcfiles size=4 + texmf-dist/source/latex/sunpath/sunpath.dtx + texmf-dist/source/latex/sunpath/sunpath.ins +runfiles size=2 + texmf-dist/tex/latex/sunpath/sunpath.sty +catalogue-contact-repository https://github.com/hpb-htw/sunpath.git +catalogue-contact-support https://github.com/hpb-htw/sunpath/issues +catalogue-ctan /graphics/pgf/contrib/sunpath +catalogue-license lppl1.3c +catalogue-topics astronomy physics graphics pgf-tikz +catalogue-version 0.5 + name superiors category Package revision 69387 @@ -282517,19 +285921,19 @@ catalogue-version 2.0 name supertabular category Package -revision 53658 +revision 71854 shortdesc A multi-page tables package longdesc The package was a predecessor of longtable; the newer package longdesc (designed on quite different principles) is easier to use and longdesc more flexible, in many cases, but supertabular retains its longdesc usefulness in a few situations where longtable has problems. -docfiles size=70 +docfiles size=79 texmf-dist/doc/latex/supertabular/CATALOG - texmf-dist/doc/latex/supertabular/ChangeLog texmf-dist/doc/latex/supertabular/MANIFEST texmf-dist/doc/latex/supertabular/README details="Package documentation" + texmf-dist/doc/latex/supertabular/supertabular.bug texmf-dist/doc/latex/supertabular/supertabular.pdf details="Package documentation" -srcfiles size=17 +srcfiles size=18 texmf-dist/source/latex/supertabular/supertabular.dtx texmf-dist/source/latex/supertabular/supertabular.ins runfiles size=4 @@ -282538,7 +285942,7 @@ catalogue-also xtab catalogue-ctan /macros/latex/contrib/supertabular catalogue-license lppl1.3c catalogue-topics table table-long -catalogue-version 4.1g +catalogue-version 4.2c name suppose category Package @@ -283128,7 +286532,7 @@ catalogue-topics font font-type1 font-collection name sympycalc category Package -revision 67087 +revision 73069 shortdesc Work with SymPy and PyLuaTeX longdesc This package provides some commands (mostly for French users) longdesc to perform SymPy commands and format the result with some @@ -283142,8 +286546,6 @@ docfiles size=46 texmf-dist/doc/lualatex/sympycalc/SympyCalc-doc.tex runfiles size=3 texmf-dist/tex/lualatex/sympycalc/SympyCalc.sty -catalogue-contact-repository https://github.com/cpierquet/SympyCalc -catalogue-contact-support https://github.com/cpierquet/SympyCalc/issues catalogue-ctan /macros/luatex/latex/sympycalc catalogue-license lppl1.3c catalogue-topics maths luatex callback @@ -283190,105 +286592,105 @@ docfiles size=17 name synctex.aarch64-linux category TLCore -revision 69782 +revision 73915 shortdesc aarch64-linux files of synctex binfiles arch=aarch64-linux size=49 bin/aarch64-linux/synctex name synctex.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of synctex binfiles arch=amd64-freebsd size=63 bin/amd64-freebsd/synctex name synctex.amd64-netbsd category TLCore -revision 69797 +revision 73802 shortdesc amd64-netbsd files of synctex binfiles arch=amd64-netbsd size=64 bin/amd64-netbsd/synctex name synctex.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of synctex -binfiles arch=armhf-linux size=39 +binfiles arch=armhf-linux size=31 bin/armhf-linux/synctex name synctex.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of synctex binfiles arch=i386-freebsd size=63 bin/i386-freebsd/synctex name synctex.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of synctex -binfiles arch=i386-linux size=47 +binfiles arch=i386-linux size=52 bin/i386-linux/synctex name synctex.i386-netbsd category TLCore -revision 69797 +revision 73802 shortdesc i386-netbsd files of synctex binfiles arch=i386-netbsd size=53 bin/i386-netbsd/synctex name synctex.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of synctex binfiles arch=i386-solaris size=42 bin/i386-solaris/synctex name synctex.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of synctex binfiles arch=universal-darwin size=119 bin/universal-darwin/synctex name synctex.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of synctex binfiles arch=windows size=112 bin/windows/synctex.exe name synctex.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of synctex binfiles arch=x86_64-cygwin size=44 bin/x86_64-cygwin/synctex.exe name synctex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of synctex -binfiles arch=x86_64-darwinlegacy size=43 +binfiles arch=x86_64-darwinlegacy size=44 bin/x86_64-darwinlegacy/synctex name synctex.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of synctex -binfiles arch=x86_64-linux size=47 +binfiles arch=x86_64-linux size=48 bin/x86_64-linux/synctex name synctex.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of synctex -binfiles arch=x86_64-linuxmusl size=48 +binfiles arch=x86_64-linuxmusl size=49 bin/x86_64-linuxmusl/synctex name synctex.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of synctex binfiles arch=x86_64-solaris size=51 bin/x86_64-solaris/synctex @@ -283353,7 +286755,7 @@ catalogue-version 0.8.2 name synthslant category Package -revision 71755 +revision 71883 shortdesc Synthetically slant text longdesc This package allows to slant ("shear") short pieces of text to longdesc the left or to the right by an arbitrary angle, thus creating @@ -283385,7 +286787,7 @@ catalogue-contact-repository https://github.com/cspiel/synthslant.git catalogue-ctan /macros/latex/contrib/synthslant catalogue-license lppl1.3c catalogue-topics font-use font-supp -catalogue-version 0.1 +catalogue-version 0.1a name syntrace category Package @@ -283430,7 +286832,7 @@ catalogue-version 1.4.2 name systeme category Package -revision 66655 +revision 74047 shortdesc Format systems of equations longdesc The package allows you to enter systems of equations or longdesc inequalities in an intuitive way, and produces typeset output @@ -283439,7 +286841,7 @@ longdesc works with plain TeX or LaTeX, but e-TeX is required. Cette longdesc petite extension permet de saisir des systemes d'equations ou longdesc inequations de facon intuitive, et produit un affichage ou les longdesc termes et les signes sont alignes verticalement. -docfiles size=27 +docfiles size=41 texmf-dist/doc/generic/systeme/README texmf-dist/doc/generic/systeme/systeme_fr.pdf details="Package documentation (French)" language="fr" texmf-dist/doc/generic/systeme/systeme_fr.tex @@ -283449,11 +286851,11 @@ runfiles size=8 catalogue-ctan /macros/generic/systeme catalogue-license lppl1.3c catalogue-topics maths maths-syseqn simplified -catalogue-version 0.34 +catalogue-version 0.35 name t-angles category Package -revision 15878 +revision 71991 shortdesc Draw tangles, trees, Hopf algebra operations and other pictures longdesc A LaTeX2e package for drawing tangles, trees, Hopf algebra longdesc operations and other pictures. It is based on emTeX or TPIC @@ -283467,7 +286869,6 @@ docfiles size=39 texmf-dist/doc/latex/t-angles/t-manual.tex runfiles size=6 texmf-dist/tex/latex/t-angles/t-angles.sty -catalogue-contact-home http://www.math.ksu.edu/~lub/ catalogue-ctan /macros/latex/contrib/t-angles catalogue-license gpl catalogue-topics maths graphics-in-tex @@ -283505,7 +286906,7 @@ catalogue-topics ps-manip name t1utils.aarch64-linux category TLCore -revision 65927 +revision 73915 shortdesc aarch64-linux files of t1utils binfiles arch=aarch64-linux size=64 bin/aarch64-linux/t1ascii @@ -283517,7 +286918,7 @@ binfiles arch=aarch64-linux size=64 name t1utils.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of t1utils binfiles arch=amd64-freebsd size=82 bin/amd64-freebsd/t1ascii @@ -283529,7 +286930,7 @@ binfiles arch=amd64-freebsd size=82 name t1utils.amd64-netbsd category TLCore -revision 65923 +revision 73802 shortdesc amd64-netbsd files of t1utils binfiles arch=amd64-netbsd size=82 bin/amd64-netbsd/t1ascii @@ -283541,9 +286942,9 @@ binfiles arch=amd64-netbsd size=82 name t1utils.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of t1utils -binfiles arch=armhf-linux size=53 +binfiles arch=armhf-linux size=41 bin/armhf-linux/t1ascii bin/armhf-linux/t1asm bin/armhf-linux/t1binary @@ -283553,7 +286954,7 @@ binfiles arch=armhf-linux size=53 name t1utils.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of t1utils binfiles arch=i386-freebsd size=82 bin/i386-freebsd/t1ascii @@ -283565,9 +286966,9 @@ binfiles arch=i386-freebsd size=82 name t1utils.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of t1utils -binfiles arch=i386-linux size=65 +binfiles arch=i386-linux size=74 bin/i386-linux/t1ascii bin/i386-linux/t1asm bin/i386-linux/t1binary @@ -283577,7 +286978,7 @@ binfiles arch=i386-linux size=65 name t1utils.i386-netbsd category TLCore -revision 65923 +revision 73802 shortdesc i386-netbsd files of t1utils binfiles arch=i386-netbsd size=69 bin/i386-netbsd/t1ascii @@ -283589,7 +286990,7 @@ binfiles arch=i386-netbsd size=69 name t1utils.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of t1utils binfiles arch=i386-solaris size=59 bin/i386-solaris/t1ascii @@ -283601,7 +287002,7 @@ binfiles arch=i386-solaris size=59 name t1utils.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of t1utils binfiles arch=universal-darwin size=296 bin/universal-darwin/t1ascii @@ -283613,7 +287014,7 @@ binfiles arch=universal-darwin size=296 name t1utils.windows category TLCore -revision 69788 +revision 73796 shortdesc windows files of t1utils binfiles arch=windows size=53 bin/windows/t1ascii.exe @@ -283625,7 +287026,7 @@ binfiles arch=windows size=53 name t1utils.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of t1utils binfiles arch=x86_64-cygwin size=59 bin/x86_64-cygwin/t1ascii.exe @@ -283637,9 +287038,9 @@ binfiles arch=x86_64-cygwin size=59 name t1utils.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of t1utils -binfiles arch=x86_64-darwinlegacy size=61 +binfiles arch=x86_64-darwinlegacy size=62 bin/x86_64-darwinlegacy/t1ascii bin/x86_64-darwinlegacy/t1asm bin/x86_64-darwinlegacy/t1binary @@ -283649,9 +287050,9 @@ binfiles arch=x86_64-darwinlegacy size=61 name t1utils.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of t1utils -binfiles arch=x86_64-linux size=69 +binfiles arch=x86_64-linux size=71 bin/x86_64-linux/t1ascii bin/x86_64-linux/t1asm bin/x86_64-linux/t1binary @@ -283661,9 +287062,9 @@ binfiles arch=x86_64-linux size=69 name t1utils.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of t1utils -binfiles arch=x86_64-linuxmusl size=65 +binfiles arch=x86_64-linuxmusl size=71 bin/x86_64-linuxmusl/t1ascii bin/x86_64-linuxmusl/t1asm bin/x86_64-linuxmusl/t1binary @@ -283673,9 +287074,9 @@ binfiles arch=x86_64-linuxmusl size=65 name t1utils.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of t1utils -binfiles arch=x86_64-solaris size=71 +binfiles arch=x86_64-solaris size=72 bin/x86_64-solaris/t1ascii bin/x86_64-solaris/t1asm bin/x86_64-solaris/t1binary @@ -283915,7 +287316,7 @@ catalogue-version 1.1c name tableof category Package -revision 59837 +revision 72313 shortdesc Tagging tables of contents longdesc The package provides the commands to flag chapters or sections longdesc (or anything else destined to become a TOC line). The command @@ -283926,18 +287327,18 @@ 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. -docfiles size=18 +docfiles size=19 texmf-dist/doc/latex/tableof/README.md details="Readme" texmf-dist/doc/latex/tableof/tableof.pdf details="Package documentation" texmf-dist/doc/latex/tableof/tableoftest.tex -srcfiles size=10 +srcfiles size=11 texmf-dist/source/latex/tableof/tableof.dtx -runfiles size=3 +runfiles size=2 texmf-dist/tex/latex/tableof/tableof.sty catalogue-ctan /macros/latex/contrib/tableof catalogue-license lppl1.3 catalogue-topics toc-etc -catalogue-version 1.4c +catalogue-version 1.4d name tablists category Package @@ -284073,28 +287474,28 @@ catalogue-version 3.5 name tablvar category Package -revision 69212 +revision 72007 shortdesc Typesetting pretty tables of signs and variations according to French usage longdesc This is a complete and easy-to-use package for typesetting longdesc pretty tables of signs and variations according to French longdesc usage. The syntax is similar to that of the array environment longdesc and uses intuitive position commands. Arrows are automatically longdesc drawn (with PSTricks or TikZ). Macros are provided for drawing -longdesc double bars, single bars crossing the zeros, intervals where +longdesc double bars, single bars crossing zero values, intervals where longdesc the function is not defined, or for placing special values. -longdesc Several features of variations tables can be customized. -docfiles size=68 +longdesc Many features of variations tables can be customized. +docfiles size=87 texmf-dist/doc/latex/tablvar/README.md details="Readme" texmf-dist/doc/latex/tablvar/tablvar.pdf details="Package documentation" language="fr" -srcfiles size=29 +srcfiles size=30 texmf-dist/source/latex/tablvar/tablvar.dtx texmf-dist/source/latex/tablvar/tablvar.ins -runfiles size=4 +runfiles size=5 texmf-dist/tex/latex/tablvar/tablvar.sty catalogue-ctan /macros/latex/contrib/tablvar catalogue-license lppl1.3 catalogue-topics maths-tabvar maths french -catalogue-version 2.0 +catalogue-version 2.1 name tabriz-thesis category Package @@ -284334,6 +287735,29 @@ catalogue-license lppl1.3c catalogue-topics table table-long expl3 catalogue-version 2024A +name tabularray-abnt +category Package +revision 73487 +shortdesc An ABNT (Brazilian standard) theme for tabularray +longdesc This is the abnt Brazilian standard style for tabularray. It +longdesc provides the themes abnt (for tables with numerical data) and +longdesc quadro (for tables with text information). Additional +longdesc environments abnttblr, tallabnttblr, and longabnttblr are +longdesc wrappers to tblr, talltblr, and longtblr that apply the abnt +longdesc theme automatically and permit to set the table font using +longdesc \SetAbntTblrFont{} provided here. +docfiles size=29 + texmf-dist/doc/latex/tabularray-abnt/README.md details="Readme" + texmf-dist/doc/latex/tabularray-abnt/changelog.txt + texmf-dist/doc/latex/tabularray-abnt/tabularray-abnt-pt-br.pdf details="Package documentation" language="pt-br" + texmf-dist/doc/latex/tabularray-abnt/tabularray-abnt-pt-br.tex + texmf-dist/doc/latex/tabularray-abnt/tabularray-abnt.bib +runfiles size=5 + texmf-dist/tex/latex/tabularray-abnt/tabularray-abnt.sty +catalogue-ctan /macros/latex/contrib/tabularray-abnt +catalogue-license lppl1.3c +catalogue-topics table portuguese-br std-conform expl3 + name tabulary category Package revision 71463 @@ -284437,17 +287861,13 @@ catalogue-version 1.1 name tagpdf category Package -revision 71574 -shortdesc Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX -longdesc The package offers tools to experiment with tagging and -longdesc accessibility using pdfLaTeX and LuaTeX. It isn't meant for -longdesc production but allows the user to try out how difficult it is -longdesc to tag some structures; to try out how much tagging is really -longdesc needed; to test what else is needed so that a pdf works e.g. -longdesc with a screen reader. Its goal is to get a feeling for what has -longdesc to be done, which kernel changes are needed, how packages -longdesc should be adapted. -docfiles size=876 +revision 74065 +shortdesc Code for PDF tagging using pdfLaTeX and LuaLaTeX +longdesc The package contains the core code for tagging and +longdesc accessibility used by the LaTeX kernel in the Tagged PDF +longdesc project. See https://github.com/latex3/tagging-project for more +longdesc information. +docfiles size=787 texmf-dist/doc/latex/tagpdf/README.md details="Readme" texmf-dist/doc/latex/tagpdf/acrobat.png texmf-dist/doc/latex/tagpdf/ex-AF-file.pdf @@ -284476,14 +287896,17 @@ docfiles size=876 texmf-dist/doc/latex/tagpdf/ex-tagpdf-template.tex texmf-dist/doc/latex/tagpdf/global-ex.png texmf-dist/doc/latex/tagpdf/link-figure-input.tex + texmf-dist/doc/latex/tagpdf/pac2024-report.png + texmf-dist/doc/latex/tagpdf/pac2024-version.png texmf-dist/doc/latex/tagpdf/pac3.PNG texmf-dist/doc/latex/tagpdf/tagpdf-code.pdf texmf-dist/doc/latex/tagpdf/tagpdf-code.tex + texmf-dist/doc/latex/tagpdf/tagpdf-docelements.tex texmf-dist/doc/latex/tagpdf/tagpdf.bib texmf-dist/doc/latex/tagpdf/tagpdf.pdf details="Package documentation" texmf-dist/doc/latex/tagpdf/tagpdf.tex texmf-dist/doc/latex/tagpdf/tagpdfsetup-keys.tex -srcfiles size=102 +srcfiles size=109 texmf-dist/source/latex/tagpdf/tagpdf-backend.dtx texmf-dist/source/latex/tagpdf/tagpdf-checks.dtx texmf-dist/source/latex/tagpdf/tagpdf-data.dtx @@ -284497,7 +287920,7 @@ srcfiles size=102 texmf-dist/source/latex/tagpdf/tagpdf-user.dtx texmf-dist/source/latex/tagpdf/tagpdf.dtx texmf-dist/source/latex/tagpdf/tagpdf.ins -runfiles size=73 +runfiles size=75 texmf-dist/tex/latex/tagpdf/tagpdf-base.sty texmf-dist/tex/latex/tagpdf/tagpdf-debug-generic.sty texmf-dist/tex/latex/tagpdf/tagpdf-debug-lua.sty @@ -284521,7 +287944,7 @@ catalogue-contact-support https://github.com/latex3/tagpdf/issues catalogue-ctan /macros/latex/contrib/tagpdf catalogue-license lppl1.3c catalogue-topics tagged-pdf accessible expl3 -catalogue-version 0.99c +catalogue-version 0.99m name talk category Package @@ -284635,27 +288058,37 @@ catalogue-version 1.4 name tango category Package -revision 71743 +revision 71825 +shortdesc A LaTeX document class for math teachers +longdesc Tango is a LaTeX document class for use by mathematics +longdesc teachers. It requires LuaLaTeX, some LaTeX packages (see the +longdesc complete documentation for details), and a recent version of +longdesc LaTeX. docfiles size=199 - texmf-dist/doc/latex/tango/README - texmf-dist/doc/latex/tango/examples/Ch-1-15.tex - texmf-dist/doc/latex/tango/examples/Ch-16-30.tex - texmf-dist/doc/latex/tango/examples/book-mathematics.tex - texmf-dist/doc/latex/tango/examples/candide.tex - texmf-dist/doc/latex/tango/examples/euler.tex - texmf-dist/doc/latex/tango/examples/handout-euler.tex - texmf-dist/doc/latex/tango/examples/handout-polynomes-deg2.tex - texmf-dist/doc/latex/tango/examples/polynome-deg2.tex - texmf-dist/doc/latex/tango/examples/puissance-cercle.tex - texmf-dist/doc/latex/tango/examples/recurrence.tex - texmf-dist/doc/latex/tango/examples/rel-bin.tex - texmf-dist/doc/latex/tango/examples/schoolwork.tex - texmf-dist/doc/latex/tango/tango-en.pdf - texmf-dist/doc/latex/tango/tango-en.tex - texmf-dist/doc/latex/tango/tango-fr.pdf - texmf-dist/doc/latex/tango/tango-fr.tex -runfiles size=15 - texmf-dist/tex/latex/tango/tango.cls + texmf-dist/doc/lualatex/tango/README details="Readme" + texmf-dist/doc/lualatex/tango/examples/Ch-1-15.tex + texmf-dist/doc/lualatex/tango/examples/Ch-16-30.tex + texmf-dist/doc/lualatex/tango/examples/book-mathematics.tex + texmf-dist/doc/lualatex/tango/examples/candide.tex + texmf-dist/doc/lualatex/tango/examples/euler.tex + texmf-dist/doc/lualatex/tango/examples/handout-euler.tex + texmf-dist/doc/lualatex/tango/examples/handout-polynomes-deg2.tex + texmf-dist/doc/lualatex/tango/examples/polynome-deg2.tex + texmf-dist/doc/lualatex/tango/examples/puissance-cercle.tex + texmf-dist/doc/lualatex/tango/examples/recurrence.tex + texmf-dist/doc/lualatex/tango/examples/rel-bin.tex + texmf-dist/doc/lualatex/tango/examples/schoolwork.tex + texmf-dist/doc/lualatex/tango/tango-en.pdf details="Package documentation" language="en" + texmf-dist/doc/lualatex/tango/tango-en.tex + texmf-dist/doc/lualatex/tango/tango-fr.pdf details="Package documentation" language="fr" + texmf-dist/doc/lualatex/tango/tango-fr.tex +runfiles size=17 + texmf-dist/tex/lualatex/tango/tango.cls +catalogue-contact-home https://tango.mathriochka.net +catalogue-ctan /macros/luatex/latex/tango +catalogue-license lppl1.3c +catalogue-topics class teaching maths +catalogue-version 0.8.0 name tangocolors category Package @@ -284684,13 +288117,13 @@ catalogue-version 0.3 name tangramtikz category Package -revision 66183 +revision 73592 shortdesc Tangram puzzles, with TikZ 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. -docfiles size=234 +docfiles size=239 texmf-dist/doc/latex/tangramtikz/README.md details="Readme" texmf-dist/doc/latex/tangramtikz/TangramTikz-doc-en.pdf details="Package documentation (English)" texmf-dist/doc/latex/tangramtikz/TangramTikz-doc-en.tex @@ -284698,12 +288131,12 @@ docfiles size=234 texmf-dist/doc/latex/tangramtikz/TangramTikz-doc-fr.tex runfiles size=13 texmf-dist/tex/latex/tangramtikz/TangramTikz.sty -catalogue-contact-bugs https://github.com/cpierquet/TangramTikz/issues -catalogue-contact-repository https://github.com/cpierquet/TangramTikz +catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex catalogue-ctan /graphics/pgf/contrib/tangramtikz catalogue-license lppl1.3c catalogue-topics puzzle games pgf-tikz -catalogue-version 0.1.5 +catalogue-version 0.1.7 name tap category Package @@ -284861,7 +288294,7 @@ catalogue-version 2.40 name tcolorbox category Package -revision 71769 +revision 72624 shortdesc Coloured boxes, for LaTeX examples and theorems, etc longdesc This package provides an environment for coloured and framed longdesc text boxes with a heading line. Optionally, such a box may be @@ -284875,7 +288308,7 @@ longdesc etoolbox packages. depend environ depend pgf depend tools -docfiles size=1644 +docfiles size=1648 texmf-dist/doc/latex/tcolorbox/Basilica_5.png texmf-dist/doc/latex/tcolorbox/CHANGES.md texmf-dist/doc/latex/tcolorbox/README.md details="Readme" @@ -284948,8 +288381,8 @@ runfiles size=150 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 6.2.0 +catalogue-topics boxing box-breaking colour verbatim listing macro-demo +catalogue-version 6.4.1 name tdclock category Package @@ -285105,6 +288538,26 @@ catalogue-license lppl catalogue-topics debug-supp catalogue-version 1.06 +name telprint +category Package +revision 71914 +shortdesc Format German phone numbers +longdesc The package provides a command \telprint for formatting German +longdesc telephone numbers. +docfiles size=82 + texmf-dist/doc/latex/telprint/README.md + texmf-dist/doc/latex/telprint/telprint.pdf details="Package documentation" +srcfiles size=6 + texmf-dist/source/latex/telprint/telprint.dtx +runfiles size=2 + texmf-dist/tex/latex/telprint/telprint.sty +catalogue-contact-bugs https://github.com/ho-tex/telprint/issues +catalogue-contact-repository https://github.com/ho-tex/telprint +catalogue-ctan /macros/latex/contrib/telprint +catalogue-license lppl1.3c +catalogue-topics numbers +catalogue-version 1.12 + name templates-fenn category Package revision 15878 @@ -285375,6 +288828,32 @@ catalogue-license gpl2 catalogue-topics font font-cyrillic font-greek font-otf font-type1 font-serif catalogue-version 1.05 +name temporal-logic +category Package +revision 72575 +shortdesc Symbols for Temporal Logics +longdesc This package defines functions for rendering temporal operators +longdesc defined in Linear Temporal Logic (LTL), Metric Temporal Logic +longdesc (MTL), Metric First-order Temporal Logic (MFOTL), and the +longdesc Counting Metric First-order Temporal Binding Logic (CMFTBL). +longdesc The package defines various functions with variants in order to +longdesc include or omit optional parameters of the operators like the +longdesc optional interval. +docfiles size=133 + texmf-dist/doc/latex/temporal-logic/README.md details="Readme" + texmf-dist/doc/latex/temporal-logic/temporal-logic-doc.pdf details="Package documentation" +srcfiles size=6 + texmf-dist/source/latex/temporal-logic/temporal-logic.dtx + texmf-dist/source/latex/temporal-logic/temporal-logic.ins +runfiles size=2 + texmf-dist/tex/latex/temporal-logic/temporal-logic.sty +catalogue-contact-bugs https://github.com/tudo-aqua/temporal-logic-latex-package/issues +catalogue-contact-repository https://github.com/tudo-aqua/temporal-logic-latex-package/ +catalogue-ctan /macros/latex/contrib/temporal-logic +catalogue-license lppl1.3c +catalogue-topics logic text-symbol symbol-supp expl3 +catalogue-version 1.0 + name tengwarscript category Package revision 34594 @@ -285663,7 +289142,7 @@ catalogue-version 1.1.1 name testhyphens category Package -revision 38928 +revision 73486 shortdesc Testing hyphenation patterns longdesc The package may be used for testing hyphenation patterns or for longdesc controlling that specific words are hyphenated as expected. @@ -285672,18 +289151,17 @@ longdesc LaTeX with some enhancements. It differs form \showhyphens, longdesc because it typesets its output on the document's output file. longdesc It also works with xelatex, where \showhyphens requires a longdesc workaround. -docfiles size=96 - texmf-dist/doc/latex/testhyphens/README details="Readme" - texmf-dist/doc/latex/testhyphens/manifest.txt +docfiles size=21 + texmf-dist/doc/latex/testhyphens/README.txt details="Readme" texmf-dist/doc/latex/testhyphens/testhyphens.pdf details="Package documentation" srcfiles size=6 texmf-dist/source/latex/testhyphens/testhyphens.dtx runfiles size=1 texmf-dist/tex/latex/testhyphens/testhyphens.sty catalogue-ctan /macros/latex/contrib/testhyphens -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics hyphenation -catalogue-version 0.7 +catalogue-version 1.0 name testidx category Package @@ -285818,7 +289296,7 @@ catalogue-version 5.8.3 name tex category TLCore -revision 70015 +revision 73848 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 @@ -285839,7 +289317,7 @@ depend kpathsea depend plain depend tex.ARCH execute AddFormat name=tex engine=tex options="tex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain -docfiles size=27 +docfiles size=29 texmf-dist/doc/man/man1/initex.1 texmf-dist/doc/man/man1/initex.man1.pdf texmf-dist/doc/man/man1/tex.1 @@ -286920,7 +290398,7 @@ catalogue-topics font font-collection font-maths font-otf name tex-ini-files category Package -revision 68920 +revision 73863 shortdesc Model TeX format creation files longdesc This bundle provides a collection of model .ini files for longdesc creating TeX formats. These files are commonly used to @@ -287083,27 +290561,6 @@ catalogue-ctan /macros/generic/TeX-PS catalogue-license pd catalogue-topics ps-manip -name tex-refs -category Package -revision 57349 -catalogue tex-references -shortdesc References for TeX and Friends -longdesc This is an ongoing project with the aim of providing a help -longdesc file for LaTeX (and its friends like ConTeXt, MetaPost, -longdesc Metafont, etc.) using a state-of-the-art source format, aka -longdesc DocBook/XML. -docfiles size=314 - texmf-dist/doc/generic/tex-refs/README details="Readme" - texmf-dist/doc/generic/tex-refs/tex-refs-0.4.1.tar.bz2 - texmf-dist/doc/generic/tex-refs/tex-refs.css - texmf-dist/doc/generic/tex-refs/tex-refs.epub - texmf-dist/doc/generic/tex-refs/tex-refs.html details="The references themselves" - texmf-dist/doc/generic/tex-refs/tex-refs.txt -catalogue-ctan /info/tex-references -catalogue-license other-free -catalogue-topics documentation -catalogue-version 0.4.8 - name tex-virtual-academy-pl category Package revision 67718 @@ -287565,12 +291022,12 @@ catalogue-topics documentation polish-doc name tex-vpat category Package -revision 66758 +revision 72067 shortdesc TeX Accessibility Conformance Report 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. -docfiles size=151 +docfiles size=154 texmf-dist/doc/latex/tex-vpat/LICENSE texmf-dist/doc/latex/tex-vpat/Makefile texmf-dist/doc/latex/tex-vpat/README.md details="Readme" @@ -287592,19 +291049,19 @@ 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.3 +catalogue-version 2.4 name tex.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of tex -binfiles arch=aarch64-linux size=115 +binfiles arch=aarch64-linux size=116 bin/aarch64-linux/initex bin/aarch64-linux/tex name tex.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of tex binfiles arch=amd64-freebsd size=117 bin/amd64-freebsd/initex @@ -287612,7 +291069,7 @@ binfiles arch=amd64-freebsd size=117 name tex.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of tex binfiles arch=amd64-netbsd size=116 bin/amd64-netbsd/initex @@ -287620,15 +291077,15 @@ binfiles arch=amd64-netbsd size=116 name tex.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of tex -binfiles arch=armhf-linux size=87 +binfiles arch=armhf-linux size=75 bin/armhf-linux/initex bin/armhf-linux/tex name tex.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of tex binfiles arch=i386-freebsd size=117 bin/i386-freebsd/initex @@ -287636,31 +291093,31 @@ binfiles arch=i386-freebsd size=117 name tex.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of tex -binfiles arch=i386-linux size=104 +binfiles arch=i386-linux size=116 bin/i386-linux/initex bin/i386-linux/tex name tex.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of tex -binfiles arch=i386-netbsd size=105 +binfiles arch=i386-netbsd size=106 bin/i386-netbsd/initex bin/i386-netbsd/tex name tex.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of tex -binfiles arch=i386-solaris size=96 +binfiles arch=i386-solaris size=97 bin/i386-solaris/initex bin/i386-solaris/tex name tex.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of tex binfiles arch=universal-darwin size=337 bin/universal-darwin/initex @@ -287668,7 +291125,7 @@ binfiles arch=universal-darwin size=337 name tex.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of tex binfiles arch=windows size=86 bin/windows/initex.exe @@ -287677,7 +291134,7 @@ binfiles arch=windows size=86 name tex.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of tex binfiles arch=x86_64-cygwin size=97 bin/x86_64-cygwin/initex @@ -287685,7 +291142,7 @@ binfiles arch=x86_64-cygwin size=97 name tex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of tex binfiles arch=x86_64-darwinlegacy size=93 bin/x86_64-darwinlegacy/initex @@ -287693,25 +291150,25 @@ binfiles arch=x86_64-darwinlegacy size=93 name tex.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of tex -binfiles arch=x86_64-linux size=97 +binfiles arch=x86_64-linux size=114 bin/x86_64-linux/initex bin/x86_64-linux/tex name tex.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of tex -binfiles arch=x86_64-linuxmusl size=105 +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 70276 +revision 73792 shortdesc x86_64-solaris files of tex -binfiles arch=x86_64-solaris size=110 +binfiles arch=x86_64-solaris size=111 bin/x86_64-solaris/initex bin/x86_64-solaris/tex @@ -287857,7 +291314,7 @@ binfiles arch=x86_64-solaris size=1 name tex4ht category Package -revision 71730 +revision 74099 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 @@ -287949,7 +291406,7 @@ docfiles size=260 texmf-dist/doc/generic/tex4ht/mn56.html texmf-dist/doc/generic/tex4ht/mn5x.png texmf-dist/doc/generic/tex4ht/mn6x.png -srcfiles size=4652 +srcfiles size=4668 texmf-dist/source/generic/tex4ht/ChangeLog texmf-dist/source/generic/tex4ht/Makefile texmf-dist/source/generic/tex4ht/README @@ -288029,7 +291486,7 @@ srcfiles size=4652 texmf-dist/source/generic/tex4ht/update-htfonts texmf-dist/source/generic/tex4ht/wripro.tex texmf-dist/source/generic/tex4ht/xtpipes.tex -runfiles size=13101 +runfiles size=13136 texmf-dist/scripts/tex4ht/ht.sh texmf-dist/scripts/tex4ht/htcopy.pl texmf-dist/scripts/tex4ht/htlatex.sh @@ -288108,6 +291565,8 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/bibtex.4ht texmf-dist/tex/generic/tex4ht/bibtex2.4ht texmf-dist/tex/generic/tex4ht/bibtopic.4ht + texmf-dist/tex/generic/tex4ht/bigfoot-hooks.4ht + texmf-dist/tex/generic/tex4ht/bigfoot.4ht texmf-dist/tex/generic/tex4ht/bm.4ht texmf-dist/tex/generic/tex4ht/book.4ht texmf-dist/tex/generic/tex4ht/bookmark-hooks.4ht @@ -288133,6 +291592,7 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/cleveref-hooks.4ht texmf-dist/tex/generic/tex4ht/cleveref.4ht texmf-dist/tex/generic/tex4ht/color.4ht + texmf-dist/tex/generic/tex4ht/colortbl-hooks.4ht texmf-dist/tex/generic/tex4ht/colortbl.4ht texmf-dist/tex/generic/tex4ht/combine.4ht texmf-dist/tex/generic/tex4ht/cond4ht.4ht @@ -288186,6 +291646,7 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/english.4ht texmf-dist/tex/generic/tex4ht/enotez.4ht texmf-dist/tex/generic/tex4ht/enumerate.4ht + texmf-dist/tex/generic/tex4ht/enumitem-hooks.4ht texmf-dist/tex/generic/tex4ht/enumitem.4ht texmf-dist/tex/generic/tex4ht/epigraph.4ht texmf-dist/tex/generic/tex4ht/eplain.4ht @@ -288196,6 +291657,7 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/esperant.4ht texmf-dist/tex/generic/tex4ht/esperanto.4ht texmf-dist/tex/generic/tex4ht/estonian.4ht + texmf-dist/tex/generic/tex4ht/esvect.4ht texmf-dist/tex/generic/tex4ht/eucal.4ht texmf-dist/tex/generic/tex4ht/euler.4ht texmf-dist/tex/generic/tex4ht/europecv.4ht @@ -288239,6 +291701,7 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/francais.4ht texmf-dist/tex/generic/tex4ht/french.4ht texmf-dist/tex/generic/tex4ht/frenchb.4ht + texmf-dist/tex/generic/tex4ht/fvextra.4ht texmf-dist/tex/generic/tex4ht/g-brief.4ht texmf-dist/tex/generic/tex4ht/galician.4ht texmf-dist/tex/generic/tex4ht/gauss.4ht @@ -288329,13 +291792,17 @@ runfiles size=13101 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-ul.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/makecell.4ht texmf-dist/tex/generic/tex4ht/makeidx.4ht texmf-dist/tex/generic/tex4ht/manju.4ht texmf-dist/tex/generic/tex4ht/manmac.4ht + texmf-dist/tex/generic/tex4ht/manyfoot-hooks.4ht + texmf-dist/tex/generic/tex4ht/manyfoot.4ht texmf-dist/tex/generic/tex4ht/marginnote.4ht texmf-dist/tex/generic/tex4ht/mathjax-latex-4ht.4ht texmf-dist/tex/generic/tex4ht/mathltx.4ht @@ -288350,6 +291817,7 @@ runfiles size=13101 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/metalogo.4ht texmf-dist/tex/generic/tex4ht/mex.4ht texmf-dist/tex/generic/tex4ht/mfpic.4ht texmf-dist/tex/generic/tex4ht/mhchem.4ht @@ -288361,6 +291829,7 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/mkht.4ht texmf-dist/tex/generic/tex4ht/mla.4ht texmf-dist/tex/generic/tex4ht/mls.4ht + texmf-dist/tex/generic/tex4ht/moderncv.4ht texmf-dist/tex/generic/tex4ht/moreverb.4ht texmf-dist/tex/generic/tex4ht/mozilla.4ht texmf-dist/tex/generic/tex4ht/multibib-hooks.4ht @@ -288378,6 +291847,7 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/ngerman.4ht texmf-dist/tex/generic/tex4ht/ngermanb.4ht texmf-dist/tex/generic/tex4ht/nicefrac.4ht + texmf-dist/tex/generic/tex4ht/nicematrix.4ht texmf-dist/tex/generic/tex4ht/nomencl.4ht texmf-dist/tex/generic/tex4ht/norsk.4ht texmf-dist/tex/generic/tex4ht/ntheorem.4ht @@ -288423,11 +291893,14 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/pst-jtree.4ht texmf-dist/tex/generic/tex4ht/pstricks.4ht texmf-dist/tex/generic/tex4ht/pythontex.4ht + texmf-dist/tex/generic/tex4ht/qtree.4ht texmf-dist/tex/generic/tex4ht/quoting.4ht texmf-dist/tex/generic/tex4ht/reading.4ht texmf-dist/tex/generic/tex4ht/report.4ht texmf-dist/tex/generic/tex4ht/res-a.4ht texmf-dist/tex/generic/tex4ht/res.4ht + texmf-dist/tex/generic/tex4ht/resizegather-hooks.4ht + texmf-dist/tex/generic/tex4ht/resizegather.4ht texmf-dist/tex/generic/tex4ht/resume.4ht texmf-dist/tex/generic/tex4ht/revsymb.4ht texmf-dist/tex/generic/tex4ht/revtex4.4ht @@ -288461,6 +291934,8 @@ runfiles size=13101 texmf-dist/tex/generic/tex4ht/spanish.4ht texmf-dist/tex/generic/tex4ht/splitidx.4ht texmf-dist/tex/generic/tex4ht/srcltx.4ht + texmf-dist/tex/generic/tex4ht/standalone.4ht + texmf-dist/tex/generic/tex4ht/stmaryrd.4ht texmf-dist/tex/generic/tex4ht/subcaption.4ht texmf-dist/tex/generic/tex4ht/subeqnarray.4ht texmf-dist/tex/generic/tex4ht/subfigure.4ht @@ -296673,6 +300148,8 @@ runfiles size=13101 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/TeXvect10/vect.htf + texmf-dist/tex4ht/ht-fonts/unicode/TeXvect10/vect10.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 @@ -297015,6 +300492,7 @@ runfiles size=13101 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/bbm/bbm.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 @@ -297818,7 +301296,7 @@ catalogue-topics cvt-html name tex4ht.aarch64-linux category Package -revision 70276 +revision 73915 shortdesc aarch64-linux files of tex4ht binfiles arch=aarch64-linux size=74 bin/aarch64-linux/ht @@ -297835,7 +301313,7 @@ binfiles arch=aarch64-linux size=74 name tex4ht.amd64-freebsd category Package -revision 70276 +revision 73792 shortdesc amd64-freebsd files of tex4ht binfiles arch=amd64-freebsd size=97 bin/amd64-freebsd/ht @@ -297852,7 +301330,7 @@ binfiles arch=amd64-freebsd size=97 name tex4ht.amd64-netbsd category Package -revision 70286 +revision 73802 shortdesc amd64-netbsd files of tex4ht binfiles arch=amd64-netbsd size=97 bin/amd64-netbsd/ht @@ -297869,9 +301347,9 @@ binfiles arch=amd64-netbsd size=97 name tex4ht.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of tex4ht -binfiles arch=armhf-linux size=64 +binfiles arch=armhf-linux size=57 bin/armhf-linux/ht bin/armhf-linux/htlatex bin/armhf-linux/htmex @@ -297886,7 +301364,7 @@ binfiles arch=armhf-linux size=64 name tex4ht.i386-freebsd category Package -revision 70276 +revision 73792 shortdesc i386-freebsd files of tex4ht binfiles arch=i386-freebsd size=97 bin/i386-freebsd/ht @@ -297903,9 +301381,9 @@ binfiles arch=i386-freebsd size=97 name tex4ht.i386-linux category Package -revision 70276 +revision 73792 shortdesc i386-linux files of tex4ht -binfiles arch=i386-linux size=80 +binfiles arch=i386-linux size=86 bin/i386-linux/ht bin/i386-linux/htlatex bin/i386-linux/htmex @@ -297920,9 +301398,9 @@ binfiles arch=i386-linux size=80 name tex4ht.i386-netbsd category Package -revision 70286 +revision 73802 shortdesc i386-netbsd files of tex4ht -binfiles arch=i386-netbsd size=89 +binfiles arch=i386-netbsd size=90 bin/i386-netbsd/ht bin/i386-netbsd/htlatex bin/i386-netbsd/htmex @@ -297937,9 +301415,9 @@ binfiles arch=i386-netbsd size=89 name tex4ht.i386-solaris category Package -revision 70276 +revision 73792 shortdesc i386-solaris files of tex4ht -binfiles arch=i386-solaris size=70 +binfiles arch=i386-solaris size=71 bin/i386-solaris/ht bin/i386-solaris/htlatex bin/i386-solaris/htmex @@ -297954,7 +301432,7 @@ binfiles arch=i386-solaris size=70 name tex4ht.universal-darwin category Package -revision 70274 +revision 73806 shortdesc universal-darwin files of tex4ht binfiles arch=universal-darwin size=195 bin/universal-darwin/ht @@ -297971,7 +301449,7 @@ binfiles arch=universal-darwin size=195 name tex4ht.windows category Package -revision 70269 +revision 73796 shortdesc windows files of tex4ht binfiles arch=windows size=59 bin/windows/ht.bat @@ -297996,7 +301474,7 @@ binfiles arch=windows size=59 name tex4ht.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of tex4ht binfiles arch=x86_64-cygwin size=41 bin/x86_64-cygwin/ht @@ -298013,7 +301491,7 @@ binfiles arch=x86_64-cygwin size=41 name tex4ht.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of tex4ht binfiles arch=x86_64-darwinlegacy size=72 bin/x86_64-darwinlegacy/ht @@ -298030,9 +301508,9 @@ binfiles arch=x86_64-darwinlegacy size=72 name tex4ht.x86_64-linux category Package -revision 70276 +revision 73777 shortdesc x86_64-linux files of tex4ht -binfiles arch=x86_64-linux size=78 +binfiles arch=x86_64-linux size=77 bin/x86_64-linux/ht bin/x86_64-linux/htlatex bin/x86_64-linux/htmex @@ -298047,9 +301525,9 @@ binfiles arch=x86_64-linux size=78 name tex4ht.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of tex4ht -binfiles arch=x86_64-linuxmusl size=77 +binfiles arch=x86_64-linuxmusl size=79 bin/x86_64-linuxmusl/ht bin/x86_64-linuxmusl/htlatex bin/x86_64-linuxmusl/htmex @@ -298064,9 +301542,9 @@ binfiles arch=x86_64-linuxmusl size=77 name tex4ht.x86_64-solaris category Package -revision 70276 +revision 73792 shortdesc x86_64-solaris files of tex4ht -binfiles arch=x86_64-solaris size=80 +binfiles arch=x86_64-solaris size=81 bin/x86_64-solaris/ht bin/x86_64-solaris/htlatex bin/x86_64-solaris/htmex @@ -298565,7 +302043,7 @@ catalogue-version 2.0 name texdef category Package -revision 64967 +revision 74067 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 @@ -298584,13 +302062,13 @@ longdesc including flavours (pdf(La)TeX, Lua(La)TeX, Xe(La)TeX, ...). longdesc The flavour can be selected using a command line option, or via longdesc the script name: latexdef will use LaTeX as default, etc. depend texdef.ARCH -docfiles size=42 - texmf-dist/doc/support/texdef/CHANGELOG - texmf-dist/doc/support/texdef/INSTALL - texmf-dist/doc/support/texdef/README details="Readme" +docfiles size=49 + texmf-dist/doc/support/texdef/CHANGELOG.txt + texmf-dist/doc/support/texdef/DEPENDS.txt + texmf-dist/doc/support/texdef/INSTALL.txt + texmf-dist/doc/support/texdef/README.txt details="Readme" texmf-dist/doc/support/texdef/texdef.pdf details="Package documentation" -srcfiles size=4 - texmf-dist/source/support/texdef/texdef.tex + texmf-dist/doc/support/texdef/texdef.tex runfiles size=9 texmf-dist/scripts/texdef/texdef.pl catalogue-contact-bugs https://github.com/MartinScharrer/texdef/issues @@ -298599,7 +302077,7 @@ catalogue-contact-repository https://github.com/MartinScharrer/texdef.git catalogue-ctan /support/texdef catalogue-license gpl3 catalogue-topics debug-supp -catalogue-version 1.9 +catalogue-version 1.10 name texdef.aarch64-linux category Package @@ -299005,7 +302483,7 @@ binfiles arch=x86_64-solaris size=1 name texdoc category TLCore -revision 70579 +revision 73876 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 @@ -299044,7 +302522,7 @@ catalogue-contact-support https://lists.tug.org/texdoc catalogue-ctan /support/texdoc catalogue-license gpl catalogue-topics view-doc -catalogue-version 4.1 +catalogue-version 4.1.1 name texdoc.aarch64-linux category TLCore @@ -299322,7 +302800,7 @@ catalogue-version v2r3 name texfindpkg category Package -revision 67027 +revision 72937 shortdesc Query or install TeX packages and their dependencies longdesc This package makes it easy to query or install TeX packages and longdesc their dependencies by file names, command names or environment @@ -299331,7 +302809,7 @@ longdesc distributions. At present it focuses mainly on LaTeX packages, longdesc but may be extended to ConTeXt packages if anyone would like to longdesc contribute. depend texfindpkg.ARCH -docfiles size=5 +docfiles size=7 texmf-dist/doc/man/man1/texfindpkg.1 texmf-dist/doc/man/man1/texfindpkg.man1.pdf texmf-dist/doc/support/texfindpkg/README.md details="Readme" @@ -299349,7 +302827,7 @@ catalogue-contact-support https://github.com/lvjr/texfindpkg/discussions catalogue-ctan /support/texfindpkg catalogue-license gpl3 catalogue-topics use-lua -catalogue-version 2023E +catalogue-version 2024A name texfindpkg.aarch64-linux category Package @@ -299611,7 +303089,7 @@ catalogue-version 0.1 name texinfo category Package -revision 69809 +revision 73706 shortdesc Texinfo documentation system longdesc Texinfo is the preferred format for documentation in the GNU longdesc project; the format may be used to produce online or printed @@ -299621,7 +303099,7 @@ longdesc distribution offer online interactive use (with hypertext 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. -runfiles size=110 +runfiles size=111 texmf-dist/tex/texinfo/texinfo.ini texmf-dist/tex/texinfo/texinfo.tex texmf-dist/tex/texinfo/txi-cs.tex @@ -299647,10 +303125,10 @@ catalogue-version 6.8 name texlive-common category TLCore -revision 71543 +revision 74089 shortdesc TeX Live documentation (common elements) postaction shortcut type=menu name="TeX Live documentation" cmd=TEXDIR/texmf-dist/doc/texlive/index.html -docfiles size=220 +docfiles size=175 texmf-dist/doc/texlive/index.html texmf-dist/doc/texlive/install-tl.html texmf-dist/doc/texlive/texlive-common/advanced-lnx.png @@ -299665,15 +303143,14 @@ docfiles size=220 texmf-dist/doc/texlive/texlive-common/tlcockpit-packages.png texmf-dist/doc/texlive/texlive-common/tlmgr-gui.png texmf-dist/doc/texlive/texlive-common/tlshell-linux.png - texmf-dist/doc/texlive/texlive-common/tlshell-macos.png texmf-dist/doc/texlive/texlive-common/tray-menu.png texmf-dist/doc/texlive/tlmgr.html name texlive-cz category TLCore -revision 62854 +revision 72437 shortdesc TeX Live manual (Czech/Slovak) -docfiles size=453 +docfiles size=451 texmf-dist/doc/texlive/texlive-cz/Makefile texmf-dist/doc/texlive/texlive-cz/csquote.sty texmf-dist/doc/texlive/texlive-cz/live4ht.cfg @@ -299713,9 +303190,9 @@ docfiles size=651 name texlive-en category TLCore -revision 71152 +revision 73975 shortdesc TeX Live manual (English) -docfiles size=1634 +docfiles size=1690 texmf-dist/doc/info/tlbuild.info texmf-dist/doc/texlive/texlive-en/.dict.pws texmf-dist/doc/texlive/texlive-en/ChangeLog @@ -299745,6 +303222,7 @@ docfiles size=1634 texmf-dist/doc/texlive/texlive-en/archive/live-2021.tex texmf-dist/doc/texlive/texlive-en/archive/live-2022.tex texmf-dist/doc/texlive/texlive-en/archive/live-2023.tex + texmf-dist/doc/texlive/texlive-en/archive/live-2024.tex texmf-dist/doc/texlive/texlive-en/archive/live-tl7.tex texmf-dist/doc/texlive/texlive-en/archive/live4ht.cfg-2004 texmf-dist/doc/texlive/texlive-en/archive/live4ht.cfg-2021 @@ -299772,6 +303250,7 @@ docfiles size=1634 texmf-dist/doc/texlive/texlive-en/archive/tex-live.sty-2021 texmf-dist/doc/texlive/texlive-en/archive/tex-live.sty-2022 texmf-dist/doc/texlive/texlive-en/archive/tex-live.sty-2023 + texmf-dist/doc/texlive/texlive-en/archive/tex-live.sty-2024 texmf-dist/doc/texlive/texlive-en/archive/texlive.pl texmf-dist/doc/texlive/texlive-en/live4ht.cfg texmf-dist/doc/texlive/texlive-en/tex-live.css @@ -299859,7 +303338,7 @@ docfiles size=748 name texlive-msg-translations category TLCore -revision 71515 +revision 73873 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 @@ -299916,7 +303395,7 @@ docfiles size=376 name texlive-scripts category TLCore -revision 71770 +revision 74117 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. @@ -299924,7 +303403,7 @@ 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 -docfiles size=571 +docfiles size=577 doc.html texmf-dist/doc/man/man1/fmtutil-sys.1 texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf @@ -300286,7 +303765,7 @@ binfiles arch=universal-darwin size=18 name texlive-scripts-extra.windows category TLCore -revision 71749 +revision 73796 shortdesc windows files of texlive-scripts-extra binfiles arch=windows size=6 bin/windows/e2pall.exe @@ -300586,7 +304065,7 @@ binfiles arch=universal-darwin size=13 name texlive-scripts.windows category TLCore -revision 71215 +revision 73796 shortdesc windows files of texlive-scripts binfiles arch=windows size=55 bin/windows/fmtutil-sys.exe @@ -300720,9 +304199,9 @@ docfiles size=453 name texlive-zh-cn category TLCore -revision 71700 +revision 74098 shortdesc TeX Live manual (Chinese) -docfiles size=329 +docfiles size=332 texmf-dist/doc/texlive/texlive-zh-cn/Makefile texmf-dist/doc/texlive/texlive-zh-cn/README-live.ZH-CN texmf-dist/doc/texlive/texlive-zh-cn/tex-live-zh-cn.sty @@ -300731,7 +304210,7 @@ docfiles size=329 name texlive.infra category TLCore -revision 71690 +revision 74083 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 @@ -300739,7 +304218,7 @@ 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 -docfiles size=139 +docfiles size=140 README README.usergroups index.html @@ -300780,7 +304259,7 @@ docfiles size=139 texmf-dist/scripts/texlive/NEWS tlpkg/README tlpkg/installer/COPYING.MinGW-runtime.txt -runfiles size=328 +runfiles size=331 LICENSE.CTAN LICENSE.TL release-texlive.txt @@ -300909,7 +304388,7 @@ binfiles arch=universal-darwin size=246 name texlive.infra.windows category TLCore -revision 71447 +revision 73796 shortdesc windows files of texlive.infra binfiles arch=windows size=1941 bin/windows/mktexlsr.exe @@ -301377,13 +304856,13 @@ catalogue-version 1.3.1 name texlogsieve category Package -revision 69436 +revision 72938 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, texlogfilter, and others. +longdesc textlog_extract, texlogparser, texlogfilter, pulp, and others. longdesc Highlights: Two reports: the most important messages from the longdesc log file followed by a summary of repeated messages, undefined longdesc references etc.; The program goes to great lengths to correctly @@ -301393,7 +304872,7 @@ longdesc entity; Several options to control which messages should be longdesc filtered out; No messages are accidentally removed; The summary longdesc report is currently simple, but useful. depend texlogsieve.ARCH -docfiles size=46 +docfiles size=47 texmf-dist/doc/man/man1/texlogsieve.1 texmf-dist/doc/man/man1/texlogsieve.man1.pdf texmf-dist/doc/support/texlogsieve/LICENCE.txt @@ -301406,7 +304885,7 @@ 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.4.1 +catalogue-version 1.4.2 name texlogsieve.aarch64-linux category Package @@ -301851,7 +305330,7 @@ binfiles arch=x86_64-solaris size=3 name texplate category Package -revision 67201 +revision 71963 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 @@ -301886,7 +305365,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=878 +runfiles size=903 texmf-dist/scripts/texplate/texplate.jar texmf-dist/scripts/texplate/texplate.sh catalogue-contact-bugs https://gitlab.com/islandoftex/texplate/-/issues @@ -301894,7 +305373,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.4 +catalogue-version 1.0.6 name texplate.aarch64-linux category Package @@ -302431,7 +305910,7 @@ catalogue-version 0.6.0 name textcase category Package -revision 67755 +revision 74064 shortdesc Case conversion ignoring mathematics, etc longdesc The textcase package offers commands \MakeTextUppercase and longdesc \MakeTextLowercase which are similar to the standard @@ -302459,7 +305938,7 @@ catalogue-contact-repository https://github.com/davidcarlisle/dpctex catalogue-ctan /macros/latex/contrib/textcase catalogue-license lppl catalogue-topics macro-supp -catalogue-version 1.04 +catalogue-version 1.05 name textcsc category Package @@ -302698,7 +306177,7 @@ catalogue-version 1.1 name texvc category Package -revision 71744 +revision 71883 shortdesc Use MediaWiki LaTeX commands longdesc User MediaWiki LaTeX commands to copy and past formulae from longdesc MediaWiki to LaTeX documents. @@ -302712,15 +306191,15 @@ srcfiles size=8 texmf-dist/source/latex/texvc/texvc.ins runfiles size=1 texmf-dist/tex/latex/texvc/texvc.sty -catalogue-contact-repository https://github.com/ag-gipp/texvc-latex +catalogue-contact-repository https://github.com/MaRDI4NFDI/texvc-ctan catalogue-ctan /macros/latex/contrib/texvc catalogue-license lppl1.3 catalogue-topics foreign-import -catalogue-version 1.1 +catalogue-version 1.2 name texware category TLCore -revision 70015 +revision 73848 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 @@ -302729,7 +306208,7 @@ longdesc program's "pool" (string) file into human-readable form; and longdesc tftopl and pltotf, which convert TeX Font Metric (TFM) file to longdesc human readable Property List (PL) files and vice versa. depend texware.ARCH -docfiles size=13 +docfiles size=14 texmf-dist/doc/man/man1/dvitype.1 texmf-dist/doc/man/man1/dvitype.man1.pdf texmf-dist/doc/man/man1/pooltype.1 @@ -302743,7 +306222,7 @@ catalogue-topics debug-supp name texware.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of texware binfiles arch=aarch64-linux size=36 bin/aarch64-linux/dvitype @@ -302751,7 +306230,7 @@ binfiles arch=aarch64-linux size=36 name texware.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of texware binfiles arch=amd64-freebsd size=44 bin/amd64-freebsd/dvitype @@ -302759,7 +306238,7 @@ binfiles arch=amd64-freebsd size=44 name texware.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of texware binfiles arch=amd64-netbsd size=42 bin/amd64-netbsd/dvitype @@ -302767,15 +306246,15 @@ binfiles arch=amd64-netbsd size=42 name texware.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of texware -binfiles arch=armhf-linux size=29 +binfiles arch=armhf-linux size=25 bin/armhf-linux/dvitype bin/armhf-linux/pooltype name texware.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of texware binfiles arch=i386-freebsd size=44 bin/i386-freebsd/dvitype @@ -302783,15 +306262,15 @@ binfiles arch=i386-freebsd size=44 name texware.i386-linux category TLCore -revision 70571 +revision 73792 shortdesc i386-linux files of texware -binfiles arch=i386-linux size=38 +binfiles arch=i386-linux size=41 bin/i386-linux/dvitype bin/i386-linux/pooltype name texware.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of texware binfiles arch=i386-netbsd size=40 bin/i386-netbsd/dvitype @@ -302799,7 +306278,7 @@ binfiles arch=i386-netbsd size=40 name texware.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of texware binfiles arch=i386-solaris size=35 bin/i386-solaris/dvitype @@ -302807,7 +306286,7 @@ binfiles arch=i386-solaris size=35 name texware.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of texware binfiles arch=universal-darwin size=117 bin/universal-darwin/dvitype @@ -302815,7 +306294,7 @@ binfiles arch=universal-darwin size=117 name texware.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of texware binfiles arch=windows size=14 bin/windows/dvitype.exe @@ -302823,7 +306302,7 @@ binfiles arch=windows size=14 name texware.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of texware binfiles arch=x86_64-cygwin size=15 bin/x86_64-cygwin/dvitype.exe @@ -302831,31 +306310,31 @@ binfiles arch=x86_64-cygwin size=15 name texware.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of texware -binfiles arch=x86_64-darwinlegacy size=35 +binfiles arch=x86_64-darwinlegacy size=36 bin/x86_64-darwinlegacy/dvitype bin/x86_64-darwinlegacy/pooltype name texware.x86_64-linux category TLCore -revision 70571 +revision 73777 shortdesc x86_64-linux files of texware -binfiles arch=x86_64-linux size=35 +binfiles arch=x86_64-linux size=37 bin/x86_64-linux/dvitype bin/x86_64-linux/pooltype name texware.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of texware -binfiles arch=x86_64-linuxmusl size=37 +binfiles arch=x86_64-linuxmusl size=38 bin/x86_64-linuxmusl/dvitype bin/x86_64-linuxmusl/pooltype name texware.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of texware binfiles arch=x86_64-solaris size=42 bin/x86_64-solaris/dvitype @@ -302878,9 +306357,9 @@ docfiles size=1 name texworks.windows category TLCore -revision 69823 +revision 73973 shortdesc windows files of texworks -binfiles arch=windows size=15302 +binfiles arch=windows size=15440 bin/windows/texworks.exe tlpkg/texworks/COPYING tlpkg/texworks/README.txt @@ -303700,7 +307179,7 @@ catalogue-version 0.1 name thematicpuzzle category Package -revision 69356 +revision 73069 shortdesc Horizontal banners in a puzzle style longdesc With this package it is possible to create a horizontal banner longdesc in the form of a puzzle. There are some predefined themes. @@ -303712,8 +307191,6 @@ docfiles size=112 texmf-dist/doc/latex/thematicpuzzle/thematicpuzzle-doc-fr.tex runfiles size=3 texmf-dist/tex/latex/thematicpuzzle/thematicpuzzle.sty -catalogue-contact-bugs https://github.com/cpierquet/thematicpuzzle/issues -catalogue-contact-repository https://github.com/cpierquet/thematicpuzzle catalogue-ctan /graphics/pgf/contrib/thematicpuzzle catalogue-license lppl1.3c catalogue-topics symbol-supp @@ -303973,30 +307450,6 @@ catalogue-ctan /macros/latex/contrib/thmbox catalogue-license lppl catalogue-topics maths-theorem decoration -name thmlist -category Package -revision 70780 -shortdesc A LaTeX package for adding theorem environments quickly -longdesc This package provides a simple way for adding theorem -longdesc environments quickly. Welcome to feedback bugs or ideas via -longdesc email to xiamyphys@gmail.com. -docfiles size=69 - texmf-dist/doc/latex/thmlist/License - texmf-dist/doc/latex/thmlist/README.md details="Readme" - texmf-dist/doc/latex/thmlist/thmlist.pdf details="Package documentation" - texmf-dist/doc/latex/thmlist/thmlist.tex -runfiles size=1 - texmf-dist/tex/latex/thmlist/thmlist.sty -catalogue-contact-announce https://t.me/hsiastexcafe -catalogue-contact-bugs https://github.com/xiamyphys/thmlist/issues -catalogue-contact-development https://github.com/xiamyphys -catalogue-contact-repository https://github.com/xiamyphys/thmlist -catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC -catalogue-ctan /macros/latex/contrib/thmlist -catalogue-license lppl1.3c -catalogue-topics maths maths-theorem -catalogue-version 0.1b - name thmtools category Package revision 67018 @@ -304585,7 +308038,7 @@ catalogue-version 2.0.0 name tie category TLCore -revision 70015 +revision 73848 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 @@ -304603,107 +308056,107 @@ catalogue-version 2.4 name tie.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of tie binfiles arch=aarch64-linux size=21 bin/aarch64-linux/tie name tie.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of tie binfiles arch=amd64-freebsd size=26 bin/amd64-freebsd/tie name tie.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of tie binfiles arch=amd64-netbsd size=25 bin/amd64-netbsd/tie name tie.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of tie -binfiles arch=armhf-linux size=17 +binfiles arch=armhf-linux size=14 bin/armhf-linux/tie name tie.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of tie binfiles arch=i386-freebsd size=26 bin/i386-freebsd/tie name tie.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of tie -binfiles arch=i386-linux size=24 +binfiles arch=i386-linux size=26 bin/i386-linux/tie name tie.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of tie -binfiles arch=i386-netbsd size=23 +binfiles arch=i386-netbsd size=24 bin/i386-netbsd/tie name tie.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of tie -binfiles arch=i386-solaris size=19 +binfiles arch=i386-solaris size=20 bin/i386-solaris/tie name tie.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of tie binfiles arch=universal-darwin size=63 bin/universal-darwin/tie name tie.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of tie binfiles arch=windows size=4 bin/windows/tie.exe name tie.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of tie binfiles arch=x86_64-cygwin size=4 bin/x86_64-cygwin/tie.exe name tie.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of tie binfiles arch=x86_64-darwinlegacy size=20 bin/x86_64-darwinlegacy/tie name tie.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of tie binfiles arch=x86_64-linux size=22 bin/x86_64-linux/tie name tie.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of tie -binfiles arch=x86_64-linuxmusl size=21 +binfiles arch=x86_64-linuxmusl size=22 bin/x86_64-linuxmusl/tie name tie.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of tie -binfiles arch=x86_64-solaris size=23 +binfiles arch=x86_64-solaris size=24 bin/x86_64-solaris/tie name tiet-question-paper @@ -304862,6 +308315,26 @@ catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz catalogue-version 0.1 +name tikz-bpmn +category Package +revision 73368 +shortdesc A TikZ library for creating BPMN models +longdesc This package provides primitives for drawing Business Process +longdesc Modelling and Notation (BPMN) models. It includes tasks, +longdesc subprocesses, events, task markers and gateways. The symbols +longdesc aim to follow the BPMN standard as closely as possible. Please +longdesc refer to the documentation for further information. +docfiles size=18 + texmf-dist/doc/latex/tikz-bpmn/README.md details="Readme" + texmf-dist/doc/latex/tikz-bpmn/tikz-bpmn-doc.pdf details="Package documentation" + texmf-dist/doc/latex/tikz-bpmn/tikz-bpmn-doc.tex +runfiles size=19 + texmf-dist/tex/latex/tikz-bpmn/tikzlibrarybpmn.code.tex +catalogue-contact-home https://leemans.ch/latex/ +catalogue-ctan /graphics/pgf/contrib/tikz-bpmn +catalogue-license lppl1.3c +catalogue-topics pgf-tikz + name tikz-cd category Package revision 59133 @@ -304887,6 +308360,26 @@ catalogue-license lppl1.3 catalogue-topics graphics graphics-in-tex pgf-tikz diagram-comm catalogue-version 1.0 +name tikz-decofonts +category Package +revision 73717 +shortdesc Simple decoration fonts, made with TikZ, for short texts +longdesc Some simple "decoration" fonts made with TikZ, for short texts: +longdesc paint brush; ink brush; pixelart brush; bicolor texts. +docfiles size=58 + texmf-dist/doc/latex/tikz-decofonts/README.md details="Readme" + texmf-dist/doc/latex/tikz-decofonts/tikz-decofonts-doc.pdf details="Package documentation" + texmf-dist/doc/latex/tikz-decofonts/tikz-decofonts-doc.tex + texmf-dist/doc/latex/tikz-decofonts/tkzbrushA.pdf + texmf-dist/doc/latex/tikz-decofonts/tkzbrushA.tex +runfiles size=11 + texmf-dist/tex/latex/tikz-decofonts/tikz-decofonts.sty +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-ctan /graphics/pgf/contrib/tikz-decofonts +catalogue-license lppl1.3c cc-by-sa-4 +catalogue-topics amusements pgf-tikz graphics font-decor +catalogue-version 0.1.2 + name tikz-dependency category Package revision 54512 @@ -305830,6 +309323,26 @@ catalogue-license isc catalogue-topics pgf-tikz graphics diagram catalogue-version 0.7.1 +name tikz-triminos +category Package +revision 73533 +shortdesc Create triminos, made with TikZ +longdesc Create (1 or 9 or 12) TriMinos with some customizations: size, +longdesc font, logo, colors; automatic texts adjustment; full version, +longdesc or joker usage. Inspiration from Paul Matthies +docfiles size=45 + texmf-dist/doc/latex/tikz-triminos/README.md details="Readme" + texmf-dist/doc/latex/tikz-triminos/tikz-triminos-doc.pdf details="Package documentation" + texmf-dist/doc/latex/tikz-triminos/tikz-triminos-doc.tex +runfiles size=3 + texmf-dist/tex/latex/tikz-triminos/tikz-triminos.sty +catalogue-contact-home https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/packages-latex +catalogue-ctan /graphics/pgf/contrib/tikz-triminos +catalogue-license lppl1.3c +catalogue-topics games amusements pgf-tikz +catalogue-version 0.1.0 + name tikz-truchet category Package revision 50020 @@ -305854,7 +309367,7 @@ catalogue-topics pgf-tikz name tikz2d-fr category Package -revision 67239 +revision 73069 shortdesc Work with some 2D TikZ commands (French) longdesc This is a small package to work with some (French) 2D commands longdesc for TikZ: "freehand style" mainlevee define and mark points @@ -305866,8 +309379,6 @@ docfiles size=152 texmf-dist/doc/latex/tikz2d-fr/tikz2d-fr-doc.tex runfiles size=2 texmf-dist/tex/latex/tikz2d-fr/tikz2d-fr.sty -catalogue-contact-home https://github.com/cpierquet/tikz2dfr -catalogue-contact-support https://github.com/cpierquet/tikz2dfr/issues catalogue-ctan /graphics/pgf/contrib/tikz2d-fr catalogue-license lppl1.3c catalogue-topics pgf-tikz @@ -305875,26 +309386,24 @@ catalogue-version 0.1.1 name tikz3d-fr category Package -revision 67774 +revision 73199 shortdesc Work with some 3D figures longdesc This is a package for working with some 3D figures. -docfiles size=156 +docfiles size=192 texmf-dist/doc/latex/tikz3d-fr/README.md details="Readme" texmf-dist/doc/latex/tikz3d-fr/tikz3d-fr-doc.pdf details="Package documentation" texmf-dist/doc/latex/tikz3d-fr/tikz3d-fr-doc.tex -runfiles size=3 +runfiles size=5 texmf-dist/tex/latex/tikz3d-fr/tikz3d-fr.sty catalogue-also pst-solides3d -catalogue-contact-home https://github.com/cpierquet/tikz3dfr -catalogue-contact-support https://github.com/cpierquet/tikz3dfr/issues catalogue-ctan /graphics/pgf/contrib/tikz3d-fr catalogue-license lppl1.3c catalogue-topics graphics-3d pgf-tikz -catalogue-version 0.1.2 +catalogue-version 0.1.3 name tikzbricks category Package -revision 71097 +revision 73140 shortdesc Drawing bricks with TikZ longdesc A small LaTeX package to draw bricks with TikZ. The user can longdesc modify color, shape, and viewpoint. @@ -305902,13 +309411,13 @@ depend epstopdf-pkg depend iftex depend pgf depend tikz-3dplot -docfiles size=65 +docfiles size=68 texmf-dist/doc/latex/tikzbricks/DEPENDS.txt texmf-dist/doc/latex/tikzbricks/README.md details="Readme" + texmf-dist/doc/latex/tikzbricks/tikzbricks-doc-settings.sty texmf-dist/doc/latex/tikzbricks/tikzbricks-doc.pdf details="Package documentation" texmf-dist/doc/latex/tikzbricks/tikzbricks-doc.tex -runfiles size=4 - texmf-dist/tex/latex/tikzbricks/tikzbricks-doc-settings.sty +runfiles size=3 texmf-dist/tex/latex/tikzbricks/tikzbricks.sty catalogue-also tikzducks tikzmarmots tikzlings catalogue-contact-repository https://github.com/samcarter/tikzbricks @@ -305916,7 +309425,7 @@ 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.5 +catalogue-version 0.6 name tikzcodeblocks category Package @@ -305948,30 +309457,29 @@ catalogue-version 0.13 name tikzdotncross category Package -revision 69382 -shortdesc Small set of macros for defining/marking coordinates and crossing (jumps) paths +revision 73605 +shortdesc Marking coordinates and crossing paths longdesc This package offers a few alternative ways for declaring and longdesc marking coordinates and drawing a line with "jumps" over an -longdesc already existent path, which is a quite common issue when -longdesc drawing, for instace, Electronic Circuits (like with +longdesc already existent path, which is quite a common issue when +longdesc drawing, for instace, electronic circuits (like with longdesc CircuiTikZ). -docfiles size=64 +docfiles size=65 texmf-dist/doc/latex/tikzdotncross/README.md details="Readme" texmf-dist/doc/latex/tikzdotncross/tikzdotncross.pdf details="Package documentation" texmf-dist/doc/latex/tikzdotncross/tikzdotncross.tex -runfiles size=2 +runfiles size=3 texmf-dist/tex/latex/tikzdotncross/tikzdotncross.sty catalogue-contact-bugs https://github.com/alceu-frigeri/tikzdotncross/issues -catalogue-contact-development https://github.com/alceu-frigeri/tikzdotncross catalogue-contact-repository https://github.com/alceu-frigeri/tikzdotncross catalogue-ctan /graphics/pgf/contrib/tikzdotncross catalogue-license lppl1.3c gpl3+ -catalogue-topics pgf-tikz graphics diagram-circ electronic -catalogue-version 1.1 +catalogue-topics pgf-tikz graphics diagram-circ electronic expl3 +catalogue-version 1.2c name tikzducks category Package -revision 71098 +revision 73659 shortdesc A little fun package for using rubber ducks in TikZ longdesc The package is a LaTeX package for ducks to be used in TikZ longdesc pictures. This project is a continuation of an answer at @@ -305979,25 +309487,22 @@ longdesc StackExchange How we can draw a duck? depend epstopdf-pkg depend iftex depend pgf -docfiles size=115 - texmf-dist/doc/generic/tikzducks/DEPENDS.txt - texmf-dist/doc/generic/tikzducks/README.md details="Readme" - texmf-dist/doc/generic/tikzducks/tikzducks-doc-settings.sty - texmf-dist/doc/generic/tikzducks/tikzducks-doc.pdf details="Package documentation" - texmf-dist/doc/generic/tikzducks/tikzducks-doc.tex -runfiles size=30 - texmf-dist/tex/generic/tikzducks/t-tikzducks.mkiv - texmf-dist/tex/generic/tikzducks/tikzducks-generic.tex - texmf-dist/tex/generic/tikzducks/tikzducks-plain.tex - texmf-dist/tex/generic/tikzducks/tikzducks.sty - texmf-dist/tex/generic/tikzducks/tikzlibraryducks.code.tex +docfiles size=112 + texmf-dist/doc/latex/tikzducks/DEPENDS.txt + texmf-dist/doc/latex/tikzducks/README.md details="Readme" + texmf-dist/doc/latex/tikzducks/tikzducks-doc-settings.sty + texmf-dist/doc/latex/tikzducks/tikzducks-doc.pdf details="Package documentation" + texmf-dist/doc/latex/tikzducks/tikzducks-doc.tex +runfiles size=27 + texmf-dist/tex/latex/tikzducks/tikzducks.sty + texmf-dist/tex/latex/tikzducks/tikzlibraryducks.code.tex catalogue-also tikzlings tikzmarmots catalogue-contact-repository https://github.com/samcarter/tikzducks catalogue-contact-support https://github.com/samcarter/tikzducks/issues catalogue-ctan /graphics/pgf/contrib/tikzducks catalogue-license lppl1.3c catalogue-topics amusements graphics pgf-tikz expl3 -catalogue-version 1.8 +catalogue-version 2.0 name tikzfill category Package @@ -306052,22 +309557,30 @@ catalogue-version 1.0 name tikzlings category Package -revision 63628 +revision 73322 shortdesc A collection of cute little animals and similar creatures 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 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. -docfiles size=182 +longdesc coati elephant hippo koala marmot meerkat mole mouse owl panda +longdesc penguin pig rhino sheep sloth snowman squirrel wolf These +longdesc little drawings can be customized in many ways. +depend epstopdf-pkg +depend iftex +depend pgf +depend pgf-blur +docfiles size=226 + texmf-dist/doc/latex/tikzlings/DEPENDS.txt texmf-dist/doc/latex/tikzlings/README.md details="Readme" + texmf-dist/doc/latex/tikzlings/README.pdf + texmf-dist/doc/latex/tikzlings/tikzlings-doc-settings.sty texmf-dist/doc/latex/tikzlings/tikzlings-doc.pdf details="Package documentation" texmf-dist/doc/latex/tikzlings/tikzlings-doc.tex -runfiles size=97 +runfiles size=111 texmf-dist/tex/latex/tikzlings/tikzlibrarytikzlings.code.tex texmf-dist/tex/latex/tikzlings/tikzlings-addons.sty texmf-dist/tex/latex/tikzlings/tikzlings-anteaters.sty + texmf-dist/tex/latex/tikzlings/tikzlings-apes.sty texmf-dist/tex/latex/tikzlings/tikzlings-bats.sty texmf-dist/tex/latex/tikzlings/tikzlings-bears.sty texmf-dist/tex/latex/tikzlings/tikzlings-bees.sty @@ -306080,6 +309593,7 @@ runfiles size=97 texmf-dist/tex/latex/tikzlings/tikzlings-koalas.sty texmf-dist/tex/latex/tikzlings/tikzlings-list.sty texmf-dist/tex/latex/tikzlings/tikzlings-marmots.sty + texmf-dist/tex/latex/tikzlings/tikzlings-meerkats.sty texmf-dist/tex/latex/tikzlings/tikzlings-mice.sty texmf-dist/tex/latex/tikzlings/tikzlings-moles.sty texmf-dist/tex/latex/tikzlings/tikzlings-owls.sty @@ -306099,7 +309613,7 @@ 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 expl3 -catalogue-version 1.0 +catalogue-version 2.2 name tikzmark category Package @@ -306129,14 +309643,14 @@ catalogue-version 1.15 name tikzmarmots category Package -revision 71076 +revision 73100 shortdesc Drawing little marmots in TikZ longdesc This is a LaTeX package for marmots to be used in TikZ longdesc pictures. These little figures are constructed in such a way longdesc that they may even "borrow" some accessories and other longdesc attributes from the TikZlings package. depend tikzlings -docfiles size=58 +docfiles size=60 texmf-dist/doc/latex/tikzmarmots/DEPENDS.txt texmf-dist/doc/latex/tikzmarmots/README.md details="Readme" texmf-dist/doc/latex/tikzmarmots/tikzmarmots-doc-settings.sty @@ -306152,7 +309666,7 @@ catalogue-contact-support https://github.com/samcarter/tikzmarmots/issues catalogue-ctan /graphics/pgf/contrib/tikzmarmots catalogue-license lppl1.3c catalogue-topics amusements graphics pgf-tikz expl3 -catalogue-version 2.1 +catalogue-version 2.2 name tikzorbital category Package @@ -306288,47 +309802,25 @@ catalogue-version 1.0 name tikzpingus category Package -revision 68310 +revision 72990 shortdesc Penguins with TikZ -longdesc tikzpingus is a package similar to tikzducks but with penguins +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). -docfiles size=1278 +docfiles size=1324 texmf-dist/doc/latex/tikzpingus/README.md details="Readme" texmf-dist/doc/latex/tikzpingus/tikzpingus-doc.pdf details="Package documentation" texmf-dist/doc/latex/tikzpingus/tikzpingus-doc.tex -runfiles size=77 +runfiles size=68 texmf-dist/makeindex/tikzpingus/indexstyle.ist - texmf-dist/tex/latex/tikzpingus/tikzpingus-bee.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-christmas.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-cloak.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-devil.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-emotions.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-flags.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-formal.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-fun.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-glasses.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-hats.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-horse.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-magic.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-medieval.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-movement.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-safe.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-science-fiction.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-shirts.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-signs.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-sport.lib.tex - texmf-dist/tex/latex/tikzpingus/tikzpingus-technology.lib.tex texmf-dist/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.1 +catalogue-version 1.2 name tikzposter category Package @@ -306363,7 +309855,7 @@ catalogue-version 2.0 name tikzquads category Package -revision 69409 +revision 72580 shortdesc A few shapes designed to be used with CircuiTikZ longdesc This package defines a few extra shapes, Quadripoles and single longdesc port, which can be used 'standalone', but are mainly meant to @@ -306379,11 +309871,11 @@ catalogue-contact-repository https://github.com/alceu-frigeri/tikzquads catalogue-ctan /graphics/pgf/contrib/tikzquads catalogue-license lppl1.3c other-free catalogue-topics graphics diagram-circ pgf-tikz electronic -catalogue-version 1.0 +catalogue-version 1.1 name tikzquests category Package -revision 69388 +revision 73386 shortdesc A parametric questions' repositories framework longdesc This is a framework for building parametric questions' longdesc repositories, which can be further used to construct parametric @@ -306391,7 +309883,7 @@ longdesc questions for exams. Unlike other packages of the kind this longdesc does not try to enforce any pre-defined presentation format, longdesc focusing only on how to set a repository of questions and use longdesc them. -docfiles size=95 +docfiles size=96 texmf-dist/doc/latex/tikzquests/README.md details="Readme" texmf-dist/doc/latex/tikzquests/tikzquests.pdf details="Package documentation" texmf-dist/doc/latex/tikzquests/tikzquests.tex @@ -306402,7 +309894,7 @@ catalogue-contact-repository https://github.com/alceu-frigeri/tikzquests catalogue-ctan /macros/latex/contrib/tikzquests catalogue-license lppl1.3c gpl3+ catalogue-topics exam keyval pgf-tikz expl3 -catalogue-version 1.1 +catalogue-version 1.2 name tikzscale category Package @@ -306701,6 +310193,46 @@ catalogue-license lppl1.3c catalogue-topics watermark catalogue-version 2.0 +name timechart +category Package +revision 74010 +shortdesc A package for drawing chronological charts +longdesc This package provides for the easy creation of chronological +longdesc charts which show visually the relative historical positions of +longdesc people and events. Each event or period can be specified by a +longdesc single line of LaTeX code comprising (possibly uncertain) start +longdesc and finish dates and a label, and the package takes care of +longdesc indicating the uncertainties and whether intervals extend +longdesc beyond the specified bounds of the chart. +docfiles size=196 + texmf-dist/doc/latex/timechart/README.md details="Readme" + texmf-dist/doc/latex/timechart/timechart-doc.pdf details="Package documentation" +srcfiles size=30 + texmf-dist/source/latex/timechart/timechart.dtx + texmf-dist/source/latex/timechart/timechart.ins +runfiles size=14 + texmf-dist/tex/latex/timechart/timechart.sty +catalogue-ctan /graphics/pgf/contrib/timechart +catalogue-license lppl1.3c +catalogue-topics genchart diagram-tmg pgf-tikz expl3 +catalogue-version 0.51 + +name timeop +category Package +revision 73069 +shortdesc Calculates and displays arithmetic operations with durations +longdesc This package can be used to add and subtract time information. +docfiles size=101 + texmf-dist/doc/latex/timeop/README.md details="Readme" + texmf-dist/doc/latex/timeop/timeop-doc.pdf details="Package documentation" + texmf-dist/doc/latex/timeop/timeop-doc.tex +runfiles size=2 + texmf-dist/tex/latex/timeop/timeop.sty +catalogue-ctan /macros/latex/contrib/timeop +catalogue-license lppl1.3c +catalogue-topics arithmetic date-time +catalogue-version 0.1.0 + name times category Package revision 61719 @@ -307473,7 +311005,7 @@ catalogue-version 3.1 name titlesec category Package -revision 68677 +revision 73302 shortdesc Select alternative section titles longdesc A package providing an interface to sectioning commands for longdesc selection from various title styles. E.g., marginal titles and @@ -307498,7 +311030,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.16 +catalogue-version 2.17 name titling category Package @@ -307763,7 +311295,7 @@ catalogue-version 2.0 name tkz-bernoulli category Package -revision 68780 +revision 73069 shortdesc Draw Bernoulli trees with TikZ longdesc This is a package for representing Bernoulli trees with longdesc PGF/TikZ. @@ -307773,9 +311305,6 @@ docfiles size=53 texmf-dist/doc/latex/tkz-bernoulli/tkz-bernoulli-doc.tex runfiles size=3 texmf-dist/tex/latex/tkz-bernoulli/tkz-bernoulli.sty -catalogue-contact-home https://github.com/cpierquet/tkz-bernoulli -catalogue-contact-repository https://github.com/cpierquet/tkz-bernoulli -catalogue-contact-support https://github.com/cpierquet/tkz-bernoulli/issues catalogue-ctan /graphics/pgf/contrib/tkz-bernoulli catalogue-license lppl1.3c catalogue-topics tree @@ -307804,7 +311333,7 @@ catalogue-version 1.45c name tkz-elements category Package -revision 71130 +revision 73362 shortdesc A Lua library for drawing Euclidean geometry with TikZ or tkz-euclide longdesc This package provides a library written in Lua, allowing to longdesc make all the necessary calculations to define the objects of a @@ -307814,7 +311343,7 @@ longdesc main possibility of programmation proposed is oriented "object longdesc programming" with object classes like point, line, triangle, longdesc circle and ellipse. For the moment, once the calculations are longdesc done, it is tkz-euclide or TikZ which allows the drawings. -docfiles size=321 +docfiles size=430 texmf-dist/doc/latex/tkz-elements/README.md details="Readme" texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-classes-circle.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-classes-ellipse.tex @@ -307836,12 +311365,15 @@ docfiles size=321 texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-intersection.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-inversion.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-main.tex + texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-news.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-organization.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-presentation.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-structure.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-tests.tex + texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-theorems.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-transfers.tex texmf-dist/doc/latex/tkz-elements/TKZdoc-elements-why.tex + texmf-dist/doc/latex/tkz-elements/examples/search_circle.lua texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_1.pdf texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_1.tex texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_2.pdf @@ -307850,10 +311382,14 @@ docfiles size=321 texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_3.tex texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_4.pdf texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_4.tex + texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_5.pdf + texmf-dist/doc/latex/tkz-elements/examples/tkz-elements-demo_5.tex texmf-dist/doc/latex/tkz-elements/gold_preamble.lua texmf-dist/doc/latex/tkz-elements/sangaku.lua + texmf-dist/doc/latex/tkz-elements/search_circle.lua texmf-dist/doc/latex/tkz-elements/tkz-elements.pdf details="Package documentation" -runfiles size=42 + texmf-dist/doc/latex/tkz-elements/tmp.table +runfiles size=46 texmf-dist/tex/latex/tkz-elements/tkz-elements.sty texmf-dist/tex/latex/tkz-elements/tkz_elements_circle.lua texmf-dist/tex/latex/tkz-elements/tkz_elements_class.lua @@ -307882,7 +311418,7 @@ catalogue-contact-home https://altermundus.fr catalogue-ctan /macros/latex/contrib/tkz/tkz-elements catalogue-license lppl1.3 catalogue-topics maths calculation luatex -catalogue-version 2.25c +catalogue-version 3.10c name tkz-euclide category Package @@ -308054,7 +311590,7 @@ catalogue-version 2.0 name tkz-grapheur category Package -revision 71590 +revision 72701 shortdesc A LaTeX package with tools for graph plotting (and TikZ) longdesc This package provides some commands to help French mathematics longdesc teachers for 15-18 years olds, with graphs of functions: define @@ -308062,7 +311598,7 @@ longdesc and draw functions and interpolations curves work with longdesc integrals, tangents, intersersections get coordinates of points longdesc ... The syntax is rather explicit, like \DefinirCourbe, longdesc \RecupererCoordonnees,\TrouverIntersections, etc. -docfiles size=493 +docfiles size=767 texmf-dist/doc/latex/tkz-grapheur/README.md details="Readme" texmf-dist/doc/latex/tkz-grapheur/tkz-grapheur-doc-en.pdf details="Package documentation (English)" language="en" texmf-dist/doc/latex/tkz-grapheur/tkz-grapheur-doc-en.tex @@ -308072,13 +311608,13 @@ docfiles size=493 texmf-dist/doc/latex/tkz-grapheur/tkz-grapheur-examples-integrals.tex texmf-dist/doc/latex/tkz-grapheur/tkz-grapheur-exemples-integrales.pdf details="Example of use (French)" language="fr" texmf-dist/doc/latex/tkz-grapheur/tkz-grapheur-exemples-integrales.tex -runfiles size=37 +runfiles size=42 texmf-dist/tex/latex/tkz-grapheur/tkz-grapheur.sty catalogue-contact-repository https://forge.apps.education.fr/pierquetcedric/package-latex-tkz-grapheur catalogue-ctan /graphics/pgf/contrib/tkz-grapheur catalogue-license lppl1.3c catalogue-topics graphics maths graphics-plotfn pgf-tikz -catalogue-version 0.1.5 +catalogue-version 0.2.0 name tkz-orm category Package @@ -310816,7 +314352,7 @@ binfiles arch=x86_64-solaris size=1 name tlgs.windows category TLCore -revision 71290 +revision 72323 catalogue ghostscript shortdesc Freely available PostScript interpreter longdesc Ghostscript is a freely available PostScript interpreter which @@ -310825,7 +314361,7 @@ 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. -runfiles size=8023 +runfiles size=8053 texmf-dist/scripts/tlgs/eps2eps.lua texmf-dist/scripts/tlgs/pdf2dsc.lua texmf-dist/scripts/tlgs/pdf2ps.lua @@ -313162,7 +316698,7 @@ runfiles size=21850 name tlshell category TLCore -revision 70419 +revision 73297 shortdesc GUI frontend (tcl/tk-based) for tlmgr depend tlshell.ARCH postaction shortcut type=menu name="TLShell TeX Live Manager" cmd=TEXDIR/bin/windows/tlshell.exe @@ -314336,7 +317872,7 @@ binfiles arch=x86_64-solaris size=1 name to-be-determined category Package -revision 64882 +revision 72527 shortdesc Highlight text passages that need further work longdesc This package provides a single command \tbd which highlights longdesc the pieces of text that need to be rewritten later. You can @@ -314344,7 +317880,7 @@ 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 -docfiles size=65 +docfiles size=67 texmf-dist/doc/latex/to-be-determined/DEPENDS.txt texmf-dist/doc/latex/to-be-determined/LICENSE.txt texmf-dist/doc/latex/to-be-determined/README.md details="Readme" @@ -314354,12 +317890,11 @@ srcfiles size=3 texmf-dist/source/latex/to-be-determined/to-be-determined.ins runfiles size=1 texmf-dist/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 +catalogue-version 0.3.2 name tocbibind category Package @@ -314613,7 +318148,7 @@ catalogue-version 5.1 name tools category Package -revision 71523 +revision 72739 catalogue latex-tools shortdesc The LaTeX standard tools bundle longdesc A collection of (variously) simple tools provided as part of @@ -314622,7 +318157,7 @@ longdesc afterpage, array, bm, calc, dcolumn, delarray, enumerate, longdesc fileerr, fontsmpl, ftnright, hhline, indentfirst, layout, longdesc longtable, multicol, rawfonts, shellesc, showkeys, somedefs, longdesc tabularx, theorem, trace, varioref, verbatim, xr, and xspace. -docfiles size=2004 +docfiles size=2014 texmf-dist/doc/latex/tools/README.md details="Readme" texmf-dist/doc/latex/tools/afterpage.pdf texmf-dist/doc/latex/tools/array.pdf @@ -314655,7 +318190,7 @@ docfiles size=2004 texmf-dist/doc/latex/tools/verbatim.pdf texmf-dist/doc/latex/tools/xr.pdf texmf-dist/doc/latex/tools/xspace.pdf -srcfiles size=285 +srcfiles size=289 texmf-dist/source/latex/tools/afterpage.dtx texmf-dist/source/latex/tools/afterpage.ins texmf-dist/source/latex/tools/array.dtx @@ -314691,7 +318226,7 @@ srcfiles size=285 texmf-dist/source/latex/tools/verbatim.dtx texmf-dist/source/latex/tools/xr.dtx texmf-dist/source/latex/tools/xspace.dtx -runfiles size=128 +runfiles size=129 texmf-dist/tex/latex/tools/.tex texmf-dist/tex/latex/tools/afterpage.sty texmf-dist/tex/latex/tools/array-2016-10-06.sty @@ -314745,7 +318280,6 @@ runfiles size=128 catalogue-ctan /macros/latex/required/tools catalogue-license lppl1.3c catalogue-topics collection -catalogue-version 2024-06-01a name topfloat category Package @@ -314818,7 +318352,7 @@ catalogue-version 0.3.0 name toptesi category Package -revision 56276 +revision 73464 shortdesc Bundle for typesetting multilanguage theses longdesc This bundle contains everything needed for typesetting a longdesc bachelor, master, or PhD thesis in Italian (or in any other @@ -314832,7 +318366,7 @@ longdesc more and more frequent thanks to the double degree programs of longdesc the European Community Socrates programs. Toptesi is designed longdesc to save the PDF version of a thesis in PDF/A-1b compliant mode longdesc and with all the necessary metadata. -docfiles size=2186 +docfiles size=2217 texmf-dist/doc/latex/toptesi/FrontespiziAssemblati.pdf texmf-dist/doc/latex/toptesi/FrontespiziAssemblati1.pdf texmf-dist/doc/latex/toptesi/FrontespiziAssemblati2.pdf @@ -314898,7 +318432,7 @@ runfiles size=40 catalogue-ctan /macros/latex/contrib/toptesi catalogue-license lppl1.3c catalogue-topics dissertation class multilingual -catalogue-version 6.4.06 +catalogue-version 6.4.07 name totalcount category Package @@ -314972,8 +318506,8 @@ catalogue-topics label-ref typesetting catalogue-version 2.00 name tpic2pdftex -category TLCore -revision 52851 +category Package +revision 73908 shortdesc Use tpic commands in pdfTeX longdesc The AWK script converts pic language, embedded inline longdesc (delimited by .PS and .PE markers), to \pdfliteral commands. @@ -314981,108 +318515,108 @@ depend tpic2pdftex.ARCH docfiles size=26 texmf-dist/doc/man/man1/tpic2pdftex.1 texmf-dist/doc/man/man1/tpic2pdftex.man1.pdf - texmf-dist/doc/tpic2pdftex/Makefile - texmf-dist/doc/tpic2pdftex/beamerexample.pdf - texmf-dist/doc/tpic2pdftex/beamerexample.pic - texmf-dist/doc/tpic2pdftex/example.pdf - texmf-dist/doc/tpic2pdftex/example.pic + texmf-dist/doc/support/tpic2pdftex/Makefile + texmf-dist/doc/support/tpic2pdftex/beamerexample.pdf + texmf-dist/doc/support/tpic2pdftex/beamerexample.pic + texmf-dist/doc/support/tpic2pdftex/example.pdf + texmf-dist/doc/support/tpic2pdftex/example.pic catalogue-ctan /graphics/tpic2pdftex catalogue-license gpl catalogue-topics graphics-prep name tpic2pdftex.aarch64-linux -category TLCore -revision 46208 +category Package +revision 73915 shortdesc aarch64-linux files of tpic2pdftex binfiles arch=aarch64-linux size=4 bin/aarch64-linux/tpic2pdftex name tpic2pdftex.amd64-freebsd -category TLCore +category Package revision 69782 shortdesc amd64-freebsd files of tpic2pdftex binfiles arch=amd64-freebsd size=4 bin/amd64-freebsd/tpic2pdftex name tpic2pdftex.amd64-netbsd -category TLCore +category Package revision 30191 shortdesc amd64-netbsd files of tpic2pdftex binfiles arch=amd64-netbsd size=4 bin/amd64-netbsd/tpic2pdftex name tpic2pdftex.armhf-linux -category TLCore -revision 70489 +category Package +revision 73793 shortdesc armhf-linux files of tpic2pdftex binfiles arch=armhf-linux size=4 bin/armhf-linux/tpic2pdftex name tpic2pdftex.i386-freebsd -category TLCore +category Package revision 69782 shortdesc i386-freebsd files of tpic2pdftex binfiles arch=i386-freebsd size=4 bin/i386-freebsd/tpic2pdftex name tpic2pdftex.i386-linux -category TLCore +category Package revision 50281 shortdesc i386-linux files of tpic2pdftex binfiles arch=i386-linux size=4 bin/i386-linux/tpic2pdftex name tpic2pdftex.i386-netbsd -category TLCore +category Package revision 30191 shortdesc i386-netbsd files of tpic2pdftex binfiles arch=i386-netbsd size=4 bin/i386-netbsd/tpic2pdftex name tpic2pdftex.i386-solaris -category TLCore +category Package revision 69782 shortdesc i386-solaris files of tpic2pdftex binfiles arch=i386-solaris size=4 bin/i386-solaris/tpic2pdftex name tpic2pdftex.universal-darwin -category TLCore +category Package revision 57908 shortdesc universal-darwin files of tpic2pdftex binfiles arch=universal-darwin size=4 bin/universal-darwin/tpic2pdftex name tpic2pdftex.x86_64-cygwin -category TLCore +category Package revision 33557 shortdesc x86_64-cygwin files of tpic2pdftex binfiles arch=x86_64-cygwin size=4 bin/x86_64-cygwin/tpic2pdftex name tpic2pdftex.x86_64-darwinlegacy -category TLCore +category Package revision 43871 shortdesc x86_64-darwinlegacy files of tpic2pdftex binfiles arch=x86_64-darwinlegacy size=4 bin/x86_64-darwinlegacy/tpic2pdftex name tpic2pdftex.x86_64-linux -category TLCore +category Package revision 50281 shortdesc x86_64-linux files of tpic2pdftex binfiles arch=x86_64-linux size=4 bin/x86_64-linux/tpic2pdftex name tpic2pdftex.x86_64-linuxmusl -category TLCore +category Package revision 54264 shortdesc x86_64-linuxmusl files of tpic2pdftex binfiles arch=x86_64-linuxmusl size=4 bin/x86_64-linuxmusl/tpic2pdftex name tpic2pdftex.x86_64-solaris -category TLCore +category Package revision 69782 shortdesc x86_64-solaris files of tpic2pdftex binfiles arch=x86_64-solaris size=4 @@ -315149,7 +318683,7 @@ catalogue-version 2.3 name tracklang category Package -revision 65263 +revision 73600 shortdesc Language and dialect tracker longdesc The tracklang package is provided for package developers who longdesc want a simple interface to find out which languages the user @@ -315157,7 +318691,7 @@ 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. -docfiles size=798 +docfiles size=833 texmf-dist/doc/generic/tracklang/CHANGES texmf-dist/doc/generic/tracklang/README details="Readme" texmf-dist/doc/generic/tracklang/samples/animals/animals-en-GB.ldf @@ -315235,10 +318769,10 @@ docfiles size=798 texmf-dist/doc/generic/tracklang/tracklang-manual.html details="User manual (HTML)" texmf-dist/doc/generic/tracklang/tracklang-manual.pdf details="User manual (PDF)" texmf-dist/doc/generic/tracklang/tracklang-manual.tex -srcfiles size=77 +srcfiles size=82 texmf-dist/source/latex/tracklang/tracklang.dtx texmf-dist/source/latex/tracklang/tracklang.ins -runfiles size=47 +runfiles size=49 texmf-dist/tex/generic/tracklang/tracklang-region-codes.tex texmf-dist/tex/generic/tracklang/tracklang-scripts.tex texmf-dist/tex/generic/tracklang/tracklang.tex @@ -315249,7 +318783,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.6.1 +catalogue-version 1.6.4 name trajan category Package @@ -315309,7 +318843,7 @@ catalogue-version 0.2 name tramlines category Package -revision 65692 +revision 71842 shortdesc A package for creating tramlines (lines above and below a title used by lawyers in the UK) longdesc This package automatically creates tramlines (lines above and longdesc below a title used by lawyers in the UK and the Commonwealth). @@ -315323,7 +318857,7 @@ 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 +catalogue-version 1.1.1 name translation-array-fr category Package @@ -315898,24 +319432,22 @@ catalogue-version 1.3b name trivialpursuit category Package -revision 68971 +revision 73069 shortdesc Insert Trivial Pursuit board game longdesc This is a package to display a Trivial Pursuit board game, with longdesc customization. -docfiles size=145 +docfiles size=147 texmf-dist/doc/latex/trivialpursuit/README.md details="Readme" texmf-dist/doc/latex/trivialpursuit/TrivialPursuit-doc-en.pdf details="Package documentation (English)" texmf-dist/doc/latex/trivialpursuit/TrivialPursuit-doc-en.tex texmf-dist/doc/latex/trivialpursuit/TrivialPursuit-doc-fr.pdf details="Package documentation (French)" language="fr" texmf-dist/doc/latex/trivialpursuit/TrivialPursuit-doc-fr.tex -runfiles size=13 +runfiles size=29 texmf-dist/tex/latex/trivialpursuit/TrivialPursuit.sty -catalogue-contact-bugs https://github.com/cpierquet/trivialpursuit/issues -catalogue-contact-repository https://github.com/cpierquet/trivialpursuit catalogue-ctan /graphics/pgf/contrib/trivialpursuit catalogue-license lppl1.3c catalogue-topics games pgf-tikz graphics -catalogue-version 0.1.1 +catalogue-version 0.1.2 name trsym category Package @@ -316024,7 +319556,7 @@ catalogue-version 2022/1.0 name ttfutils category TLCore -revision 70015 +revision 73908 shortdesc convert TrueType to TFM and PK fonts longdesc Utilities: ttf2afm ttf2pk ttf2tfm ttfdump. FreeType is the longdesc underlying library. @@ -316038,9 +319570,9 @@ docfiles size=65 texmf-dist/doc/man/man1/ttf2tfm.man1.pdf texmf-dist/doc/man/man1/ttfdump.1 texmf-dist/doc/man/man1/ttfdump.man1.pdf - texmf-dist/doc/ttf2pk/ttf2pk.doc - texmf-dist/doc/ttf2pk/ttf2pk.txt - texmf-dist/doc/ttf2pk/ttf2tfm.txt + texmf-dist/doc/support/ttf2pk/ttf2pk.doc + texmf-dist/doc/support/ttf2pk/ttf2pk.txt + texmf-dist/doc/support/ttf2pk/ttf2tfm.txt runfiles size=219 texmf-dist/fonts/enc/ttf2pk/base/T1-WGL4.enc texmf-dist/fonts/sfd/ttf2pk/Big5.sfd @@ -316061,9 +319593,9 @@ runfiles size=219 name ttfutils.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of ttfutils -binfiles arch=aarch64-linux size=478 +binfiles arch=aarch64-linux size=476 bin/aarch64-linux/ttf2afm bin/aarch64-linux/ttf2pk bin/aarch64-linux/ttf2tfm @@ -316071,9 +319603,9 @@ binfiles arch=aarch64-linux size=478 name ttfutils.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of ttfutils -binfiles arch=amd64-freebsd size=620 +binfiles arch=amd64-freebsd size=618 bin/amd64-freebsd/ttf2afm bin/amd64-freebsd/ttf2pk bin/amd64-freebsd/ttf2tfm @@ -316081,7 +319613,7 @@ binfiles arch=amd64-freebsd size=620 name ttfutils.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of ttfutils binfiles arch=amd64-netbsd size=623 bin/amd64-netbsd/ttf2afm @@ -316091,9 +319623,9 @@ binfiles arch=amd64-netbsd size=623 name ttfutils.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of ttfutils -binfiles arch=armhf-linux size=371 +binfiles arch=armhf-linux size=299 bin/armhf-linux/ttf2afm bin/armhf-linux/ttf2pk bin/armhf-linux/ttf2tfm @@ -316101,9 +319633,9 @@ binfiles arch=armhf-linux size=371 name ttfutils.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of ttfutils -binfiles arch=i386-freebsd size=620 +binfiles arch=i386-freebsd size=618 bin/i386-freebsd/ttf2afm bin/i386-freebsd/ttf2pk bin/i386-freebsd/ttf2tfm @@ -316111,9 +319643,9 @@ binfiles arch=i386-freebsd size=620 name ttfutils.i386-linux category TLCore -revision 70276 +revision 73792 shortdesc i386-linux files of ttfutils -binfiles arch=i386-linux size=482 +binfiles arch=i386-linux size=512 bin/i386-linux/ttf2afm bin/i386-linux/ttf2pk bin/i386-linux/ttf2tfm @@ -316121,9 +319653,9 @@ binfiles arch=i386-linux size=482 name ttfutils.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of ttfutils -binfiles arch=i386-netbsd size=539 +binfiles arch=i386-netbsd size=541 bin/i386-netbsd/ttf2afm bin/i386-netbsd/ttf2pk bin/i386-netbsd/ttf2tfm @@ -316131,9 +319663,9 @@ binfiles arch=i386-netbsd size=539 name ttfutils.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of ttfutils -binfiles arch=i386-solaris size=425 +binfiles arch=i386-solaris size=427 bin/i386-solaris/ttf2afm bin/i386-solaris/ttf2pk bin/i386-solaris/ttf2tfm @@ -316141,7 +319673,7 @@ binfiles arch=i386-solaris size=425 name ttfutils.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of ttfutils binfiles arch=universal-darwin size=995 bin/universal-darwin/ttf2afm @@ -316151,9 +319683,9 @@ binfiles arch=universal-darwin size=995 name ttfutils.windows category TLCore -revision 70269 +revision 73796 shortdesc windows files of ttfutils -binfiles arch=windows size=378 +binfiles arch=windows size=377 bin/windows/ttf2afm.exe bin/windows/ttf2pk.exe bin/windows/ttf2tfm.exe @@ -316161,9 +319693,9 @@ binfiles arch=windows size=378 name ttfutils.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of ttfutils -binfiles arch=x86_64-cygwin size=380 +binfiles arch=x86_64-cygwin size=378 bin/x86_64-cygwin/ttf2afm.exe bin/x86_64-cygwin/ttf2pk.exe bin/x86_64-cygwin/ttf2tfm.exe @@ -316171,9 +319703,9 @@ binfiles arch=x86_64-cygwin size=380 name ttfutils.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of ttfutils -binfiles arch=x86_64-darwinlegacy size=428 +binfiles arch=x86_64-darwinlegacy size=426 bin/x86_64-darwinlegacy/ttf2afm bin/x86_64-darwinlegacy/ttf2pk bin/x86_64-darwinlegacy/ttf2tfm @@ -316181,9 +319713,9 @@ binfiles arch=x86_64-darwinlegacy size=428 name ttfutils.x86_64-linux category TLCore -revision 70276 +revision 73777 shortdesc x86_64-linux files of ttfutils -binfiles arch=x86_64-linux size=460 +binfiles arch=x86_64-linux size=464 bin/x86_64-linux/ttf2afm bin/x86_64-linux/ttf2pk bin/x86_64-linux/ttf2tfm @@ -316191,7 +319723,7 @@ binfiles arch=x86_64-linux size=460 name ttfutils.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of ttfutils binfiles arch=x86_64-linuxmusl size=505 bin/x86_64-linuxmusl/ttf2afm @@ -316201,9 +319733,9 @@ binfiles arch=x86_64-linuxmusl size=505 name ttfutils.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of ttfutils -binfiles arch=x86_64-solaris size=505 +binfiles arch=x86_64-solaris size=508 bin/x86_64-solaris/ttf2afm bin/x86_64-solaris/ttf2pk bin/x86_64-solaris/ttf2tfm @@ -316239,42 +319771,60 @@ catalogue-version 1.0 name tuda-ci category Package -revision 71696 +revision 73924 shortdesc LaTeX templates of Technische Universitat Darmstadt longdesc The TUDa-CI-Bundle provides a possibility to use the Corporate longdesc Design of TU Darmstadt in LaTeX. It contains documentclasses as longdesc well as some helper packages and config files together with longdesc some templates for user documentation, which currently are only longdesc available in German. -docfiles size=1751 +docfiles size=1695 texmf-dist/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.pdf texmf-dist/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf + texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf details="Example presentation" texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer2023.pdf details="Example presentation" language="de" - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer2023.tex texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBibliography.bib texmf-dist/doc/latex/tuda-ci/DEMO-TUDaExercise.pdf texmf-dist/doc/latex/tuda-ci/DEMO-TUDaExercise.tex texmf-dist/doc/latex/tuda-ci/DEMO-TUDaFromaddress.lco texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLeaflet.pdf texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLeaflet.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLetter.pdf details="Example letter" language="de" + texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLetter.pdf details="Example letter" texmf-dist/doc/latex/tuda-ci/DEMO-TUDaLetter.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPhD.pdf details="Example PhD thesis" language="de" + texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPhD.pdf details="Example PhD thesis" texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPhD.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPoster.pdf details="Example announcement poster" language="de" + texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPoster.pdf details="Example announcement poster" texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPoster.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPub.pdf details="Package documentation" language="de" + texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPub.pdf texmf-dist/doc/latex/tuda-ci/DEMO-TUDaPub.tex texmf-dist/doc/latex/tuda-ci/DEMO-TUDaReport.pdf texmf-dist/doc/latex/tuda-ci/DEMO-TUDaReport.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaSciPoster.pdf details="Example scientific poster" language="de" + texmf-dist/doc/latex/tuda-ci/DEMO-TUDaSciPoster.pdf details="Example scientific poster" texmf-dist/doc/latex/tuda-ci/DEMO-TUDaSciPoster.tex - texmf-dist/doc/latex/tuda-ci/DEMO-TUDaThesis.pdf details="Example bachelor's thesis" language="de" + texmf-dist/doc/latex/tuda-ci/DEMO-TUDaThesis.pdf details="Example bachelor's thesis" texmf-dist/doc/latex/tuda-ci/DEMO-TUDaThesis.tex + texmf-dist/doc/latex/tuda-ci/MANIFEST.md texmf-dist/doc/latex/tuda-ci/README.md details="Readme" -runfiles size=95 + texmf-dist/doc/latex/tuda-ci/tuda-ci.pdf details="Package documentation" +srcfiles size=97 + texmf-dist/source/latex/tuda-ci/beamercolorthemeTUDa.dtx + texmf-dist/source/latex/tuda-ci/beamerfontthemeTUDa.dtx + texmf-dist/source/latex/tuda-ci/beamerinnerthemeTUDa.dtx + texmf-dist/source/latex/tuda-ci/beamerouterthemeTUDa.dtx + texmf-dist/source/latex/tuda-ci/beamerthemeTUDa2008.dtx + texmf-dist/source/latex/tuda-ci/tuda-ci.dtx + texmf-dist/source/latex/tuda-ci/tuda-ci.ins + texmf-dist/source/latex/tuda-ci/tudabeamer.dtx + texmf-dist/source/latex/tuda-ci/tudacolors.dtx + texmf-dist/source/latex/tuda-ci/tudaexercise.dtx + texmf-dist/source/latex/tuda-ci/tudafonts.dtx + texmf-dist/source/latex/tuda-ci/tudaleaflet.dtx + texmf-dist/source/latex/tuda-ci/tudaletter.dtx + texmf-dist/source/latex/tuda-ci/tudaposter.dtx + texmf-dist/source/latex/tuda-ci/tudarules.dtx + texmf-dist/source/latex/tuda-ci/tudasciposter.dtx + texmf-dist/source/latex/tuda-ci/tudasize.dtx +runfiles size=102 texmf-dist/tex/latex/tuda-ci/beamercolorthemeTUDa.sty texmf-dist/tex/latex/tuda-ci/beamercolorthemeTUDa2008.sty texmf-dist/tex/latex/tuda-ci/beamerfontthemeTUDa.sty @@ -316317,7 +319867,7 @@ catalogue-contact-repository https://github.com/tudace/tuda_latex_templates catalogue-ctan /macros/latex/contrib/tuda-ci catalogue-license lppl1.3c catalogue-topics class doc-templ letter dissertation presentation poster std-conform -catalogue-version 3.41 +catalogue-version 4.01 name tudscr category Package @@ -316526,12 +320076,12 @@ catalogue-version 3.5.2 name tugboat category Package -revision 70959 +revision 72711 shortdesc LaTeX macros for TUGboat articles longdesc Provides ltugboat.cls for both regular and proceedings issues longdesc of the TUGboat journal. Also provides a BibTeX style, longdesc tugboat.bst. -docfiles size=222 +docfiles size=223 texmf-dist/doc/latex/tugboat/NEWS texmf-dist/doc/latex/tugboat/README details="Readme" texmf-dist/doc/latex/tugboat/ltubguid.ltx @@ -316556,16 +320106,16 @@ 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.32 +catalogue-version 2.34 name tugboat-plain category Package -revision 70960 +revision 72675 shortdesc Plain TeX macros for TUGboat 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. -docfiles size=60 +docfiles size=62 texmf-dist/doc/plain/tugboat-plain/README texmf-dist/doc/plain/tugboat-plain/tubguide.pdf details="TUGboat Authors' Guide" texmf-dist/doc/plain/tugboat-plain/tubguide.tex @@ -316579,7 +320129,7 @@ catalogue-contact-repository https://github.com/TeXUsersGroup/tugboat catalogue-ctan /macros/plain/contrib/tugboat catalogue-license other-free catalogue-topics journalpub -catalogue-version 1.30 +catalogue-version 1.31 name tui category Package @@ -316634,6 +320184,40 @@ catalogue-license lppl catalogue-topics dissertation class catalogue-version 1.9 +name tuple +category Package +revision 73174 +shortdesc Expandable operations for tuples of numbers +longdesc This package provides expandable operations for tuples of +longdesc numbers: len, sum, min, max, mean, med, quantile, standard +longdesc deviation, get item, position of item sort, add or set(*) +longdesc items, filter, operations, composition(*), split(*), formatting +longdesc and display All with a concise syntax that is easy and +longdesc intuitive to use : object.method1.method2... (*): unexpandable +longdesc method +longdesc --------------------------------------------------------------- +longdesc -------- Cette extension met a disposition des operations +longdesc developpables pour les tuples de nombres : len, sum, min, max, +longdesc mean, med, quantile, ecart type, get item, position d'un +longdesc element tri, ajout ou modification(*) d'elements, filtre, +longdesc operations, composition(*), coupure(*), formattage et affichage +longdesc Le tout avec une syntaxe concise et d'un usage facile et +longdesc intuitif : object.methode1.methode2... (*) : methode non +longdesc developpable +docfiles size=93 + texmf-dist/doc/generic/tuple/README details="Readme" + texmf-dist/doc/generic/tuple/tuple-doc-en.pdf details="Package documentation (English)" + texmf-dist/doc/generic/tuple/tuple-doc-en.tex + texmf-dist/doc/generic/tuple/tuple-doc-fr.pdf details="Package documentation (French)" language="fr" + texmf-dist/doc/generic/tuple/tuple-doc-fr.tex +runfiles size=13 + texmf-dist/tex/generic/tuple/tuple.sty + texmf-dist/tex/generic/tuple/tuple.tex +catalogue-ctan /macros/generic/tuple +catalogue-license lppl1.3c +catalogue-topics maths numbers calculation macro-gen +catalogue-version 0.2 + name turabian category Package revision 36298 @@ -316724,15 +320308,13 @@ catalogue-version 1.0 name turnthepage category Package -revision 29803 +revision 72902 shortdesc Provide "turn page" instructions longdesc The package prints a 'turn' instruction at the bottom of longdesc odd-numbered pages (except the last). This is a common longdesc convention for examination papers and the like. -docfiles size=45 - texmf-dist/doc/latex/turnthepage/Makefile +docfiles size=34 texmf-dist/doc/latex/turnthepage/README details="Readme" - texmf-dist/doc/latex/turnthepage/perso.ist texmf-dist/doc/latex/turnthepage/turnthepage-bib.bib texmf-dist/doc/latex/turnthepage/turnthepage.pdf details="Package documentation" texmf-dist/doc/latex/turnthepage/turnthepage.tex @@ -316741,36 +320323,41 @@ runfiles size=3 texmf-dist/tex/latex/turnthepage/turnpagewoetex.sty texmf-dist/tex/latex/turnthepage/turnthepage.sty catalogue-ctan /macros/latex/contrib/turnthepage -catalogue-license lppl +catalogue-license lppl1.3c catalogue-topics layout exam -catalogue-version 1.3a +catalogue-version 2.0a name tutodoc category Package -revision 69343 +revision 73166 shortdesc Typeset tutorial-like documentations longdesc This package provides some macros to write documentation of longdesc LaTeX packages in a tutorial style. -docfiles size=375 +docfiles size=627 texmf-dist/doc/latex/tutodoc/MANIFEST.md texmf-dist/doc/latex/tutodoc/README.md details="Readme" texmf-dist/doc/latex/tutodoc/tutodoc-en.pdf details="Package documentation" language="en" texmf-dist/doc/latex/tutodoc/tutodoc-en.tex texmf-dist/doc/latex/tutodoc/tutodoc-fr.pdf details="Package documentation" language="fr" texmf-dist/doc/latex/tutodoc/tutodoc-fr.tex -runfiles size=9 - texmf-dist/tex/latex/tutodoc/tutodoc-locale-main-english.cfg.sty - texmf-dist/tex/latex/tutodoc/tutodoc-locale-main-french.cfg.sty - texmf-dist/tex/latex/tutodoc/tutodoc.sty +runfiles size=22 + texmf-dist/tex/latex/tutodoc/tutodoc-bw.css.cls + texmf-dist/tex/latex/tutodoc/tutodoc-color.css.cls + texmf-dist/tex/latex/tutodoc/tutodoc-dark.css.cls + texmf-dist/tex/latex/tutodoc/tutodoc-draft.css.cls + texmf-dist/tex/latex/tutodoc/tutodoc-en.loc.cls + texmf-dist/tex/latex/tutodoc/tutodoc-es.loc.cls + texmf-dist/tex/latex/tutodoc/tutodoc-fr.loc.cls + texmf-dist/tex/latex/tutodoc/tutodoc.cls catalogue-contact-repository https://github.com/bc-tools/for-latex catalogue-ctan /macros/latex/contrib/tutodoc catalogue-license gpl3 catalogue-topics doc-tool expl3 -catalogue-version 1.1.0 +catalogue-version 1.7.1 name twemoji-colr category Package -revision 64854 +revision 71991 shortdesc Twemoji font in COLR/CPAL layered format longdesc This is a COLR/CPAL-based color OpenType font from the Twemoji longdesc collection of emoji images. @@ -316779,7 +320366,6 @@ docfiles size=1 runfiles size=360 texmf-dist/fonts/truetype/public/twemoji-colr/TwemojiMozilla.ttf catalogue-contact-bugs https://github.com/mozilla/twemoji-colr/issues -catalogue-contact-home https://twemoji.twitter.com/ catalogue-contact-repository https://github.com/mozilla/twemoji-colr catalogue-ctan /fonts/twemoji-colr catalogue-license cc-by-sa-4 apache2 @@ -317588,18 +321174,19 @@ binfiles arch=x86_64-solaris size=1 name typewriter category Package -revision 46641 +revision 73877 shortdesc Typeset with a randomly variable monospace font longdesc The typewriter package uses the OpenType Computer Modern longdesc Unicode Typewriter font, together with a LuaTeX virtual font longdesc setup that introduces random variability in grey level and longdesc angle of each character. It was originally an answer to a longdesc question on stackexchange. -docfiles size=27 +docfiles size=23 texmf-dist/doc/lualatex/typewriter/README.md details="Readme" texmf-dist/doc/lualatex/typewriter/typewriter-guide.pdf details="Package documentation" texmf-dist/doc/lualatex/typewriter/typewriter-guide.tex -runfiles size=63 +runfiles size=64 + texmf-dist/tex/lualatex/typewriter/typewriter.lua texmf-dist/tex/lualatex/typewriter/typewriter.sty catalogue-also ransom manuscript catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues @@ -317609,7 +321196,7 @@ catalogue-contact-support https://github.com/davidcarlisle/dpctex/issues catalogue-ctan /macros/luatex/latex/typewriter catalogue-license lppl catalogue-topics typesetting -catalogue-version 1.1 +catalogue-version 1.3 name typicons category Package @@ -317666,7 +321253,7 @@ catalogue-version 0.4.7 name typog category Package -revision 71756 +revision 71883 shortdesc Typographic fine-tuning and micro-typographic enhancements longdesc This package provides macros for micro-typographic longdesc enhancements. It covers a variety of topics: Precise @@ -317715,7 +321302,7 @@ catalogue-contact-repository https://github.com/cspiel/typog catalogue-ctan /macros/latex/contrib/typog catalogue-license lppl1.3c catalogue-topics micro-layout letterspace -catalogue-version 0.3 +catalogue-version 0.4 name typog.aarch64-linux category Package @@ -317954,9 +321541,78 @@ catalogue-license lppl catalogue-topics dissertation catalogue-version 12.12 +name ualberta +category Package +revision 73809 +shortdesc A LaTeX template for the University of Alberta +longdesc This package provides a comprehensive template designed to meet +longdesc the formatting requirements of the University of Alberta ( +longdesc https://www.ualberta.ca/en/graduate-studies/resources/graduate- +longdesc students/thesis-preparation-requirements-deadlines/index.html) +longdesc for MSc and PhD theses. It provides a structured and +longdesc customizable framework that ensures compliance with university +longdesc guidelines while allowing flexibility in document formatting. +docfiles size=851 + texmf-dist/doc/latex/ualberta/00_LaTeX_Files/guidePackages.tex + texmf-dist/doc/latex/ualberta/00_LaTeX_Files/includeMacros.tex + texmf-dist/doc/latex/ualberta/00_LaTeX_Files/includePackages.tex + texmf-dist/doc/latex/ualberta/00_LaTeX_Files/includeTheorems.tex + texmf-dist/doc/latex/ualberta/00_LaTeX_Files/listingCodeFormatting.tex + texmf-dist/doc/latex/ualberta/00_LaTeX_Files/selectDegree.tex + texmf-dist/doc/latex/ualberta/00_LaTeX_Files/selectDepartment.tex + texmf-dist/doc/latex/ualberta/01_Prefatory/Abstract.tex + texmf-dist/doc/latex/ualberta/01_Prefatory/Acknowledgements.tex + texmf-dist/doc/latex/ualberta/01_Prefatory/Acronyms.tex + texmf-dist/doc/latex/ualberta/01_Prefatory/Glossary.tex + texmf-dist/doc/latex/ualberta/01_Prefatory/Nomenclature.tex + texmf-dist/doc/latex/ualberta/01_Prefatory/Preface.tex + texmf-dist/doc/latex/ualberta/01_Prefatory/Quotes_Dedications.tex + texmf-dist/doc/latex/ualberta/02_Chapters/01_Introduction.tex + texmf-dist/doc/latex/ualberta/02_Chapters/02_Getting_Started.tex + texmf-dist/doc/latex/ualberta/02_Chapters/03_Document_Structure.tex + texmf-dist/doc/latex/ualberta/02_Chapters/04_Figures_Tables.tex + texmf-dist/doc/latex/ualberta/02_Chapters/05_Plots_And_Graphs.tex + texmf-dist/doc/latex/ualberta/02_Chapters/06_Mathematical_Equations.tex + texmf-dist/doc/latex/ualberta/02_Chapters/07_Citations_And_References.tex + texmf-dist/doc/latex/ualberta/02_Chapters/08_JabRef.tex + texmf-dist/doc/latex/ualberta/02_Chapters/XX_Submitting_Your_Thesis.tex + texmf-dist/doc/latex/ualberta/03_References/Reference_PDFs/Aldrich2017-OSM_Classic_an_Optical_Imaging_Technique_for_Accurately_Determining_Strain.pdf + texmf-dist/doc/latex/ualberta/03_References/References.bib + texmf-dist/doc/latex/ualberta/04_Appendices/0A_Additional_Figures.tex + texmf-dist/doc/latex/ualberta/04_Appendices/0B_Additional_Tables.tex + texmf-dist/doc/latex/ualberta/04_Appendices/0C_Code_Listings.tex + texmf-dist/doc/latex/ualberta/04_Appendices/0D_Including_PDFs.tex + texmf-dist/doc/latex/ualberta/04_Appendices/0X_Math_Lettering.tex + texmf-dist/doc/latex/ualberta/99_Inclusions/Code/cCode.cpp + texmf-dist/doc/latex/ualberta/99_Inclusions/Code/matlabCode.m + texmf-dist/doc/latex/ualberta/99_Inclusions/Data/scattered_example.dat + texmf-dist/doc/latex/ualberta/99_Inclusions/Images/JabRef_Example_Web_Search.png + texmf-dist/doc/latex/ualberta/99_Inclusions/Images/JabRef_File_Annotations.png + texmf-dist/doc/latex/ualberta/99_Inclusions/Images/JabRef_Main_Window.png + texmf-dist/doc/latex/ualberta/99_Inclusions/Images/JabRef_New_Entry.png + texmf-dist/doc/latex/ualberta/99_Inclusions/Images/JabRef_Web_Search.png + texmf-dist/doc/latex/ualberta/99_Inclusions/PDFs/examplePDF.pdf + texmf-dist/doc/latex/ualberta/99_Inclusions/PDFs/landscapePDF.pdf + texmf-dist/doc/latex/ualberta/99_Inclusions/Tables/Excel2Latex_Readme.md + texmf-dist/doc/latex/ualberta/LICENSE.md + texmf-dist/doc/latex/ualberta/README.md details="Readme" + texmf-dist/doc/latex/ualberta/screenshot.png + texmf-dist/doc/latex/ualberta/ualberta.pdf details="Package documentation" + texmf-dist/doc/latex/ualberta/ualberta.tex +runfiles size=8 + texmf-dist/tex/latex/ualberta/ualberta.cls +catalogue-contact-bugs https://github.com/draldric/uAlberta-Thesis-LaTeX-Template/issues +catalogue-contact-home https://ualberta-thesis.daniel-aldrich.ca/ +catalogue-contact-repository https://github.com/draldric/uAlberta-Thesis-LaTeX-Template +catalogue-contact-support https://discord.gg/dMgFcDYHEV +catalogue-ctan /macros/latex/contrib/ualberta +catalogue-license mit +catalogue-topics dissertation class doc-templ +catalogue-version 2.0.0 + name uantwerpendocs category Package -revision 71617 +revision 72118 shortdesc Course texts, master theses, and exams in University of Antwerp style longdesc These class files implement the house style of the University longdesc of Antwerp. This package originated from the Faculty of Applied @@ -318332,7 +321988,7 @@ runfiles size=3147 catalogue-ctan /macros/latex/contrib/uantwerpendocs catalogue-license lppl1.3 catalogue-topics class dissertation essay letter exam std-conform -catalogue-version 4.7 +catalogue-version 4.8 name uassign category Package @@ -318493,13 +322149,13 @@ catalogue-version 2.6 name ucph-revy category Package -revision 69750 +revision 73167 shortdesc Musical script formatting longdesc This package provides a class for typesetting scripts longdesc containing both lyrics and prose, in the style used by the longdesc student revues (revy) at the Faculties of Science at the longdesc University of Copenhagen (uchp). -docfiles size=222 +docfiles size=225 texmf-dist/doc/latex/ucph-revy/Eksempel.tex texmf-dist/doc/latex/ucph-revy/Example.tex texmf-dist/doc/latex/ucph-revy/README.md details="Readme" @@ -318524,7 +322180,7 @@ runfiles size=5 catalogue-ctan /macros/latex/contrib/ucph-revy catalogue-license lppl1.3 catalogue-topics drama-script -catalogue-version 1.0.1 +catalogue-version 1.1.0 name ucs category Package @@ -318973,6 +322629,40 @@ catalogue-license lppl1.3 catalogue-topics dissertation bus-study class catalogue-version 1.7.1 +name udiss +category Package +revision 72466 +shortdesc A LaTeX bundle for typesetting dissertations +longdesc The udiss bundle is a LaTeX-class-file developed to assist +longdesc students in typesetting their university dissertations. It is a +longdesc collection of multiple support files. Universities often have +longdesc strict requirements regarding the formatting of the +longdesc dissertations/theses submitted to them. This bundle +longdesc pre-supplies a generic style (university-agnostic) for creating +longdesc dissertations. It also supports custom layouts required for +longdesc different universities. +docfiles size=123 + texmf-dist/doc/latex/udiss/README.txt details="Readme" + texmf-dist/doc/latex/udiss/udiss-fonts-english.tex + texmf-dist/doc/latex/udiss/udiss-fonts-hindi.tex + texmf-dist/doc/latex/udiss/udiss-fonts-malayalam.tex + texmf-dist/doc/latex/udiss/udiss-fonts-marathi.tex + texmf-dist/doc/latex/udiss/udiss-style-ukerala.tex + texmf-dist/doc/latex/udiss/udiss.pdf details="Package documentation" +srcfiles size=36 + texmf-dist/source/latex/udiss/udiss.dtx + texmf-dist/source/latex/udiss/udiss.ins +runfiles size=32 + texmf-dist/tex/latex/udiss/logos/udiss-logo-ukerala.png + texmf-dist/tex/latex/udiss/udiss.cls +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=udiss +catalogue-contact-home https://puszcza.gnu.org.ua/projects/udiss/ +catalogue-contact-repository https://puszcza.gnu.org.ua/projects/udiss/ +catalogue-ctan /macros/unicodetex/udiss +catalogue-license gpl3+ fdl +catalogue-topics dissertation class +catalogue-version 0.1 + name uebungsblatt category Package revision 15878 @@ -319054,7 +322744,7 @@ catalogue-version 1.1.0 name ufrgscca category Package -revision 71033 +revision 72586 shortdesc A bundle for undergraduate students final work/report (tcc) at UFRGS/EE longdesc This bundle is aimed at producing undergraduate students' final longdesc work/report at UFRGS/EE (Engineering School at the Federal @@ -319062,7 +322752,7 @@ longdesc University of Rio Grande do Sul), closely following ABNT rules longdesc (Brazilian Association for Technical Norms). It is composed of longdesc a main class, ufrgscca, and a set of auxiliary packages, some longdesc of which can be used independently. -docfiles size=188 +docfiles size=187 texmf-dist/doc/latex/ufrgscca/README.md details="Readme" texmf-dist/doc/latex/ufrgscca/ufrgscca-cover-ptBR.tex texmf-dist/doc/latex/ufrgscca/ufrgscca-forms.tex @@ -319087,7 +322777,7 @@ 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 std-conform expl3 -catalogue-version 2.10 +catalogue-version 2.11 name uhc category Package @@ -322901,7 +326591,7 @@ catalogue-version 2.1 name unbtex category Package -revision 71708 +revision 73390 shortdesc A class for theses at University of Brasilia (UnB) longdesc This package provides a class based on abnTeX and compatible longdesc with pdflatex and BibTeXr to prepare bachelor, master, and @@ -322911,14 +326601,14 @@ 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. -docfiles size=303 +docfiles size=344 texmf-dist/doc/latex/unbtex/README.md details="Readme" texmf-dist/doc/latex/unbtex/unbtex-example.pdf details="Example of use" language="pt-br" texmf-dist/doc/latex/unbtex/unbtex-example.tex texmf-dist/doc/latex/unbtex/unbtex-example/anexo-a.tex - texmf-dist/doc/latex/unbtex/unbtex-example/anexo-b.tex texmf-dist/doc/latex/unbtex/unbtex-example/apendice-a.tex texmf-dist/doc/latex/unbtex/unbtex-example/apendice-b.tex + texmf-dist/doc/latex/unbtex/unbtex-example/apendice-c.tex texmf-dist/doc/latex/unbtex/unbtex-example/capitulo1.tex texmf-dist/doc/latex/unbtex/unbtex-example/capitulo2.tex texmf-dist/doc/latex/unbtex/unbtex-example/capitulo3.tex @@ -322928,11 +326618,8 @@ docfiles size=303 texmf-dist/doc/latex/unbtex/unbtex-example/codigos/blockdiagram.tex texmf-dist/doc/latex/unbtex/unbtex-example/codigos/controle.m texmf-dist/doc/latex/unbtex/unbtex-example/codigos/controleSmithPredictor.py - texmf-dist/doc/latex/unbtex/unbtex-example/figuras/1280px-LaTeX-logo.png texmf-dist/doc/latex/unbtex/unbtex-example/figuras/blockdiagram.eps texmf-dist/doc/latex/unbtex/unbtex-example/figuras/blockdiagram.pdf - texmf-dist/doc/latex/unbtex/unbtex-example/figuras/bodediagram.pdf - texmf-dist/doc/latex/unbtex/unbtex-example/figuras/capa_fundo.pdf texmf-dist/doc/latex/unbtex/unbtex-example/figuras/circuito.pdf texmf-dist/doc/latex/unbtex/unbtex-example/figuras/coresunb.pdf texmf-dist/doc/latex/unbtex/unbtex-example/figuras/diodocurva.pdf @@ -322941,12 +326628,14 @@ docfiles size=303 texmf-dist/doc/latex/unbtex/unbtexcite/unbtex-alf-pt.bst texmf-dist/doc/latex/unbtex/unbtexcite/unbtex-num-en.bst texmf-dist/doc/latex/unbtex/unbtexcite/unbtex-num-pt.bst -runfiles size=9 + texmf-dist/doc/latex/unbtex/unbtexcover/capa.pdf + texmf-dist/doc/latex/unbtex/unbtexcover/contracapa.pdf +runfiles size=11 texmf-dist/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.5.2 +catalogue-version 1.5.4 name undar-digitacion category Package @@ -323053,11 +326742,11 @@ catalogue-topics typesetting name undolabl category Package -revision 65846 +revision 73633 shortdesc Override existing labels longdesc The package allows the user to override existing labels (for longdesc example, those generated automatically). -docfiles size=94 +docfiles size=93 texmf-dist/doc/latex/undolabl/README details="Readme" texmf-dist/doc/latex/undolabl/undolabl-example.pdf details="Package examples" texmf-dist/doc/latex/undolabl/undolabl-example.tex @@ -323069,9 +326758,9 @@ srcfiles size=13 runfiles size=2 texmf-dist/tex/latex/undolabl/undolabl.sty catalogue-ctan /macros/latex/contrib/undolabl -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics label-ref -catalogue-version 1.0m +catalogue-version 1.0o name unfonts-core category Package @@ -323254,6 +326943,31 @@ catalogue-license lppl1.3 catalogue-topics humanities linguistic biblatex catalogue-version 0.2 +name unibidi-lua +category Package +revision 73554 +shortdesc Unicode bidi algorithm implementation for various LuaTeX formats +longdesc The package adopts the unicode bidi algorithm implementation +longdesc provided in ConTeXt, and adapts it to be used in OpTeX, LaTeX +longdesc and Plain TeX . It works under LuaTeX only. +docfiles size=12 + texmf-dist/doc/luatex/unibidi-lua/COPYING + texmf-dist/doc/luatex/unibidi-lua/README.md details="Readme" + texmf-dist/doc/luatex/unibidi-lua/unibidi-lua-doc.pdf details="Package documentation" +runfiles size=181 + texmf-dist/tex/luatex/unibidi-lua/unibidi-lua-data.lua + texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.lua + texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.opm + texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.sty + texmf-dist/tex/luatex/unibidi-lua/unibidi-lua.tex +catalogue-contact-bugs https://github.com/Udi-Fogiel/unibidi-lua/issues +catalogue-contact-repository https://github.com/Udi-Fogiel/unibidi-lua +catalogue-contact-support https://github.com/Udi-Fogiel/unibidi-lua/discussions +catalogue-ctan /macros/luatex/generic/unibidi-lua +catalogue-license gpl2 +catalogue-topics unicode bidi luatex +catalogue-version 0.1 + name unicode-alphabets category Package revision 66225 @@ -323310,7 +327024,7 @@ catalogue-version 0.01 name unicode-data category Package -revision 68311 +revision 73362 shortdesc Unicode data and loaders for TeX longdesc This bundle provides generic access to Unicode Consortium data longdesc for TeX use. It contains a set of text files provided by the @@ -323328,7 +327042,7 @@ longdesc co-ordinated by the LaTeX3 Project as a general resource for longdesc TeX users. docfiles size=3 texmf-dist/doc/generic/unicode-data/README.md details="Readme" -runfiles size=794 +runfiles size=867 texmf-dist/tex/generic/unicode-data/BidiBrackets.txt texmf-dist/tex/generic/unicode-data/BidiMirroring-5-1-0.txt texmf-dist/tex/generic/unicode-data/BidiMirroring.txt @@ -323351,7 +327065,7 @@ 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.17 +catalogue-version 1.18 name unicode-math category Package @@ -323569,13 +327283,12 @@ catalogue-version 1.00 name unimath-plain-xetex category Package -revision 66394 +revision 72498 shortdesc OpenType math support in (plain) XeTeX longdesc This package provides OpenType math font support in plain TeX longdesc format. It only works with the XeTeX engine. -docfiles size=23 +docfiles size=24 texmf-dist/doc/xetex/unimath-plain-xetex/README.md details="Readme" - texmf-dist/doc/xetex/unimath-plain-xetex/unimath-plain-genmap.lua texmf-dist/doc/xetex/unimath-plain-xetex/unimath-plain-xetex-doc.pdf details="Package documentation" texmf-dist/doc/xetex/unimath-plain-xetex/unimath-plain-xetex-doc.tex runfiles size=36 @@ -323616,7 +327329,7 @@ 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 +catalogue-version 0.2c name uninormalize category Package @@ -324124,7 +327837,7 @@ catalogue-topics font font-body font-sans font-proportional font-otf font-type1 name univie-ling category Package -revision 71635 +revision 72484 shortdesc Papers, theses and research proposals in (Applied) Linguistics at Vienna University longdesc This bundle provides LaTeX2e classes, BibLaTeX files, and longdesc templates suitable for student papers, PhD research proposals @@ -324137,7 +327850,7 @@ 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. -docfiles size=1372 +docfiles size=1554 texmf-dist/doc/latex/univie-ling/README details="Readme" texmf-dist/doc/latex/univie-ling/templates/template-expose-deutsch.pdf texmf-dist/doc/latex/univie-ling/templates/template-expose-deutsch.tex @@ -324165,6 +327878,8 @@ docfiles size=1372 texmf-dist/doc/latex/univie-ling/templates/template-wlg-article.tex texmf-dist/doc/latex/univie-ling/templates/template-wlg-review.pdf texmf-dist/doc/latex/univie-ling/templates/template-wlg-review.tex + texmf-dist/doc/latex/univie-ling/univie-ling-bbx.pdf + texmf-dist/doc/latex/univie-ling/univie-ling-bbx.tex texmf-dist/doc/latex/univie-ling/univie-ling-expose.pdf details="Package documentation (expose class)" texmf-dist/doc/latex/univie-ling/univie-ling-expose.tex texmf-dist/doc/latex/univie-ling/univie-ling-handout.pdf @@ -324179,7 +327894,7 @@ docfiles size=1372 texmf-dist/doc/latex/univie-ling/univie-ling-wlg.tex texmf-dist/doc/latex/univie-ling/univie-ling.pdf details="Package documentation (overview)" texmf-dist/doc/latex/univie-ling/univie-ling.tex -runfiles size=90 +runfiles size=91 texmf-dist/tex/latex/univie-ling/univie-ling-expose.cls texmf-dist/tex/latex/univie-ling/univie-ling-handout.cls texmf-dist/tex/latex/univie-ling/univie-ling-paper.cls @@ -324197,7 +327912,7 @@ 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 2.6 +catalogue-version 2.9 name unizgklasa category Package @@ -324382,7 +328097,7 @@ catalogue-topics barcode name updatemarks category Package -revision 69986 +revision 72489 shortdesc Extract and update marks from boxes longdesc This package can help you update marks if you put your title in longdesc boxes. It also patches the multicol package to let the new mark @@ -324399,11 +328114,11 @@ catalogue-contact-repository https://github.com/Sophanatprime/updatemarks catalogue-ctan /macros/latex/contrib/updatemarks catalogue-license lppl1.3c catalogue-topics page-hf expl3 -catalogue-version 0.2e +catalogue-version 0.2f name uplatex category Package -revision 71363 +revision 73848 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 @@ -324604,7 +328319,7 @@ binfiles arch=x86_64-solaris size=2 name upmendex category TLCore -revision 66381 +revision 74052 shortdesc Multilingual index processor longdesc The package is a multilingual index processor with the longdesc following features: Mostly compatible with makeindex and upper @@ -324671,117 +328386,117 @@ docfiles size=341 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-slide-ctan.pdf details="Presentation" 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 +catalogue-version 1.11 name upmendex.aarch64-linux category TLCore -revision 70276 +revision 73915 shortdesc aarch64-linux files of upmendex -binfiles arch=aarch64-linux size=5497 +binfiles arch=aarch64-linux size=5794 bin/aarch64-linux/upmendex name upmendex.amd64-freebsd category TLCore -revision 71441 +revision 73909 shortdesc amd64-freebsd files of upmendex -binfiles arch=amd64-freebsd size=5559 +binfiles arch=amd64-freebsd size=5954 bin/amd64-freebsd/upmendex name upmendex.amd64-netbsd category TLCore -revision 70286 +revision 73914 shortdesc amd64-netbsd files of upmendex -binfiles arch=amd64-netbsd size=5552 +binfiles arch=amd64-netbsd size=5760 bin/amd64-netbsd/upmendex name upmendex.armhf-linux category TLCore -revision 70489 +revision 73915 shortdesc armhf-linux files of upmendex -binfiles arch=armhf-linux size=5381 +binfiles arch=armhf-linux size=5598 bin/armhf-linux/upmendex name upmendex.i386-freebsd category TLCore -revision 71441 +revision 73909 shortdesc i386-freebsd files of upmendex -binfiles arch=i386-freebsd size=5559 +binfiles arch=i386-freebsd size=5954 bin/i386-freebsd/upmendex name upmendex.i386-linux category TLCore -revision 70276 +revision 73909 shortdesc i386-linux files of upmendex -binfiles arch=i386-linux size=5653 +binfiles arch=i386-linux size=5741 bin/i386-linux/upmendex name upmendex.i386-netbsd category TLCore -revision 71441 +revision 73914 shortdesc i386-netbsd files of upmendex -binfiles arch=i386-netbsd size=5503 +binfiles arch=i386-netbsd size=5708 bin/i386-netbsd/upmendex name upmendex.i386-solaris category TLCore -revision 71441 +revision 73909 shortdesc i386-solaris files of upmendex -binfiles arch=i386-solaris size=5565 +binfiles arch=i386-solaris size=5792 bin/i386-solaris/upmendex name upmendex.universal-darwin category TLCore -revision 70274 +revision 73942 shortdesc universal-darwin files of upmendex -binfiles arch=universal-darwin size=10963 +binfiles arch=universal-darwin size=11597 bin/universal-darwin/upmendex name upmendex.windows category TLCore -revision 70269 +revision 73841 shortdesc windows files of upmendex -binfiles arch=windows size=439 +binfiles arch=windows size=453 bin/windows/upmendex.exe name upmendex.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of upmendex -binfiles arch=x86_64-cygwin size=5423 +binfiles arch=x86_64-cygwin size=5795 bin/x86_64-cygwin/upmendex.exe name upmendex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of upmendex -binfiles arch=x86_64-darwinlegacy size=5413 +binfiles arch=x86_64-darwinlegacy size=5608 bin/x86_64-darwinlegacy/upmendex name upmendex.x86_64-linux category TLCore -revision 70276 +revision 73909 shortdesc x86_64-linux files of upmendex -binfiles arch=x86_64-linux size=5669 +binfiles arch=x86_64-linux size=5735 bin/x86_64-linux/upmendex name upmendex.x86_64-linuxmusl category TLCore -revision 71441 +revision 73909 shortdesc x86_64-linuxmusl files of upmendex -binfiles arch=x86_64-linuxmusl size=5605 +binfiles arch=x86_64-linuxmusl size=5911 bin/x86_64-linuxmusl/upmendex name upmendex.x86_64-solaris category TLCore -revision 71441 +revision 73909 shortdesc x86_64-solaris files of upmendex -binfiles arch=x86_64-solaris size=5610 +binfiles arch=x86_64-solaris size=5822 bin/x86_64-solaris/upmendex name upmethodology @@ -324902,7 +328617,7 @@ catalogue-version 1.3 name uptex category Package -revision 66381 +revision 73848 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 @@ -324926,7 +328641,7 @@ execute addKanjiMap uptex-@jaEmbed@@jaVariant@.map execute addKanjiMap uptex-ko-@koEmbed@.map execute addKanjiMap uptex-sc-@scEmbed@.map execute addKanjiMap uptex-tc-@tcEmbed@.map -docfiles size=33 +docfiles size=35 texmf-dist/doc/man/man1/euptex.1 texmf-dist/doc/man/man1/euptex.man1.pdf texmf-dist/doc/man/man1/upbibtex.1 @@ -324947,11 +328662,11 @@ catalogue-topics engine japanese chinese korean multilingual name uptex-base category Package -revision 68298 +revision 73291 shortdesc Plain TeX formats and documents for upTeX longdesc The bundle contains plain TeX format files and documents for longdesc upTeX and and e-upTeX. -docfiles size=194 +docfiles size=213 texmf-dist/doc/uptex/uptex-base/00readme_uptex.txt texmf-dist/doc/uptex/uptex-base/01uptex_doc_utf8.txt texmf-dist/doc/uptex/uptex-base/02uptex_changelog_utf8.txt @@ -324970,7 +328685,6 @@ docfiles size=194 texmf-dist/doc/uptex/uptex-base/samples/aozora-ujreport-utf8.tex texmf-dist/doc/uptex/uptex-base/samples/aozora-utarticle-utf8.tex texmf-dist/doc/uptex/uptex-base/samples/aozora-utbook-utf8.tex - texmf-dist/doc/uptex/uptex-base/samples/aozora-utf8.tex texmf-dist/doc/uptex/uptex-base/samples/aozora-utreport-utf8.tex texmf-dist/doc/uptex/uptex-base/samples/area-euc-incl.tex texmf-dist/doc/uptex/uptex-base/samples/area-euc.mp @@ -325028,6 +328742,17 @@ docfiles size=194 texmf-dist/doc/uptex/uptex-base/samples/simple-utf8.tex texmf-dist/doc/uptex/uptex-base/samples/testrun.bat texmf-dist/doc/uptex/uptex-base/samples/texxet-jis.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-algrya.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-cgrmd.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-clara.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-common.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-dejavu.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-gntm.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-kurier.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-lmdrn.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-noto.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-roboto.tex + texmf-dist/doc/uptex/uptex-base/samples/udhr-source.tex texmf-dist/doc/uptex/uptex-base/samples/umin10x.tfm texmf-dist/doc/uptex/uptex-base/samples/utfsmpl-uplatex.tex texmf-dist/doc/uptex/uptex-base/samples/widow.tex @@ -325046,7 +328771,7 @@ catalogue-topics format japanese name uptex-fonts category Package -revision 68297 +revision 74107 shortdesc Fonts for use with upTeX longdesc The bundle contains fonts (TFM and VF) for use with upTeX. This longdesc is a redistribution derived from the upTeX distribution by @@ -325056,7 +328781,7 @@ docfiles size=6 texmf-dist/doc/fonts/uptex-fonts/README.md details="Readme" texmf-dist/doc/fonts/uptex-fonts/README_ASCII_Corp.txt texmf-dist/doc/fonts/uptex-fonts/README_uptex_font.md -runfiles size=6834 +runfiles size=4089 texmf-dist/fonts/cmap/uptex-fonts/UTF8-UTF16 texmf-dist/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-H texmf-dist/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-V @@ -325066,8 +328791,21 @@ runfiles size=6834 texmf-dist/fonts/source/uptex-fonts/Makefile texmf-dist/fonts/source/uptex-fonts/makejvf-upjis.cnf texmf-dist/fonts/source/uptex-fonts/makejvf-upjpn.cnf + texmf-dist/fonts/source/uptex-fonts/makejvf-upkor.cnf + texmf-dist/fonts/source/uptex-fonts/makejvf-upsch.cnf + texmf-dist/fonts/source/uptex-fonts/makejvf-uptch.cnf texmf-dist/fonts/source/uptex-fonts/makepl.perl + texmf-dist/fonts/source/uptex-fonts/mk_svs_entry.perl + texmf-dist/fonts/source/uptex-fonts/mk_svs_tex.perl texmf-dist/fonts/source/uptex-fonts/punctuation.md + texmf-dist/fonts/source/uptex-fonts/svs_list_c.txt + texmf-dist/fonts/source/uptex-fonts/svs_list_j.txt + texmf-dist/fonts/source/uptex-fonts/svs_list_jpn.entry + texmf-dist/fonts/source/uptex-fonts/svs_list_k.txt + texmf-dist/fonts/source/uptex-fonts/svs_list_kor.entry + texmf-dist/fonts/source/uptex-fonts/svs_list_sch.entry + texmf-dist/fonts/source/uptex-fonts/svs_list_t.txt + texmf-dist/fonts/source/uptex-fonts/svs_list_tch.entry texmf-dist/fonts/source/uptex-fonts/upjisr-h-hk.pl texmf-dist/fonts/source/uptex-fonts/upjisr-h.pl texmf-dist/fonts/source/uptex-fonts/upjisr-v.pl @@ -325160,9 +328898,9 @@ catalogue-topics font-cjk name uptex.aarch64-linux category Package -revision 70772 +revision 74078 shortdesc aarch64-linux files of uptex -binfiles arch=aarch64-linux size=991 +binfiles arch=aarch64-linux size=1005 bin/aarch64-linux/euptex bin/aarch64-linux/r-upmpost bin/aarch64-linux/upbibtex @@ -325176,9 +328914,9 @@ binfiles arch=aarch64-linux size=991 name uptex.amd64-freebsd category Package -revision 71441 +revision 74051 shortdesc amd64-freebsd files of uptex -binfiles arch=amd64-freebsd size=1806 +binfiles arch=amd64-freebsd size=1822 bin/amd64-freebsd/euptex bin/amd64-freebsd/r-upmpost bin/amd64-freebsd/upbibtex @@ -325192,9 +328930,9 @@ binfiles arch=amd64-freebsd size=1806 name uptex.amd64-netbsd category Package -revision 70758 +revision 74100 shortdesc amd64-netbsd files of uptex -binfiles arch=amd64-netbsd size=1790 +binfiles arch=amd64-netbsd size=1817 bin/amd64-netbsd/euptex bin/amd64-netbsd/r-upmpost bin/amd64-netbsd/upbibtex @@ -325208,9 +328946,9 @@ binfiles arch=amd64-netbsd size=1790 name uptex.armhf-linux category Package -revision 70772 +revision 74078 shortdesc armhf-linux files of uptex -binfiles arch=armhf-linux size=796 +binfiles arch=armhf-linux size=681 bin/armhf-linux/euptex bin/armhf-linux/r-upmpost bin/armhf-linux/upbibtex @@ -325224,9 +328962,9 @@ binfiles arch=armhf-linux size=796 name uptex.i386-freebsd category Package -revision 71441 +revision 74051 shortdesc i386-freebsd files of uptex -binfiles arch=i386-freebsd size=1806 +binfiles arch=i386-freebsd size=1822 bin/i386-freebsd/euptex bin/i386-freebsd/r-upmpost bin/i386-freebsd/upbibtex @@ -325240,9 +328978,9 @@ binfiles arch=i386-freebsd size=1806 name uptex.i386-linux category Package -revision 70771 +revision 74051 shortdesc i386-linux files of uptex -binfiles arch=i386-linux size=1107 +binfiles arch=i386-linux size=1186 bin/i386-linux/euptex bin/i386-linux/r-upmpost bin/i386-linux/upbibtex @@ -325256,9 +328994,9 @@ binfiles arch=i386-linux size=1107 name uptex.i386-netbsd category Package -revision 70758 +revision 74100 shortdesc i386-netbsd files of uptex -binfiles arch=i386-netbsd size=1599 +binfiles arch=i386-netbsd size=1620 bin/i386-netbsd/euptex bin/i386-netbsd/r-upmpost bin/i386-netbsd/upbibtex @@ -325272,9 +329010,9 @@ binfiles arch=i386-netbsd size=1599 name uptex.i386-solaris category Package -revision 70771 +revision 74051 shortdesc i386-solaris files of uptex -binfiles arch=i386-solaris size=963 +binfiles arch=i386-solaris size=987 bin/i386-solaris/euptex bin/i386-solaris/r-upmpost bin/i386-solaris/upbibtex @@ -325288,9 +329026,9 @@ binfiles arch=i386-solaris size=963 name uptex.universal-darwin category Package -revision 70784 +revision 74077 shortdesc universal-darwin files of uptex -binfiles arch=universal-darwin size=2326 +binfiles arch=universal-darwin size=2350 bin/universal-darwin/euptex bin/universal-darwin/r-upmpost bin/universal-darwin/upbibtex @@ -325304,9 +329042,9 @@ binfiles arch=universal-darwin size=2326 name uptex.windows category Package -revision 70757 +revision 74079 shortdesc windows files of uptex -binfiles arch=windows size=945 +binfiles arch=windows size=958 bin/windows/euptex.dll bin/windows/euptex.exe bin/windows/r-upmpost.exe @@ -325322,9 +329060,9 @@ binfiles arch=windows size=945 name uptex.x86_64-cygwin category Package -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of uptex -binfiles arch=x86_64-cygwin size=847 +binfiles arch=x86_64-cygwin size=849 bin/x86_64-cygwin/euptex.exe bin/x86_64-cygwin/r-upmpost bin/x86_64-cygwin/upbibtex.exe @@ -325338,9 +329076,9 @@ binfiles arch=x86_64-cygwin size=847 name uptex.x86_64-darwinlegacy category Package -revision 71441 +revision 74077 shortdesc x86_64-darwinlegacy files of uptex -binfiles arch=x86_64-darwinlegacy size=912 +binfiles arch=x86_64-darwinlegacy size=925 bin/x86_64-darwinlegacy/euptex bin/x86_64-darwinlegacy/r-upmpost bin/x86_64-darwinlegacy/upbibtex @@ -325354,9 +329092,9 @@ binfiles arch=x86_64-darwinlegacy size=912 name uptex.x86_64-linux category Package -revision 71441 +revision 74051 shortdesc x86_64-linux files of uptex -binfiles arch=x86_64-linux size=984 +binfiles arch=x86_64-linux size=1033 bin/x86_64-linux/euptex bin/x86_64-linux/r-upmpost bin/x86_64-linux/upbibtex @@ -325370,9 +329108,9 @@ binfiles arch=x86_64-linux size=984 name uptex.x86_64-linuxmusl category Package -revision 71441 +revision 74051 shortdesc x86_64-linuxmusl files of uptex -binfiles arch=x86_64-linuxmusl size=1033 +binfiles arch=x86_64-linuxmusl size=1047 bin/x86_64-linuxmusl/euptex bin/x86_64-linuxmusl/r-upmpost bin/x86_64-linuxmusl/upbibtex @@ -325386,9 +329124,9 @@ binfiles arch=x86_64-linuxmusl size=1033 name uptex.x86_64-solaris category Package -revision 70771 +revision 74051 shortdesc x86_64-solaris files of uptex -binfiles arch=x86_64-solaris size=1102 +binfiles arch=x86_64-solaris size=1129 bin/x86_64-solaris/euptex bin/x86_64-solaris/r-upmpost bin/x86_64-solaris/upbibtex @@ -325700,7 +329438,7 @@ catalogue-version 1.0a name useclass category Package -revision 70444 +revision 72455 shortdesc Load classes as packages longdesc This package enables the usage of classes as packages. It was longdesc originally designed for the l3doc class, which is employed for @@ -325709,7 +329447,7 @@ longdesc employing the l3doc class as a package is not convenient when longdesc using the developing class as the style for the document. longdesc Therefore, this package provides a simple interface for longdesc utilizing classes as packages. -docfiles size=133 +docfiles size=134 texmf-dist/doc/latex/useclass/README.md details="Readme" texmf-dist/doc/latex/useclass/useclass.pdf details="Package documentation" srcfiles size=5 @@ -325722,7 +329460,7 @@ catalogue-contact-repository https://github.com/huangyxi/useclass catalogue-ctan /macros/latex/contrib/useclass catalogue-license lppl1.3c catalogue-topics doc-supp expl3 -catalogue-version 1.0 +catalogue-version 1.1 name ushort category Package @@ -325815,7 +329553,7 @@ catalogue-version 1.0 name ut-thesis category Package -revision 65767 +revision 71906 shortdesc University of Toronto thesis style longdesc This LaTeX document class implements the formatting longdesc requirements of the University of Toronto School of Graduate @@ -325836,7 +329574,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.1.7 +catalogue-version 3.1.8 name utexasthesis category Package @@ -328107,7 +331845,7 @@ catalogue-version 1.1 name vectorlogos category Package -revision 70819 +revision 73069 shortdesc Vectorial logos (GeoGebra, Emacs, Scratch, ...) with 'inline' support longdesc With this package you can insert vectorial logos of some longdesc 'classic' software. The format of the logos is pdf. The package @@ -328136,8 +331874,6 @@ runfiles size=109 texmf-dist/tex/latex/vectorlogos/vectorlogo-texworks-alt.pdf texmf-dist/tex/latex/vectorlogos/vectorlogo-texworks.pdf texmf-dist/tex/latex/vectorlogos/vectorlogos.sty -catalogue-contact-bugs https://github.com/cpierquet/vectorlogos/issues -catalogue-contact-repository https://github.com/cpierquet/vectorlogos catalogue-ctan /macros/latex/contrib/vectorlogos catalogue-license lppl1.3c cc-by-3 cc-by-4 other-free gpl2 catalogue-topics logo @@ -328450,105 +332186,105 @@ catalogue-version 2.17.1 name velthuis.aarch64-linux category Package -revision 65927 +revision 73915 shortdesc aarch64-linux files of velthuis binfiles arch=aarch64-linux size=13 bin/aarch64-linux/devnag name velthuis.amd64-freebsd category Package -revision 69782 +revision 73792 shortdesc amd64-freebsd files of velthuis binfiles arch=amd64-freebsd size=9 bin/amd64-freebsd/devnag name velthuis.amd64-netbsd category Package -revision 65923 +revision 73802 shortdesc amd64-netbsd files of velthuis binfiles arch=amd64-netbsd size=9 bin/amd64-netbsd/devnag name velthuis.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of velthuis binfiles arch=armhf-linux size=7 bin/armhf-linux/devnag name velthuis.i386-freebsd category Package -revision 69782 +revision 73792 shortdesc i386-freebsd files of velthuis binfiles arch=i386-freebsd size=9 bin/i386-freebsd/devnag name velthuis.i386-linux category Package -revision 69782 +revision 73792 shortdesc i386-linux files of velthuis -binfiles arch=i386-linux size=8 +binfiles arch=i386-linux size=10 bin/i386-linux/devnag name velthuis.i386-netbsd category Package -revision 65923 +revision 73802 shortdesc i386-netbsd files of velthuis binfiles arch=i386-netbsd size=8 bin/i386-netbsd/devnag name velthuis.i386-solaris category Package -revision 69782 +revision 73792 shortdesc i386-solaris files of velthuis binfiles arch=i386-solaris size=8 bin/i386-solaris/devnag name velthuis.universal-darwin category Package -revision 69807 +revision 73806 shortdesc universal-darwin files of velthuis binfiles arch=universal-darwin size=42 bin/universal-darwin/devnag name velthuis.windows category Package -revision 69788 +revision 73796 shortdesc windows files of velthuis binfiles arch=windows size=9 bin/windows/devnag.exe name velthuis.x86_64-cygwin category Package -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of velthuis -binfiles arch=x86_64-cygwin size=8 +binfiles arch=x86_64-cygwin size=9 bin/x86_64-cygwin/devnag.exe name velthuis.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of velthuis binfiles arch=x86_64-darwinlegacy size=8 bin/x86_64-darwinlegacy/devnag name velthuis.x86_64-linux category Package -revision 69782 +revision 73777 shortdesc x86_64-linux files of velthuis binfiles arch=x86_64-linux size=10 bin/x86_64-linux/devnag name velthuis.x86_64-linuxmusl category Package -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of velthuis -binfiles arch=x86_64-linuxmusl size=10 +binfiles arch=x86_64-linuxmusl size=11 bin/x86_64-linuxmusl/devnag name velthuis.x86_64-solaris category Package -revision 69782 +revision 73792 shortdesc x86_64-solaris files of velthuis binfiles arch=x86_64-solaris size=10 bin/x86_64-solaris/devnag @@ -328594,7 +332330,7 @@ catalogue-version 1.2 name venturisadf category Package -revision 19444 +revision 72484 shortdesc Venturis ADF fonts collection longdesc Serif and sans serif complete text font families, in both Adobe longdesc Type 1 and OpenType formats for publication. The family is @@ -328607,829 +332343,907 @@ execute addMap yv2.map execute addMap yv3.map execute addMap yvo.map execute addMap yvt.map -docfiles size=122 +docfiles size=2119 texmf-dist/doc/fonts/venturisadf/LICENSE-utopia.txt texmf-dist/doc/fonts/venturisadf/LIST-Venturis.txt - texmf-dist/doc/fonts/venturisadf/README details="Readme" + texmf-dist/doc/fonts/venturisadf/README.md details="Readme" texmf-dist/doc/fonts/venturisadf/manifest.txt + texmf-dist/doc/fonts/venturisadf/venturis-example.pdf + texmf-dist/doc/fonts/venturisadf/venturis-example.tex + texmf-dist/doc/fonts/venturisadf/venturis2-example.pdf + texmf-dist/doc/fonts/venturisadf/venturis2-example.tex + texmf-dist/doc/fonts/venturisadf/venturisadf-imp.pdf + texmf-dist/doc/fonts/venturisadf/venturisadf-tables.pdf + texmf-dist/doc/fonts/venturisadf/venturisadf-tables.tex texmf-dist/doc/fonts/venturisadf/venturisadf.pdf details="Documentation: installation and use" - texmf-dist/doc/fonts/venturisadf/venturisadf.tex -srcfiles size=75 - texmf-dist/source/fonts/venturisadf/lining.etx - texmf-dist/source/fonts/venturisadf/oldstyle.etx - texmf-dist/source/fonts/venturisadf/rename.venturis - texmf-dist/source/fonts/venturisadf/rename.venturis2 - texmf-dist/source/fonts/venturisadf/rename.venturisold - texmf-dist/source/fonts/venturisadf/rename.venturissans - texmf-dist/source/fonts/venturisadf/rename.venturissans2 - texmf-dist/source/fonts/venturisadf/rename.venturistitling + texmf-dist/doc/fonts/venturisadf/venturisold-example.pdf + texmf-dist/doc/fonts/venturisadf/venturisold-example.tex + texmf-dist/doc/fonts/venturisadf/venturissans-example.pdf + texmf-dist/doc/fonts/venturisadf/venturissans-example.tex + texmf-dist/doc/fonts/venturisadf/venturissans2-example.pdf + texmf-dist/doc/fonts/venturisadf/venturissans2-example.tex + texmf-dist/doc/fonts/venturisadf/yv1-drv.tex + texmf-dist/doc/fonts/venturisadf/yv1-map.tex + texmf-dist/doc/fonts/venturisadf/yv2-drv.tex + texmf-dist/doc/fonts/venturisadf/yv2-map.tex + texmf-dist/doc/fonts/venturisadf/yv3-drv.tex + texmf-dist/doc/fonts/venturisadf/yv3-map.tex + texmf-dist/doc/fonts/venturisadf/yvo-drv.tex + texmf-dist/doc/fonts/venturisadf/yvo-map.tex + texmf-dist/doc/fonts/venturisadf/yvt-drv.tex + texmf-dist/doc/fonts/venturisadf/yvt-map.tex +srcfiles size=103 texmf-dist/source/fonts/venturisadf/resetalt.mtx - texmf-dist/source/fonts/venturisadf/t1-dotalt-f_f.etx - texmf-dist/source/fonts/venturisadf/t1-f_f.etx texmf-dist/source/fonts/venturisadf/t1-venturis.etx texmf-dist/source/fonts/venturisadf/t1-venturisold-longs.etx texmf-dist/source/fonts/venturisadf/t1-venturisold.etx - texmf-dist/source/fonts/venturisadf/t1j-f_f.etx texmf-dist/source/fonts/venturisadf/t1j-venturis.etx - texmf-dist/source/fonts/venturisadf/ts1-euro.etx - texmf-dist/source/fonts/venturisadf/ucdotalt.etx - texmf-dist/source/fonts/venturisadf/yv1-drv.tex - texmf-dist/source/fonts/venturisadf/yv1-map.tex - texmf-dist/source/fonts/venturisadf/yv2-drv.tex - texmf-dist/source/fonts/venturisadf/yv2-map.tex - texmf-dist/source/fonts/venturisadf/yv3-drv.tex - texmf-dist/source/fonts/venturisadf/yv3-map.tex - texmf-dist/source/fonts/venturisadf/yvo-drv.tex - texmf-dist/source/fonts/venturisadf/yvo-map.tex - texmf-dist/source/fonts/venturisadf/yvt-drv.tex - texmf-dist/source/fonts/venturisadf/yvt-map.tex -runfiles size=2660 - texmf-dist/fonts/afm/arkandis/venturis/yvtb8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtb8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtbc8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtbc8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtbci8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtbci8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtbd8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtbi8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtbi8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvth8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvthi8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtr8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtr8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtrc8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtrc8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtrci8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtrci8ac.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtrdl8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtri8a.afm - texmf-dist/fonts/afm/arkandis/venturis/yvtri8ac.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2b8a.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2b8ac.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2bi8a.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2bi8ac.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2m8a.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2mi8a.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2r8a.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2r8ac.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2ri8a.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2ri8ac.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2x8a.afm - texmf-dist/fonts/afm/arkandis/venturis2/yv2xi8a.afm - texmf-dist/fonts/afm/arkandis/venturisold/yvob8a.afm - texmf-dist/fonts/afm/arkandis/venturisold/yvobi8a.afm - texmf-dist/fonts/afm/arkandis/venturisold/yvodd8a.afm - texmf-dist/fonts/afm/arkandis/venturisold/yvor8a.afm - texmf-dist/fonts/afm/arkandis/venturisold/yvori8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1b8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1b8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1b8ax.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1bd8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1bi8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1bi8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1bi8ax.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1d8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1dd8au.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1di8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1h8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1ho8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1l8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1li8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1r8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1r8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1r8ax.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1ri8a.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1ri8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans/yv1ri8ax.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3b8a.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3b8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3b8ax.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3bi8a.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3bi8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3bi8ax.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3r8a.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3r8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3r8ax.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3ri8a.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3ri8ac.afm - texmf-dist/fonts/afm/arkandis/venturissans2/yv3ri8ax.afm - texmf-dist/fonts/enc/dvips/venturisadf/t1-dotalt-f_f-venturisadf.enc - texmf-dist/fonts/enc/dvips/venturisadf/t1-f_f-venturisadf.enc + texmf-dist/source/fonts/venturisadf/venturis.dtx + texmf-dist/source/fonts/venturisadf/venturis2.dtx + texmf-dist/source/fonts/venturisadf/venturisadf-build.dtx + texmf-dist/source/fonts/venturisadf/venturisadf-imp.dtx + texmf-dist/source/fonts/venturisadf/venturisadf.dtx + texmf-dist/source/fonts/venturisadf/venturisadf.ins + texmf-dist/source/fonts/venturisadf/venturisold.dtx + texmf-dist/source/fonts/venturisadf/venturissans.dtx + texmf-dist/source/fonts/venturisadf/venturissans2.dtx +runfiles size=3458 + texmf-dist/fonts/afm/public/venturisadf/yv1b8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1b8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv1b8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yv1bd8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1bi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1bi8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv1bi8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yv1d8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1dd8au.afm + texmf-dist/fonts/afm/public/venturisadf/yv1di8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1h8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1ho8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1l8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1li8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1r8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1r8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv1r8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yv1ri8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv1ri8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv1ri8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yv2b8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv2b8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv2bi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv2bi8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv2m8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv2mi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv2r8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv2r8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv2ri8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv2ri8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv2x8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv2xi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv3b8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv3b8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv3b8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yv3bi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv3bi8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv3bi8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yv3r8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv3r8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv3r8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yv3ri8a.afm + texmf-dist/fonts/afm/public/venturisadf/yv3ri8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yv3ri8ax.afm + texmf-dist/fonts/afm/public/venturisadf/yvob8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvobi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvodd8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvor8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvori8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtb8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtb8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvtbc8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtbc8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvtbci8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtbci8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvtbd8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvtbi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtbi8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvth8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvthi8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtr8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtr8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvtrc8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtrc8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvtrci8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtrci8ac.afm + texmf-dist/fonts/afm/public/venturisadf/yvtrdl8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtri8a.afm + texmf-dist/fonts/afm/public/venturisadf/yvtri8ac.afm + texmf-dist/fonts/enc/dvips/venturisadf/t1-dotalt-f_f-yv.enc + texmf-dist/fonts/enc/dvips/venturisadf/t1-f_f-yv.enc texmf-dist/fonts/enc/dvips/venturisadf/t1-venturis.enc texmf-dist/fonts/enc/dvips/venturisadf/t1-venturisold-longs.enc - texmf-dist/fonts/enc/dvips/venturisadf/ts1-euro-venturisadf.enc - texmf-dist/fonts/map/dvips/venturis/yvt.map - texmf-dist/fonts/map/dvips/venturis2/yv2.map - texmf-dist/fonts/map/dvips/venturisold/yvo.map - texmf-dist/fonts/map/dvips/venturissans/yv1.map - texmf-dist/fonts/map/dvips/venturissans2/yv3.map - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtb-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtb.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtbc-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtbc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtbci-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtbci.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtbd-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtbi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtbi.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvth.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvthi.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtr-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtr.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtrc-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtrc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtrci-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtrci.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtrdl.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1-yvtri.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtbc-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtbc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtbci-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtbci.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtrc-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtrc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtrci-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/t1alt-yvtrci.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtb-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtb.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtbc-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtbc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtbci-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtbci.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtbd-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtbi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtbi.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvth.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvthi.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtr-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtr.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtrc-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtrc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtrci-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtrci.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtrdl.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/ts1-yvtri.tfm - texmf-dist/fonts/tfm/arkandis/venturis/vent-yvtr.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtb8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtb8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtb8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtb8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbc8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbc8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbc8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbc8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbci8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbci8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbci8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbci8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcij8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcij8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcijw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcijw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbciw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbciw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcj8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcj8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcjw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcjw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbcw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbd8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbd8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbi8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbi8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbij8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbij8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbijw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbijw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbiw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbiw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbj8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbj8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbjw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbjw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtbw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvth8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvth8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvthi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvthi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtr8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtr8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtr8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtr8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrajw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtraw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrc8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrc8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrc8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrc8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrci8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrci8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrci8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrci8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcij8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcij8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcijw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcijw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrciw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrciw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcj8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcj8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcjw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcjw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrcw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrdl8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrdl8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtri8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtri8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtri8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtri8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrij8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrij8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrijw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrijw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtriw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtriw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrj8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrj8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrjw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrjw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrw8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis/yvtrw8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2b-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2b.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2bi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2bi.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2m.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2mi.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2r-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2r.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2ri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2ri.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2x.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/t1-yv2xi.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2b-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2b.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2bi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2bi.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2m.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2mi.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2r-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2r.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2ri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2ri.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2x.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/ts1-yv2xi.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2b8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2b8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2b8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2b8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2bi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2bi8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2bi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2bi8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2m8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2m8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2mi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2mi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2r8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2r8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2r8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2r8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2ri8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2ri8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2ri8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2ri8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2x8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2x8t.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2xi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturis2/yv2xi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/t1-yvob.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/t1-yvobi.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/t1-yvodd.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/t1-yvor.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/t1-yvori.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/ts1-yvob.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/ts1-yvobi.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/ts1-yvodd.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/ts1-yvor.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/ts1-yvori.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvoab8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvoabi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvoar8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvoari8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvob8c.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvob8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvobi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvobi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvodd8c.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvodd8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvor8c.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvor8t.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvori8c.tfm - texmf-dist/fonts/tfm/arkandis/venturisold/yvori8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1b-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1b-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1b.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1bd.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1bi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1bi-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1bi.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1d.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1dd-u.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1di.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1h.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1ho.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1l.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1li.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1r-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1r-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1r.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1ri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1ri-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/t1-yv1ri.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1b-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1b-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1b.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1bd.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1bi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1bi-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1bi.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1d.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1dd-u.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1di.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1h.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1ho.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1l.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1li.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1r-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1r-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1r.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1ri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1ri-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/ts1-yv1ri.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1b8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1b8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1b8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1b8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1b8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1b8tx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bd8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bd8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bi8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bi8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bi8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1bi8tx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1d8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1d8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1dd8cu.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1dd8tu.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1di8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1di8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1h8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1h8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ho8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ho8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1l8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1l8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1li8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1li8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1r8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1r8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1r8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1r8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1r8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1r8tx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ri8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ri8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ri8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ri8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ri8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans/yv1ri8tx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3b-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3b-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3b.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3bi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3bi-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3bi.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3r-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3r-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3r.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3ri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3ri-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/t1-yv3ri.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3b-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3b-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3b.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3bi-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3bi-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3bi.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3r-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3r-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3r.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3ri-c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3ri-x.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/ts1-yv3ri.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3b8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3b8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3b8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3b8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3b8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3b8tx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3bi8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3bi8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3bi8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3bi8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3bi8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3bi8tx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3r8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3r8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3r8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3r8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3r8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3r8tx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3ri8c.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3ri8cc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3ri8cx.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3ri8t.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3ri8tc.tfm - texmf-dist/fonts/tfm/arkandis/venturissans2/yv3ri8tx.tfm - texmf-dist/fonts/type1/arkandis/venturis/yvtb8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtb8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtb8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtb8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtbc8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtbc8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtbc8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtbc8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtbci8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtbci8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtbci8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtbci8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtbd8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtbd8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtbi8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtbi8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtbi8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtbi8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvth8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvth8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvthi8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvthi8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtr8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtr8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtr8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtr8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtrc8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtrc8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtrc8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtrc8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtrci8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtrci8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtrci8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtrci8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtrdl8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtrdl8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtri8a.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtri8a.pfm - texmf-dist/fonts/type1/arkandis/venturis/yvtri8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis/yvtri8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2b8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2b8a.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2b8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2b8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2bi8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2bi8a.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2bi8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2bi8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2m8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2m8a.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2mi8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2mi8a.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2r8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2r8a.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2r8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2r8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2ri8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2ri8a.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2ri8ac.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2ri8ac.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2x8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2x8a.pfm - texmf-dist/fonts/type1/arkandis/venturis2/yv2xi8a.pfb - texmf-dist/fonts/type1/arkandis/venturis2/yv2xi8a.pfm - texmf-dist/fonts/type1/arkandis/venturisold/yvob8a.pfb - texmf-dist/fonts/type1/arkandis/venturisold/yvob8a.pfm - texmf-dist/fonts/type1/arkandis/venturisold/yvobi8a.pfb - texmf-dist/fonts/type1/arkandis/venturisold/yvobi8a.pfm - texmf-dist/fonts/type1/arkandis/venturisold/yvodd8a.pfb - texmf-dist/fonts/type1/arkandis/venturisold/yvodd8a.pfm - texmf-dist/fonts/type1/arkandis/venturisold/yvor8a.pfb - texmf-dist/fonts/type1/arkandis/venturisold/yvor8a.pfm - texmf-dist/fonts/type1/arkandis/venturisold/yvori8a.pfb - texmf-dist/fonts/type1/arkandis/venturisold/yvori8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1b8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1b8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1b8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1b8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1b8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1b8ax.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1bd8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1bd8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1bi8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1bi8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1bi8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1bi8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1bi8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1bi8ax.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1d8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1d8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1dd8au.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1dd8au.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1di8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1di8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1h8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1h8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1ho8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1ho8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1l8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1l8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1li8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1li8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1r8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1r8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1r8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1r8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1r8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1r8ax.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1ri8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1ri8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1ri8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1ri8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans/yv1ri8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans/yv1ri8ax.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3b8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3b8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3b8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3b8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3b8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3b8ax.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3bi8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3bi8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3bi8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3bi8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3bi8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3bi8ax.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3r8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3r8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3r8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3r8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3r8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3r8ax.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3ri8a.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3ri8a.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3ri8ac.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3ri8ac.pfm - texmf-dist/fonts/type1/arkandis/venturissans2/yv3ri8ax.pfb - texmf-dist/fonts/type1/arkandis/venturissans2/yv3ri8ax.pfm - texmf-dist/fonts/vf/arkandis/venturis/yvtb8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtb8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtb8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtb8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbc8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbc8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbc8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbc8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbci8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbci8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbci8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbci8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcij8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcij8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcijw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcijw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbciw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbciw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcj8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcj8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcjw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcjw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbcw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbd8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbd8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbi8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbi8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbi8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbi8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbij8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbij8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbijw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbijw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbiw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbiw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbj8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbj8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbjw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbjw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtbw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvth8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvth8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvthi8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvthi8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtr8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtr8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtr8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtr8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrajw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtraw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrc8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrc8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrc8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrc8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrci8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrci8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrci8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrci8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcij8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcij8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcijw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcijw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrciw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrciw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcj8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcj8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcjw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcjw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrcw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrdl8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrdl8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtri8c.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtri8cc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtri8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtri8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrij8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrij8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrijw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrijw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtriw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtriw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrj8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrj8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrjw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrjw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrw8t.vf - texmf-dist/fonts/vf/arkandis/venturis/yvtrw8tc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2b8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2b8cc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2b8t.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2b8tc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2bi8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2bi8cc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2bi8t.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2bi8tc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2m8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2m8t.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2mi8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2mi8t.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2r8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2r8cc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2r8t.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2r8tc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2ri8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2ri8cc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2ri8t.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2ri8tc.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2x8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2x8t.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2xi8c.vf - texmf-dist/fonts/vf/arkandis/venturis2/yv2xi8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvoab8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvoabi8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvoar8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvoari8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvob8c.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvob8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvobi8c.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvobi8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvodd8c.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvodd8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvor8c.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvor8t.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvori8c.vf - texmf-dist/fonts/vf/arkandis/venturisold/yvori8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1b8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1b8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1b8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1b8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1b8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1b8tx.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bd8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bd8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bi8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bi8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bi8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bi8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bi8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1bi8tx.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1d8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1d8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1dd8cu.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1dd8tu.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1di8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1di8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1h8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1h8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ho8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ho8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1l8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1l8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1li8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1li8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1r8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1r8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1r8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1r8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1r8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1r8tx.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ri8c.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ri8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ri8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ri8t.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ri8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans/yv1ri8tx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3b8c.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3b8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3b8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3b8t.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3b8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3b8tx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3bi8c.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3bi8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3bi8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3bi8t.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3bi8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3bi8tx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3r8c.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3r8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3r8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3r8t.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3r8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3r8tx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3ri8c.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3ri8cc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3ri8cx.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3ri8t.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3ri8tc.vf - texmf-dist/fonts/vf/arkandis/venturissans2/yv3ri8tx.vf - texmf-dist/tex/latex/venturis/t1yvt.fd - texmf-dist/tex/latex/venturis/t1yvtajw.fd - texmf-dist/tex/latex/venturis/t1yvtaw.fd - texmf-dist/tex/latex/venturis/t1yvtd.fd - texmf-dist/tex/latex/venturis/t1yvtj.fd - texmf-dist/tex/latex/venturis/t1yvtjw.fd - texmf-dist/tex/latex/venturis/t1yvtw.fd - texmf-dist/tex/latex/venturis/ts1yvt.fd - texmf-dist/tex/latex/venturis/ts1yvtajw.fd - texmf-dist/tex/latex/venturis/ts1yvtaw.fd - texmf-dist/tex/latex/venturis/ts1yvtd.fd - texmf-dist/tex/latex/venturis/ts1yvtj.fd - texmf-dist/tex/latex/venturis/ts1yvtjw.fd - texmf-dist/tex/latex/venturis/ts1yvtw.fd - texmf-dist/tex/latex/venturis2/t1yv2.fd - texmf-dist/tex/latex/venturis2/ts1yv2.fd + texmf-dist/fonts/enc/dvips/venturisadf/ts1-euro-yv.enc + texmf-dist/fonts/map/dvips/venturisadf/yv1.map + texmf-dist/fonts/map/dvips/venturisadf/yv2.map + texmf-dist/fonts/map/dvips/venturisadf/yv3.map + texmf-dist/fonts/map/dvips/venturisadf/yvo.map + texmf-dist/fonts/map/dvips/venturisadf/yvt.map + texmf-dist/fonts/opentype/public/venturisadf/VenturisADF-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADF-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADF-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADF-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCd-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCd-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCd-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCd-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCdStyle-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCdStyle-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCdStyle-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFCdStyle-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFGothTitling.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFHeavy-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFHeavy.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Cd-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Cd-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Cd-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Cd-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Med-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Med-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Med-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFNo2Med-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFStyle-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFStyle-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFStyle-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFStyle-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFTitlingNo1.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFTitlingNo2.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFTitlingNo3.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisADFTitlingNo4.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisOldADF-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisOldADF-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisOldADF-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisOldADF-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADF-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADF-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADF-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADF-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFCd-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFCd-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFCd-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFCd-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFEx-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFEx-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFEx-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFEx-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFHeavy-Oblique.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFHeavy.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFLt-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFLt-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFLt-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFLt-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2-BoldItalic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Cd-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Cd-BoldItal.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Cd-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Cd-Regular.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Ex-Bold.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Ex-BoldItal.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Ex-Italic.otf + texmf-dist/fonts/opentype/public/venturisadf/VenturisSansADFNo2Ex-Regular.otf + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1b-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1b-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1b.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1bd.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1bi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1bi-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1bi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1d.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1dd-u.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1di.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1h.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1ho.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1l.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1li.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1r-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1r-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1r.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1ri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1ri-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv1ri.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2b-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2b.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2bi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2bi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2m.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2mi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2r-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2r.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2ri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2ri.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv2xi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3b-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3b-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3b.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3bi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3bi-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3bi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3r-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3r-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3r.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3ri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3ri-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yv3ri.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvob.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvobi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvodd.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvor.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvori.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtb-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtb.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtbc-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtbc.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtbci-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtbci.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtbd-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtbi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtbi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvth.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvthi.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtr-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtr.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtrc-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtrc.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtrci-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtrci.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtrdl.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1-yvtri.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtbc-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtbc.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtbci-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtbci.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtrc-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtrc.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtrci-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/t1alt-yvtrci.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1b-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1b-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1b.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1bd.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1bi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1bi-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1bi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1d.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1dd-u.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1di.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1h.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1ho.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1l.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1li.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1r-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1r-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1r.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1ri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1ri-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv1ri.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2b-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2b.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2bi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2bi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2m.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2mi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2r-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2r.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2ri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2ri.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv2xi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3b-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3b-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3b.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3bi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3bi-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3bi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3r-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3r-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3r.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3ri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3ri-x.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yv3ri.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvob.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvobi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvodd.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvor.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvori.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtb-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtb.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtbc-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtbc.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtbci-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtbci.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtbd-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtbi-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtbi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvth.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvthi.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtr-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtr.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtrc-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtrc.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtrci-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtrci.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtrdl.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtri-c.tfm + texmf-dist/fonts/tfm/public/venturisadf/ts1-yvtri.tfm + texmf-dist/fonts/tfm/public/venturisadf/vent-yvtr.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1b8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1b8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1b8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1b8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1b8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1b8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bd8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bd8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bi8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bi8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bi8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1bi8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1d8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1d8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1dd8cu.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1dd8tu.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1di8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1di8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1h8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1h8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ho8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ho8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1l8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1l8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1li8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1li8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1r8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1r8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1r8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1r8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1r8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1r8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ri8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ri8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ri8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ri8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ri8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv1ri8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2b8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2b8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2b8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2b8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2bi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2bi8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2bi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2bi8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2m8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2m8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2mi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2mi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2r8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2r8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2r8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2r8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2ri8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2ri8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2ri8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2ri8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2x8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2x8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2xi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv2xi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3b8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3b8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3b8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3b8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3b8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3b8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3bi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3bi8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3bi8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3bi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3bi8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3bi8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3r8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3r8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3r8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3r8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3r8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3r8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3ri8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3ri8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3ri8cx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3ri8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3ri8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yv3ri8tx.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvoab8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvoabi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvoar8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvoari8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvob8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvob8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvobi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvobi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvodd8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvodd8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvor8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvor8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvori8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvori8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtb8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtb8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtb8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtb8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbc8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbc8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbc8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbc8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbci8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbci8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbci8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbci8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcij8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcij8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcijw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcijw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbciw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbciw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcj8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcj8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcjw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcjw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbcw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbd8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbd8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbi8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbi8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbij8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbij8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbijw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbijw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbiw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbiw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbj8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbj8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbjw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbjw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtbw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvth8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvth8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvthi8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvthi8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtr8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtr8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtr8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtr8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrajw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtraw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrc8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrc8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrc8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrc8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrci8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrci8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrci8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrci8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcij8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcij8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcijw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcijw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrciw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrciw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcj8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcj8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcjw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcjw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrcw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrdl8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrdl8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtri8c.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtri8cc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtri8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtri8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrij8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrij8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrijw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrijw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtriw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtriw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrj8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrj8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrjw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrjw8tc.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrw8t.tfm + texmf-dist/fonts/tfm/public/venturisadf/yvtrw8tc.tfm + texmf-dist/fonts/type1/public/venturisadf/yv1b8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1b8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1b8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1b8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1b8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1b8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1bd8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1bd8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1bi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1bi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1bi8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1bi8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1bi8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1bi8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1d8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1d8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1dd8au.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1dd8au.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1di8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1di8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1h8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1h8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1ho8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1ho8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1l8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1l8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1li8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1li8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1r8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1r8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1r8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1r8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1r8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1r8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1ri8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1ri8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1ri8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1ri8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv1ri8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv1ri8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2b8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2b8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2b8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2b8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2bi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2bi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2bi8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2bi8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2m8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2m8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2mi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2mi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2r8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2r8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2r8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2r8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2ri8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2ri8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2ri8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2ri8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2x8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2x8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv2xi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv2xi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3b8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3b8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3b8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3b8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3b8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3b8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3bi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3bi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3bi8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3bi8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3bi8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3bi8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3r8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3r8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3r8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3r8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3r8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3r8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3ri8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3ri8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3ri8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3ri8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yv3ri8ax.pfb + texmf-dist/fonts/type1/public/venturisadf/yv3ri8ax.pfm + texmf-dist/fonts/type1/public/venturisadf/yvob8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvob8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvobi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvobi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvodd8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvodd8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvor8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvor8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvori8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvori8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtb8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtb8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtb8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtb8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtbc8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtbc8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtbc8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtbc8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtbci8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtbci8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtbci8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtbci8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtbd8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtbd8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtbi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtbi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtbi8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtbi8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvth8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvth8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvthi8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvthi8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtr8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtr8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtr8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtr8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtrc8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtrc8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtrc8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtrc8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtrci8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtrci8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtrci8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtrci8ac.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtrdl8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtrdl8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtri8a.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtri8a.pfm + texmf-dist/fonts/type1/public/venturisadf/yvtri8ac.pfb + texmf-dist/fonts/type1/public/venturisadf/yvtri8ac.pfm + texmf-dist/fonts/vf/public/venturisadf/yv1b8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1b8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1b8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv1b8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1b8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1b8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bd8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bd8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bi8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bi8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bi8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1bi8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yv1d8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1d8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1dd8cu.vf + texmf-dist/fonts/vf/public/venturisadf/yv1dd8tu.vf + texmf-dist/fonts/vf/public/venturisadf/yv1di8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1di8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1h8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1h8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ho8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ho8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1l8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1l8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1li8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1li8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1r8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1r8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1r8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv1r8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1r8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1r8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ri8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ri8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ri8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ri8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ri8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv1ri8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yv2b8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2b8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2b8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv2b8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2bi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2bi8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2bi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv2bi8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2m8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2m8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv2mi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2mi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv2r8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2r8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2r8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv2r8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2ri8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2ri8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2ri8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv2ri8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv2x8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2x8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv2xi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv2xi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv3b8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv3b8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3b8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv3b8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv3b8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3b8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yv3bi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv3bi8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3bi8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv3bi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv3bi8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3bi8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yv3r8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv3r8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3r8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv3r8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv3r8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3r8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yv3ri8c.vf + texmf-dist/fonts/vf/public/venturisadf/yv3ri8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3ri8cx.vf + texmf-dist/fonts/vf/public/venturisadf/yv3ri8t.vf + texmf-dist/fonts/vf/public/venturisadf/yv3ri8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yv3ri8tx.vf + texmf-dist/fonts/vf/public/venturisadf/yvoab8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvoabi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvoar8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvoari8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvob8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvob8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvobi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvobi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvodd8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvodd8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvor8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvor8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvori8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvori8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtb8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtb8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtb8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtb8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbc8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbc8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbc8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbc8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbci8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbci8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbci8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbci8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcij8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcij8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcijw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcijw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbciw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbciw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcj8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcj8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcjw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcjw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbcw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbd8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbd8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbi8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbi8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbij8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbij8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbijw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbijw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbiw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbiw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbj8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbj8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbjw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbjw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtbw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvth8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvth8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvthi8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvthi8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtr8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtr8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtr8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtr8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrajw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtraw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrc8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrc8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrc8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrc8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrci8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrci8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrci8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrci8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcij8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcij8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcijw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcijw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrciw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrciw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcj8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcj8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcjw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcjw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrcw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrdl8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrdl8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtri8c.vf + texmf-dist/fonts/vf/public/venturisadf/yvtri8cc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtri8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtri8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrij8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrij8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrijw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrijw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtriw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtriw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrj8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrj8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrjw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrjw8tc.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrw8t.vf + texmf-dist/fonts/vf/public/venturisadf/yvtrw8tc.vf + texmf-dist/tex/latex/venturisadf/t1yv1.fd + texmf-dist/tex/latex/venturisadf/t1yv1d.fd + texmf-dist/tex/latex/venturisadf/t1yv2.fd + texmf-dist/tex/latex/venturisadf/t1yv3.fd + texmf-dist/tex/latex/venturisadf/t1yvo.fd + texmf-dist/tex/latex/venturisadf/t1yvoa.fd + texmf-dist/tex/latex/venturisadf/t1yvoad.fd + texmf-dist/tex/latex/venturisadf/t1yvod.fd + texmf-dist/tex/latex/venturisadf/t1yvt.fd + texmf-dist/tex/latex/venturisadf/t1yvtajw.fd + texmf-dist/tex/latex/venturisadf/t1yvtaw.fd + texmf-dist/tex/latex/venturisadf/t1yvtd.fd + texmf-dist/tex/latex/venturisadf/t1yvtj.fd + texmf-dist/tex/latex/venturisadf/t1yvtjw.fd + texmf-dist/tex/latex/venturisadf/t1yvtw.fd + texmf-dist/tex/latex/venturisadf/ts1yv1.fd + texmf-dist/tex/latex/venturisadf/ts1yv1d.fd + texmf-dist/tex/latex/venturisadf/ts1yv2.fd + texmf-dist/tex/latex/venturisadf/ts1yv3.fd + texmf-dist/tex/latex/venturisadf/ts1yvo.fd + texmf-dist/tex/latex/venturisadf/ts1yvoa.fd + texmf-dist/tex/latex/venturisadf/ts1yvoad.fd + texmf-dist/tex/latex/venturisadf/ts1yvod.fd + texmf-dist/tex/latex/venturisadf/ts1yvt.fd + texmf-dist/tex/latex/venturisadf/ts1yvtajw.fd + texmf-dist/tex/latex/venturisadf/ts1yvtaw.fd + texmf-dist/tex/latex/venturisadf/ts1yvtd.fd + texmf-dist/tex/latex/venturisadf/ts1yvtj.fd + texmf-dist/tex/latex/venturisadf/ts1yvtjw.fd + texmf-dist/tex/latex/venturisadf/ts1yvtw.fd texmf-dist/tex/latex/venturisadf/venturis.sty texmf-dist/tex/latex/venturisadf/venturis2.sty texmf-dist/tex/latex/venturisadf/venturisold.sty - texmf-dist/tex/latex/venturisold/t1yvo.fd - texmf-dist/tex/latex/venturisold/t1yvoa.fd - texmf-dist/tex/latex/venturisold/t1yvoad.fd - texmf-dist/tex/latex/venturisold/t1yvod.fd - texmf-dist/tex/latex/venturisold/ts1yvo.fd - texmf-dist/tex/latex/venturisold/ts1yvoa.fd - texmf-dist/tex/latex/venturisold/ts1yvoad.fd - texmf-dist/tex/latex/venturisold/ts1yvod.fd - texmf-dist/tex/latex/venturissans/t1yv1.fd - texmf-dist/tex/latex/venturissans/t1yv1d.fd - texmf-dist/tex/latex/venturissans/ts1yv1.fd - texmf-dist/tex/latex/venturissans/ts1yv1d.fd - texmf-dist/tex/latex/venturissans2/t1yv3.fd - texmf-dist/tex/latex/venturissans2/ts1yv3.fd catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm +catalogue-contact-repository https://codeberg.org/cfr/nfssext catalogue-ctan /fonts/venturisadf -catalogue-license other-free +catalogue-license lppl1.3 other-free catalogue-topics font font-type1 font-otf -catalogue-version 1.005 +catalogue-version 2.0 name verbasef category Package @@ -329578,19 +333392,19 @@ catalogue-version 1.3 name verifiche category Package -revision 69726 +revision 72983 shortdesc A LaTeX package to typeset (Italian) high school tests longdesc The purpose of this package is to manage the exercises for a longdesc test, their points, levels of difficulty, and solutions. Some longdesc typical formats of exercises are already implemented: Plain longdesc exercise "Complete the Text" "True or false" Closed questions longdesc Open questions "Find the error" -docfiles size=222 +docfiles size=228 texmf-dist/doc/latex/verifiche/README.md details="Readme" texmf-dist/doc/latex/verifiche/verifiche-example.pdf details="Example of use" language="it" texmf-dist/doc/latex/verifiche/verifiche-example.tex texmf-dist/doc/latex/verifiche/verifiche.pdf details="Package documentation" language="it" -srcfiles size=20 +srcfiles size=23 texmf-dist/source/latex/verifiche/verifiche.dtx texmf-dist/source/latex/verifiche/verifiche.ins runfiles size=6 @@ -329598,11 +333412,11 @@ runfiles size=6 catalogue-ctan /macros/latex/contrib/verifiche catalogue-license lppl1.3 catalogue-topics exam exercise -catalogue-version 7.1 +catalogue-version 8.0 name verifycommand category Package -revision 69389 +revision 72180 shortdesc Verifies definitions are unchanged, such as before patching longdesc This package is intended for package authors who patch code longdesc from other packages. To improve reliability, the verifycommand @@ -329611,19 +333425,19 @@ longdesc have not changed. This allows a package author to check before longdesc patching a definition. If a definition is not as expected, a longdesc warning is issued. At the end of the compile, a list of all longdesc changed definitions is displayed. -docfiles size=57 +docfiles size=66 texmf-dist/doc/latex/verifycommand/README.txt details="Readme" texmf-dist/doc/latex/verifycommand/verifycommand.pdf details="Package documentation" -srcfiles size=9 +srcfiles size=14 texmf-dist/source/latex/verifycommand/verifycommand.dtx texmf-dist/source/latex/verifycommand/verifycommand.ins -runfiles size=2 +runfiles size=3 texmf-dist/tex/latex/verifycommand/verifycommand.sty catalogue-contact-bugs https://github.com/bdtc/verifycommand catalogue-ctan /macros/latex/contrib/verifycommand -catalogue-license lppl1.3c +catalogue-license lppl1.3 catalogue-topics package-devel -catalogue-version 1.00 +catalogue-version 1.10 name verse category Package @@ -330048,8 +333862,8 @@ catalogue-topics pgf-tikz graphics-in-tex graphics-doc french-doc catalogue-version 0.65 name vlna -category TLCore -revision 66186 +category Package +revision 73908 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 @@ -330058,109 +333872,109 @@ depend vlna.ARCH docfiles size=43 texmf-dist/doc/man/man1/vlna.1 texmf-dist/doc/man/man1/vlna.man1.pdf - texmf-dist/doc/vlna/vlna.pdf + texmf-dist/doc/support/vlna/vlna.pdf name vlna.aarch64-linux -category TLCore -revision 65927 +category Package +revision 73915 shortdesc aarch64-linux files of vlna binfiles arch=aarch64-linux size=5 bin/aarch64-linux/vlna name vlna.amd64-freebsd -category TLCore -revision 69782 +category Package +revision 73792 shortdesc amd64-freebsd files of vlna binfiles arch=amd64-freebsd size=4 bin/amd64-freebsd/vlna name vlna.amd64-netbsd -category TLCore -revision 65923 +category Package +revision 73802 shortdesc amd64-netbsd files of vlna binfiles arch=amd64-netbsd size=5 bin/amd64-netbsd/vlna name vlna.armhf-linux -category TLCore -revision 70489 +category Package +revision 73793 shortdesc armhf-linux files of vlna binfiles arch=armhf-linux size=4 bin/armhf-linux/vlna name vlna.i386-freebsd -category TLCore -revision 69782 +category Package +revision 73792 shortdesc i386-freebsd files of vlna binfiles arch=i386-freebsd size=4 bin/i386-freebsd/vlna name vlna.i386-linux -category TLCore -revision 69782 +category Package +revision 73792 shortdesc i386-linux files of vlna -binfiles arch=i386-linux size=4 +binfiles arch=i386-linux size=5 bin/i386-linux/vlna name vlna.i386-netbsd -category TLCore -revision 65923 +category Package +revision 73802 shortdesc i386-netbsd files of vlna binfiles arch=i386-netbsd size=4 bin/i386-netbsd/vlna name vlna.i386-solaris -category TLCore -revision 69782 +category Package +revision 73792 shortdesc i386-solaris files of vlna -binfiles arch=i386-solaris size=4 +binfiles arch=i386-solaris size=5 bin/i386-solaris/vlna name vlna.universal-darwin -category TLCore -revision 69807 +category Package +revision 73806 shortdesc universal-darwin files of vlna binfiles arch=universal-darwin size=38 bin/universal-darwin/vlna name vlna.windows -category TLCore -revision 69788 +category Package +revision 73796 shortdesc windows files of vlna binfiles arch=windows size=6 bin/windows/vlna.exe name vlna.x86_64-cygwin -category TLCore -revision 70560 +category Package +revision 74094 shortdesc x86_64-cygwin files of vlna binfiles arch=x86_64-cygwin size=5 bin/x86_64-cygwin/vlna.exe name vlna.x86_64-darwinlegacy -category TLCore -revision 71441 +category Package +revision 73943 shortdesc x86_64-darwinlegacy files of vlna binfiles arch=x86_64-darwinlegacy size=6 bin/x86_64-darwinlegacy/vlna name vlna.x86_64-linux -category TLCore -revision 69782 +category Package +revision 73777 shortdesc x86_64-linux files of vlna binfiles arch=x86_64-linux size=5 bin/x86_64-linux/vlna name vlna.x86_64-linuxmusl -category TLCore -revision 71441 +category Package +revision 73792 shortdesc x86_64-linuxmusl files of vlna binfiles arch=x86_64-linuxmusl size=5 bin/x86_64-linuxmusl/vlna name vlna.x86_64-solaris -category TLCore -revision 69782 +category Package +revision 73792 shortdesc x86_64-solaris files of vlna binfiles arch=x86_64-solaris size=6 bin/x86_64-solaris/vlna @@ -332535,7 +336349,7 @@ catalogue-version 1.10 name wargame category Package -revision 69692 +revision 72903 shortdesc A LaTeX package to prepare hex'n'counter wargames longdesc This package can help make classic Hex'n'Counter wargames using longdesc LaTeX. The package provides tools for generating Hex maps and @@ -332549,7 +336363,7 @@ longdesc for units. The package uses TikZ for most things. The package longdesc supports 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). -docfiles size=687 +docfiles size=705 texmf-dist/doc/latex/wargame/README.md details="Readme" texmf-dist/doc/latex/wargame/compat.pdf texmf-dist/doc/latex/wargame/symbols.pdf @@ -332561,7 +336375,7 @@ docfiles size=687 texmf-dist/doc/latex/wargame/tutorial/game.tex texmf-dist/doc/latex/wargame/tutorial/patch.py texmf-dist/doc/latex/wargame/wargame.pdf details="Package documentation" -srcfiles size=389 +srcfiles size=415 texmf-dist/source/latex/wargame/Makefile texmf-dist/source/latex/wargame/chit/battle.dtx texmf-dist/source/latex/wargame/chit/core.dtx @@ -332585,10 +336399,12 @@ srcfiles size=389 texmf-dist/source/latex/wargame/hex/terrain.dtx texmf-dist/source/latex/wargame/hex/terrain/beach.dtx texmf-dist/source/latex/wargame/hex/terrain/city.dtx + texmf-dist/source/latex/wargame/hex/terrain/fields.dtx texmf-dist/source/latex/wargame/hex/terrain/light_woods.dtx texmf-dist/source/latex/wargame/hex/terrain/mountain.dtx texmf-dist/source/latex/wargame/hex/terrain/mountains.dtx texmf-dist/source/latex/wargame/hex/terrain/rough.dtx + texmf-dist/source/latex/wargame/hex/terrain/speckle.dtx texmf-dist/source/latex/wargame/hex/terrain/swamp.dtx texmf-dist/source/latex/wargame/hex/terrain/town.dtx texmf-dist/source/latex/wargame/hex/terrain/tree.dtx @@ -332632,19 +336448,22 @@ srcfiles size=389 texmf-dist/source/latex/wargame/util/randomid.dtx texmf-dist/source/latex/wargame/util/tikz.dtx texmf-dist/source/latex/wargame/utils/wgexport.py + texmf-dist/source/latex/wargame/utils/wgmakenato.py texmf-dist/source/latex/wargame/utils/wgsvg2tikz.py texmf-dist/source/latex/wargame/wargame.dtx texmf-dist/source/latex/wargame/wargame.ins -runfiles size=312 +runfiles size=342 texmf-dist/tex/latex/wargame/tikzlibrarywargame.chit.code.tex texmf-dist/tex/latex/wargame/tikzlibrarywargame.hex.code.tex texmf-dist/tex/latex/wargame/tikzlibrarywargame.natoapp6c.code.tex texmf-dist/tex/latex/wargame/tikzlibrarywargame.util.code.tex texmf-dist/tex/latex/wargame/wargame.beach.pdf texmf-dist/tex/latex/wargame/wargame.city.pdf + texmf-dist/tex/latex/wargame/wargame.fields.pdf texmf-dist/tex/latex/wargame/wargame.light_woods.pdf texmf-dist/tex/latex/wargame/wargame.mountains.pdf texmf-dist/tex/latex/wargame/wargame.rough.pdf + texmf-dist/tex/latex/wargame/wargame.speckle.pdf texmf-dist/tex/latex/wargame/wargame.sty texmf-dist/tex/latex/wargame/wargame.swamp.pdf texmf-dist/tex/latex/wargame/wargame.town.pdf @@ -332652,16 +336471,17 @@ runfiles size=312 texmf-dist/tex/latex/wargame/wargame.woods.pdf texmf-dist/tex/latex/wargame/wgexport.cls texmf-dist/tex/latex/wargame/wgexport.py + texmf-dist/tex/latex/wargame/wgmakenato.py texmf-dist/tex/latex/wargame/wgsvg2tikz.py catalogue-contact-repository 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.6 +catalogue-version 0.8 name warning category Package -revision 66616 +revision 73265 shortdesc Global warnings at the end of the logfile longdesc This package is obsolete. For LaTeX-format 2020-10-01 and longdesc newer: Instead of \addglobalwarning{ something } use @@ -332680,7 +336500,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/warning catalogue-license lppl1.3c catalogue-topics comp-supp -catalogue-version 0.10 +catalogue-version 0.11 name warpcol category Package @@ -332838,7 +336658,7 @@ catalogue-version 2.4 name web category TLCore -revision 70015 +revision 73848 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 @@ -332846,7 +336666,7 @@ longdesc tangle), and secondly to produce a TeX source (using the longdesc program weave) that may be typeset for comfortable reading. depend kpathsea depend web.ARCH -docfiles size=16 +docfiles size=17 texmf-dist/doc/man/man1/tangle.1 texmf-dist/doc/man/man1/tangle.man1.pdf texmf-dist/doc/man/man1/weave.1 @@ -332858,7 +336678,7 @@ catalogue-version 4.5 name web.aarch64-linux category TLCore -revision 70577 +revision 73915 shortdesc aarch64-linux files of web binfiles arch=aarch64-linux size=67 bin/aarch64-linux/tangle @@ -332866,7 +336686,7 @@ binfiles arch=aarch64-linux size=67 name web.amd64-freebsd category TLCore -revision 70276 +revision 73792 shortdesc amd64-freebsd files of web binfiles arch=amd64-freebsd size=81 bin/amd64-freebsd/tangle @@ -332874,23 +336694,23 @@ binfiles arch=amd64-freebsd size=81 name web.amd64-netbsd category TLCore -revision 70286 +revision 73802 shortdesc amd64-netbsd files of web -binfiles arch=amd64-netbsd size=78 +binfiles arch=amd64-netbsd size=79 bin/amd64-netbsd/tangle bin/amd64-netbsd/weave name web.armhf-linux category TLCore -revision 70588 +revision 73793 shortdesc armhf-linux files of web -binfiles arch=armhf-linux size=54 +binfiles arch=armhf-linux size=44 bin/armhf-linux/tangle bin/armhf-linux/weave name web.i386-freebsd category TLCore -revision 70276 +revision 73792 shortdesc i386-freebsd files of web binfiles arch=i386-freebsd size=81 bin/i386-freebsd/tangle @@ -332898,23 +336718,23 @@ binfiles arch=i386-freebsd size=81 name web.i386-linux category TLCore -revision 70571 +revision 73792 shortdesc i386-linux files of web -binfiles arch=i386-linux size=68 +binfiles arch=i386-linux size=74 bin/i386-linux/tangle bin/i386-linux/weave name web.i386-netbsd category TLCore -revision 70286 +revision 73802 shortdesc i386-netbsd files of web -binfiles arch=i386-netbsd size=71 +binfiles arch=i386-netbsd size=72 bin/i386-netbsd/tangle bin/i386-netbsd/weave name web.i386-solaris category TLCore -revision 70276 +revision 73792 shortdesc i386-solaris files of web binfiles arch=i386-solaris size=63 bin/i386-solaris/tangle @@ -332922,7 +336742,7 @@ binfiles arch=i386-solaris size=63 name web.universal-darwin category TLCore -revision 70274 +revision 73806 shortdesc universal-darwin files of web binfiles arch=universal-darwin size=175 bin/universal-darwin/tangle @@ -332930,7 +336750,7 @@ binfiles arch=universal-darwin size=175 name web.windows category TLCore -revision 70576 +revision 73796 shortdesc windows files of web binfiles arch=windows size=30 bin/windows/tangle.exe @@ -332938,7 +336758,7 @@ binfiles arch=windows size=30 name web.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of web binfiles arch=x86_64-cygwin size=27 bin/x86_64-cygwin/tangle.exe @@ -332946,33 +336766,33 @@ binfiles arch=x86_64-cygwin size=27 name web.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of web -binfiles arch=x86_64-darwinlegacy size=60 +binfiles arch=x86_64-darwinlegacy size=61 bin/x86_64-darwinlegacy/tangle bin/x86_64-darwinlegacy/weave name web.x86_64-linux category TLCore -revision 70571 +revision 73777 shortdesc x86_64-linux files of web -binfiles arch=x86_64-linux size=63 +binfiles arch=x86_64-linux size=64 bin/x86_64-linux/tangle bin/x86_64-linux/weave name web.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of web -binfiles arch=x86_64-linuxmusl size=66 +binfiles arch=x86_64-linuxmusl size=67 bin/x86_64-linuxmusl/tangle bin/x86_64-linuxmusl/weave name web.x86_64-solaris category TLCore -revision 70276 +revision 73792 shortdesc x86_64-solaris files of web -binfiles arch=x86_64-solaris size=73 +binfiles arch=x86_64-solaris size=74 bin/x86_64-solaris/tangle bin/x86_64-solaris/weave @@ -333272,9 +337092,43 @@ catalogue-license lppl1.3c catalogue-topics games expl3 catalogue-version 0.1 +name whatsnote +category Package +revision 72966 +shortdesc A LaTeX class designed for taking notes or writing books +longdesc This class is designed for taking notes or writing books. It is +longdesc based on the standard LaTeX book class and constructed by +longdesc expl3. +docfiles size=127 + texmf-dist/doc/latex/whatsnote/License + texmf-dist/doc/latex/whatsnote/README.md details="Readme" + texmf-dist/doc/latex/whatsnote/figure/Beautiful-realities.jpeg + texmf-dist/doc/latex/whatsnote/figure/cat.pdf + texmf-dist/doc/latex/whatsnote/figure/universe.pdf + texmf-dist/doc/latex/whatsnote/figure/universe.tex + texmf-dist/doc/latex/whatsnote/whatsnote.pdf details="Package documentation" + texmf-dist/doc/latex/whatsnote/whatsnote.tex +runfiles size=9 + texmf-dist/tex/latex/whatsnote/litebook.cls + texmf-dist/tex/latex/whatsnote/litesolution.cls + texmf-dist/tex/latex/whatsnote/thmlist.sty + texmf-dist/tex/latex/whatsnote/whats-cover-module.code.tex + texmf-dist/tex/latex/whatsnote/whats-font-module.code.tex + texmf-dist/tex/latex/whatsnote/whats-layout-module.code.tex + texmf-dist/tex/latex/whatsnote/whats-theorem-module.code.tex + texmf-dist/tex/latex/whatsnote/whatsnote.cls +catalogue-contact-bugs https://github.com/xiamyphys/whatsnote/issues +catalogue-contact-development https://github.com/xiamyphys +catalogue-contact-repository https://github.com/xiamyphys/whatsnote +catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC +catalogue-ctan /macros/latex/contrib/whatsnote +catalogue-license lppl1.3c +catalogue-topics class book-pub notes expl3 +catalogue-version 3.0B + name wheelchart category Package -revision 70505 +revision 71928 shortdesc Diagrams with circular or other shapes using TikZ and LaTeX3 longdesc This package is based on the package TikZ and can be used to longdesc draw various kinds of diagrams such as bar charts, doughnut @@ -333293,7 +337147,7 @@ runfiles size=38 catalogue-ctan /graphics/pgf/contrib/wheelchart catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz expl3 -catalogue-version 3.0 +catalogue-version 4.0 name widetable category Package @@ -333419,23 +337273,13 @@ catalogue-topics biblatex name wintools.windows category TLCore -revision 71448 +revision 74090 shortdesc utilities provided only for Windows longdesc Common utilities, mainly from the w32tex distribution. 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" -postaction progid extension=.jpe filetype="TL.bitmap2eps.convert" -postaction progid extension=.jpeg filetype="TL.bitmap2eps.convert" -postaction progid extension=.jpg filetype="TL.bitmap2eps.convert" -postaction progid extension=.png filetype="TL.bitmap2eps.convert" postaction progid extension=.ps filetype="TL.PSViewer.view" -postaction progid extension=.tif filetype="TL.bitmap2eps.convert" -postaction progid extension=.tiff filetype="TL.bitmap2eps.convert" -docfiles size=331 - texmf-dist/doc/support/bitmap2eps/bitmap2eps.README +docfiles size=330 texmf-dist/doc/support/psviewer/psviewer.README texmf-dist/doc/support/tlaunch/COPYING texmf-dist/doc/support/tlaunch/Changes @@ -333469,14 +337313,12 @@ docfiles size=331 texmf-dist/doc/support/wintools/pdfunite.pdf texmf-dist/doc/support/wintools/unzip.pdf texmf-dist/doc/support/wintools/zip.pdf -runfiles size=4 - texmf-dist/scripts/bitmap2eps/bitmap2eps.vbs +runfiles size=3 texmf-dist/scripts/psviewer/psviewer.ps1 texmf-dist/scripts/tlaunch/tlaunchmode.pl texmf-dist/web2c/tlaunch.ini -binfiles arch=windows size=11418 +binfiles arch=windows size=11635 bin/windows/aftopl.exe - bin/windows/bitmap2eps.exe bin/windows/bmeps.exe bin/windows/bmp2png.exe bin/windows/cjpeg.exe @@ -333539,7 +337381,7 @@ catalogue-version 0.3.1 name witharrows category Package -revision 69995 +revision 72594 shortdesc "Aligned" math environments with arrows for comments longdesc This package provides an environment WithArrows which is longdesc similar to the environment aligned of amsmath (and mathtools), @@ -333548,12 +337390,12 @@ 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. -docfiles size=231 +docfiles size=433 texmf-dist/doc/generic/witharrows/README.md details="Readme" texmf-dist/doc/generic/witharrows/witharrows-french.pdf details="Package documentation (French)" language="fr" texmf-dist/doc/generic/witharrows/witharrows-french.tex texmf-dist/doc/generic/witharrows/witharrows.pdf details="Package documentation (English)" -srcfiles size=72 +srcfiles size=73 texmf-dist/source/generic/witharrows/witharrows.dtx texmf-dist/source/generic/witharrows/witharrows.ins runfiles size=47 @@ -333562,7 +337404,7 @@ runfiles size=47 catalogue-ctan /macros/generic/witharrows catalogue-license lppl1.3 catalogue-topics maths maths-syseqn pgf-tikz macro-gen expl3 -catalogue-version 2.8b +catalogue-version 2.9a name wnri category Package @@ -333835,25 +337677,25 @@ binfiles arch=x86_64-solaris size=1 name wordle category Package -revision 68170 +revision 72059 shortdesc Create wordle grids longdesc This package provides environments (in French or English) to longdesc display wordle grids: \begin{WordleGrid} for the English longdesc version, \begin{GrilleSutom} for the French version. -docfiles size=146 +docfiles size=144 texmf-dist/doc/latex/wordle/README.md details="Readme" texmf-dist/doc/latex/wordle/wordle-doc-en.pdf details="Package documentation" texmf-dist/doc/latex/wordle/wordle-doc-en.tex texmf-dist/doc/latex/wordle/wordle-doc-fr.pdf details="Package documentation" language="fr" texmf-dist/doc/latex/wordle/wordle-doc-fr.tex -runfiles size=3 +runfiles size=7 texmf-dist/tex/latex/wordle/wordle.sty -catalogue-contact-repository https://github.com/cpierquet/wordle -catalogue-contact-support https://github.com/cpierquet/wordle/issues +catalogue-contact-repository https://github.com/AndrewMathas/Wordle +catalogue-contact-support https://github.com/AndrewMathas/Wordle/issues catalogue-ctan /graphics/pgf/contrib/wordle catalogue-license lppl1.3c catalogue-topics games pgf-tikz -catalogue-version 0.1.1 +catalogue-version 0.3.0 name wordlike category Package @@ -334287,7 +338129,8 @@ revision 64058 shortdesc Wrapping text around stuff longdesc This package provides another implementation of text wrapping. longdesc Its implementation benefits from the paragraph hooks available -longdesc since LaTeX 2021-06-01. +longdesc since LaTeX 2021-06-01. English documentation is provided by +longdesc the wrapstuff-doc-en package. docfiles size=112 texmf-dist/doc/latex/wrapstuff/README.md details="Readme" texmf-dist/doc/latex/wrapstuff/wrapstuff.pdf details="Package documentation" language="zh" @@ -334304,14 +338147,33 @@ catalogue-license lppl1.3c catalogue-topics text-flow expl3 catalogue-version 0.3 +name wrapstuff-doc-en +category Package +revision 71835 +shortdesc English version of the wrapstuff package documentation +longdesc This package provides an English translation of the +longdesc documentation for the wrapstuff package. +docfiles size=89 + texmf-dist/doc/latex/wrapstuff-doc-en/README.md details="Readme" + texmf-dist/doc/latex/wrapstuff-doc-en/wrapstuff-doc-en.pdf details="The document itself" + texmf-dist/doc/latex/wrapstuff-doc-en/wrapstuff-doc-en.tex +catalogue-contact-bugs https://github.com/SwitWu/wrapstuff-doc-en/issues +catalogue-contact-repository https://github.com/SwitWu/wrapstuff-doc-en +catalogue-ctan /info/wrapstuff-doc-en +catalogue-license lppl1.3c +catalogue-topics documentation docu-pkg translation +catalogue-version 0.3 + name writeongrid category Package -revision 70939 +revision 73069 shortdesc Write on grid lines longdesc An environment to create grids (type 5x5 or Seyes or Ruled) and longdesc commands to write texts "right" on the lines. -docfiles size=354 +docfiles size=383 texmf-dist/doc/latex/writeongrid/README.md details="Readme" + texmf-dist/doc/latex/writeongrid/WriteOnGrid-5x5-A4.pdf + texmf-dist/doc/latex/writeongrid/WriteOnGrid-5x5-A4.tex texmf-dist/doc/latex/writeongrid/WriteOnGrid-5x5-A5.pdf texmf-dist/doc/latex/writeongrid/WriteOnGrid-5x5-A5.tex texmf-dist/doc/latex/writeongrid/WriteOnGrid-Ruled-A5.pdf @@ -334324,12 +338186,10 @@ docfiles size=354 texmf-dist/doc/latex/writeongrid/WriteOnGrid-doc-fr.tex runfiles size=9 texmf-dist/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.6 +catalogue-version 0.1.8 name wsemclassic category Package @@ -336046,26 +339906,26 @@ catalogue-version 1.26 name xcharter-math category Package -revision 71760 +revision 74009 shortdesc XCharter-based OpenType Math font for LuaTeX and XeTeX 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. -docfiles size=511 +docfiles size=510 texmf-dist/doc/fonts/xcharter-math/README.md details="Readme" texmf-dist/doc/fonts/xcharter-math/XCharter-Math.ltx texmf-dist/doc/fonts/xcharter-math/XCharter-Math.pdf details="Package documentation" texmf-dist/doc/fonts/xcharter-math/unimath-xcharter.ltx texmf-dist/doc/fonts/xcharter-math/unimath-xcharter.pdf details="List of glyphs" -runfiles size=127 +runfiles size=128 texmf-dist/fonts/opentype/public/xcharter-math/XCharter-Math-Bold.otf texmf-dist/fonts/opentype/public/xcharter-math/XCharter-Math.otf texmf-dist/tex/latex/xcharter-math/xcharter-otf.sty catalogue-ctan /fonts/xcharter-math catalogue-license ofl lppl1.3c catalogue-topics font font-otf font-maths font-supp-maths -catalogue-version 0.62 +catalogue-version 0.65 name xcite category Package @@ -336494,7 +340354,7 @@ catalogue-version 0.5 name xcolor category Package -revision 68864 +revision 72484 shortdesc Driver-independent color extensions for LaTeX and pdfLaTeX longdesc The package starts from the basic facilities of the color longdesc package, and provides easy driver-independent access to several @@ -336505,7 +340365,7 @@ 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}. -docfiles size=249 +docfiles size=248 texmf-dist/doc/latex/xcolor/ChangeLog texmf-dist/doc/latex/xcolor/README.md details="Readme" texmf-dist/doc/latex/xcolor/xcolor.lox @@ -336529,7 +340389,7 @@ catalogue-contact-home https://github.com/latex3/xcolor catalogue-ctan /macros/latex/contrib/xcolor catalogue-license lppl1.3c catalogue-topics colour -catalogue-version 3.01 +catalogue-version 3.02 name xcolor-material category Package @@ -336574,7 +340434,7 @@ catalogue-version 0.4 name xcomment category Package -revision 20031 +revision 72759 shortdesc Allows selected environments to be included/excluded longdesc The package defines an environment that only typesets specified longdesc environments within its scope. So, for example, if you want @@ -336585,19 +340445,17 @@ longdesc excluding the chunks of text between the environments you want, longdesc or creating an entire document containing only those longdesc environments. The package was previously part of the seminar longdesc bundle for typesetting presentations. -docfiles size=30 - texmf-dist/doc/generic/xcomment/Changes - texmf-dist/doc/generic/xcomment/Makefile - texmf-dist/doc/generic/xcomment/README details="Readme" - texmf-dist/doc/generic/xcomment/xcomment-doc.pdf details="Package documentation" - texmf-dist/doc/generic/xcomment/xcomment-doc.tex -runfiles size=3 - texmf-dist/tex/generic/xcomment/xcomment.sty - texmf-dist/tex/generic/xcomment/xcomment.tex -catalogue-ctan /macros/generic/xcomment +docfiles size=23 + texmf-dist/doc/latex/xcomment/Changes + texmf-dist/doc/latex/xcomment/README details="Readme" + texmf-dist/doc/latex/xcomment/xcomment-doc.pdf details="Package documentation" + texmf-dist/doc/latex/xcomment/xcomment-doc.tex +runfiles size=2 + texmf-dist/tex/latex/xcomment/xcomment.sty +catalogue-ctan /macros/latex/contrib/xcomment catalogue-license lppl catalogue-topics cond-comp -catalogue-version 1.3 +catalogue-version 1.40 name xcookybooky category Package @@ -336757,7 +340615,7 @@ catalogue-version 1.00 name xduts category Package -revision 66661 +revision 74061 shortdesc Xidian University TeX Suite longdesc XDUTS is designed to help Xidian University students use LaTeX longdesc typesetting efficiently. XDUTS contains a font configuration @@ -336785,7 +340643,7 @@ 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.4.2 +catalogue-version 6.2.5.0 name xdvi category TLCore @@ -336811,71 +340669,71 @@ catalogue-topics previewer name xdvi.aarch64-linux category TLCore -revision 70276 +revision 74078 shortdesc aarch64-linux files of xdvi -binfiles arch=aarch64-linux size=353 +binfiles arch=aarch64-linux size=354 bin/aarch64-linux/xdvi bin/aarch64-linux/xdvi-xaw name xdvi.amd64-freebsd category TLCore -revision 70276 +revision 74051 shortdesc amd64-freebsd files of xdvi -binfiles arch=amd64-freebsd size=427 +binfiles arch=amd64-freebsd size=426 bin/amd64-freebsd/xdvi bin/amd64-freebsd/xdvi-xaw name xdvi.amd64-netbsd category TLCore -revision 70758 +revision 74100 shortdesc amd64-netbsd files of xdvi -binfiles arch=amd64-netbsd size=424 +binfiles arch=amd64-netbsd size=426 bin/amd64-netbsd/xdvi bin/amd64-netbsd/xdvi-xaw name xdvi.armhf-linux category TLCore -revision 70489 +revision 74078 shortdesc armhf-linux files of xdvi -binfiles arch=armhf-linux size=271 +binfiles arch=armhf-linux size=228 bin/armhf-linux/xdvi bin/armhf-linux/xdvi-xaw name xdvi.i386-freebsd category TLCore -revision 70276 +revision 74051 shortdesc i386-freebsd files of xdvi -binfiles arch=i386-freebsd size=427 +binfiles arch=i386-freebsd size=426 bin/i386-freebsd/xdvi bin/i386-freebsd/xdvi-xaw name xdvi.i386-linux category TLCore -revision 70276 +revision 74051 shortdesc i386-linux files of xdvi -binfiles arch=i386-linux size=347 +binfiles arch=i386-linux size=372 bin/i386-linux/xdvi bin/i386-linux/xdvi-xaw name xdvi.i386-netbsd category TLCore -revision 70758 +revision 74100 shortdesc i386-netbsd files of xdvi -binfiles arch=i386-netbsd size=375 +binfiles arch=i386-netbsd size=377 bin/i386-netbsd/xdvi bin/i386-netbsd/xdvi-xaw name xdvi.i386-solaris category TLCore -revision 70276 +revision 74051 shortdesc i386-solaris files of xdvi -binfiles arch=i386-solaris size=297 +binfiles arch=i386-solaris size=299 bin/i386-solaris/xdvi bin/i386-solaris/xdvi-xaw name xdvi.universal-darwin category TLCore -revision 70520 +revision 74077 shortdesc universal-darwin files of xdvi binfiles arch=universal-darwin size=660 bin/universal-darwin/xdvi @@ -336883,33 +340741,33 @@ binfiles arch=universal-darwin size=660 name xdvi.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of xdvi -binfiles arch=x86_64-cygwin size=311 +binfiles arch=x86_64-cygwin size=309 bin/x86_64-cygwin/xdvi bin/x86_64-cygwin/xdvi-xaw.exe name xdvi.x86_64-linux category TLCore -revision 70276 +revision 74051 shortdesc x86_64-linux files of xdvi -binfiles arch=x86_64-linux size=329 +binfiles arch=x86_64-linux size=330 bin/x86_64-linux/xdvi bin/x86_64-linux/xdvi-xaw name xdvi.x86_64-linuxmusl category TLCore -revision 71441 +revision 74051 shortdesc x86_64-linuxmusl files of xdvi -binfiles arch=x86_64-linuxmusl size=364 +binfiles arch=x86_64-linuxmusl size=366 bin/x86_64-linuxmusl/xdvi bin/x86_64-linuxmusl/xdvi-xaw name xdvi.x86_64-solaris category TLCore -revision 70276 +revision 74051 shortdesc x86_64-solaris files of xdvi -binfiles arch=x86_64-solaris size=351 +binfiles arch=x86_64-solaris size=353 bin/x86_64-solaris/xdvi bin/x86_64-solaris/xdvi-xaw @@ -337318,11 +341176,14 @@ catalogue-version 2.0 name xepersian category Package -revision 68117 +revision 73697 shortdesc Persian for LaTeX, using XeTeX longdesc This package provides a convenient interface for typesetting -longdesc Persian and English texts in LaTeX, using the XeTeX engine. -docfiles size=320 +longdesc Persian and English texts in LaTeX, using the XeTeX engine. The +longdesc name xepersian is derived from the words experience and persian +longdesc and captures the author's philosophy of writing the package for +longdesc the best Persian typesetting experience in TeX. +docfiles size=317 texmf-dist/doc/xelatex/xepersian/README details="Readme" texmf-dist/doc/xelatex/xepersian/dkun-0.3.py texmf-dist/doc/xelatex/xepersian/dkun-0.4.py @@ -337341,7 +341202,7 @@ docfiles size=320 texmf-dist/doc/xelatex/xepersian/xepersian-doc.pdf details="Package user documentation" texmf-dist/doc/xelatex/xepersian/xepersian-logo.tex texmf-dist/doc/xelatex/xepersian/xepersian.pdf details="Package source documentation" -srcfiles size=120 +srcfiles size=122 texmf-dist/source/xelatex/xepersian/xepersian-doc-basics.ltx texmf-dist/source/xelatex/xepersian/xepersian-doc-boolean.ltx texmf-dist/source/xelatex/xepersian/xepersian-doc-captions.ltx @@ -337353,83 +341214,84 @@ srcfiles size=120 texmf-dist/source/xelatex/xepersian/xepersian-doc.ltx texmf-dist/source/xelatex/xepersian/xepersian.dtx texmf-dist/source/xelatex/xepersian/xepersian.ins -runfiles size=116 +runfiles size=114 texmf-dist/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text-nonumbers.map texmf-dist/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text-nonumbers.tec texmf-dist/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.map texmf-dist/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.tec - texmf-dist/tex/xelatex/xepersian/algorithm-xepersian.def - texmf-dist/tex/xelatex/xepersian/algorithmic-xepersian.def - texmf-dist/tex/xelatex/xepersian/amsart-xepersian.def - texmf-dist/tex/xelatex/xepersian/amsbook-xepersian.def - texmf-dist/tex/xelatex/xepersian/appendix-xepersian.def - texmf-dist/tex/xelatex/xepersian/article-xepersian.def - texmf-dist/tex/xelatex/xepersian/artikel1-xepersian.def - texmf-dist/tex/xelatex/xepersian/artikel2-xepersian.def - texmf-dist/tex/xelatex/xepersian/artikel3-xepersian.def - texmf-dist/tex/xelatex/xepersian/backref-xepersian.def - texmf-dist/tex/xelatex/xepersian/beamer-xepersian.def - texmf-dist/tex/xelatex/xepersian/beamerbasetranslator-xepersian.def - texmf-dist/tex/xelatex/xepersian/bidimoderncv-xepersian.def - texmf-dist/tex/xelatex/xepersian/bidituftesidenote-xepersian.def - texmf-dist/tex/xelatex/xepersian/boek-xepersian.def - texmf-dist/tex/xelatex/xepersian/boek3-xepersian.def - texmf-dist/tex/xelatex/xepersian/book-xepersian.def - texmf-dist/tex/xelatex/xepersian/bookest-xepersian.def - texmf-dist/tex/xelatex/xepersian/breqn-xepersian.def - texmf-dist/tex/xelatex/xepersian/color-localise-xepersian.def - texmf-dist/tex/xelatex/xepersian/enumerate-xepersian.def - texmf-dist/tex/xelatex/xepersian/enumitem-xepersian.def - texmf-dist/tex/xelatex/xepersian/extarticle-xepersian.def - texmf-dist/tex/xelatex/xepersian/extbook-xepersian.def - texmf-dist/tex/xelatex/xepersian/extrafootnotefeatures-xepersian.def - texmf-dist/tex/xelatex/xepersian/extreport-xepersian.def - texmf-dist/tex/xelatex/xepersian/fancyref-xepersian.def - texmf-dist/tex/xelatex/xepersian/footnote-xepersian.def - texmf-dist/tex/xelatex/xepersian/framed-xepersian.def - texmf-dist/tex/xelatex/xepersian/glossaries-xepersian.def - texmf-dist/tex/xelatex/xepersian/hyperref-xepersian.def - texmf-dist/tex/xelatex/xepersian/imsproc-xepersian.def - texmf-dist/tex/xelatex/xepersian/kashida-xepersian.def - texmf-dist/tex/xelatex/xepersian/latex-localise-commands-xepersian.def - texmf-dist/tex/xelatex/xepersian/latex-localise-environments-xepersian.def - texmf-dist/tex/xelatex/xepersian/latex-localise-messages-xepersian.def - texmf-dist/tex/xelatex/xepersian/latex-localise-misc-xepersian.def - texmf-dist/tex/xelatex/xepersian/listings-xepersian.def - texmf-dist/tex/xelatex/xepersian/loadingorder-xepersian.def - texmf-dist/tex/xelatex/xepersian/localise-xepersian.def - texmf-dist/tex/xelatex/xepersian/memoir-xepersian.def - texmf-dist/tex/xelatex/xepersian/minitoc-xepersian.def - texmf-dist/tex/xelatex/xepersian/natbib-xepersian.def - texmf-dist/tex/xelatex/xepersian/packages-localise-xepersian.def - texmf-dist/tex/xelatex/xepersian/rapport1-xepersian.def - texmf-dist/tex/xelatex/xepersian/rapport3-xepersian.def - texmf-dist/tex/xelatex/xepersian/refrep-xepersian.def - texmf-dist/tex/xelatex/xepersian/report-xepersian.def - texmf-dist/tex/xelatex/xepersian/scrartcl-xepersian.def - texmf-dist/tex/xelatex/xepersian/scrbook-xepersian.def - texmf-dist/tex/xelatex/xepersian/scrreprt-xepersian.def - texmf-dist/tex/xelatex/xepersian/soul-xepersian.def - texmf-dist/tex/xelatex/xepersian/tkz-linknodes-xepersian.def - texmf-dist/tex/xelatex/xepersian/tocloft-xepersian.def - texmf-dist/tex/xelatex/xepersian/url-xepersian.def - texmf-dist/tex/xelatex/xepersian/varioref-xepersian.def - texmf-dist/tex/xelatex/xepersian/xepersian-localise-commands-xepersian.def - texmf-dist/tex/xelatex/xepersian/xepersian-localise-environments-xepersian.def + texmf-dist/tex/xelatex/xepersian/algorithm-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/algorithmic-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/amsart-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/amsbook-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/appendix-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/article-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/artikel1-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/artikel2-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/artikel3-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/backref-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/beamer-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/beamerbasetranslator-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/bidimoderncv-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/bidituftesidenote-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/boek-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/boek3-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/book-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/bookest-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/breqn-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/color-localize-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/enumerate-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/enumitem-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/extarticle-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/extbook-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/extrafootnotefeatures-xetex-bidi-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/extreport-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/fancyref-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/footnote-xetex-bidi-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/framed-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/glossaries-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/hyperref-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/imsproc-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/kashida-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/latex-localize-commands-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/latex-localize-environments-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/latex-localize-messages-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/latex-localize-misc-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/listings-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/localize-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/memoir-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/minitoc-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/natbib-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/packages-localize-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/rapport1-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/rapport3-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/refrep-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/report-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/scrartcl-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/scrbook-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/scrreprt-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/soul-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/tkz-linknodes-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/tocloft-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/unicode-persianmath.sty + texmf-dist/tex/xelatex/xepersian/url-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/varioref-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/xepersian-localize-commands-xetex-xepersian.def + texmf-dist/tex/xelatex/xepersian/xepersian-localize-environments-xetex-xepersian.def texmf-dist/tex/xelatex/xepersian/xepersian-logo.pdf texmf-dist/tex/xelatex/xepersian/xepersian-magazine.cls - texmf-dist/tex/xelatex/xepersian/xepersian-mathdigitspec.sty texmf-dist/tex/xelatex/xepersian/xepersian-multiplechoice.sty texmf-dist/tex/xelatex/xepersian/xepersian-persiancal.sty texmf-dist/tex/xelatex/xepersian/xepersian.sty -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-contact-announce https://github.com/xepersian/xepersian/discussions/categories/announcements +catalogue-contact-bugs https://github.com/xepersian/xepersian/issues +catalogue-contact-development https://github.com/sponsors/xepersian +catalogue-contact-home https://github.com/xepersian +catalogue-contact-repository https://github.com/xepersian/xepersian +catalogue-contact-support https://github.com/xepersian/xepersian/discussions catalogue-ctan /macros/xetex/latex/xepersian catalogue-license lppl1.3c catalogue-topics persian xetex class -catalogue-version 25.0 +catalogue-version 25.2.2 name xepersian-hm category Package @@ -337528,7 +341390,7 @@ catalogue-version 2.1 name xetex category TLCore -revision 71363 +revision 73850 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 @@ -337563,7 +341425,7 @@ depend xetexconfig execute AddFormat name=xelatex engine=xetex patterns=language.dat options="-etex xelatex.ini" fmttriggers=l3backend,l3kernel,latex,firstaid,babel,cm,hyphen-base,knuth-lib,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 -docfiles size=184 +docfiles size=185 texmf-dist/doc/man/man1/xelatex-unsafe.1 texmf-dist/doc/man/man1/xelatex-unsafe.man1.pdf texmf-dist/doc/man/man1/xelatex.1 @@ -337585,7 +341447,6 @@ runfiles size=9 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 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 @@ -337693,9 +341554,9 @@ catalogue-version 0.1 name xetex.aarch64-linux category TLCore -revision 70772 +revision 73915 shortdesc aarch64-linux files of xetex -binfiles arch=aarch64-linux size=7261 +binfiles arch=aarch64-linux size=8066 bin/aarch64-linux/teckit_compile bin/aarch64-linux/xelatex bin/aarch64-linux/xelatex-unsafe @@ -337704,9 +341565,9 @@ binfiles arch=aarch64-linux size=7261 name xetex.amd64-freebsd category TLCore -revision 70768 +revision 73792 shortdesc amd64-freebsd files of xetex -binfiles arch=amd64-freebsd size=7791 +binfiles arch=amd64-freebsd size=7916 bin/amd64-freebsd/teckit_compile bin/amd64-freebsd/xelatex bin/amd64-freebsd/xelatex-unsafe @@ -337715,9 +341576,9 @@ binfiles arch=amd64-freebsd size=7791 name xetex.amd64-netbsd category TLCore -revision 70758 +revision 73802 shortdesc amd64-netbsd files of xetex -binfiles arch=amd64-netbsd size=7826 +binfiles arch=amd64-netbsd size=7906 bin/amd64-netbsd/teckit_compile bin/amd64-netbsd/xelatex bin/amd64-netbsd/xelatex-unsafe @@ -337726,9 +341587,9 @@ binfiles arch=amd64-netbsd size=7826 name xetex.armhf-linux category TLCore -revision 70772 +revision 73793 shortdesc armhf-linux files of xetex -binfiles arch=armhf-linux size=6421 +binfiles arch=armhf-linux size=6989 bin/armhf-linux/teckit_compile bin/armhf-linux/xelatex bin/armhf-linux/xelatex-unsafe @@ -337737,9 +341598,9 @@ binfiles arch=armhf-linux size=6421 name xetex.i386-freebsd category TLCore -revision 70768 +revision 73792 shortdesc i386-freebsd files of xetex -binfiles arch=i386-freebsd size=7791 +binfiles arch=i386-freebsd size=7916 bin/i386-freebsd/teckit_compile bin/i386-freebsd/xelatex bin/i386-freebsd/xelatex-unsafe @@ -337748,9 +341609,9 @@ binfiles arch=i386-freebsd size=7791 name xetex.i386-linux category TLCore -revision 70768 +revision 73792 shortdesc i386-linux files of xetex -binfiles arch=i386-linux size=7038 +binfiles arch=i386-linux size=7789 bin/i386-linux/teckit_compile bin/i386-linux/xelatex bin/i386-linux/xelatex-unsafe @@ -337759,9 +341620,9 @@ binfiles arch=i386-linux size=7038 name xetex.i386-netbsd category TLCore -revision 70758 +revision 73802 shortdesc i386-netbsd files of xetex -binfiles arch=i386-netbsd size=7601 +binfiles arch=i386-netbsd size=7677 bin/i386-netbsd/teckit_compile bin/i386-netbsd/xelatex bin/i386-netbsd/xelatex-unsafe @@ -337770,9 +341631,9 @@ binfiles arch=i386-netbsd size=7601 name xetex.i386-solaris category TLCore -revision 70768 +revision 73792 shortdesc i386-solaris files of xetex -binfiles arch=i386-solaris size=6623 +binfiles arch=i386-solaris size=6812 bin/i386-solaris/teckit_compile bin/i386-solaris/xelatex bin/i386-solaris/xelatex-unsafe @@ -337781,9 +341642,9 @@ binfiles arch=i386-solaris size=6623 name xetex.universal-darwin category TLCore -revision 70767 +revision 73806 shortdesc universal-darwin files of xetex -binfiles arch=universal-darwin size=13272 +binfiles arch=universal-darwin size=14832 bin/universal-darwin/teckit_compile bin/universal-darwin/xelatex bin/universal-darwin/xelatex-unsafe @@ -337792,9 +341653,9 @@ binfiles arch=universal-darwin size=13272 name xetex.windows category TLCore -revision 70891 +revision 73796 shortdesc windows files of xetex -binfiles arch=windows size=11449 +binfiles arch=windows size=11752 bin/windows/fc-cache.exe bin/windows/fc-cat.exe bin/windows/fc-list.exe @@ -337803,7 +341664,7 @@ binfiles arch=windows size=11449 bin/windows/fc-query.exe bin/windows/fc-scan.exe bin/windows/fc-validate.exe - bin/windows/icudt74.dll + bin/windows/icudt76.dll bin/windows/teckit_compile.exe bin/windows/xelatex-unsafe.bat bin/windows/xelatex-unsafe.exe @@ -337819,9 +341680,9 @@ binfiles arch=windows size=11449 name xetex.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of xetex -binfiles arch=x86_64-cygwin size=6928 +binfiles arch=x86_64-cygwin size=7112 bin/x86_64-cygwin/teckit_compile.exe bin/x86_64-cygwin/xelatex bin/x86_64-cygwin/xelatex-unsafe @@ -337830,9 +341691,9 @@ binfiles arch=x86_64-cygwin size=6928 name xetex.x86_64-darwinlegacy category TLCore -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of xetex -binfiles arch=x86_64-darwinlegacy size=6411 +binfiles arch=x86_64-darwinlegacy size=6620 bin/x86_64-darwinlegacy/teckit_compile bin/x86_64-darwinlegacy/xelatex bin/x86_64-darwinlegacy/xelatex-unsafe @@ -337841,9 +341702,9 @@ binfiles arch=x86_64-darwinlegacy size=6411 name xetex.x86_64-linux category TLCore -revision 70768 +revision 73777 shortdesc x86_64-linux files of xetex -binfiles arch=x86_64-linux size=7008 +binfiles arch=x86_64-linux size=7756 bin/x86_64-linux/teckit_compile bin/x86_64-linux/xelatex bin/x86_64-linux/xelatex-unsafe @@ -337852,9 +341713,9 @@ binfiles arch=x86_64-linux size=7008 name xetex.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of xetex -binfiles arch=x86_64-linuxmusl size=7172 +binfiles arch=x86_64-linuxmusl size=7901 bin/x86_64-linuxmusl/teckit_compile bin/x86_64-linuxmusl/xelatex bin/x86_64-linuxmusl/xelatex-unsafe @@ -337863,9 +341724,9 @@ binfiles arch=x86_64-linuxmusl size=7172 name xetex.x86_64-solaris category TLCore -revision 70768 +revision 73792 shortdesc x86_64-solaris files of xetex -binfiles arch=x86_64-solaris size=6846 +binfiles arch=x86_64-solaris size=7012 bin/x86_64-solaris/teckit_compile bin/x86_64-solaris/xelatex bin/x86_64-solaris/xelatex-unsafe @@ -337927,13 +341788,15 @@ catalogue-version 4.3 name xetexref category Package -revision 70299 +revision 73885 shortdesc Reference documentation of XeTeX longdesc The package comprises reference documentation for XeTeX longdesc detailing its extended features. -docfiles size=52 +docfiles size=56 texmf-dist/doc/xetex/xetexref/Makefile texmf-dist/doc/xetex/xetexref/README.txt details="Readme" + texmf-dist/doc/xetex/xetexref/helpmsg.txt + texmf-dist/doc/xetex/xetexref/tryxefonts.tex texmf-dist/doc/xetex/xetexref/xetex-reference.pdf details="The document itself" texmf-dist/doc/xetex/xetexref/xetex-reference.tex catalogue-contact-bugs https://github.com/wspr/xetexref/issues @@ -338041,7 +341904,7 @@ catalogue-topics maths latex3 name xgreek category Package -revision 69652 +revision 73620 shortdesc Greek Language Support for XeLaTeX and LuaLaTeX longdesc This package has been designed so to allow people to typeset longdesc Greek language documents using XeLaTeX or LuaLaTeX. It is @@ -338068,7 +341931,7 @@ runfiles size=5 catalogue-ctan /macros/unicodetex/latex/xgreek catalogue-license lppl1.3c catalogue-topics greek xetex -catalogue-version 3.4.0 +catalogue-version 3.5.0 name xhfill category Package @@ -338231,12 +342094,12 @@ catalogue-version 1.5.1 name xindex category Package -revision 71279 +revision 73644 shortdesc Unicode-compatible index generation longdesc This package provides a Unicode-compatible index program for longdesc LaTeX. depend xindex.ARCH -docfiles size=272 +docfiles size=279 texmf-dist/doc/lualatex/xindex/CHANGELOG texmf-dist/doc/lualatex/xindex/Makefile texmf-dist/doc/lualatex/xindex/README.md details="Readme" @@ -338281,6 +342144,10 @@ docfiles size=272 texmf-dist/doc/lualatex/xindex/tests/french.pdf texmf-dist/doc/lualatex/xindex/tests/french.tex texmf-dist/doc/lualatex/xindex/tests/runTests.sh + texmf-dist/doc/lualatex/xindex/tests/see.idx + texmf-dist/doc/lualatex/xindex/tests/see.ind + texmf-dist/doc/lualatex/xindex/tests/see.pdf + texmf-dist/doc/lualatex/xindex/tests/see.tex texmf-dist/doc/lualatex/xindex/xindex-doc.pdf details="Package documentation" texmf-dist/doc/lualatex/xindex/xindex-doc.tex runfiles size=63 @@ -338308,7 +342175,7 @@ catalogue-contact-repository https://gitlab.com/hvoss49/xindex catalogue-ctan /indexing/xindex catalogue-license lppl1.3 catalogue-topics index use-lua -catalogue-version 0.60 +catalogue-version 0.64 name xindex.aarch64-linux category Package @@ -338959,7 +342826,7 @@ binfiles arch=amd64-freebsd size=950 name xindy.amd64-netbsd category TLCore -revision 71441 +revision 73802 shortdesc amd64-netbsd files of xindy binfiles arch=amd64-netbsd size=879 bin/amd64-netbsd/tex2xindy @@ -339014,7 +342881,7 @@ binfiles arch=i386-netbsd size=816 name xindy.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of xindy binfiles arch=universal-darwin size=1869 bin/universal-darwin/tex2xindy @@ -339037,7 +342904,7 @@ binfiles arch=windows size=2052 name xindy.x86_64-cygwin category TLCore -revision 70766 +revision 74094 shortdesc x86_64-cygwin files of xindy binfiles arch=x86_64-cygwin size=952 bin/x86_64-cygwin/tex2xindy.exe @@ -339341,13 +343208,13 @@ catalogue-version 0.28 name xltabular category Package -revision 56855 +revision 72846 shortdesc Longtable support with possible X-column specifier longdesc This package loads package ltablex, but keeps the current longdesc tabularx environment as is. The new environment xltabular is a longdesc combination of longtable and tabularx: Header/footer longdesc definitions, X-column specifier, and with possible pagebreaks. -docfiles size=27 +docfiles size=29 texmf-dist/doc/latex/xltabular/Changes texmf-dist/doc/latex/xltabular/README.md details="Readme" texmf-dist/doc/latex/xltabular/xltabular-doc.bib @@ -339364,7 +343231,7 @@ catalogue-contact-home https://github.com/rolfn/xltabular catalogue-ctan /macros/latex/contrib/xltabular catalogue-license lppl1.3 catalogue-topics table table-long -catalogue-version 0.2e +catalogue-version 2.0h name xltxtra category Package @@ -339412,105 +343279,105 @@ catalogue-topics music name xml2pmx.aarch64-linux category Package -revision 65927 +revision 73915 shortdesc aarch64-linux files of xml2pmx binfiles arch=aarch64-linux size=33 bin/aarch64-linux/xml2pmx name xml2pmx.amd64-freebsd category Package -revision 71441 +revision 73792 shortdesc amd64-freebsd files of xml2pmx binfiles arch=amd64-freebsd size=33 bin/amd64-freebsd/xml2pmx name xml2pmx.amd64-netbsd category Package -revision 71441 +revision 73802 shortdesc amd64-netbsd files of xml2pmx binfiles arch=amd64-netbsd size=34 bin/amd64-netbsd/xml2pmx name xml2pmx.armhf-linux category Package -revision 70489 +revision 73793 shortdesc armhf-linux files of xml2pmx binfiles arch=armhf-linux size=28 bin/armhf-linux/xml2pmx name xml2pmx.i386-freebsd category Package -revision 69782 +revision 73792 shortdesc i386-freebsd files of xml2pmx binfiles arch=i386-freebsd size=33 bin/i386-freebsd/xml2pmx name xml2pmx.i386-linux category Package -revision 69782 +revision 73792 shortdesc i386-linux files of xml2pmx -binfiles arch=i386-linux size=30 +binfiles arch=i386-linux size=33 bin/i386-linux/xml2pmx name xml2pmx.i386-netbsd category Package -revision 71441 +revision 73802 shortdesc i386-netbsd files of xml2pmx binfiles arch=i386-netbsd size=31 bin/i386-netbsd/xml2pmx name xml2pmx.i386-solaris category Package -revision 71441 +revision 73792 shortdesc i386-solaris files of xml2pmx binfiles arch=i386-solaris size=30 bin/i386-solaris/xml2pmx name xml2pmx.universal-darwin category Package -revision 69807 +revision 73806 shortdesc universal-darwin files of xml2pmx binfiles arch=universal-darwin size=82 bin/universal-darwin/xml2pmx name xml2pmx.windows category Package -revision 70269 +revision 73796 shortdesc windows files of xml2pmx binfiles arch=windows size=67 bin/windows/xml2pmx.exe name xml2pmx.x86_64-cygwin category Package -revision 71441 +revision 74094 shortdesc x86_64-cygwin files of xml2pmx -binfiles arch=x86_64-cygwin size=31 +binfiles arch=x86_64-cygwin size=30 bin/x86_64-cygwin/xml2pmx.exe name xml2pmx.x86_64-darwinlegacy category Package -revision 71441 +revision 73943 shortdesc x86_64-darwinlegacy files of xml2pmx binfiles arch=x86_64-darwinlegacy size=30 bin/x86_64-darwinlegacy/xml2pmx name xml2pmx.x86_64-linux category Package -revision 69782 +revision 73777 shortdesc x86_64-linux files of xml2pmx binfiles arch=x86_64-linux size=31 bin/x86_64-linux/xml2pmx name xml2pmx.x86_64-linuxmusl category Package -revision 62210 +revision 73792 shortdesc x86_64-linuxmusl files of xml2pmx -binfiles arch=x86_64-linuxmusl size=32 +binfiles arch=x86_64-linuxmusl size=33 bin/x86_64-linuxmusl/xml2pmx name xml2pmx.x86_64-solaris category Package -revision 71441 +revision 73792 shortdesc x86_64-solaris files of xml2pmx binfiles arch=x86_64-solaris size=33 bin/x86_64-solaris/xml2pmx @@ -339828,7 +343695,7 @@ catalogue-version 0.86 name xpdfopen.aarch64-linux category TLCore -revision 65927 +revision 73915 shortdesc aarch64-linux files of xpdfopen binfiles arch=aarch64-linux size=10 bin/aarch64-linux/pdfclose @@ -339836,7 +343703,7 @@ binfiles arch=aarch64-linux size=10 name xpdfopen.amd64-freebsd category TLCore -revision 69782 +revision 73792 shortdesc amd64-freebsd files of xpdfopen binfiles arch=amd64-freebsd size=9 bin/amd64-freebsd/pdfclose @@ -339844,7 +343711,7 @@ binfiles arch=amd64-freebsd size=9 name xpdfopen.amd64-netbsd category TLCore -revision 65923 +revision 73802 shortdesc amd64-netbsd files of xpdfopen binfiles arch=amd64-netbsd size=10 bin/amd64-netbsd/pdfclose @@ -339852,7 +343719,7 @@ binfiles arch=amd64-netbsd size=10 name xpdfopen.armhf-linux category TLCore -revision 70489 +revision 73793 shortdesc armhf-linux files of xpdfopen binfiles arch=armhf-linux size=7 bin/armhf-linux/pdfclose @@ -339860,7 +343727,7 @@ binfiles arch=armhf-linux size=7 name xpdfopen.i386-freebsd category TLCore -revision 69782 +revision 73792 shortdesc i386-freebsd files of xpdfopen binfiles arch=i386-freebsd size=9 bin/i386-freebsd/pdfclose @@ -339868,15 +343735,15 @@ binfiles arch=i386-freebsd size=9 name xpdfopen.i386-linux category TLCore -revision 69782 +revision 73792 shortdesc i386-linux files of xpdfopen -binfiles arch=i386-linux size=8 +binfiles arch=i386-linux size=10 bin/i386-linux/pdfclose bin/i386-linux/pdfopen name xpdfopen.i386-netbsd category TLCore -revision 65923 +revision 73802 shortdesc i386-netbsd files of xpdfopen binfiles arch=i386-netbsd size=8 bin/i386-netbsd/pdfclose @@ -339884,7 +343751,7 @@ binfiles arch=i386-netbsd size=8 name xpdfopen.i386-solaris category TLCore -revision 69782 +revision 73792 shortdesc i386-solaris files of xpdfopen binfiles arch=i386-solaris size=8 bin/i386-solaris/pdfclose @@ -339892,7 +343759,7 @@ binfiles arch=i386-solaris size=8 name xpdfopen.universal-darwin category TLCore -revision 69807 +revision 73806 shortdesc universal-darwin files of xpdfopen binfiles arch=universal-darwin size=64 bin/universal-darwin/pdfclose @@ -339900,7 +343767,7 @@ binfiles arch=universal-darwin size=64 name xpdfopen.windows category TLCore -revision 69788 +revision 73796 shortdesc windows files of xpdfopen binfiles arch=windows size=532 bin/windows/pdfclose.exe @@ -339909,7 +343776,7 @@ binfiles arch=windows size=532 name xpdfopen.x86_64-cygwin category TLCore -revision 70560 +revision 74094 shortdesc x86_64-cygwin files of xpdfopen binfiles arch=x86_64-cygwin size=10 bin/x86_64-cygwin/pdfclose.exe @@ -339917,23 +343784,23 @@ binfiles arch=x86_64-cygwin size=10 name xpdfopen.x86_64-linux category TLCore -revision 69782 +revision 73777 shortdesc x86_64-linux files of xpdfopen -binfiles arch=x86_64-linux size=10 +binfiles arch=x86_64-linux size=11 bin/x86_64-linux/pdfclose bin/x86_64-linux/pdfopen name xpdfopen.x86_64-linuxmusl category TLCore -revision 71441 +revision 73792 shortdesc x86_64-linuxmusl files of xpdfopen -binfiles arch=x86_64-linuxmusl size=10 +binfiles arch=x86_64-linuxmusl size=12 bin/x86_64-linuxmusl/pdfclose bin/x86_64-linuxmusl/pdfopen name xpdfopen.x86_64-solaris category TLCore -revision 69782 +revision 73792 shortdesc x86_64-solaris files of xpdfopen binfiles arch=x86_64-solaris size=10 bin/x86_64-solaris/pdfclose @@ -340120,6 +343987,32 @@ catalogue-license lppl catalogue-topics games catalogue-version 0.4 +name xreview +category Package +revision 72484 +shortdesc Reviewing LaTeX documents made easy(er) +longdesc This package provides a simple way to review LaTeX documents. +longdesc It allows to higlight and/or hide changes to a document, and to +longdesc add comments to the text. This will help you to keep track of +longdesc the changes you make to a document, and to easily spot the +longdesc changes made by others, while always having the option of +longdesc compiling a clean version of the document. This package also +longdesc offers a way to include comments in the text, which can be +longdesc toggled on and off. This is useful for adding notes to the +longdesc text, or for leaving comments to other authors. +docfiles size=67 + texmf-dist/doc/latex/xreview/README details="Readme" + texmf-dist/doc/latex/xreview/xreview.pdf details="Package documentation" + texmf-dist/doc/latex/xreview/xreview.tex +runfiles size=2 + texmf-dist/tex/latex/xreview/xreview.sty +catalogue-contact-home https://github.com/LorenzoPeri17/xreview-latex +catalogue-contact-repository https://github.com/LorenzoPeri17/xreview-latex +catalogue-ctan /macros/latex/contrib/xreview +catalogue-license mit +catalogue-topics review-document +catalogue-version 1.0 + name xsavebox category Package revision 64049 @@ -340949,15 +344842,15 @@ catalogue-version 1.1 name yamlvars category Package -revision 69071 +revision 73922 shortdesc A YAML parser and tool for easy LaTeX definition creation longdesc This LuaLaTeX package provides a YAML parser and some functions longdesc to declare and define LaTeX definitions using YAML files. -docfiles size=26 +docfiles size=28 texmf-dist/doc/lualatex/yamlvars/README.md details="Readme" texmf-dist/doc/lualatex/yamlvars/yamlvars.pdf details="Package documentation" texmf-dist/doc/lualatex/yamlvars/yamlvars.tex -runfiles size=6 +runfiles size=7 texmf-dist/tex/lualatex/yamlvars/yamlvars.lua texmf-dist/tex/lualatex/yamlvars/yamlvars.sty catalogue-contact-repository https://github.com/kalekje/yamlvars @@ -341230,7 +345123,7 @@ catalogue-version 0.3 name yb-book category Package -revision 70740 +revision 73700 shortdesc Template for YB Branded Books 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 @@ -341240,24 +345133,33 @@ depend biblatex depend bigfoot depend changepage depend chngcntr +depend collection-fontsextra +depend collection-fontsrecommended depend csquotes +depend cyrillic +depend doi depend enumitem depend fancyhdr depend float depend footmisc depend geometry +depend href-ul +depend hypdoc depend ifmtarg depend imakeidx depend lastpage +depend lh depend libertine depend mdframed depend microtype depend needspace depend paralist depend pgf +depend pgfopts depend qrcode depend setspace depend soul +depend textpos depend titlesec depend titlesec depend ulem @@ -341267,13 +345169,13 @@ depend xcolor depend xifthen depend xkeyval depend zref -docfiles size=75 +docfiles size=76 texmf-dist/doc/latex/yb-book/DEPENDS.txt texmf-dist/doc/latex/yb-book/LICENSE.txt texmf-dist/doc/latex/yb-book/README.md details="Readme" texmf-dist/doc/latex/yb-book/yb-book-logo.pdf texmf-dist/doc/latex/yb-book/yb-book.pdf details="Package documentation" -srcfiles size=6 +srcfiles size=7 texmf-dist/source/latex/yb-book/yb-book.dtx texmf-dist/source/latex/yb-book/yb-book.ins runfiles size=3 @@ -341282,7 +345184,7 @@ 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.4.1 +catalogue-version 0.6.3 name ycbook category Package @@ -341355,7 +345257,7 @@ catalogue-version 0.7alpha name yet-another-guide-latex2e category Package -revision 68564 +revision 73469 shortdesc A short guide to using LaTeX2e to typeset high quality documents longdesc This document is a short guide to using LaTeX2e to typeset high longdesc quality documents. It focuses on users of Windows and guides @@ -341363,15 +345265,16 @@ 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. -docfiles size=256 - texmf-dist/doc/latex/yet-another-guide-latex2e/README details="Readme" - texmf-dist/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e_v12.pdf details="The document itself" - texmf-dist/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e_v12.tex +docfiles size=262 + texmf-dist/doc/latex/yet-another-guide-latex2e/Drawing.pdf + texmf-dist/doc/latex/yet-another-guide-latex2e/README.txt details="Readme" + texmf-dist/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e.pdf details="The document itself" + texmf-dist/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e_v131.tex catalogue-alias startlatex2e catalogue-ctan /info/yet-another-guide-latex2e catalogue-license fdl catalogue-topics tut-latex -catalogue-version 1.2 +catalogue-version 1.3.1 name yfonts category Package @@ -341401,7 +345304,7 @@ catalogue-version 1.4 name yfonts-otf category Package -revision 65030 +revision 73612 shortdesc OpenType version of the Old German fonts designed by Yannis Haralambous longdesc This is an OpenType version of the Old German fonts yfrak, longdesc ygoth, yswab designed by Yannis Haralambous in Metafont. The @@ -341409,13 +345312,13 @@ 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. -docfiles size=48 +docfiles size=49 texmf-dist/doc/fonts/yfonts-otf/Erlkonig.ltx texmf-dist/doc/fonts/yfonts-otf/Erlkonig.pdf details="Example of use" texmf-dist/doc/fonts/yfonts-otf/README.md details="Readme" texmf-dist/doc/fonts/yfonts-otf/yfonts-otf.ltx texmf-dist/doc/fonts/yfonts-otf/yfonts-otf.pdf details="Package documentation" -runfiles size=37 +runfiles size=42 texmf-dist/fonts/opentype/public/yfonts-otf/yfrak.otf texmf-dist/fonts/opentype/public/yfonts-otf/ygoth.otf texmf-dist/fonts/opentype/public/yfonts-otf/yswab.otf @@ -341424,7 +345327,7 @@ runfiles size=37 catalogue-ctan /fonts/yfonts-otf catalogue-license ofl lppl1.3 catalogue-topics font font-otf font-gothic font-supp -catalogue-version 0.43 +catalogue-version 0.50 name yfonts-t1 category Package @@ -341529,7 +345432,7 @@ catalogue-version 3.6 name youngtab category Package -revision 56500 +revision 73766 shortdesc Typeset Young-Tableaux longdesc A package for typesetting Young-Tableaux, mathematical symbols longdesc for the representations of groups, providing two macros, @@ -341546,7 +345449,7 @@ srcfiles size=11 texmf-dist/source/generic/youngtab/youngtab.ins runfiles size=2 texmf-dist/tex/generic/youngtab/youngtab.sty -catalogue-also young ytableau +catalogue-also young ytableau atableau catalogue-ctan /macros/generic/youngtab catalogue-license lppl1 catalogue-topics maths macro-gen @@ -341741,7 +345644,7 @@ catalogue-version 0.7.5 name ysabeau category Package -revision 69663 +revision 72800 shortdesc Ysabeau fonts with LaTeX support for traditional TeX engines longdesc Ysabeau is a free type family. It combines the time-honored and longdesc supremely readable letterforms of the Garamond legacy with the @@ -341749,7 +345652,7 @@ longdesc clean crispness of a low-contrast sans serif, rendering it well longdesc suited for body copy as well as display. This package provides longdesc LaTeX font support for traditional TeX engines (pdfTeX, dvips, longdesc and so on). For XeTeX or LuaTeX users, OpenType and TrueType -longdesc fonts are provided onlyto use with the fontspec package. +longdesc fonts are provided only to use with the fontspec package. execute addMap ysabeau.map docfiles size=211 texmf-dist/doc/fonts/ysabeau/FONTLOG.txt @@ -349532,11 +353435,11 @@ catalogue-contact-repository https://github.com/CatharsisFonts/Ysabeau catalogue-ctan /fonts/ysabeau catalogue-license ofl pd other-free catalogue-topics font font-body font-cyrillic font-otf font-proportional font-sans font-supp font-t1enc font-ttf font-type1 -catalogue-version 1.1 +catalogue-version 1.5 name ytableau category Package -revision 59580 +revision 73766 shortdesc Many-featured Young tableaux and Young diagrams longdesc The package provides several functions for drawing Young longdesc tableaux and Young diagrams, extending the young and youngtab @@ -349551,7 +353454,7 @@ srcfiles size=15 texmf-dist/source/latex/ytableau/ytableau.ins runfiles size=3 texmf-dist/tex/latex/ytableau/ytableau.sty -catalogue-also youngtab young +catalogue-also youngtab young atableau catalogue-ctan /macros/latex/contrib/ytableau catalogue-license lppl1.2 catalogue-topics maths @@ -355035,7 +358938,7 @@ catalogue-version 2.35 name zref-check category Package -revision 68846 +revision 72994 shortdesc Flexible cross-references with contextual checks based on zref longdesc This package provides an user interface for making LaTeX longdesc cross-references flexibly, while allowing to have them checked @@ -355065,11 +358968,11 @@ 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.5 +catalogue-version 0.3.7 name zref-clever category Package -revision 71315 +revision 73000 shortdesc Clever LaTeX cross-references based on zref longdesc This package provides a user interface for making LaTeX longdesc cross-references which automates some of their typical @@ -355080,7 +358983,9 @@ 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. -docfiles size=310 +depend oberdiek +depend zref +docfiles size=312 texmf-dist/doc/latex/zref-clever/CHANGELOG.md texmf-dist/doc/latex/zref-clever/DEPENDS.txt texmf-dist/doc/latex/zref-clever/README.md details="Readme" @@ -355088,10 +358993,10 @@ docfiles size=310 texmf-dist/doc/latex/zref-clever/zref-clever-code.tex texmf-dist/doc/latex/zref-clever/zref-clever-doc.pdf details="User manual" texmf-dist/doc/latex/zref-clever/zref-clever-doc.tex -srcfiles size=95 +srcfiles size=98 texmf-dist/source/latex/zref-clever/zref-clever.dtx texmf-dist/source/latex/zref-clever/zref-clever.ins -runfiles size=76 +runfiles size=79 texmf-dist/tex/latex/zref-clever/zref-clever-dutch.lang texmf-dist/tex/latex/zref-clever/zref-clever-english.lang texmf-dist/tex/latex/zref-clever/zref-clever-french.lang @@ -355100,16 +359005,17 @@ runfiles size=76 texmf-dist/tex/latex/zref-clever/zref-clever-portuguese.lang texmf-dist/tex/latex/zref-clever/zref-clever-russian.lang texmf-dist/tex/latex/zref-clever/zref-clever-spanish.lang + texmf-dist/tex/latex/zref-clever/zref-clever-swedish.lang texmf-dist/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.4.5 +catalogue-version 0.5.1 name zref-vario category Package -revision 68846 +revision 72978 shortdesc Extended LaTeX page cross-references with varioref and zref-clever longdesc This package offers a compatibility layer for varioref to be longdesc used alongside zref-clever. It provides \z... counterparts to @@ -355118,7 +359024,7 @@ longdesc does some (scoped) setup for varioref, then calls the original longdesc one. depend tools depend zref-clever -docfiles size=191 +docfiles size=190 texmf-dist/doc/latex/zref-vario/CHANGELOG.md texmf-dist/doc/latex/zref-vario/DEPENDS.txt texmf-dist/doc/latex/zref-vario/README.md details="Readme" @@ -355135,7 +359041,37 @@ 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.10 +catalogue-version 0.1.12 + +name zugferd +category Package +revision 73286 +shortdesc ZUGFeRD and Faktur-X invoicing using LaTeX +longdesc This package provides interfaces to allow creating ZUGFeRD or +longdesc Faktur-X invoices with LaTeX including the XML file. It can be +longdesc used to modify personal invoicing templates to fulfil the +longdesc requirements for digital invoicing without further modification +longdesc of the invoicing processes. +depend siunitx +docfiles size=143 + texmf-dist/doc/latex/zugferd/DEMO-rechnung-zugferd.pdf details="Example of use" + texmf-dist/doc/latex/zugferd/DEMO-rechnung-zugferd.tex + texmf-dist/doc/latex/zugferd/DEPENDS.txt + texmf-dist/doc/latex/zugferd/INSTALL.md + texmf-dist/doc/latex/zugferd/README.md details="Readme" + texmf-dist/doc/latex/zugferd/zugferd.pdf details="Package documentation" +srcfiles size=27 + texmf-dist/source/latex/zugferd/zugferd.dtx + texmf-dist/source/latex/zugferd/zugferd.ins +runfiles size=14 + texmf-dist/tex/latex/zugferd/zugferd-invoice.sty + texmf-dist/tex/latex/zugferd/zugferd.sty +catalogue-contact-repository https://github.com/TeXhackse/LaTeX-ZUGFeRD.git +catalogue-contact-support https://github.com/TeXhackse/LaTeX-ZUGFeRD/issues +catalogue-ctan /macros/latex/contrib/zugferd +catalogue-license lppl1.3c +catalogue-topics invoice expl3 +catalogue-version 0.9d name zwgetfdate category Package diff --git a/Master/tlpkg/texworks/README.txt b/Master/tlpkg/texworks/README.txt index 8b5fb671c69..7cdf38e4cd8 100644 --- a/Master/tlpkg/texworks/README.txt +++ b/Master/tlpkg/texworks/README.txt @@ -39,7 +39,7 @@ Mailing list: http://tug.org/mailman/listinfo/texworks License ================================================================================ -TeXworks is copyright (C) 2007-2024 by Stefan Lffler, Jonathan Kew, and Charlie +TeXworks is copyright (C) 2007-2025 by Stefan Lffler, Jonathan Kew, and Charlie Sharpsteen. Distributed under the terms of the GNU General Public License, version 2 or (at your option) any later version. diff --git a/Master/tlpkg/texworks/texworks.exe b/Master/tlpkg/texworks/texworks.exe Binary files differindex 4eec6915c68..62832cd1489 100755 --- a/Master/tlpkg/texworks/texworks.exe +++ b/Master/tlpkg/texworks/texworks.exe diff --git a/Master/tlpkg/tlgs/README.TEXLIVE b/Master/tlpkg/tlgs/README.TEXLIVE index eb6af430180..61ad620082f 100644 --- a/Master/tlpkg/tlgs/README.TEXLIVE +++ b/Master/tlpkg/tlgs/README.TEXLIVE @@ -1,5 +1,5 @@ -This directory contains a subset of the Ghostscript 10.03.1 distribution +This directory contains a subset of the Ghostscript 10.04.0 distribution for Windows. The only purpose of this package is to support programs shipped with TeX Live. It's not intended for general use. diff --git a/Master/tlpkg/tlgs/Resource/Init/gs_init.ps b/Master/tlpkg/tlgs/Resource/Init/gs_init.ps index 8abdc3db35f..5df6d9c3477 100644 --- a/Master/tlpkg/tlgs/Resource/Init/gs_init.ps +++ b/Master/tlpkg/tlgs/Resource/Init/gs_init.ps @@ -34,7 +34,7 @@ % Interpreter library version number % NOTE: the interpreter code requires that the first non-comment token % in this file be an integer, and that it match the compiled-in version! -10031 +10040 % Check the interpreter revision. dup revision ne @@ -1143,13 +1143,12 @@ currentdict /runlibfile0 .undef (; OffendingCommand: ) print =only ( ]%%) = } { (Unrecoverable error: ) print =only flush - ( in ) print =only flush + ( in ) print =only (\n) print flush count 2 gt { (Operand stack:\n ) print count 1 sub -1 2 { ( ) print index =only flush } for - () =only + (\n) =only flush } if - (\n) =only flush } ifelse -1 0 1 //ErrorNames length 1 sub @@ -1225,7 +1224,7 @@ currentdict /.unstoppederrorhandler .undef } { exch print exch % print heading. stack <==flag> <stack> - 1 index not { () =only } if + 1 index not { (\n) =only } if { 1 index { (\n ) } { ( ) } ifelse print dup type /dicttype eq { @@ -1264,7 +1263,7 @@ currentdict /.unstoppederrorhandler .undef errorname /VMerror eq { (VM status:) print mark vmstatus counttomark { ( ) print counttomark -1 roll dup =only } repeat - cleartomark () =only + cleartomark (\n) =only } if .languagelevel 2 ge @@ -1275,7 +1274,7 @@ currentdict /.unstoppederrorhandler .undef .oserrno dup 0 ne { (Last OS error: ) print errorname /VMerror ne - { dup .oserrorstring { =only pop } { =only } ifelse } + { dup .oserrorstring { =only (\n) print pop } { =only (\n) print } ifelse } { =only } ifelse } diff --git a/Master/tlpkg/tlgs/Resource/Init/pdf_main.ps b/Master/tlpkg/tlgs/Resource/Init/pdf_main.ps index 98c7ea011c1..7ca51f4645c 100644 --- a/Master/tlpkg/tlgs/Resource/Init/pdf_main.ps +++ b/Master/tlpkg/tlgs/Resource/Init/pdf_main.ps @@ -1,4 +1,4 @@ -% Copyright (C) 2001-2023 Artifex Software, Inc. +% Copyright (C) 2001-2024 Artifex Software, Inc. % All Rights Reserved. % % This software is provided AS-IS with no warranty, either express or @@ -235,7 +235,7 @@ systemdict /NEWPDF known { % the original, un-modified page. Note that PostScript's rotate operator works % counter-clockwise, while PDF works clockwise.... % - 7 index dup /Rotate known {/Rotate get}{90}ifelse + 7 index dup /Rotate known {/Rotate get}{pop 90}ifelse 270 eq { 90 rotate 0 2 index neg translate % move 0,0 to bottom right of media to account for rotation @@ -630,20 +630,40 @@ systemdict /NEWPDF known { } if } ifelse - pop % The box + 3 1 roll % <page dict> /BoxName [box dimensions] -> [box dimensions] <page dict> /BoxName % If we are using the MediaBox (and only the MediaBox) then we - % want to clip to the CropBox, if there is one present + % want to clip to the CropBox, if there is one present. For every + % other case, clip to the given Box. /MediaBox eq { dup /CropBox known { /CropBox get aload pop 2 index sub exch 3 index sub exch rectclip + pop % [box dimensions] array } { - pop + pop % <page dict> + + aload % Load the co-ordinates of the box onto the stack + pop % The array with the box co-ordinates + % llx lly urx ury + 2 index sub % ll lly urx (ury - lly) + exch % llx lly height urx + 3 index sub % llx lly height (urx - llx) + exch % llx lly width height + rectclip } ifelse } { - pop + pop % <page dict> + + aload % Load the co-ordinates of the box onto the stack + pop % The array with the box co-ordinates + % llx lly urx ury + 2 index sub % ll lly urx (ury - lly) + exch % llx lly height urx + 3 index sub % llx lly height (urx - llx) + exch % llx lly width height + rectclip }ifelse pop @@ -658,7 +678,7 @@ systemdict /NEWPDF known { % so here we should only handle parameters which control the behaviour of the interpreter. % /PDFSwitches [ /QUIET /PDFPassword /PDFDEBUG /PDFSTOPONERROR /PDFSTOPONWARNING /NOTRANSPARENCY /FirstPage /LastPage - /PDFNOCIDFALLBACK /NO_PDFMARK_OUTLINES /NO_PDFMARK_DESTS /PDFFitPage /Printed /UsePDFX3Profile + /PDFA /PDFACompatibilityPolicy /PDFNOCIDFALLBACK /NO_PDFMARK_OUTLINES /NO_PDFMARK_DESTS /PDFFitPage /Printed /UsePDFX3Profile /UseBleedBox /UseCropBox /UseArtBox /UseTrimBox /ShowAcroForm /ShowAnnots /PreserveAnnots /NoUserUnit /RENDERTTNOTDEF /DOPDFMARKS /PDFINFO /ShowAnnotTypes /PreserveAnnotTypes /CIDFSubstPath /CIDFSubstFont /SUBSTFONT /IgnoreToUnicode /NONATIVEFONTMAP /PreserveMarkedContent /OutputFile diff --git a/Master/tlpkg/tlgs/bin/gsdll64.dll b/Master/tlpkg/tlgs/bin/gsdll64.dll Binary files differindex 4de8aa793c7..a2a139db6ad 100755 --- a/Master/tlpkg/tlgs/bin/gsdll64.dll +++ b/Master/tlpkg/tlgs/bin/gsdll64.dll diff --git a/Master/tlpkg/tlgs/bin/gswin64.exe b/Master/tlpkg/tlgs/bin/gswin64.exe Binary files differindex 3ce422d1cae..ce7798210fd 100755 --- a/Master/tlpkg/tlgs/bin/gswin64.exe +++ b/Master/tlpkg/tlgs/bin/gswin64.exe diff --git a/Master/tlpkg/tlgs/bin/gswin64c.exe b/Master/tlpkg/tlgs/bin/gswin64c.exe Binary files differindex 124bd6b215b..c10c1b0c4d7 100755 --- a/Master/tlpkg/tlgs/bin/gswin64c.exe +++ b/Master/tlpkg/tlgs/bin/gswin64c.exe diff --git a/Master/tlpkg/tlgs/lib/zugferd.ps b/Master/tlpkg/tlgs/lib/zugferd.ps index 03706f9e0f7..f8f1c0c0eb8 100644 --- a/Master/tlpkg/tlgs/lib/zugferd.ps +++ b/Master/tlpkg/tlgs/lib/zugferd.ps @@ -39,6 +39,13 @@ % the content of the element "GuidelineSpecifiedDocumentContextParameter" % (specification identifier BT-24) of the XML instance file. % +% Optionally: +% -sZUGFeRDDateTime can be used to set a string representing the modification +% date of the XML invoice file. If this is ommitted a dummy value will be +% used. It is up to the user to create a correctly formatted PDF date/time +% string. See section 7.9.4 of the PDF 2.0 specification (ISO-32000-2:2017) +% for details of the format. +% % The user must additionally set -dPDFA=3 and -sColorConversionStrategy % on the Ghostscript command line, and set the permissions for Ghostscript % to read both these files. It is simplest to put the files in a directory @@ -69,6 +76,9 @@ % The program was further refined and expanded by Adrian Devries in : % https://bugs.ghostscript.com/show_bug.cgi?id=703862 % +% And refined again following feedback from Thorsten Engel in: +% https://bugs.ghostscript.com/show_bug.cgi?id=707694 +% % It should not be necessary to modify this program, the comments in the % code are there purely for information, but there is one area which % might reasonably be altered. The section with the --8<-- lines could be @@ -440,9 +450,15 @@ ZUGFeRDVersion (2p1) eq { [ {InvoiceStream} << /Type /EmbeddedFile /Subtype (text/xml) cvn - % TODO: Determine file length, and add /Length entry /Params << - /ModDate (D:20130121081433+01'00') % TODO: Determine file date. + /ModDate systemdict /ZUGFeRDDateTime known + {ZUGFeRDDateTime} + {(D:20130121081433+01'00')} + ifelse + /Size ZUGFeRDXMLFile status + {pop pop exch pop} + {(Failed to get file status!\n)print /status load /ioerror signalerror} + ifelse >> >> /PUT pdfmark % Now read the data from the file and store it in the stream diff --git a/Master/tlpkg/tlpsrc/adforn.tlpsrc b/Master/tlpkg/tlpsrc/adforn.tlpsrc index b8d3aa91629..b7008ace11f 100644 --- a/Master/tlpkg/tlpsrc/adforn.tlpsrc +++ b/Master/tlpkg/tlpsrc/adforn.tlpsrc @@ -1 +1,2 @@ -execute addMap OrnementsADF.map +execute addMap ${PKGNAME}.map + diff --git a/Master/tlpkg/tlpsrc/adfsymbols.tlpsrc b/Master/tlpkg/tlpsrc/adfsymbols.tlpsrc index e67378c81bc..8c844399260 100644 --- a/Master/tlpkg/tlpsrc/adfsymbols.tlpsrc +++ b/Master/tlpkg/tlpsrc/adfsymbols.tlpsrc @@ -1,2 +1 @@ -execute addMap ArrowsADF.map -execute addMap BulletsADF.map +execute addMap adfsymbols.map diff --git a/Master/tlpkg/tlpsrc/afparticle.tlpsrc b/Master/tlpkg/tlpsrc/aiplans.tlpsrc index e69de29bb2d..e69de29bb2d 100644 --- a/Master/tlpkg/tlpsrc/afparticle.tlpsrc +++ b/Master/tlpkg/tlpsrc/aiplans.tlpsrc diff --git a/Master/tlpkg/tlpsrc/albatross.tlpsrc b/Master/tlpkg/tlpsrc/albatross.tlpsrc index aefd3a571c4..dca338c719c 100644 --- a/Master/tlpkg/tlpsrc/albatross.tlpsrc +++ b/Master/tlpkg/tlpsrc/albatross.tlpsrc @@ -1,2 +1 @@ binpattern f bin/${ARCH}/${PKGNAME} - diff --git a/Master/tlpkg/tlpsrc/litebook.tlpsrc b/Master/tlpkg/tlpsrc/anima.tlpsrc index e69de29bb2d..e69de29bb2d 100644 --- a/Master/tlpkg/tlpsrc/litebook.tlpsrc +++ b/Master/tlpkg/tlpsrc/anima.tlpsrc diff --git a/Master/tlpkg/tlpsrc/aomart.tlpsrc b/Master/tlpkg/tlpsrc/aomart.tlpsrc index e69de29bb2d..263c1d6be22 100644 --- a/Master/tlpkg/tlpsrc/aomart.tlpsrc +++ b/Master/tlpkg/tlpsrc/aomart.tlpsrc @@ -0,0 +1,2 @@ +binpattern f bin/${ARCH}/aom-fullref +docpattern +f texmf-dist/doc/man/man1/aom-fullref.* diff --git a/Master/tlpkg/tlpsrc/litesolution.tlpsrc b/Master/tlpkg/tlpsrc/atableau.tlpsrc index e69de29bb2d..e69de29bb2d 100644 --- a/Master/tlpkg/tlpsrc/litesolution.tlpsrc +++ b/Master/tlpkg/tlpsrc/atableau.tlpsrc diff --git a/Master/tlpkg/tlpsrc/baskervald.tlpsrc b/Master/tlpkg/tlpsrc/baskervald.tlpsrc deleted file mode 100644 index 8bcee594c12..00000000000 --- a/Master/tlpkg/tlpsrc/baskervald.tlpsrc +++ /dev/null @@ -1,2 +0,0 @@ -catalogue baskervaldadf -execute addMap ybv.map diff --git a/Master/tlpkg/tlpsrc/baskervaldadf.tlpsrc b/Master/tlpkg/tlpsrc/baskervaldadf.tlpsrc new file mode 100644 index 00000000000..23598168171 --- /dev/null +++ b/Master/tlpkg/tlpsrc/baskervaldadf.tlpsrc @@ -0,0 +1 @@ +execute addMap ybv.map diff --git a/Master/tlpkg/tlpsrc/osda.tlpsrc b/Master/tlpkg/tlpsrc/beamertheme-gotham.tlpsrc index e69de29bb2d..e69de29bb2d 100644 --- a/Master/tlpkg/tlpsrc/osda.tlpsrc +++ b/Master/tlpkg/tlpsrc/beamertheme-gotham.tlpsrc diff --git a/Master/tlpkg/tlpsrc/padauk.tlpsrc b/Master/tlpkg/tlpsrc/beamertheme-mirage.tlpsrc index e69de29bb2d..e69de29bb2d 100644 --- a/Master/tlpkg/tlpsrc/padauk.tlpsrc +++ b/Master/tlpkg/tlpsrc/beamertheme-mirage.tlpsrc diff --git a/Master/tlpkg/tlpsrc/thmlist.tlpsrc b/Master/tlpkg/tlpsrc/beamerthemecelestia.tlpsrc index e69de29bb2d..e69de29bb2d 100644 --- a/Master/tlpkg/tlpsrc/thmlist.tlpsrc +++ b/Master/tlpkg/tlpsrc/beamerthemecelestia.tlpsrc diff --git a/Master/tlpkg/tlpsrc/beamertools.tlpsrc b/Master/tlpkg/tlpsrc/beamertools.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/beamertools.tlpsrc diff --git a/Master/tlpkg/tlpsrc/bib2gls.tlpsrc b/Master/tlpkg/tlpsrc/bib2gls.tlpsrc index 7007f2cf120..47a33e36ae2 100644 --- a/Master/tlpkg/tlpsrc/bib2gls.tlpsrc +++ b/Master/tlpkg/tlpsrc/bib2gls.tlpsrc @@ -1,5 +1,10 @@ depend glossaries-extra # binpattern f bin/${ARCH}/${PKGNAME} +# man page included via autopatterns. +# binpattern f bin/${ARCH}/convertgls2bib docpattern +f texmf-dist/doc/man/man1/convertgls2bib.* +# +binpattern f bin/${ARCH}/datatool2bib +docpattern +f texmf-dist/doc/man/man1/datatool2bib.* diff --git a/Master/tlpkg/tlpsrc/bib2qr.tlpsrc b/Master/tlpkg/tlpsrc/bib2qr.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/bib2qr.tlpsrc diff --git a/Master/tlpkg/tlpsrc/biblatex-accursius.tlpsrc b/Master/tlpkg/tlpsrc/biblatex-accursius.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/biblatex-accursius.tlpsrc diff --git a/Master/tlpkg/tlpsrc/biblatex-cse.tlpsrc b/Master/tlpkg/tlpsrc/biblatex-cse.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/biblatex-cse.tlpsrc diff --git a/Master/tlpkg/tlpsrc/bmstu-iu8.tlpsrc b/Master/tlpkg/tlpsrc/bmstu-iu8.tlpsrc index e69de29bb2d..9a235af9f96 100644 --- a/Master/tlpkg/tlpsrc/bmstu-iu8.tlpsrc +++ b/Master/tlpkg/tlpsrc/bmstu-iu8.tlpsrc @@ -0,0 +1,38 @@ +depend algorithm2e +depend amscls +depend anyfontsize +depend babel +depend bookmark +depend tools +depend caption +depend chngcntr +depend csquotes +depend enumitem +depend fancyhdr +depend float +depend geometry +depend glossaries +depend glossaries-extra +depend graphics +depend oberdiek +depend lastpage +depend lineno +depend listings +depend multirow +depend nowidow +depend koma-script +depend setspace +depend fontspec +depend stackengine +depend tabto-ltx +depend titlesec +depend totcount +depend ulem +depend xassoccnt +depend xcolor +depend xltabular +depend xstring +depend ltablex # Here (and below) go some dependencies of dependencies +depend biblatex +depend ifoddpage +depend relsize diff --git a/Master/tlpkg/tlpsrc/bonum-otf.tlpsrc b/Master/tlpkg/tlpsrc/bonum-otf.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/bonum-otf.tlpsrc diff --git a/Master/tlpkg/tlpsrc/bookshelf.tlpsrc b/Master/tlpkg/tlpsrc/bookshelf.tlpsrc index e69de29bb2d..d09c46dc61c 100644 --- a/Master/tlpkg/tlpsrc/bookshelf.tlpsrc +++ b/Master/tlpkg/tlpsrc/bookshelf.tlpsrc @@ -0,0 +1,10 @@ +category Package + +runpattern +f texmf-dist/scripts/${PKGNAME}/${PKGNAME}-listallfonts +runpattern +f texmf-dist/scripts/${PKGNAME}/${PKGNAME}-mkfontsel + +binpattern f bin/${ARCH}/${PKGNAME}-listallfonts +binpattern f bin/${ARCH}/${PKGNAME}-mkfontsel + +docpattern +f texmf-dist/doc/man/man1/${PKGNAME}-listallfonts.* +docpattern +f texmf-dist/doc/man/man1/${PKGNAME}-mkfontsel.* diff --git a/Master/tlpkg/tlpsrc/bxcoloremoji.tlpsrc b/Master/tlpkg/tlpsrc/bxcoloremoji.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/bxcoloremoji.tlpsrc diff --git a/Master/tlpkg/tlpsrc/calculatoritems.tlpsrc b/Master/tlpkg/tlpsrc/calculatoritems.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/calculatoritems.tlpsrc diff --git a/Master/tlpkg/tlpsrc/callouts-box.tlpsrc b/Master/tlpkg/tlpsrc/callouts-box.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/callouts-box.tlpsrc diff --git a/Master/tlpkg/tlpsrc/cascadiamono-otf.tlpsrc b/Master/tlpkg/tlpsrc/cascadiamono-otf.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/cascadiamono-otf.tlpsrc diff --git a/Master/tlpkg/tlpsrc/chuushaku.tlpsrc b/Master/tlpkg/tlpsrc/chuushaku.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/chuushaku.tlpsrc diff --git a/Master/tlpkg/tlpsrc/citation-style-language.tlpsrc b/Master/tlpkg/tlpsrc/citation-style-language.tlpsrc index a207bcae757..900435e1252 100644 --- a/Master/tlpkg/tlpsrc/citation-style-language.tlpsrc +++ b/Master/tlpkg/tlpsrc/citation-style-language.tlpsrc @@ -1,11 +1,11 @@ docpattern +f texmf-dist/doc/man/man1/citeproc-lua.* binpattern f bin/${ARCH}/citeproc-lua -depend luatex depend l3kernel -depend l3packages -depend filehook -depend url -depend luaxml +depend l3packages # xparse +depend lua-tinyyaml # YAML parser depend lua-uca -depend lualibs +depend lualibs # JSON parser +depend luatex +depend luaxml +depend url diff --git a/Master/tlpkg/tlpsrc/clicks.tlpsrc b/Master/tlpkg/tlpsrc/clicks.tlpsrc index 406b4071a58..4f1f20324f1 100644 --- a/Master/tlpkg/tlpsrc/clicks.tlpsrc +++ b/Master/tlpkg/tlpsrc/clicks.tlpsrc @@ -1,2 +1,2 @@ -hard xkeyval hard etoolbox +hard pgfopts diff --git a/Master/tlpkg/tlpsrc/collection-basic.tlpsrc b/Master/tlpkg/tlpsrc/collection-basic.tlpsrc index cb84b3d655a..6fa9c0922f3 100644 --- a/Master/tlpkg/tlpsrc/collection-basic.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-basic.tlpsrc @@ -18,6 +18,7 @@ depend ec depend enctex depend etex depend etex-pkg +depend extractbb depend glyphlist depend graphics-def depend hyph-utf8 diff --git a/Master/tlpkg/tlpsrc/collection-bibtexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-bibtexextra.tlpsrc index 6aae4e34ecf..fd04fad491c 100644 --- a/Master/tlpkg/tlpsrc/collection-bibtexextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-bibtexextra.tlpsrc @@ -19,6 +19,7 @@ depend beebe depend besjournals depend bestpapers depend bib2gls +depend bib2qr depend bibarts depend bibcop depend biber @@ -41,6 +42,7 @@ depend biblatex-caspervector depend biblatex-chem depend biblatex-chicago depend biblatex-claves +depend biblatex-cse depend biblatex-cv depend biblatex-dw depend biblatex-enc diff --git a/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc index f05a7edd868..5eb1801661e 100644 --- a/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc @@ -41,6 +41,7 @@ depend dvipng depend dvipos depend dvisvgm depend easydtx +depend expltools depend findhyph depend fragmaster depend git-latexdiff @@ -85,6 +86,7 @@ depend pythontex depend runtexshebang depend seetexk depend spix +depend sqltex depend srcredact depend sty2dtx depend synctex diff --git a/Master/tlpkg/tlpsrc/collection-context.tlpsrc b/Master/tlpkg/tlpsrc/collection-context.tlpsrc index 75007a2771e..fb3e420ca8a 100644 --- a/Master/tlpkg/tlpsrc/collection-context.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-context.tlpsrc @@ -9,9 +9,11 @@ depend context depend luajittex depend context-legacy depend jmn +depend context-companion-fonts # # rest are contrib modules from the garden: depend context-calendar-examples +depend context-chat depend context-collating-marks depend context-cyrillicnumbers depend context-filter diff --git a/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc index da7c05a948f..f24e0bc0967 100644 --- a/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc @@ -36,7 +36,7 @@ depend auncial-new depend aurical depend b1encoding depend barcodes -depend baskervald +depend baskervaldadf depend baskervaldx depend baskervillef depend bbding @@ -53,6 +53,7 @@ depend bguq depend bitter depend blacklettert1 depend boisik +depend bonum-otf depend bookhands depend boondox depend braille @@ -65,6 +66,7 @@ depend cantarell depend carlito depend carolmin-ps depend cascadia-code +depend cascadiamono-otf depend ccicons depend cfr-initials depend cfr-lm @@ -91,7 +93,6 @@ depend comfortaa depend comicneue depend concmath-fonts depend concmath-otf -depend context-companion-fonts depend cookingsymbols depend cooperhewitt depend cormorantgaramond @@ -130,7 +131,7 @@ depend eczar depend eiad depend eiad-ltx depend ektype-tanka -depend electrum +depend electrumadf depend elvish depend epigrafica depend epsdice @@ -157,6 +158,7 @@ depend fontawesome depend fontawesome5 depend fontmfizz depend fonts-churchslavonic +depend fontscripts depend forum depend fourier depend fouriernc @@ -168,7 +170,8 @@ depend garamond-math depend gelasio depend gelasiomath depend genealogy -depend gentium-tug +depend gentium-otf +depend gentium-sil depend gfsartemisia depend gfsbodoni depend gfscomplutum @@ -207,6 +210,7 @@ depend ipaex-type1 depend iwona depend jablantile depend jamtimes +depend jetbrainsmono-otf depend josefin depend junicode depend junicodevf @@ -234,6 +238,7 @@ depend lineara depend linguisticspro depend lobster2 depend logix +depend luwiantype depend lxfonts depend ly1 depend magra @@ -245,6 +250,7 @@ depend mdputu depend mdsymbol depend merriweather depend metsymb +depend mfb-oldstyle depend miama depend mintspirit depend missaali @@ -301,7 +307,7 @@ depend raleway depend recycle depend rit-fonts depend roboto -depend romande +depend romandeadf depend rosario depend rsfso depend ruscap diff --git a/Master/tlpkg/tlpsrc/collection-formatsextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-formatsextra.tlpsrc index 50a95620a2d..62e2986837d 100644 --- a/Master/tlpkg/tlpsrc/collection-formatsextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-formatsextra.tlpsrc @@ -9,7 +9,6 @@ longdesc packages, and the HiTeX engine and related. depend collection-basic depend collection-latex # -depend edmac depend eplain depend hitex depend jadetex diff --git a/Master/tlpkg/tlpsrc/collection-games.tlpsrc b/Master/tlpkg/tlpsrc/collection-games.tlpsrc index f7a9e7f55dc..fb7e3e97a7d 100644 --- a/Master/tlpkg/tlpsrc/collection-games.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-games.tlpsrc @@ -53,6 +53,7 @@ depend sudoku depend sudokubundle depend tangramtikz depend thematicpuzzle +depend tikz-triminos depend trivialpursuit depend twoxtwogame depend wargame diff --git a/Master/tlpkg/tlpsrc/collection-humanities.tlpsrc b/Master/tlpkg/tlpsrc/collection-humanities.tlpsrc index abece93c52d..2d11e33facb 100644 --- a/Master/tlpkg/tlpsrc/collection-humanities.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-humanities.tlpsrc @@ -15,12 +15,15 @@ depend dramatist depend dvgloss depend ecltree depend edfnotes +depend edmac depend eledform depend eledmac depend expex depend expex-glossonly depend gb4e +depend gb4e-next depend gmverse +depend interlinear depend jura depend juraabbrev depend juramisc diff --git a/Master/tlpkg/tlpsrc/collection-langchinese.tlpsrc b/Master/tlpkg/tlpsrc/collection-langchinese.tlpsrc index b20526400eb..f8bada20aad 100644 --- a/Master/tlpkg/tlpsrc/collection-langchinese.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langchinese.tlpsrc @@ -26,6 +26,7 @@ depend njurepo depend pgfornament-han depend qyxf-book depend sjtutex +depend suanpan-l3 depend texlive-zh-cn depend texproposal depend tlmgr-intro-zh-cn diff --git a/Master/tlpkg/tlpsrc/collection-langenglish.tlpsrc b/Master/tlpkg/tlpsrc/collection-langenglish.tlpsrc index 02ee95b372f..dabd77b9c47 100644 --- a/Master/tlpkg/tlpsrc/collection-langenglish.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langenglish.tlpsrc @@ -64,7 +64,6 @@ depend tds depend tex-font-errors-cheatsheet depend tex-nutshell depend tex-overview -depend tex-refs depend tex-vpat depend texbytopic depend texonly @@ -76,5 +75,6 @@ depend typstfun depend undergradmath depend visualfaq depend webguide +depend wrapstuff-doc-en depend xetexref depend yet-another-guide-latex2e diff --git a/Master/tlpkg/tlpsrc/collection-langeuropean.tlpsrc b/Master/tlpkg/tlpsrc/collection-langeuropean.tlpsrc index 803f0a72399..fa8547f0688 100644 --- a/Master/tlpkg/tlpsrc/collection-langeuropean.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langeuropean.tlpsrc @@ -40,6 +40,7 @@ depend gloss-occitan depend hrlatex depend huaz depend hulipsum +depend hyphen-albanian depend hyphen-croatian depend hyphen-danish depend hyphen-dutch diff --git a/Master/tlpkg/tlpsrc/collection-langfrench.tlpsrc b/Master/tlpkg/tlpsrc/collection-langfrench.tlpsrc index d219a11d387..e9274345141 100644 --- a/Master/tlpkg/tlpsrc/collection-langfrench.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langfrench.tlpsrc @@ -23,6 +23,7 @@ depend epslatex-fr depend expose-expl3-dunkerque-2019 depend facture depend faq-fr +depend faq-fr-gutenberg depend formation-latex-ul depend frenchmath depend frletter diff --git a/Master/tlpkg/tlpsrc/collection-langitalian.tlpsrc b/Master/tlpkg/tlpsrc/collection-langitalian.tlpsrc index f338f8a9f8d..decec10ab23 100644 --- a/Master/tlpkg/tlpsrc/collection-langitalian.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langitalian.tlpsrc @@ -9,6 +9,7 @@ depend amsldoc-it depend amsmath-it depend amsthdoc-it depend babel-italian +depend biblatex-accursius depend codicefiscaleitaliano depend fancyhdr-it depend fixltxhyph diff --git a/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc b/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc index 7efc3cb03ab..ce1c2476546 100644 --- a/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc @@ -9,6 +9,7 @@ depend asternote depend babel-japanese depend bxbase depend bxcjkjatype +depend bxcoloremoji depend bxghost depend bxjaholiday depend bxjalipsum @@ -17,7 +18,9 @@ depend bxjatoucs depend bxjscls depend bxorigcapt depend bxwareki +depend chuushaku depend convbkmk +depend convert-jpfonts depend endnotesj depend gckanbun depend gentombow diff --git a/Master/tlpkg/tlpsrc/collection-langother.tlpsrc b/Master/tlpkg/tlpsrc/collection-langother.tlpsrc index 0680ba8641b..e05cf623a3a 100644 --- a/Master/tlpkg/tlpsrc/collection-langother.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langother.tlpsrc @@ -43,12 +43,14 @@ depend hyphen-coptic depend hyphen-esperanto depend hyphen-ethiopic depend hyphen-georgian +depend hyphen-hebrew depend hyphen-indic depend hyphen-indonesian depend hyphen-interlingua depend hyphen-sanskrit depend hyphen-thai depend hyphen-turkmen +depend hyphen-vietnamese depend latex-mr depend latexbangla depend latino-sine-flexione @@ -56,7 +58,6 @@ depend lshort-thai depend lshort-vietnamese depend marathi depend ntheorem-vn -depend padauk depend quran-bn depend quran-id depend quran-ur diff --git a/Master/tlpkg/tlpsrc/collection-langportuguese.tlpsrc b/Master/tlpkg/tlpsrc/collection-langportuguese.tlpsrc index f0fa3e9b145..f9d20db60f7 100644 --- a/Master/tlpkg/tlpsrc/collection-langportuguese.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langportuguese.tlpsrc @@ -1,6 +1,6 @@ category Collection shortdesc Portuguese -longdesc Support for Portuguese. +longdesc Support for Portuguese and Brazilian Portuguese. # depend collection-basic # @@ -15,4 +15,5 @@ depend lshort-portuguese depend numberpt depend ordinalpt depend ptlatexcommands +depend tabularray-abnt depend xypic-tut-pt diff --git a/Master/tlpkg/tlpsrc/collection-langspanish.tlpsrc b/Master/tlpkg/tlpsrc/collection-langspanish.tlpsrc index 5faf7ab6d12..a6b46cd93f1 100644 --- a/Master/tlpkg/tlpsrc/collection-langspanish.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-langspanish.tlpsrc @@ -16,4 +16,5 @@ depend l2tabu-spanish depend latex2e-help-texinfo-spanish depend latexcheat-esmx depend lshort-spanish +depend quran-es depend texlive-es diff --git a/Master/tlpkg/tlpsrc/collection-latex.tlpsrc b/Master/tlpkg/tlpsrc/collection-latex.tlpsrc index 60f7ac9efd6..bec75d15027 100644 --- a/Master/tlpkg/tlpsrc/collection-latex.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-latex.tlpsrc @@ -21,6 +21,7 @@ depend carlisle depend colortbl depend epstopdf-pkg depend etexcmds +depend etoolbox depend fancyhdr depend firstaid depend fix2col @@ -31,6 +32,7 @@ depend graphics-cfg depend grfext depend hopatch depend hycolor +depend hypcap depend hyperref depend intcalc depend kvdefinekeys diff --git a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc index b83be000d1a..aa9ef435eca 100644 --- a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc @@ -37,6 +37,7 @@ depend alterqcm depend altfont depend altsubsup depend amsaddr +depend anima depend animate depend anonchap depend answers @@ -64,9 +65,9 @@ depend authoraftertitle depend authorarchive depend authorindex depend autofancyhdr -depend autopuncitems depend autonum depend autopdf +depend autopuncitems depend avremu depend awesomebox depend axessibility @@ -89,8 +90,10 @@ depend beamertheme-cuerna depend beamertheme-detlevcm depend beamertheme-epyt depend beamertheme-focus +depend beamertheme-gotham depend beamertheme-light depend beamertheme-metropolis +depend beamertheme-mirage depend beamertheme-npbt depend beamertheme-phnompenh depend beamertheme-pure-minimalistic @@ -102,11 +105,13 @@ depend beamertheme-tcolorbox depend beamertheme-trigon depend beamertheme-upenn-bc depend beamerthemeamurmaple +depend beamerthemecelestia depend beamerthemeconcrete depend beamerthemejltree depend beamerthemelalic depend beamerthemenirma depend beamerthemenord +depend beamertools depend bearwear depend beaulivre depend beautybook @@ -154,6 +159,7 @@ depend bxtexlogo depend calcage depend calctab depend calculator +depend calculatoritems depend calrsfs depend cals depend calxxxx-yyyy @@ -244,6 +250,7 @@ depend combelow depend combine depend comma depend commado +depend commalists-tools depend commedit depend comment depend commonunicode @@ -386,6 +393,7 @@ depend doctools depend documentation depend docutils depend doi +depend doibanner depend dotarrow depend dotlessi depend dotseqn @@ -448,9 +456,11 @@ depend engpron depend engrec depend enotez depend ensps-colorscheme +depend enumext depend enumitem depend enumitem-zref depend envbig +depend enverb depend environ depend envlab depend epcqrcode @@ -477,6 +487,7 @@ depend etl depend etoc depend eukdate depend eulerpx +depend euromoney depend europasscv depend europecv depend everyhook @@ -504,6 +515,7 @@ depend export depend exsheets depend exsol depend extract +depend ezedits depend facsimile depend factura depend fail-fast @@ -530,6 +542,8 @@ depend filecontentsdef depend filedate depend fileinfo depend filemod +depend fillpages +depend fillwith depend fink depend finstrut depend fistrum @@ -582,6 +596,7 @@ depend formular depend fragments depend frame depend framed +depend framedsyntax depend frankenstein depend frege depend froufrou @@ -649,6 +664,7 @@ depend graphicscache depend graphicx-psmin depend graphicxbox depend graphpaper +depend gratzer-color-scheme depend grayhints depend grfpaste depend grid @@ -671,6 +687,7 @@ depend harnon-cv depend harpoon depend hc depend he-she +depend hebdomon depend hep-acronym depend hep-float depend hep-math @@ -724,6 +741,7 @@ depend incgraph depend indextools depend inline-images depend inlinedef +depend inlinegraphicx depend inlinelabel depend inputenx depend inputtrc @@ -826,8 +844,7 @@ depend listingsutf8 depend listlbls depend listliketab depend listofsymbols -depend litebook -depend litesolution +depend listparskip depend litetable depend lkproof depend lmake @@ -976,6 +993,7 @@ depend namespc depend ncclatex depend ncctools depend needspace +depend neoschool depend nestquot depend newcommand depend newenviron @@ -994,6 +1012,7 @@ depend nidanfloat depend ninecolors depend nlctdoc depend noconflict +depend nodepthtext depend noindentafter depend noitcrul depend nolbreaks @@ -1036,10 +1055,12 @@ depend outlines depend outlining depend overlays depend overpic +depend packdoc depend padcount depend pagecolor depend pagecont depend pagegrid +depend pagelayout depend pagenote depend pagerange depend pageslts @@ -1064,7 +1085,6 @@ depend patch depend patchcmd depend pauldoc depend pawpict -depend pagelayout depend pax depend pbalance depend pbox @@ -1089,6 +1109,7 @@ depend pdfsync depend pdfwin depend pdfx depend pecha +depend pegmatch depend perltex depend permute depend petiteannonce @@ -1118,8 +1139,8 @@ depend polynom depend polynomial depend polytable depend postcards -depend postnotes depend poster-mac +depend postnotes depend powerdot depend ppr-prv depend ppt-slides @@ -1138,6 +1159,7 @@ depend program depend progress depend progressbar depend projlib +depend pronunciation depend proofread depend properties depend prosper @@ -1162,6 +1184,7 @@ depend quoting depend quotmark depend ran_toks depend randexam +depend randintlist depend randtext depend rccol depend rcs-multi @@ -1220,11 +1243,13 @@ depend savetrees depend scale depend scalebar depend scalerel +depend scaletextbullet depend scanpages depend schedule depend schooldocs depend scontents depend scrambledenvs +depend scrhack depend scrlayer-fancyhdr depend scrlttr2copy depend scrwfile @@ -1314,6 +1339,7 @@ depend stdclsdv depend stdpage depend stealcaps depend stex +depend stocksize depend storebox depend storecmd depend stringstrings @@ -1360,12 +1386,12 @@ depend tabularcalc depend tabularew depend tabularray depend tabulary -depend tangocolors depend tagging depend tagpair depend tagpdf depend talk depend tamefloats +depend tangocolors depend tasks depend tblr-extras depend tcldoc @@ -1373,6 +1399,7 @@ depend tcolorbox depend tdclock depend technics depend ted +depend telprint depend templatetools depend termcal depend termlist @@ -1402,6 +1429,7 @@ depend thumb depend thumbs depend thumby depend ticket +depend timeop depend tipauni depend titlecaps depend titlefoot @@ -1500,6 +1528,7 @@ depend warning depend warpcol depend was depend webquiz +depend whatsnote depend widetable depend widows-and-orphans depend williams @@ -1541,6 +1570,7 @@ depend xpatch depend xpeek depend xprintlen depend xpunctuate +depend xreview depend xsavebox depend xsim depend xstring @@ -1562,5 +1592,6 @@ depend zref depend zref-check depend zref-clever depend zref-vario +depend zugferd depend zwgetfdate depend zwpagelayout diff --git a/Master/tlpkg/tlpsrc/collection-latexrecommended.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexrecommended.tlpsrc index 0724639207c..e500903e304 100644 --- a/Master/tlpkg/tlpsrc/collection-latexrecommended.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-latexrecommended.tlpsrc @@ -20,7 +20,6 @@ depend ctable depend eso-pic depend euenc depend euler -depend etoolbox depend everysel depend everyshi depend extsizes diff --git a/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc b/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc index e41f0ac1bfa..2883a91681b 100644 --- a/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc @@ -61,6 +61,7 @@ depend lualibs depend lualinalg depend luamathalign depend luamaths +depend luamml depend luamodulartables depend luamplib depend luaoptions @@ -71,14 +72,17 @@ depend luaprogtable depend luaquotes depend luarandom depend luaset +depend luatbls depend luatex85 depend luatexbase depend luatexko depend luatextra +depend luatikz depend luatruthtable depend luavlna depend luaxml depend lutabulartools +depend marginalia depend minim depend minim-math depend minim-mp @@ -110,5 +114,6 @@ depend texfindpkg depend truthtable depend tsvtemplate depend typewriter +depend unibidi-lua depend uninormalize depend yamlvars diff --git a/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc b/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc index 1a0bfec8779..efca56ed208 100644 --- a/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc @@ -6,6 +6,7 @@ depend collection-latex # depend 12many depend accents +depend aiplans depend alg depend algobox depend algorithm2e @@ -18,6 +19,7 @@ depend amscdx depend amstex depend annotate-equations depend apxproof +depend atableau depend autobreak depend axodraw2 depend backnaur @@ -61,14 +63,17 @@ depend coloredtheorem depend commath depend commutative-diagrams depend complexity +depend complexpolylongdiv depend computational-complexity depend concmath depend concrete depend conteq +depend cora-macs depend correctmathalign depend cryptocode depend cs-techrep depend csassignments +depend csthm depend cvss depend decision-table depend delim @@ -78,6 +83,7 @@ depend derivative depend diffcoeff depend digiconfigs depend dijkstra +depend domaincoloring depend drawmatrix depend drawstack depend dyntree @@ -92,6 +98,7 @@ depend eolang depend eqexpl depend eqnarray depend eqnnumwarn +depend euclidean-lattice depend euclideangeometry depend extarrows depend extpfeil @@ -132,6 +139,7 @@ depend jupynotex depend karnaugh depend karnaugh-map depend karnaughmap +depend keytheorems depend kvmap depend letterswitharrows depend lie-hasse @@ -162,6 +170,7 @@ depend mhchem depend mhequ depend miller depend mismath +depend moremath depend multiobjective depend naive-ebnf depend namedtensor @@ -171,6 +180,7 @@ depend nchairx depend nicematrix depend nuc depend nucleardata +depend numbersets depend numerica depend numerica-plus depend numerica-tables @@ -185,6 +195,7 @@ depend perfectcut depend pfdicons depend physconst depend physics +depend physics-patch depend physics2 depend physunits depend pinoutikz @@ -250,6 +261,7 @@ depend sympytexpackage depend synproof depend t-angles depend tablor +depend temporal-logic depend tensind depend tensor depend tex-ewd @@ -257,7 +269,6 @@ depend textgreek depend textopo depend thermodynamics depend thmbox -depend thmlist depend thmtools depend tiscreen depend turnstile diff --git a/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc b/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc index dc524e07175..022a92feb1e 100644 --- a/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc @@ -34,6 +34,8 @@ depend metauml depend mfpic depend mfpic4ode depend minim-hatching +depend mp-geom2d +depend mp-neuralnetwork depend mp3d depend mparrows depend mpattern diff --git a/Master/tlpkg/tlpsrc/collection-music.tlpsrc b/Master/tlpkg/tlpsrc/collection-music.tlpsrc index b0122fdde79..960f6cb6620 100644 --- a/Master/tlpkg/tlpsrc/collection-music.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-music.tlpsrc @@ -20,6 +20,7 @@ depend guitartabs depend harmony depend leadsheets depend latex4musicians +depend liederbuch depend lilyglyphs depend lyluatex depend m-tx diff --git a/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc b/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc index 08d321efed9..d65884b9ed7 100644 --- a/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc @@ -25,6 +25,7 @@ depend byo-twemojis depend byrne depend cachepic depend callouts +depend callouts-box depend celtic depend chemfig depend circuit-macros @@ -95,6 +96,7 @@ depend luamesh depend luasseq depend maker depend makeshape +depend maritime depend mathspic depend memoize depend mercatormap @@ -127,6 +129,7 @@ depend pgfmorepages depend pgfopts depend pgfornament depend pgfplots +depend pgfplotsthemebeamer depend picinpar depend pict2e depend pictex @@ -137,9 +140,11 @@ depend pixelart depend pixelarttikz depend pmgraph depend polyhedra +depend polyomino depend postage depend postit depend prerex +depend prisma-flow-diagram depend productbox depend ptolemaicastronomy depend puyotikz @@ -168,6 +173,7 @@ depend smartdiagram depend spath3 depend spectralsequences depend strands +depend sunpath depend swimgraf depend syntaxdi depend table-fct @@ -178,7 +184,9 @@ depend tikz-among-us depend tikz-bagua depend tikz-bayesnet depend tikz-bbox +depend tikz-bpmn depend tikz-cd +depend tikz-decofonts depend tikz-dependency depend tikz-dimline depend tikz-ext @@ -234,6 +242,7 @@ depend tikztosvg depend tikzviolinplots depend tile-graphic depend tilings +depend timechart depend timing-diagrams depend tipfr depend tkz-base diff --git a/Master/tlpkg/tlpsrc/collection-plaingeneric.tlpsrc b/Master/tlpkg/tlpsrc/collection-plaingeneric.tlpsrc index eae51743f65..85d7bf69fd9 100644 --- a/Master/tlpkg/tlpsrc/collection-plaingeneric.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-plaingeneric.tlpsrc @@ -111,6 +111,7 @@ depend tracklang depend transparent-io depend treetex depend trigonometry +depend tuple depend ulem depend upca depend varisize diff --git a/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc b/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc index cb8473e38e4..89dfbb45b17 100644 --- a/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc @@ -11,7 +11,6 @@ depend acmart depend acmconf depend active-conf depend adfathesis -depend afparticle depend afthesis depend aguplus depend aiaa @@ -65,6 +64,7 @@ depend dithesis depend ebook depend ebsthesis depend ecothesis +depend edmaths depend ejpecp depend ekaia depend elbioimp @@ -93,6 +93,7 @@ depend gzt depend h2020proposal depend hagenberg-thesis depend har2nat +depend hduthesis depend hecthese depend hep-paper depend heria @@ -163,6 +164,7 @@ depend njustthesis depend njuthesis depend njuvisual depend novel +depend nstc-proposal depend nwafuthesis depend nwejm depend nih @@ -170,9 +172,9 @@ depend nihbiosketch depend nostarch depend nrc depend nxuthesis +depend omgtudoc-asoiu depend onrannual depend opteng -depend osda depend oststud depend oup-authoring-template depend philosophersimprint @@ -187,6 +189,7 @@ depend prtec depend ptptex depend qrbill depend quantumarticle +depend rebuttal depend regulatory depend resphilosophica depend resumecls @@ -217,6 +220,7 @@ depend sphdthesis depend spie depend sr-vorl depend srdp-mathematik +depend sshrc-insight depend stellenbosch depend stellenbosch-2 depend suftesi @@ -247,6 +251,7 @@ depend turabian depend tui depend uaclasses depend uafthesis +depend ualberta depend uantwerpendocs depend ucalgmthesis depend ucbthesis @@ -256,6 +261,7 @@ depend ucsmonograph depend ucthesis depend udepcolor depend udes-genie-these +depend udiss depend uestcthesis depend ufrgscca depend uhhassignment diff --git a/Master/tlpkg/tlpsrc/commalists-tools.tlpsrc b/Master/tlpkg/tlpsrc/commalists-tools.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/commalists-tools.tlpsrc diff --git a/Master/tlpkg/tlpsrc/complexpolylongdiv.tlpsrc b/Master/tlpkg/tlpsrc/complexpolylongdiv.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/complexpolylongdiv.tlpsrc diff --git a/Master/tlpkg/tlpsrc/context-chat.tlpsrc b/Master/tlpkg/tlpsrc/context-chat.tlpsrc new file mode 100644 index 00000000000..80e71c2e536 --- /dev/null +++ b/Master/tlpkg/tlpsrc/context-chat.tlpsrc @@ -0,0 +1,2 @@ +category ConTeXt +depend context diff --git a/Master/tlpkg/tlpsrc/convert-jpfonts.tlpsrc b/Master/tlpkg/tlpsrc/convert-jpfonts.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/convert-jpfonts.tlpsrc diff --git a/Master/tlpkg/tlpsrc/cora-macs.tlpsrc b/Master/tlpkg/tlpsrc/cora-macs.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/cora-macs.tlpsrc diff --git a/Master/tlpkg/tlpsrc/csthm.tlpsrc b/Master/tlpkg/tlpsrc/csthm.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/csthm.tlpsrc diff --git a/Master/tlpkg/tlpsrc/doibanner.tlpsrc b/Master/tlpkg/tlpsrc/doibanner.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/doibanner.tlpsrc diff --git a/Master/tlpkg/tlpsrc/domaincoloring.tlpsrc b/Master/tlpkg/tlpsrc/domaincoloring.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/domaincoloring.tlpsrc diff --git a/Master/tlpkg/tlpsrc/dvipdfmx.tlpsrc b/Master/tlpkg/tlpsrc/dvipdfmx.tlpsrc index 45806514388..3c98ff39631 100644 --- a/Master/tlpkg/tlpsrc/dvipdfmx.tlpsrc +++ b/Master/tlpkg/tlpsrc/dvipdfmx.tlpsrc @@ -1,4 +1,5 @@ category TLCore +depend extractbb depend glyphlist depend texlive-scripts-extra # @@ -14,14 +15,10 @@ binpattern f bin/${ARCH}/dvipdfm binpattern f bin/${ARCH}/dvipdfmx binpattern f bin/${ARCH}/dvipdft binpattern f bin/${ARCH}/ebb -# not the extractbb symlink to xdvipdfmx. +# omit the extractbb symlink to xdvipdfmx, now a separate package; +# we'll also switch ebb later. binpattern f bin/${ARCH}/xdvipdfmx -# -# symlink and target. Should move into the dvipdfmx sources, but it's -# convenient to keep it in the dvipdfmx package, since that's where it's -# needed, and LaTeX assumes installing this package is enough. -binpattern f bin/${ARCH}/extractbb -runpattern f texmf-dist/scripts/texlive/extractbb.lua +docpattern f texmf-dist/doc/man/man1/ebb.* # docpattern d texmf-dist/doc/dvipdfm docpattern d texmf-dist/doc/dvipdfmx @@ -29,6 +26,3 @@ docpattern f texmf-dist/doc/man/man1/dvipdfm.* docpattern f texmf-dist/doc/man/man1/dvipdfmx.* docpattern f texmf-dist/doc/man/man1/xdvipdfmx.* docpattern f texmf-dist/doc/man/man1/dvipdft.* -docpattern f texmf-dist/doc/man/man1/ebb.* -# keep extractbb docs here since that's what the script runs internally -docpattern f texmf-dist/doc/man/man1/extractbb* diff --git a/Master/tlpkg/tlpsrc/edmaths.tlpsrc b/Master/tlpkg/tlpsrc/edmaths.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/edmaths.tlpsrc diff --git a/Master/tlpkg/tlpsrc/electrum.tlpsrc b/Master/tlpkg/tlpsrc/electrumadf.tlpsrc index 50feb3b94cb..1dde19c312f 100644 --- a/Master/tlpkg/tlpsrc/electrum.tlpsrc +++ b/Master/tlpkg/tlpsrc/electrumadf.tlpsrc @@ -1,2 +1 @@ execute addMap yes.map -catalogue electrumadf diff --git a/Master/tlpkg/tlpsrc/enumext.tlpsrc b/Master/tlpkg/tlpsrc/enumext.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/enumext.tlpsrc diff --git a/Master/tlpkg/tlpsrc/enverb.tlpsrc b/Master/tlpkg/tlpsrc/enverb.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/enverb.tlpsrc diff --git a/Master/tlpkg/tlpsrc/euclidean-lattice.tlpsrc b/Master/tlpkg/tlpsrc/euclidean-lattice.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/euclidean-lattice.tlpsrc diff --git a/Master/tlpkg/tlpsrc/euromoney.tlpsrc b/Master/tlpkg/tlpsrc/euromoney.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/euromoney.tlpsrc diff --git a/Master/tlpkg/tlpsrc/expltools.tlpsrc b/Master/tlpkg/tlpsrc/expltools.tlpsrc new file mode 100644 index 00000000000..2aad5d7a05c --- /dev/null +++ b/Master/tlpkg/tlpsrc/expltools.tlpsrc @@ -0,0 +1 @@ +binpattern f bin/${ARCH}/explcheck diff --git a/Master/tlpkg/tlpsrc/extractbb.tlpsrc b/Master/tlpkg/tlpsrc/extractbb.tlpsrc new file mode 100644 index 00000000000..dca338c719c --- /dev/null +++ b/Master/tlpkg/tlpsrc/extractbb.tlpsrc @@ -0,0 +1 @@ +binpattern f bin/${ARCH}/${PKGNAME} diff --git a/Master/tlpkg/tlpsrc/ezedits.tlpsrc b/Master/tlpkg/tlpsrc/ezedits.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/ezedits.tlpsrc diff --git a/Master/tlpkg/tlpsrc/faq-fr-gutenberg.tlpsrc b/Master/tlpkg/tlpsrc/faq-fr-gutenberg.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/faq-fr-gutenberg.tlpsrc diff --git a/Master/tlpkg/tlpsrc/ffcode.tlpsrc b/Master/tlpkg/tlpsrc/ffcode.tlpsrc index a772de85b4a..6684dbd5abe 100644 --- a/Master/tlpkg/tlpsrc/ffcode.tlpsrc +++ b/Master/tlpkg/tlpsrc/ffcode.tlpsrc @@ -1,6 +1,22 @@ -hard microtype -hard xkeyval -hard minted +hard listings +hard pgfopts hard tcolorbox -hard pgf -hard environ +soft docshots +soft environ +soft etoolbox +soft fvextra +soft href-ul +soft hypdoc +soft iexec +soft l3build +soft libertine +soft mathtools +soft microtype +soft pdfcrop +soft pgf +soft pgfopts +soft scheme-basic +soft silence +soft tools +soft upquote +soft xetex
\ No newline at end of file diff --git a/Master/tlpkg/tlpsrc/fillpages.tlpsrc b/Master/tlpkg/tlpsrc/fillpages.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/fillpages.tlpsrc diff --git a/Master/tlpkg/tlpsrc/fillwith.tlpsrc b/Master/tlpkg/tlpsrc/fillwith.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/fillwith.tlpsrc diff --git a/Master/tlpkg/tlpsrc/fontscripts.tlpsrc b/Master/tlpkg/tlpsrc/fontscripts.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/fontscripts.tlpsrc diff --git a/Master/tlpkg/tlpsrc/framedsyntax.tlpsrc b/Master/tlpkg/tlpsrc/framedsyntax.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/framedsyntax.tlpsrc diff --git a/Master/tlpkg/tlpsrc/gb4e-next.tlpsrc b/Master/tlpkg/tlpsrc/gb4e-next.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/gb4e-next.tlpsrc diff --git a/Master/tlpkg/tlpsrc/gentium-otf.tlpsrc b/Master/tlpkg/tlpsrc/gentium-otf.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/gentium-otf.tlpsrc diff --git a/Master/tlpkg/tlpsrc/gentium-sil.tlpsrc b/Master/tlpkg/tlpsrc/gentium-sil.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/gentium-sil.tlpsrc diff --git a/Master/tlpkg/tlpsrc/gentium-tug.tlpsrc b/Master/tlpkg/tlpsrc/gentium-tug.tlpsrc deleted file mode 100644 index dc4d9ce1d17..00000000000 --- a/Master/tlpkg/tlpsrc/gentium-tug.tlpsrc +++ /dev/null @@ -1 +0,0 @@ -execute addMap gentium-type1.map diff --git a/Master/tlpkg/tlpsrc/glossaries-extra.tlpsrc b/Master/tlpkg/tlpsrc/glossaries-extra.tlpsrc index e69de29bb2d..a5018c69518 100644 --- a/Master/tlpkg/tlpsrc/glossaries-extra.tlpsrc +++ b/Master/tlpkg/tlpsrc/glossaries-extra.tlpsrc @@ -0,0 +1 @@ +depend glossaries diff --git a/Master/tlpkg/tlpsrc/gratzer-color-scheme.tlpsrc b/Master/tlpkg/tlpsrc/gratzer-color-scheme.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/gratzer-color-scheme.tlpsrc diff --git a/Master/tlpkg/tlpsrc/hduthesis.tlpsrc b/Master/tlpkg/tlpsrc/hduthesis.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/hduthesis.tlpsrc diff --git a/Master/tlpkg/tlpsrc/hebdomon.tlpsrc b/Master/tlpkg/tlpsrc/hebdomon.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/hebdomon.tlpsrc diff --git a/Master/tlpkg/tlpsrc/hitex.tlpsrc b/Master/tlpkg/tlpsrc/hitex.tlpsrc index 3c6ac49d7ba..74b95363a20 100644 --- a/Master/tlpkg/tlpsrc/hitex.tlpsrc +++ b/Master/tlpkg/tlpsrc/hitex.tlpsrc @@ -11,10 +11,14 @@ execute AddFormat name=hilatex engine=hitex \ options="-etex -ltx hilatex.ini" \ fmttriggers=${global_latex_deps} +tlpsetvar no_texprof_platforms x86_64-darwinlegacy + binpattern f bin/${ARCH}/hishrink binpattern f bin/${ARCH}/histretch binpattern f bin/${ARCH}/hitex binpattern f bin/${ARCH}/hilatex +binpattern f/!${no_texprof_platforms} bin/${ARCH}/texprof +binpattern f/!${no_texprof_platforms} bin/${ARCH}/texprofile runpattern d texmf-dist/tex/hitex/base runpattern d texmf-dist/makeindex/hitex @@ -23,3 +27,5 @@ docpattern d texmf-dist/doc/hitex/base docpattern f texmf-dist/doc/man/man1/hishrink.* docpattern f texmf-dist/doc/man/man1/histretch.* docpattern f texmf-dist/doc/man/man1/hitex.* +docpattern f texmf-dist/doc/man/man1/texprof.* +docpattern f texmf-dist/doc/man/man1/texprofile.* diff --git a/Master/tlpkg/tlpsrc/hypcap.tlpsrc b/Master/tlpkg/tlpsrc/hypcap.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/hypcap.tlpsrc diff --git a/Master/tlpkg/tlpsrc/hyphen-albanian.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-albanian.tlpsrc new file mode 100644 index 00000000000..284069873b2 --- /dev/null +++ b/Master/tlpkg/tlpsrc/hyphen-albanian.tlpsrc @@ -0,0 +1,17 @@ +category TLCore +depend hyphen-base +depend hyph-utf8 +shortdesc Albanian hyphenation patterns. +longdesc Hyphenation patterns for Albanian in UTF-8 and T1 encoding. +execute AddHyphen \ + name=albanian \ + lefthyphenmin=2 \ + righthyphenmin=2 \ + file=loadhyph-sq.tex \ + file_patterns=hyph-sq.pat.txt \ + file_exceptions= +runpattern f texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sq.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-sq.ec.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-sq.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sq.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sq.pat.txt diff --git a/Master/tlpkg/tlpsrc/hyphen-ancientgreek.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-ancientgreek.tlpsrc index b8988980dc3..8a7ec9f4ac1 100644 --- a/Master/tlpkg/tlpsrc/hyphen-ancientgreek.tlpsrc +++ b/Master/tlpkg/tlpsrc/hyphen-ancientgreek.tlpsrc @@ -21,6 +21,7 @@ execute AddHyphen \ luaspecial="disabled:8-bit only" runpattern f texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-grc-x-ibycus.tex runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-grc.pat.txt runpattern f texmf-dist/tex/generic/hyphen/grahyph5.tex runpattern f texmf-dist/tex/generic/hyphen/ibyhyph.tex diff --git a/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc index f3ca83b76c0..2ffa7c39d5f 100644 --- a/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc +++ b/Master/tlpkg/tlpsrc/hyphen-arabic.tlpsrc @@ -5,7 +5,7 @@ shortdesc (No) Arabic hyphenation patterns. longdesc Prevent hyphenation in Arabic. execute AddHyphen \ name=arabic \ - lefthyphenmin= \ - righthyphenmin= \ - file=zerohyph.tex \ - file_patterns= + lefthyphenmin=0 \ + righthyphenmin=0 \ + file=hyph-ar.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ar.tex diff --git a/Master/tlpkg/tlpsrc/hyphen-chinese.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-chinese.tlpsrc index be477f21714..ae2bb3ecf8d 100644 --- a/Master/tlpkg/tlpsrc/hyphen-chinese.tlpsrc +++ b/Master/tlpkg/tlpsrc/hyphen-chinese.tlpsrc @@ -13,6 +13,6 @@ execute AddHyphen \ file_patterns=hyph-zh-latn-pinyin.pat.txt \ file_exceptions= runpattern f texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-zh-latn-pinyin.tex -runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-zh-latn-pinyin.ec.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex-8bit/hyph-zh-latn-pinyin.ec.tex runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.pat.txt diff --git a/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc index feedb9861a4..d75044c949e 100644 --- a/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc +++ b/Master/tlpkg/tlpsrc/hyphen-farsi.tlpsrc @@ -5,7 +5,7 @@ shortdesc (No) Persian hyphenation patterns. longdesc Prevent hyphenation in Persian. execute AddHyphen \ name=farsi synonyms=persian \ - lefthyphenmin= \ - righthyphenmin= \ - file=zerohyph.tex \ - file_patterns= + lefthyphenmin=0 \ + righthyphenmin=0 \ + file=hyph-fa.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fa.tex diff --git a/Master/tlpkg/tlpsrc/hyphen-finnish.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-finnish.tlpsrc index 6dbdf6c03c3..4dbe036d643 100644 --- a/Master/tlpkg/tlpsrc/hyphen-finnish.tlpsrc +++ b/Master/tlpkg/tlpsrc/hyphen-finnish.tlpsrc @@ -2,7 +2,7 @@ category TLCore depend hyphen-base depend hyph-utf8 shortdesc Finnish hyphenation patterns. -longdesc Hyphenation patterns for Finnish in T1 and UTF-8 encodings. The older set, labelled just “fi”, tries to implement etymological rules, while the newer ones (fi-x-school) implements the simpler rules taught at Finnish school. +longdesc Hyphenation patterns for Finnish in T1 and UTF-8 encodings. The older set, labelled just 'fi', tries to implement etymological rules, while the newer ones (fi-x-school) implements the simpler rules taught at Finnish school. execute AddHyphen \ name=finnish \ lefthyphenmin=2 \ diff --git a/Master/tlpkg/tlpsrc/hyphen-hebrew.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-hebrew.tlpsrc new file mode 100644 index 00000000000..3763c15f737 --- /dev/null +++ b/Master/tlpkg/tlpsrc/hyphen-hebrew.tlpsrc @@ -0,0 +1,11 @@ +category TLCore +depend hyphen-base +depend hyph-utf8 +shortdesc Hebrew hyphenation patterns. +longdesc Prevents hyphenation in Arabic. +execute AddHyphen \ + name=hebrew \ + lefthyphenmin=0 \ + righthyphenmin=0 \ + file=hyph-he.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-he.tex diff --git a/Master/tlpkg/tlpsrc/hyphen-romansh.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-romansh.tlpsrc index d9a74dbe4b6..136341e5cec 100644 --- a/Master/tlpkg/tlpsrc/hyphen-romansh.tlpsrc +++ b/Master/tlpkg/tlpsrc/hyphen-romansh.tlpsrc @@ -2,9 +2,10 @@ category TLCore depend hyphen-base depend hyph-utf8 shortdesc Romansh hyphenation patterns. -longdesc Hyphenation patterns for Romansh in ASCII encoding. -longdesc They are supposed to comply with the rules indicated by the Lia -longdesc Rumantscha (Romansh language society). +longdesc Hyphenation patterns for Romansh. +longdesc All Romansh idioms and Rumantsch Grischun taken into account, developed +longdesc in collaboration with Fundaziun Medias Rumantschas (Romansh news agency) +longdesc and Lia Rumantscha (Romansh umbrella organisation). execute AddHyphen \ name=romansh \ lefthyphenmin=2 \ @@ -13,6 +14,6 @@ execute AddHyphen \ file_patterns=hyph-rm.pat.txt \ file_exceptions= runpattern f texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex -runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-rm.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-rm.ec.tex runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-rm.pat.txt diff --git a/Master/tlpkg/tlpsrc/hyphen-vietnamese.tlpsrc b/Master/tlpkg/tlpsrc/hyphen-vietnamese.tlpsrc new file mode 100644 index 00000000000..902fba30d86 --- /dev/null +++ b/Master/tlpkg/tlpsrc/hyphen-vietnamese.tlpsrc @@ -0,0 +1,11 @@ +category TLCore +depend hyphen-base +depend hyph-utf8 +shortdesc Vietnamese hyphenation patterns. +longdesc Prevents hyphenation in Vietnamese. +execute AddHyphen \ + name=vietnamese \ + lefthyphenmin=0 \ + righthyphenmin=0 \ + file=hyph-vi.tex +runpattern f texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-vi.tex diff --git a/Master/tlpkg/tlpsrc/inlinegraphicx.tlpsrc b/Master/tlpkg/tlpsrc/inlinegraphicx.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/inlinegraphicx.tlpsrc diff --git a/Master/tlpkg/tlpsrc/interlinear.tlpsrc b/Master/tlpkg/tlpsrc/interlinear.tlpsrc new file mode 100644 index 00000000000..b20f1373cd7 --- /dev/null +++ b/Master/tlpkg/tlpsrc/interlinear.tlpsrc @@ -0,0 +1,6 @@ +depend marginnote # for marginnotes +depend xifthen +depend xkeyval # For key=val options +depend l3packages # xparse +depend etoolbox +depend enumitem diff --git a/Master/tlpkg/tlpsrc/jetbrainsmono-otf.tlpsrc b/Master/tlpkg/tlpsrc/jetbrainsmono-otf.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/jetbrainsmono-otf.tlpsrc diff --git a/Master/tlpkg/tlpsrc/kdpcover.tlpsrc b/Master/tlpkg/tlpsrc/kdpcover.tlpsrc index 7bfc2343211..9ec3ba03e56 100644 --- a/Master/tlpkg/tlpsrc/kdpcover.tlpsrc +++ b/Master/tlpkg/tlpsrc/kdpcover.tlpsrc @@ -1,14 +1,18 @@ -#depend shellesc -depend tools -depend xkeyval -depend anyfontsize -#depend tikz -depend pgf -depend microtype -depend xifthen -depend xcolor -#depend graphicx -depend graphics -depend setspace -depend geometry -depend textpos +hard anyfontsize +hard etoolbox +hard geometry +hard iexec +hard microtype +hard pgf +hard pgfopts +hard setspace +hard textpos +hard xcolor +soft docshots +soft href-ul +soft hypdoc +soft l3build +soft libertine +soft scheme-basic +soft tools +soft xetex diff --git a/Master/tlpkg/tlpsrc/keytheorems.tlpsrc b/Master/tlpkg/tlpsrc/keytheorems.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/keytheorems.tlpsrc diff --git a/Master/tlpkg/tlpsrc/liederbuch.tlpsrc b/Master/tlpkg/tlpsrc/liederbuch.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/liederbuch.tlpsrc diff --git a/Master/tlpkg/tlpsrc/listparskip.tlpsrc b/Master/tlpkg/tlpsrc/listparskip.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/listparskip.tlpsrc diff --git a/Master/tlpkg/tlpsrc/luamml.tlpsrc b/Master/tlpkg/tlpsrc/luamml.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/luamml.tlpsrc diff --git a/Master/tlpkg/tlpsrc/luatbls.tlpsrc b/Master/tlpkg/tlpsrc/luatbls.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/luatbls.tlpsrc diff --git a/Master/tlpkg/tlpsrc/luatikz.tlpsrc b/Master/tlpkg/tlpsrc/luatikz.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/luatikz.tlpsrc diff --git a/Master/tlpkg/tlpsrc/luwiantype.tlpsrc b/Master/tlpkg/tlpsrc/luwiantype.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/luwiantype.tlpsrc diff --git a/Master/tlpkg/tlpsrc/marginalia.tlpsrc b/Master/tlpkg/tlpsrc/marginalia.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/marginalia.tlpsrc diff --git a/Master/tlpkg/tlpsrc/maritime.tlpsrc b/Master/tlpkg/tlpsrc/maritime.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/maritime.tlpsrc diff --git a/Master/tlpkg/tlpsrc/markdown.tlpsrc b/Master/tlpkg/tlpsrc/markdown.tlpsrc index e69de29bb2d..5e364369ef4 100644 --- a/Master/tlpkg/tlpsrc/markdown.tlpsrc +++ b/Master/tlpkg/tlpsrc/markdown.tlpsrc @@ -0,0 +1,26 @@ +binpattern f bin/${ARCH}/markdown2tex + +hard l3kernel +hard lt3luabridge +hard lua-tinyyaml +hard lua-uni-algos +soft amsfonts +soft amsmath +soft csvsimple +soft enumitem +soft epstopdf +soft epstopdf-pkg +soft etoolbox +soft fancyvrb +soft graphics +soft ltxcmds +soft lua-ul +soft luacolor +soft luaxml +soft paralist +soft pgf +soft soul +soft tools +soft url +soft verse +soft xcolor diff --git a/Master/tlpkg/tlpsrc/mathalpha.tlpsrc b/Master/tlpkg/tlpsrc/mathalpha.tlpsrc index e69de29bb2d..493569ed3f6 100644 --- a/Master/tlpkg/tlpsrc/mathalpha.tlpsrc +++ b/Master/tlpkg/tlpsrc/mathalpha.tlpsrc @@ -0,0 +1 @@ +execute addMap ${PKGNAME}.map diff --git a/Master/tlpkg/tlpsrc/mfb-oldstyle.tlpsrc b/Master/tlpkg/tlpsrc/mfb-oldstyle.tlpsrc new file mode 100644 index 00000000000..1d8531e6e59 --- /dev/null +++ b/Master/tlpkg/tlpsrc/mfb-oldstyle.tlpsrc @@ -0,0 +1 @@ +execute addMap MFBOldstyle.map diff --git a/Master/tlpkg/tlpsrc/minted.tlpsrc b/Master/tlpkg/tlpsrc/minted.tlpsrc index 1ac08836251..876fd44c935 100644 --- a/Master/tlpkg/tlpsrc/minted.tlpsrc +++ b/Master/tlpkg/tlpsrc/minted.tlpsrc @@ -1,20 +1,13 @@ -# dependencies per -# https://raw.githubusercontent.com/gpoore/minted/master/source/minted.pdf -# report on tex-live, 31 Jul 2022 14:11:20 +0200. -# 12sep23 DEPENDS.txt added to package. +binpattern f bin/${ARCH}/latexminted + depend catchfile depend etoolbox depend float -depend framed depend fvextra -depend ifplatform -#base depend ifthen -depend graphics # keyval -depend kvoptions -depend lineno +depend latex2pydata depend newfloat depend pdftexcmds -depend tools # shellesc -depend upquote +depend pgf #pgfkeys +depend pgfopts +depend tools #shellesc depend xcolor -depend xstring diff --git a/Master/tlpkg/tlpsrc/moremath.tlpsrc b/Master/tlpkg/tlpsrc/moremath.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/moremath.tlpsrc diff --git a/Master/tlpkg/tlpsrc/mp-geom2d.tlpsrc b/Master/tlpkg/tlpsrc/mp-geom2d.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/mp-geom2d.tlpsrc diff --git a/Master/tlpkg/tlpsrc/mp-neuralnetwork.tlpsrc b/Master/tlpkg/tlpsrc/mp-neuralnetwork.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/mp-neuralnetwork.tlpsrc diff --git a/Master/tlpkg/tlpsrc/neoschool.tlpsrc b/Master/tlpkg/tlpsrc/neoschool.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/neoschool.tlpsrc diff --git a/Master/tlpkg/tlpsrc/nodepthtext.tlpsrc b/Master/tlpkg/tlpsrc/nodepthtext.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/nodepthtext.tlpsrc diff --git a/Master/tlpkg/tlpsrc/nstc-proposal.tlpsrc b/Master/tlpkg/tlpsrc/nstc-proposal.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/nstc-proposal.tlpsrc diff --git a/Master/tlpkg/tlpsrc/numbersets.tlpsrc b/Master/tlpkg/tlpsrc/numbersets.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/numbersets.tlpsrc diff --git a/Master/tlpkg/tlpsrc/omgtudoc-asoiu.tlpsrc b/Master/tlpkg/tlpsrc/omgtudoc-asoiu.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/omgtudoc-asoiu.tlpsrc diff --git a/Master/tlpkg/tlpsrc/optex.tlpsrc b/Master/tlpkg/tlpsrc/optex.tlpsrc index bdc0088ee56..ffce22d005c 100644 --- a/Master/tlpkg/tlpsrc/optex.tlpsrc +++ b/Master/tlpkg/tlpsrc/optex.tlpsrc @@ -2,7 +2,7 @@ depend luatex depend luaotfload depend librarian -execute AddFormat name=optex engine=luatex options="optex.ini" \ +execute AddFormat name=optex engine=luahbtex options="optex.ini" \ fmttriggers=amsfonts,cm,ec,hyphen-base,lm,rsfs,unicode-data binpattern f bin/${ARCH}/optex diff --git a/Master/tlpkg/tlpsrc/packdoc.tlpsrc b/Master/tlpkg/tlpsrc/packdoc.tlpsrc new file mode 100644 index 00000000000..129c5f141be --- /dev/null +++ b/Master/tlpkg/tlpsrc/packdoc.tlpsrc @@ -0,0 +1,14 @@ +hard enumitem +hard etoolbox +hard geometry +hard hyperref +#hard makeidx -> latex +hard marginnote +hard minted +hard tools # multicol +hard nowidow +hard pgfopts +hard ragged2e +hard snaptodo +hard tcolorbox +#hard textcomp -> latex diff --git a/Master/tlpkg/tlpsrc/pegmatch.tlpsrc b/Master/tlpkg/tlpsrc/pegmatch.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/pegmatch.tlpsrc diff --git a/Master/tlpkg/tlpsrc/pgfplotsthemebeamer.tlpsrc b/Master/tlpkg/tlpsrc/pgfplotsthemebeamer.tlpsrc new file mode 100644 index 00000000000..b32f7161aaa --- /dev/null +++ b/Master/tlpkg/tlpsrc/pgfplotsthemebeamer.tlpsrc @@ -0,0 +1,4 @@ +depend beamer +depend tools +depend pgfplots +depend pgfopts diff --git a/Master/tlpkg/tlpsrc/physics-patch.tlpsrc b/Master/tlpkg/tlpsrc/physics-patch.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/physics-patch.tlpsrc diff --git a/Master/tlpkg/tlpsrc/polyomino.tlpsrc b/Master/tlpkg/tlpsrc/polyomino.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/polyomino.tlpsrc diff --git a/Master/tlpkg/tlpsrc/ppmcheckpdf.tlpsrc b/Master/tlpkg/tlpsrc/ppmcheckpdf.tlpsrc index e69de29bb2d..dca338c719c 100644 --- a/Master/tlpkg/tlpsrc/ppmcheckpdf.tlpsrc +++ b/Master/tlpkg/tlpsrc/ppmcheckpdf.tlpsrc @@ -0,0 +1 @@ +binpattern f bin/${ARCH}/${PKGNAME} diff --git a/Master/tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc b/Master/tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/prisma-flow-diagram.tlpsrc diff --git a/Master/tlpkg/tlpsrc/pronunciation.tlpsrc b/Master/tlpkg/tlpsrc/pronunciation.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/pronunciation.tlpsrc diff --git a/Master/tlpkg/tlpsrc/quran-es.tlpsrc b/Master/tlpkg/tlpsrc/quran-es.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/quran-es.tlpsrc diff --git a/Master/tlpkg/tlpsrc/randintlist.tlpsrc b/Master/tlpkg/tlpsrc/randintlist.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/randintlist.tlpsrc diff --git a/Master/tlpkg/tlpsrc/rebuttal.tlpsrc b/Master/tlpkg/tlpsrc/rebuttal.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/rebuttal.tlpsrc diff --git a/Master/tlpkg/tlpsrc/romande.tlpsrc b/Master/tlpkg/tlpsrc/romandeadf.tlpsrc index c823b11ddf6..f6a883e27ba 100644 --- a/Master/tlpkg/tlpsrc/romande.tlpsrc +++ b/Master/tlpkg/tlpsrc/romandeadf.tlpsrc @@ -1,2 +1 @@ -catalogue romandeadf execute addMap yrd.map diff --git a/Master/tlpkg/tlpsrc/scaletextbullet.tlpsrc b/Master/tlpkg/tlpsrc/scaletextbullet.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/scaletextbullet.tlpsrc diff --git a/Master/tlpkg/tlpsrc/scheme-context.tlpsrc b/Master/tlpkg/tlpsrc/scheme-context.tlpsrc index 842f1586151..38b81b6fa13 100644 --- a/Master/tlpkg/tlpsrc/scheme-context.tlpsrc +++ b/Master/tlpkg/tlpsrc/scheme-context.tlpsrc @@ -7,7 +7,6 @@ depend collection-metapost # Polish and OpenType Math fonts are nice to have depend antt depend asana-math -depend gentium-tug depend iwona depend kurier depend poltawski diff --git a/Master/tlpkg/tlpsrc/scheme-tetex.tlpsrc b/Master/tlpkg/tlpsrc/scheme-tetex.tlpsrc index 2614f9a8c24..227688f9b05 100644 --- a/Master/tlpkg/tlpsrc/scheme-tetex.tlpsrc +++ b/Master/tlpkg/tlpsrc/scheme-tetex.tlpsrc @@ -33,7 +33,6 @@ depend subfigure depend supertabular depend tamethebeast depend tds -depend tex-refs depend tie depend web depend xpdfopen diff --git a/Master/tlpkg/tlpsrc/scrhack.tlpsrc b/Master/tlpkg/tlpsrc/scrhack.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/scrhack.tlpsrc diff --git a/Master/tlpkg/tlpsrc/sqltex.tlpsrc b/Master/tlpkg/tlpsrc/sqltex.tlpsrc new file mode 100644 index 00000000000..dca338c719c --- /dev/null +++ b/Master/tlpkg/tlpsrc/sqltex.tlpsrc @@ -0,0 +1 @@ +binpattern f bin/${ARCH}/${PKGNAME} diff --git a/Master/tlpkg/tlpsrc/sshrc-insight.tlpsrc b/Master/tlpkg/tlpsrc/sshrc-insight.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/sshrc-insight.tlpsrc diff --git a/Master/tlpkg/tlpsrc/stocksize.tlpsrc b/Master/tlpkg/tlpsrc/stocksize.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/stocksize.tlpsrc diff --git a/Master/tlpkg/tlpsrc/suanpan-l3.tlpsrc b/Master/tlpkg/tlpsrc/suanpan-l3.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/suanpan-l3.tlpsrc diff --git a/Master/tlpkg/tlpsrc/sunpath.tlpsrc b/Master/tlpkg/tlpsrc/sunpath.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/sunpath.tlpsrc diff --git a/Master/tlpkg/tlpsrc/tabularray-abnt.tlpsrc b/Master/tlpkg/tlpsrc/tabularray-abnt.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/tabularray-abnt.tlpsrc diff --git a/Master/tlpkg/tlpsrc/telprint.tlpsrc b/Master/tlpkg/tlpsrc/telprint.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/telprint.tlpsrc diff --git a/Master/tlpkg/tlpsrc/temporal-logic.tlpsrc b/Master/tlpkg/tlpsrc/temporal-logic.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/temporal-logic.tlpsrc diff --git a/Master/tlpkg/tlpsrc/tex-refs.tlpsrc b/Master/tlpkg/tlpsrc/tex-refs.tlpsrc deleted file mode 100644 index f02f3e16858..00000000000 --- a/Master/tlpkg/tlpsrc/tex-refs.tlpsrc +++ /dev/null @@ -1 +0,0 @@ -catalogue tex-references diff --git a/Master/tlpkg/tlpsrc/tikz-bpmn.tlpsrc b/Master/tlpkg/tlpsrc/tikz-bpmn.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/tikz-bpmn.tlpsrc diff --git a/Master/tlpkg/tlpsrc/tikz-decofonts.tlpsrc b/Master/tlpkg/tlpsrc/tikz-decofonts.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/tikz-decofonts.tlpsrc diff --git a/Master/tlpkg/tlpsrc/tikz-triminos.tlpsrc b/Master/tlpkg/tlpsrc/tikz-triminos.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/tikz-triminos.tlpsrc diff --git a/Master/tlpkg/tlpsrc/tikzlings.tlpsrc b/Master/tlpkg/tlpsrc/tikzlings.tlpsrc index e69de29bb2d..13696e5e59e 100644 --- a/Master/tlpkg/tlpsrc/tikzlings.tlpsrc +++ b/Master/tlpkg/tlpsrc/tikzlings.tlpsrc @@ -0,0 +1,4 @@ +depend pgf +depend pgf-blur +depend iftex +depend epstopdf-pkg diff --git a/Master/tlpkg/tlpsrc/timechart.tlpsrc b/Master/tlpkg/tlpsrc/timechart.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/timechart.tlpsrc diff --git a/Master/tlpkg/tlpsrc/timeop.tlpsrc b/Master/tlpkg/tlpsrc/timeop.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/timeop.tlpsrc diff --git a/Master/tlpkg/tlpsrc/tpic2pdftex.tlpsrc b/Master/tlpkg/tlpsrc/tpic2pdftex.tlpsrc index e54ff6498a2..dca338c719c 100644 --- a/Master/tlpkg/tlpsrc/tpic2pdftex.tlpsrc +++ b/Master/tlpkg/tlpsrc/tpic2pdftex.tlpsrc @@ -1,4 +1 @@ -category TLCore -docpattern f texmf-dist/doc/${PKGNAME}/* -docpattern f texmf-dist/doc/man/man1/${PKGNAME}.* binpattern f bin/${ARCH}/${PKGNAME} diff --git a/Master/tlpkg/tlpsrc/ttfutils.tlpsrc b/Master/tlpkg/tlpsrc/ttfutils.tlpsrc index 51d07930724..a702e5e72df 100644 --- a/Master/tlpkg/tlpsrc/ttfutils.tlpsrc +++ b/Master/tlpkg/tlpsrc/ttfutils.tlpsrc @@ -11,7 +11,7 @@ docpattern f texmf-dist/doc/man/man1/ttf2afm.* docpattern f texmf-dist/doc/man/man1/ttf2pk.* docpattern f texmf-dist/doc/man/man1/ttf2tfm.* docpattern f texmf-dist/doc/man/man1/ttfdump.* -docpattern d texmf-dist/doc/ttf2pk +docpattern d texmf-dist/doc/support/ttf2pk # binpattern f bin/${ARCH}/ttf2afm binpattern f bin/${ARCH}/ttf2pk diff --git a/Master/tlpkg/tlpsrc/tuple.tlpsrc b/Master/tlpkg/tlpsrc/tuple.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/tuple.tlpsrc diff --git a/Master/tlpkg/tlpsrc/ualberta.tlpsrc b/Master/tlpkg/tlpsrc/ualberta.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/ualberta.tlpsrc diff --git a/Master/tlpkg/tlpsrc/udiss.tlpsrc b/Master/tlpkg/tlpsrc/udiss.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/udiss.tlpsrc diff --git a/Master/tlpkg/tlpsrc/unibidi-lua.tlpsrc b/Master/tlpkg/tlpsrc/unibidi-lua.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/unibidi-lua.tlpsrc diff --git a/Master/tlpkg/tlpsrc/venturisadf.tlpsrc b/Master/tlpkg/tlpsrc/venturisadf.tlpsrc index 8c0caf702d4..008cddd16f8 100644 --- a/Master/tlpkg/tlpsrc/venturisadf.tlpsrc +++ b/Master/tlpkg/tlpsrc/venturisadf.tlpsrc @@ -1,7 +1,3 @@ -binpattern a venturis venturis2 venturisold venturissans venturissans2 -docpattern a venturis venturis2 venturisold venturissans venturissans2 -runpattern a venturis venturis2 venturisold venturissans venturissans2 -srcpattern a venturis venturis2 venturisold venturissans venturissans2 execute addMap yv1.map execute addMap yv2.map execute addMap yv3.map diff --git a/Master/tlpkg/tlpsrc/vlna.tlpsrc b/Master/tlpkg/tlpsrc/vlna.tlpsrc index c6e02848a72..139e6420759 100644 --- a/Master/tlpkg/tlpsrc/vlna.tlpsrc +++ b/Master/tlpkg/tlpsrc/vlna.tlpsrc @@ -1,8 +1,5 @@ -category TLCore 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. -docpattern f texmf-dist/doc/vlna/* -docpattern f texmf-dist/doc/man/man1/vlna.* binpattern f bin/${ARCH}/vlna diff --git a/Master/tlpkg/tlpsrc/whatsnote.tlpsrc b/Master/tlpkg/tlpsrc/whatsnote.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/whatsnote.tlpsrc diff --git a/Master/tlpkg/tlpsrc/wintools.windows.tlpsrc b/Master/tlpkg/tlpsrc/wintools.windows.tlpsrc index a4ef649d7a3..8bd046f3b7e 100644 --- a/Master/tlpkg/tlpsrc/wintools.windows.tlpsrc +++ b/Master/tlpkg/tlpsrc/wintools.windows.tlpsrc @@ -48,21 +48,6 @@ docpattern d texmf-dist/doc/support/tlaunch runpattern d texmf-dist/scripts/tlaunch runpattern f texmf-dist/web2c/tlaunch.ini # -# also bitmap2eps is. -binpattern f/windows bin/windows/bitmap2eps.exe -runpattern f texmf-dist/scripts/bitmap2eps/bitmap2eps.vbs -docpattern d texmf-dist/doc/support/bitmap2eps -postaction filetype name="TL.bitmap2eps.convert" \ - cmd='"TEXDIR/bin/windows/bitmap2eps.exe" "%1"' -postaction progid extension=.bmp filetype="TL.bitmap2eps.convert" -postaction progid extension=.png filetype="TL.bitmap2eps.convert" -postaction progid extension=.gif filetype="TL.bitmap2eps.convert" -postaction progid extension=.jpg filetype="TL.bitmap2eps.convert" -postaction progid extension=.jpe filetype="TL.bitmap2eps.convert" -postaction progid extension=.jpeg filetype="TL.bitmap2eps.convert" -postaction progid extension=.tif filetype="TL.bitmap2eps.convert" -postaction progid extension=.tiff filetype="TL.bitmap2eps.convert" -# # also psviewer. binpattern f bin/windows/psviewer.exe runpattern d texmf-dist/scripts/psviewer diff --git a/Master/tlpkg/tlpsrc/wrapstuff-doc-en.tlpsrc b/Master/tlpkg/tlpsrc/wrapstuff-doc-en.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/wrapstuff-doc-en.tlpsrc diff --git a/Master/tlpkg/tlpsrc/xreview.tlpsrc b/Master/tlpkg/tlpsrc/xreview.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/xreview.tlpsrc diff --git a/Master/tlpkg/tlpsrc/yb-book.tlpsrc b/Master/tlpkg/tlpsrc/yb-book.tlpsrc index 61cda33dd8c..a7a94e251f6 100644 --- a/Master/tlpkg/tlpsrc/yb-book.tlpsrc +++ b/Master/tlpkg/tlpsrc/yb-book.tlpsrc @@ -1,32 +1,48 @@ -depend pgf -depend xkeyval -depend geometry -depend anyfontsize -depend chngcntr -depend lastpage -depend paralist -depend xcolor -depend setspace -depend enumitem -depend float -depend ulem -depend qrcode -depend wrapfig -depend soul -depend xifthen -depend csquotes -depend biblatex -depend imakeidx -depend microtype -depend libertine -depend footmisc -depend titlesec -depend titlesec -depend fancyhdr -depend wrapfig -depend mdframed -depend changepage -depend ifmtarg -depend bigfoot -depend zref -depend needspace +hard anyfontsize +hard biblatex +hard bigfoot +hard changepage +hard chngcntr +hard collection-fontsextra +hard collection-fontsrecommended +hard csquotes +hard cyrillic +hard doi +hard enumitem +hard fancyhdr +hard float +hard footmisc +hard geometry +hard href-ul +hard hypdoc +hard ifmtarg +hard imakeidx +hard lastpage +hard lh +hard libertine +hard mdframed +hard microtype +hard needspace +hard paralist +hard pgf +hard pgfopts +hard qrcode +hard setspace +hard soul +hard textpos +hard titlesec +hard titlesec +hard ulem +hard wrapfig +hard wrapfig +hard xcolor +hard xifthen +hard xkeyval +hard zref +soft biblatex +soft imakeidx +soft l3build +soft pgfopts +soft scheme-basic +soft silence +soft xetex diff --git a/Master/tlpkg/tlpsrc/zref-clever.tlpsrc b/Master/tlpkg/tlpsrc/zref-clever.tlpsrc index e69de29bb2d..255d342b002 100644 --- a/Master/tlpkg/tlpsrc/zref-clever.tlpsrc +++ b/Master/tlpkg/tlpsrc/zref-clever.tlpsrc @@ -0,0 +1,4 @@ +depend zref +depend oberdiek +#soft hyperref +#soft zref-check diff --git a/Master/tlpkg/tlpsrc/zugferd.tlpsrc b/Master/tlpkg/tlpsrc/zugferd.tlpsrc new file mode 100644 index 00000000000..409a89a35d6 --- /dev/null +++ b/Master/tlpkg/tlpsrc/zugferd.tlpsrc @@ -0,0 +1,7 @@ +# Proudly generated by the Island of TeX's DEPendency Printer https://gitlab.com/islandoftex/texmf/depp +#soft babel# only zugferd-invoice.sty +#soft booktabs# only zugferd-invoice.sty +#soft koma-script# only zugferd-invoice.sty +#soft ragged2e# only zugferd-invoice.sty +depend siunitx +#soft xltabular# only zugferd-invoice.sty diff --git a/Master/tlpkg/tltcl/tltcl.tcl b/Master/tlpkg/tltcl/tltcl.tcl index b43b36e421b..540d69dd4bf 100644 --- a/Master/tlpkg/tltcl/tltcl.tcl +++ b/Master/tlpkg/tltcl/tltcl.tcl @@ -1,6 +1,6 @@ #!/usr/bin/env wish -# Copyright 2018-2020 Siep Kroonenberg +# Copyright 2018-2025 Siep Kroonenberg # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -8,7 +8,8 @@ # common declarations for tlshell.tcl and install-tl-gui.tcl set ::plain_unix 0 -if {$::tcl_platform(platform) eq "unix" && $::tcl_platform(os) ne "Darwin"} { +if {$::tcl_platform(platform) eq "unix" && + [string range $::tcl_version 0 1] eq "8." && $::tcl_platform(os) ne "Darwin"} { set ::plain_unix 1 } @@ -495,11 +496,11 @@ set gry [ttk::style lookup TButton -foreground disabled] # 'default' padding proc ppack {wdg args} { ; # pack command with padding - pack $wdg {*}$args -padx 3pt -pady 3pt + pack $wdg {*}$args -padx 3p -pady 3p } proc pgrid {wdg args} { ; # grid command with padding - grid $wdg {*}$args -padx 3pt -pady 3pt + grid $wdg {*}$args -padx 3p -pady 3p } # unicode symbols as fake checkboxes in ttk::treeview widgets @@ -682,7 +683,7 @@ if {$::tcl_platform(platform) eq "unix"} { wm title .browser [__ "Browse..."] # wallpaper - pack [ttk::frame .browser.bg -padding 3pt] -fill both -expand 1 + pack [ttk::frame .browser.bg -padding 3p] -fill both -expand 1 # ok and cancel buttons pack [ttk::frame .browser.fr1] \ diff --git a/Master/tlpkg/translations/cs.po b/Master/tlpkg/translations/cs.po index dc1a926b60c..8f60a4540fb 100644 --- a/Master/tlpkg/translations/cs.po +++ b/Master/tlpkg/translations/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2022-03-21 13:54+0100\n" "Last-Translator: Petr Sojka <sojka@fi.muni.cz>\n" "Language-Team: Czech <>\n" @@ -112,7 +112,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "OK" @@ -401,7 +401,7 @@ msgstr "Odstranit TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -458,14 +458,14 @@ msgstr "Nainstalováno:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Ano" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Ne" @@ -1072,7 +1072,7 @@ msgstr "Varování. Ne všechny konfigurovatelné adresáře jsou zapisovatelné msgid "Symlinks" msgstr "Symbolické odkazy" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Procházej..." @@ -1255,15 +1255,15 @@ msgstr "%s není lokální nebo vzdálený repozitář" msgid "%s requires an argument" msgstr "%s vyžaduje argument" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Specifické zrcadlo..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Není k dispozici žádný seznam zrcadel" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Vyberte nebo napište" @@ -1957,16 +1957,16 @@ msgstr "Podpůrné programy výhradně pro Windows" msgid "XeTeX and packages" msgstr "XeTeX a balíky" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Vítejte v TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1975,7 +1975,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/da.po b/Master/tlpkg/translations/da.po index 247283cba94..10403870e23 100644 --- a/Master/tlpkg/translations/da.po +++ b/Master/tlpkg/translations/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2021\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2021-05-05 10:13+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -114,7 +114,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ok" @@ -403,7 +403,7 @@ msgstr "Afinstaller TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -460,14 +460,14 @@ msgstr "Installerede:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Ja" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Nej" @@ -1072,7 +1072,7 @@ msgstr "Advarsel. Ikke alle konfigurerede biblioteker er skrivbare!" msgid "Symlinks" msgstr "Symbolske lænker" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Gennemse..." @@ -1255,15 +1255,15 @@ msgstr "%s er ikke et lokalt eller datalager" msgid "%s requires an argument" msgstr "%s kræver et argument" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Specifik afspejling..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Ingen liste af afspejlinger tilængelig" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Vælg eller indtast" @@ -1958,16 +1958,16 @@ msgstr "Programmer, der kun understøttes på Windows" msgid "XeTeX and packages" msgstr "XeTeX med pakker" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Velkommen til TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1976,7 +1976,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/de.po b/Master/tlpkg/translations/de.po index 52fe74a6c6d..efcf049c0be 100644 --- a/Master/tlpkg/translations/de.po +++ b/Master/tlpkg/translations/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2024-03-16 09:53+0100\n" "Last-Translator: Uwe Ziegenhagen <ziegenhagen@gmail.com>\n" "Language-Team: TL German Translation Team <tex-live@tug.org>\n" @@ -107,7 +107,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ok" @@ -396,7 +396,7 @@ msgstr "TeX Live %s entfernen" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -453,14 +453,14 @@ msgstr "Installiert:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Ja" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Nein" @@ -1065,7 +1065,7 @@ msgstr "Warnung: Nicht alle konfigurierten Verzeichnisse sind beschreibbar!" msgid "Symlinks" msgstr "Symbolische Links" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Browse..." @@ -1248,15 +1248,15 @@ msgstr "%s ist kein lokales oder remote Repository" msgid "%s requires an argument" msgstr "%s erfordert ein Argument" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Spezifischer CTAN-Mirror..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Liste der Spiegelserver nicht verfügbar" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Wähle aus oder tippe ein" @@ -1949,16 +1949,16 @@ msgstr "Zusatzprogramme (nur-Windows)" msgid "XeTeX and packages" msgstr "XeTeX und XeTeX-Pakete" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Willkommen bei TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "Siehe %s/index.html für Links zur Dokumentation.\n" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1973,7 +1973,7 @@ msgstr "" "beitreten.\n" "Die Liste der Gruppen finden Sie unter https://tug.org/usergroups.html.\n" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/es.po b/Master/tlpkg/translations/es.po index 34669cf935a..62dbb393109 100644 --- a/Master/tlpkg/translations/es.po +++ b/Master/tlpkg/translations/es.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2019-03-30 17:58-0400\n" "Last-Translator: linguafalsa <linguafalsa@gmail.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" @@ -110,7 +110,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Aceptar" @@ -399,7 +399,7 @@ msgstr "Remover Tex Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -456,14 +456,14 @@ msgstr "Instalado:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Sí" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "No" @@ -1078,7 +1078,7 @@ msgstr "" msgid "Symlinks" msgstr "Enlaces simbólicos" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Ojear..." @@ -1264,15 +1264,15 @@ msgstr "%s no es un repositorio remoto o local" msgid "%s requires an argument" msgstr "%s requiere un argumento" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Espejo específico..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "No list de espejos disponibles" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Seleccionar o ingresar" @@ -1960,16 +1960,16 @@ msgstr "Programas de respaldo solamente para Windows" msgid "XeTeX and packages" msgstr "XeTeX y paquetes" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "¡Bienvenido a Tex Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1978,7 +1978,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/fr.po b/Master/tlpkg/translations/fr.po index 764d21fd6a4..9100d87953a 100644 --- a/Master/tlpkg/translations/fr.po +++ b/Master/tlpkg/translations/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2024-02-22 22:35+0100\n" "Last-Translator: Denis Bitouzé <denis.bitouze@univ-littoral.fr>\n" "Language-Team: French <kde-i18n-doc@kde.org>\n" @@ -113,7 +113,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ok" @@ -402,7 +402,7 @@ msgstr "Désinstaller TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -459,14 +459,14 @@ msgstr "Installé :" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Oui" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Non" @@ -1078,7 +1078,7 @@ msgstr "" msgid "Symlinks" msgstr "Liens symboliques" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Parcourir..." @@ -1262,15 +1262,15 @@ msgstr "%s n'est pas un dépôt local ou distant" msgid "%s requires an argument" msgstr "%s requiert un argument" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Miroir spécifique..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Aucune liste de miroirs disponible" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Sélectionner ou saisir" @@ -1966,16 +1966,16 @@ msgstr "Programmes pour le support de Windows seulement" msgid "XeTeX and packages" msgstr "XeTeX et packages associés" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Bienvenue sous TeX Live !" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "Voir %s/index.html pour les liens vers la documentation.\n" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1992,7 +1992,7 @@ msgstr "" ".La liste des groupes est disponible sur le Web à l'adresse https://tug.org/" "usergroups.html.\n" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/it.po b/Master/tlpkg/translations/it.po index 9974a593c64..8c43e4dcb3c 100644 --- a/Master/tlpkg/translations/it.po +++ b/Master/tlpkg/translations/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Tex Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2021-03-22 06:20+0100\n" "Last-Translator: Marco Pallante\n" "Language-Team: <>\n" @@ -107,7 +107,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ok" @@ -396,7 +396,7 @@ msgstr "Rimozione di TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -453,14 +453,14 @@ msgstr "Installato:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Sì" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "No" @@ -1067,7 +1067,7 @@ msgstr "Attenzione. Non è possibile scrivere in tutte le cartelle configurate!" msgid "Symlinks" msgstr "Collegamenti simbolici" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Sfoglia…" @@ -1253,15 +1253,15 @@ msgstr "%s non è un archivio locale o remoto" msgid "%s requires an argument" msgstr "%s richiede un argomento" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Mirror specifico..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Nessuna lista di mirror disponibile" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Seleziona o digita" @@ -1956,16 +1956,16 @@ msgstr "Programmi di supporto solo per Windows" msgid "XeTeX and packages" msgstr "XeTeX e pacchetti" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Benvenuto in TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1974,7 +1974,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/ja.po b/Master/tlpkg/translations/ja.po index 46968c69275..a44e31e706c 100644 --- a/Master/tlpkg/translations/ja.po +++ b/Master/tlpkg/translations/ja.po @@ -1,13 +1,13 @@ -# Copyright 2010-2024 TeX Live Team +# Copyright 2010-2025 TeX Live Team # This file is distributed under the same license as the TeX Live package. # Koji Yokota <yokota33@gmail.com>, 2010, 2011, 2012, 2014, 2015. -# Takuto Asakura <tkt.asakura@gmail.com>, 2019-2024. +# Takuto Asakura <tkt.asakura@gmail.com>, 2019-2025. msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" -"PO-Revision-Date: 2024-02-04 15:32+0900\n" +"POT-Creation-Date: 2025-02-08 19:09+0100\n" +"PO-Revision-Date: 2025-02-11 16:28+0900\n" "Last-Translator: Takuto Asakura <tkt.asakura@gmail.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" "Language: ja\n" @@ -112,7 +112,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "OK" @@ -401,7 +401,7 @@ msgstr "TeX Live %sをアンインストール" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -458,14 +458,14 @@ msgstr "インストール済み:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "はい" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "いいえ" @@ -1069,7 +1069,7 @@ msgstr "警告。指定したディレクトリの一部が書き込み不能で msgid "Symlinks" msgstr "シンボリックリンク" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "開く…" @@ -1252,15 +1252,15 @@ msgstr "%sはローカルリポジトリでもリモートリポジトリでも msgid "%s requires an argument" msgstr "%sには引数が必要です" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "特定のミラーを選択…" -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "利用可能なミラーリストがありません" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "選択または入力" @@ -1527,7 +1527,7 @@ msgstr "情報" #: texmf-dist/scripts/tlshell/tlshell.tcl:2218 msgid "Reporting bugs" -msgstr "" +msgstr "バグを報告する" #: texmf-dist/scripts/tlshell/tlshell.tcl:2290 msgid "" @@ -1955,16 +1955,16 @@ msgstr "Windows専用プログラム" msgid "XeTeX and packages" msgstr "XeTeXとパッケージ" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "TeX Liveへようこそ!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "ドキュメントの一覧は%s/index.htmlをご覧ください。\n" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1975,10 +1975,10 @@ msgstr "" "TeX Liveのウェブサイト(https://tug.org/texlive/)にはすべてのアップデートと" "コレクションの情報が掲載されています。TeX Liveは全世界のTeXユーザ会有志による" "合同プロジェクトです。TeX Liveプロジェクトをサポートしていただける場合お好き" -"なTeXユーザ会に入会することをご検討ください。TeXユーザ会の一覧はhttps://tug." -"org/usergroups.htmlでご確認いただけます。\n" +"なTeXユーザ会に入会することをご検討ください。TeXユーザ会の一覧はhttps://" +"tug.org/usergroups.htmlでご確認いただけます。\n" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/messages.pot b/Master/tlpkg/translations/messages.pot index c5394c16fee..621c5bb6779 100644 --- a/Master/tlpkg/translations/messages.pot +++ b/Master/tlpkg/translations/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: TeX Live 2024\n" +"Project-Id-Version: TeX Live 2025\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-02-08 19:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -106,7 +106,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "" @@ -395,7 +395,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -450,14 +450,14 @@ msgstr "" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "" @@ -1035,7 +1035,7 @@ msgstr "" msgid "Symlinks" msgstr "" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "" @@ -1215,15 +1215,15 @@ msgstr "" msgid "%s requires an argument" msgstr "" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "" -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "" @@ -1895,16 +1895,16 @@ msgstr "" msgid "XeTeX and packages" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1913,7 +1913,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/nl.po b/Master/tlpkg/translations/nl.po index a45bc061e29..df9b84fd3a1 100644 --- a/Master/tlpkg/translations/nl.po +++ b/Master/tlpkg/translations/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2023-03-10 09:39+0100\n" "Last-Translator: Siep Kroonenberg <siepo@bitmuis.nl>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" @@ -108,7 +108,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ok" @@ -399,7 +399,7 @@ msgstr "Verwijder TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -456,14 +456,14 @@ msgstr "Geïnstalleerd:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Ja" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Nee" @@ -1067,7 +1067,7 @@ msgstr "Waarschuwing. Niet alle geconfigureerde folders zijn schrijfbaar!" msgid "Symlinks" msgstr "Symlinks" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Bladeren..." @@ -1250,15 +1250,15 @@ msgstr "%s is niet een lokale of online installatie-bron" msgid "%s requires an argument" msgstr "%s vereist een argument" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Specifieke CTAN mirror..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Geen lijst van mirrors beschikbaar" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Kies of type" @@ -1954,16 +1954,16 @@ msgstr "Ondersteunende programma's specifiek voor Windows" msgid "XeTeX and packages" msgstr "XeTeX en bijbehorende pakketten" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Welkom bij TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1972,7 +1972,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/pl.po b/Master/tlpkg/translations/pl.po index 01462772c62..1ed9a5c5951 100644 --- a/Master/tlpkg/translations/pl.po +++ b/Master/tlpkg/translations/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2023\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2023-03-18 16:47+0100\n" "Last-Translator: Zofia Walczak <zofia.walczak@wmii.uni.lodz.pl>\n" "Language-Team: \n" @@ -113,7 +113,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ok" @@ -403,7 +403,7 @@ msgstr "Usuń TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -460,14 +460,14 @@ msgstr "Zainstalowane:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Tak" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Nie" @@ -1075,7 +1075,7 @@ msgstr "Uwaga. Nie wszystkie skonfigurowane katalogi są zapisywalne!" msgid "Symlinks" msgstr "Dowiązania symboliczne" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Przeglądaj ..." @@ -1258,15 +1258,15 @@ msgstr "%s nie lokalne lub zdalne repozytorium" msgid "%s requires an argument" msgstr "%s wymaga podania argumentu" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Konkretna kopia zasobów (mirror) ..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Żadna kopia zasobów (mirror) nie jest dostępna" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Wybierz lub wpisz" @@ -1960,16 +1960,16 @@ msgstr "Dodatkowe programy tylko dla Windows" msgid "XeTeX and packages" msgstr "XeTeX i pakiety" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Witamy w TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1978,7 +1978,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/pt_BR.po b/Master/tlpkg/translations/pt_BR.po index 434b59b0614..2cc0eeb0aec 100644 --- a/Master/tlpkg/translations/pt_BR.po +++ b/Master/tlpkg/translations/pt_BR.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2022-02-21 07:43-0300\n" "Last-Translator: Paulo Roberto Massa Cereda <cereda.paulo@gmail.com>\n" "Language-Team: Paulo Roberto Massa Cereda <cereda.paulo@gmail.com>\n" @@ -109,7 +109,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ok" @@ -398,7 +398,7 @@ msgstr "Remover o TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -456,14 +456,14 @@ msgstr "Instalado:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Sim" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Não" @@ -1073,7 +1073,7 @@ msgstr "Aviso. Nem todos os diretórios configurados têm permissão de escrita! msgid "Symlinks" msgstr "Ligações simbólicas" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Procurar..." @@ -1256,15 +1256,15 @@ msgstr "%s não é um repositório local ou remoto" msgid "%s requires an argument" msgstr "%s requer um argumento" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Especificar espelho..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "A lista de espelhos não está disponível" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Selecione ou digite" @@ -1960,16 +1960,16 @@ msgstr "Programas de suporte exclusivos para Windows" msgid "XeTeX and packages" msgstr "XeTeX e pacotes" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Bem-vindo ao TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1978,7 +1978,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/ru.po b/Master/tlpkg/translations/ru.po index b14aa6b9cf8..a9a276a705e 100644 --- a/Master/tlpkg/translations/ru.po +++ b/Master/tlpkg/translations/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2022-03-23 09:50+0800\n" "Last-Translator: Vladimir Lomov <irk.translator@yandex.ru>\n" "Language-Team: Russian <tldoc@tug.org>\n" @@ -114,7 +114,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Ок" @@ -404,7 +404,7 @@ msgstr "Удалить TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -461,14 +461,14 @@ msgstr "Установлен:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Да" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Нет" @@ -1074,7 +1074,7 @@ msgstr "Предупреждение. Не все каталоги доступ msgid "Symlinks" msgstr "Символьные ссылки" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Обзор..." @@ -1257,15 +1257,15 @@ msgstr "%s не является ни локальным, ни удалённы msgid "%s requires an argument" msgstr "для %s требуется аргумент" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Определённое зеркало..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Нет списка зеркал" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Выберите или введите" @@ -1959,16 +1959,16 @@ msgstr "Вспомогательные программы, только для W msgid "XeTeX and packages" msgstr "XeTeX и пакеты" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Вас приветствует TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1977,7 +1977,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/sk.po b/Master/tlpkg/translations/sk.po index b85f99f369a..4d885f8f4ed 100644 --- a/Master/tlpkg/translations/sk.po +++ b/Master/tlpkg/translations/sk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2022-03-21 13:59+0100\n" "Last-Translator: Ján Buša <jan.busa@tuke.sk>\n" "Language-Team: tex-live@tug.org\n" @@ -108,7 +108,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "OK" @@ -397,7 +397,7 @@ msgstr "Odstrániť TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -454,14 +454,14 @@ msgstr "Nainštalované:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Áno" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Nie" @@ -1069,7 +1069,7 @@ msgstr "Varovanie. Nie všetky nakonfigurované adresáre sú zapisovateľné!" msgid "Symlinks" msgstr "Symbolické odkazy" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Prezerať ..." @@ -1255,15 +1255,15 @@ msgstr "%s nie je lokálne alebo vzdialené úložisko" msgid "%s requires an argument" msgstr "%s požaduje argument" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Konkrétne zrkadlo..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Žiadne zrkadlo nie je dostupné" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Zvoliť alebo napísať" @@ -1958,16 +1958,16 @@ msgstr "Podporné programy len pre Windows" msgid "XeTeX and packages" msgstr "XeTeX a balíky" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Vitajte vo svete TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1976,7 +1976,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/sl.po b/Master/tlpkg/translations/sl.po index 97388b95001..d48612ecd64 100644 --- a/Master/tlpkg/translations/sl.po +++ b/Master/tlpkg/translations/sl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2022-03-21 13:45+0100\n" "Last-Translator: Mojca Miklavec <mojca.miklavec.lists@gmail.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" @@ -110,7 +110,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "V redu" @@ -425,7 +425,7 @@ msgstr "Odstrani TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -484,14 +484,14 @@ msgstr "Nameščen:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Da" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Ne" @@ -1127,7 +1127,7 @@ msgstr "Opozorilo: V nekatere od map ni moč pisati!" msgid "Symlinks" msgstr "Simbolne povezave" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 #, fuzzy msgid "Browse..." msgstr "Brskaj …" @@ -1318,16 +1318,16 @@ msgstr "%s ni lokalni ali oddaljeni repozitorij" msgid "%s requires an argument" msgstr "%s potrebuje parameter" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 #, fuzzy msgid "Specific mirror..." msgstr "Izberi zrcalni strežnik …" -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Seznam zrcalnih strežnikov ni na voljo" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 #, fuzzy msgid "Select or type" msgstr "Izberi ali napiši" @@ -2044,16 +2044,16 @@ msgstr "Programi za MS Windows" msgid "XeTeX and packages" msgstr "XeTeX s paketi" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Dobrodošli v TeX Live-u!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -2062,7 +2062,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/sr.po b/Master/tlpkg/translations/sr.po index 0d380ee72f1..9a27e3bf86b 100644 --- a/Master/tlpkg/translations/sr.po +++ b/Master/tlpkg/translations/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2019-10-23 02:13+0300\n" "Last-Translator: Nikola Lečić <nikola.lecic@anthesphoria.net>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" @@ -113,7 +113,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "У реду" @@ -402,7 +402,7 @@ msgstr "TeX Live %s: уклањање" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -460,14 +460,14 @@ msgstr "Инсталиран:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "да" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "не" @@ -1075,7 +1075,7 @@ msgstr "Упозорење: у неке од изабраних директор msgid "Symlinks" msgstr "Симболички линкови" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Изабрати директоријум..." @@ -1258,15 +1258,15 @@ msgstr "%s није ни локални и удаљени репозиториј msgid "%s requires an argument" msgstr "Уз %s је потребан аргумент" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Специјални сајт-огледало (mirror)" -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Недоступан списак сајтова-огледала (mirror)" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Изаберите или откуцајте" @@ -1955,16 +1955,16 @@ msgstr "Помоћни програми за Windows" msgid "XeTeX and packages" msgstr "XeTeX и повезани пакети" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Добродошли у TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1973,7 +1973,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/uk.po b/Master/tlpkg/translations/uk.po index e63a6074302..f6aba6abaab 100644 --- a/Master/tlpkg/translations/uk.po +++ b/Master/tlpkg/translations/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live 2010\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2019-03-23 09:02+0200\n" "Last-Translator: Andriy Bandura <andriykopanytsia@gmail.com>\n" "Language-Team: Ukrainian <andriykopanytsia@gmail.com>\n" @@ -113,7 +113,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Гаразд" @@ -402,7 +402,7 @@ msgstr "Вилучення TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -459,14 +459,14 @@ msgstr "Встановлено:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Так" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Ні" @@ -1065,7 +1065,7 @@ msgstr "Попередження. Не всі налаштовані катал msgid "Symlinks" msgstr "Символьні посилання" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Огляд..." @@ -1248,15 +1248,15 @@ msgstr "" msgid "%s requires an argument" msgstr "" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Особливе дзеркало" -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Виберіть або введіть" @@ -1939,16 +1939,16 @@ msgstr "Додаткові програми лише під Windows" msgid "XeTeX and packages" msgstr "XeTeX та пакунки" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Ласкаво просимо до TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1957,7 +1957,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/vi.po b/Master/tlpkg/translations/vi.po index c51046abb2f..1efefdaf1f2 100644 --- a/Master/tlpkg/translations/vi.po +++ b/Master/tlpkg/translations/vi.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2021-03-13 11:02+0100\n" "Last-Translator: Anh K. Huỳnh <kyanh@viettug.org>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" @@ -111,7 +111,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "Đồng ý" @@ -400,7 +400,7 @@ msgstr "Gỡ bỏ TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -457,14 +457,14 @@ msgstr "Đã cài đặt:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "Đồng ý" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "Không" @@ -1070,7 +1070,7 @@ msgstr "Cảnh báo: Không thể ghi vào một số thư mục!" msgid "Symlinks" msgstr "Liên kết mềm" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "Duyệt tìm..." @@ -1253,15 +1253,15 @@ msgstr "%s không phải kho ở dưới máy hay trên mạng" msgid "%s requires an argument" msgstr "%s thiếu một tham số" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "Chọn kho đệm..." -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "Không thấy danh sách mirror nào" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "Chọn hoặc nhập vào" @@ -1950,16 +1950,16 @@ msgstr "Các chương trình chỉ cho Windows" msgid "XeTeX and packages" msgstr "XeTeX và các gói của nó" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "Chào mừng đến với TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1968,7 +1968,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/zh_CN.po b/Master/tlpkg/translations/zh_CN.po index 982e3acf505..cdfbffe44c1 100644 --- a/Master/tlpkg/translations/zh_CN.po +++ b/Master/tlpkg/translations/zh_CN.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2009-09-22 12:54+0800\n" "Last-Translator: Jiang Jiang <gzjjgod@gmail.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" @@ -101,7 +101,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "确定" @@ -392,7 +392,7 @@ msgstr "删除 TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -449,14 +449,14 @@ msgstr "已安装的:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "是" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "否" @@ -1038,7 +1038,7 @@ msgstr "" msgid "Symlinks" msgstr "" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "" @@ -1219,15 +1219,15 @@ msgstr "" msgid "%s requires an argument" msgstr "" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "" -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "" @@ -1899,16 +1899,16 @@ msgstr "" msgid "XeTeX and packages" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "欢迎进入 TeX Live 的世界!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1917,7 +1917,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" diff --git a/Master/tlpkg/translations/zh_TW.po b/Master/tlpkg/translations/zh_TW.po index 39c679a4b07..3823a446980 100644 --- a/Master/tlpkg/translations/zh_TW.po +++ b/Master/tlpkg/translations/zh_TW.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: TeX Live translation\n" "Report-Msgid-Bugs-To: tex-live@tug.org\n" -"POT-Creation-Date: 2024-05-03 01:40+0200\n" +"POT-Creation-Date: 2025-01-05 01:40+0100\n" "PO-Revision-Date: 2023-03-02 16:26+0800\n" "Last-Translator: Kung-chih Jen <kaitul@outlook.com>\n" "Language-Team: TL Translation Team <tex-live@tug.org>\n" @@ -107,7 +107,7 @@ msgstr "" #: tlpkg/installer/install-tl-gui.tcl:896 #: tlpkg/installer/install-tl-gui.tcl:946 #: tlpkg/installer/install-tl-gui.tcl:1034 -#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:690 +#: tlpkg/installer/install-tl-gui.tcl:1257 tlpkg/tltcl/tltcl.tcl:691 #: texmf-dist/scripts/tlshell/tlshell.tcl:223 msgid "Ok" msgstr "確定" @@ -396,7 +396,7 @@ msgstr "移除 TeX Live %s" #: tlpkg/installer/install-tl-gui.tcl:899 #: tlpkg/installer/install-tl-gui.tcl:963 #: tlpkg/installer/install-tl-gui.tcl:1037 -#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:692 +#: tlpkg/installer/install-tl-gui.tcl:1259 tlpkg/tltcl/tltcl.tcl:693 #: texmf-dist/scripts/tlshell/tlshell.tcl:233 #: texmf-dist/scripts/tlshell/tlshell.tcl:1386 msgid "Cancel" @@ -453,14 +453,14 @@ msgstr "已安裝:" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:372 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:373 #: texmf-dist/scripts/tlshell/tlshell.tcl:227 msgid "Yes" msgstr "是" #: texmf-dist/scripts/texlive/tlmgrgui.pl:694 #: texmf-dist/scripts/texlive/tlmgrgui.pl:1103 -#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:374 +#: texmf-dist/scripts/texlive/tlmgrgui.pl:1724 tlpkg/tltcl/tltcl.tcl:375 #: texmf-dist/scripts/tlshell/tlshell.tcl:229 msgid "No" msgstr "否" @@ -1060,7 +1060,7 @@ msgstr "警告。不是所有的已設定的目錄皆可寫入!" msgid "Symlinks" msgstr "符號連結" -#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:682 +#: tlpkg/installer/install-tl-gui.tcl:1237 tlpkg/tltcl/tltcl.tcl:683 msgid "Browse..." msgstr "瀏覽…" @@ -1243,15 +1243,15 @@ msgstr "%s 不是本機或遠端存放庫" msgid "%s requires an argument" msgstr "%s 需要引數" -#: tlpkg/tltcl/tltcl.tcl:135 +#: tlpkg/tltcl/tltcl.tcl:136 msgid "Specific mirror..." msgstr "指定鏡像…" -#: tlpkg/tltcl/tltcl.tcl:152 +#: tlpkg/tltcl/tltcl.tcl:153 msgid "No mirror list available" msgstr "沒有可用的鏡像清單" -#: tlpkg/tltcl/tltcl.tcl:765 +#: tlpkg/tltcl/tltcl.tcl:766 msgid "Select or type" msgstr "選取或類型" @@ -1942,16 +1942,16 @@ msgstr "僅 Windows 支援程式" msgid "XeTeX and packages" msgstr "XeTeX 和套件" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 msgid "Welcome to TeX Live!" msgstr "歡迎使用 TeX Live!" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2884 #, perl-format msgid "See %s/index.html for links to documentation.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2886 msgid "" "The TeX Live web site (https://tug.org/texlive/) provides all updates\n" "and corrections. TeX Live is a joint project of the TeX user groups\n" @@ -1960,7 +1960,7 @@ msgid "" "at https://tug.org/usergroups.html.\n" msgstr "" -#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893 +#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2894 #, perl-format msgid "" "Add %s/texmf-dist/doc/man to MANPATH.\n" |