diff options
Diffstat (limited to 'Master/tlpkg')
91 files changed, 6932 insertions, 4075 deletions
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/bin/c2lx b/Master/tlpkg/bin/c2lx index 7554b43107d..d72c2915396 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,29 @@ 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" +# 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/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-update-auto b/Master/tlpkg/bin/tl-update-auto index 182a98e7cb2..d847abfdbec 100755 --- a/Master/tlpkg/bin/tl-update-auto +++ b/Master/tlpkg/bin/tl-update-auto @@ -264,8 +264,9 @@ 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 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/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index 7e9d81b0815..5e79581fe04 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -31,7 +31,7 @@ my @TLP_working = qw( adjmulticol adfsymbols adjustbox adobemapping adrconv adtrees advdate advice ae aeguill aesupp affilauthor afparticle afthesis - aguplus aiaa aichej ajl akktex akletter akshar + aguplus aiaa aichej aiplans ajl akktex akletter akshar albatross alchemist alegreya alertmessage alfaslabone alg algobox algolrevived algorithm2e algorithmicx algorithms algpseudocodex algxpar @@ -90,15 +90,16 @@ 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 @@ -157,17 +158,17 @@ 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 + caladea calcage calcfrac calctab calculation calculator calculatoritems calligra calligra-type1 callouts calrsfs cals calxxxx-yyyy 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 @@ -207,7 +208,8 @@ 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 concepts concmath concmath-fonts concmath-otf concprog concrete @@ -226,7 +228,8 @@ my @TLP_working = qw( 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 +240,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 +277,7 @@ my @TLP_working = qw( dk-bib dlfltxb dnaseq dnp doc-pictex docbytex doclicense docmfp docmute docshots docsurvey doctools documentation docutils - doi doibanner doipubmed domitian + doi doibanner doipubmed domaincoloring domitian dosepsbin dotlessi dot2texi dotarrow dotseqn dottex doublestroke doulossil dowith download dox dozenal dpcircling dpfloat dprogress @@ -290,11 +293,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 +306,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 @@ -315,7 +318,8 @@ my @TLP_working = qw( 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 + 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 @@ -324,12 +328,12 @@ my @TLP_working = qw( expdlist expex expex-acro expex-glossonly expkv-bundle export expose-expl3-dunkerque-2019 expressg exsheets exsol extarrows exteps - extpfeil extract extsizes + extpfeil extract 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 @@ -337,7 +341,7 @@ my @TLP_working = qw( ffcode ffslides fge fgruler fifinddo-info fifo-stack fig4latex figbas figbib figchild figflow figput figsize - filecontents filecontentsdef filedate filehook fileinfo filemod + filecontents filecontentsdef filedate filehook fileinfo filemod fillwith findhyph fink finstrut fira firamath firamath-otf first-latex-doc firstaid fistrum fitbox fitch fithesis fix2col fixcmex fixdif fixfoot fixjfm fixlatvian @@ -351,16 +355,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,7 +374,7 @@ 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 geradwp german germbib germkorr geschichtsfrkl @@ -407,7 +412,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 @@ -437,11 +443,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 @@ -460,7 +467,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 @@ -535,13 +542,13 @@ 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 luatodonotes luatruthtable luavlna luaxml lutabulartools luwiantype lwarp lxfonts ly1 lyluatex - macrolist macros2e macroswap mafr magaz magicnum magra + macrolist macros2e macroswap mafr magaz magicnum magicwatermark magra mahjong mailing mailmerge make4ht makebarcode makebase makebox makecell makecirc makecmds makecookbook @@ -566,7 +573,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 @@ -583,7 +590,7 @@ my @TLP_working = qw( moloch mongolian-babel montserrat monofill montex moodle moreenum morefloats morehype moremath moresize - moreverb morewrites morisawa movement-arrows movie15 mp3d + moreverb morewrites morisawa movement-arrows movie15 mp-geom2d mp3d mparhack mparrows mpattern mpchess mpcolornames mpfonts mpgraphics mpkiviat mpman-ru mpostinl mptopdf mptrees msc msg mslapa msu-thesis mtgreek @@ -612,14 +619,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 @@ -726,11 +734,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 +750,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 +761,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 +800,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 @@ -821,7 +831,7 @@ my @TLP_working = qw( tamethebeast tango tangocolors tangramtikz tap tapir tasks tblr-extras tcldoc tcolorbox tdclock tds tdsfrmath technics technion-thesis-template ted telprint - templates-fenn templates-sommer templatetools tempora + templates-fenn templates-sommer templatetools tempora temporal-logic tengwarscript tensind tensor termcal termcal-de termes-otf termlist termmenu termsim testhyphens testidx @@ -847,7 +857,7 @@ my @TLP_working = qw( 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-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 @@ -889,7 +899,7 @@ my @TLP_working = qw( uaclasses uafthesis 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 @@ -923,7 +933,7 @@ 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 @@ -942,7 +952,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 @@ -951,7 +961,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/installer/ctan-mirrors.pl b/Master/tlpkg/installer/ctan-mirrors.pl index 3ac53780cb4..ea8d1f3f9c7 100644 --- a/Master/tlpkg/installer/ctan-mirrors.pl +++ b/Master/tlpkg/installer/ctan-mirrors.pl @@ -16,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, @@ -46,7 +47,6 @@ $mirrors = { 'https://jp.mirrors.cicku.me/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, @@ -61,7 +61,6 @@ $mirrors = { }, 'Taiwan' => { 'https://ctan.mirror.twds.com.tw/tex-archive/' => 1, - 'https://ctan.simanglam.com/' => 1, 'https://tw.mirrors.cicku.me/ctan/' => 1, }, 'Thailand' => { @@ -81,7 +80,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' => { @@ -93,7 +91,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, @@ -104,7 +101,6 @@ $mirrors = { 'Germany' => { 'http://sendinnsky.selfhost.co/tex-archive/' => 1, 'http://vesta.informatik.rwth-aachen.de/ftp/pub/mirror/ctan/' => 1, - 'https://ctan.ebinger.cc/tex-archive/' => 1, 'https://ctan.joethei.xyz/' => 1, 'https://ctan.mc1.root.project-creative.net/' => 1, 'https://ctan.mirror.norbert-ruehl.de/' => 1, @@ -116,6 +112,7 @@ $mirrors = { 'https://ftp.rrze.uni-erlangen.de/ctan/' => 1, 'https://ftp.rrzn.uni-hannover.de/pub/mirror/tex-archive/' => 1, 'https://ftp.tu-chemnitz.de/pub/tex/' => 1, + 'https://markov.htwsaar.de/tex-archive/' => 1, 'https://mirror.clientvps.com/CTAN/' => 1, 'https://mirror.dogado.de/tex-archive/' => 1, 'https://mirror.funkfreundelandshut.de/latex/' => 1, @@ -129,9 +126,6 @@ $mirrors = { 'Hungary' => { 'https://mirror.szerverem.hu/ctan/' => 1, }, - 'Italy' => { - 'https://ctan.mirror.garr.it/mirrors/ctan/' => 1, - }, 'Netherlands' => { 'https://ftp.snt.utwente.nl/pub/software/tex/' => 1, 'https://mirror.koddos.net/CTAN/' => 1, @@ -162,7 +156,6 @@ $mirrors = { '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, @@ -209,7 +202,6 @@ $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' => { diff --git a/Master/tlpkg/installer/curl/curl-ca-bundle.crt b/Master/tlpkg/installer/curl/curl-ca-bundle.crt index 86d6cd80cc0..f2c24a589d9 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 Sep 24 03:12:04 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: 36105b01631f9fc03b1eca779b44a30a1a5890b9bf8dc07ccb001a07301e01cf ## @@ -3566,3 +3568,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/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 0b599b839c0..25ce9d234ca 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'", @@ -185,6 +187,7 @@ 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", @@ -195,6 +198,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 +248,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 +288,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'", @@ -462,6 +469,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", @@ -502,7 +510,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'", @@ -588,6 +597,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", @@ -832,7 +842,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'", @@ -951,6 +961,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", @@ -1285,7 +1297,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'", @@ -1347,7 +1360,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'", @@ -1521,7 +1533,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", @@ -1702,6 +1714,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'autosp' => '&POSTautosp', 'barracuda' => '&POSTbarracuda', 'beautybook' => '&POSTbeautybook', + 'bhcexam' => '&POST_rmsymlink', 'bib2gls' => '&POSTbib2gls', 'biber' => '&POSTbiber', 'biber-ms' => '&POSTbiber', @@ -1713,13 +1726,15 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'bibtexperllibs' => '&POSTbibtexperllibs', 'blopentype' => '&POST_onelevel', 'bonum-otf' => '&POST_onelevel', - 'cfr-lm' => '&POSTcfr_lm', + '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', @@ -1747,6 +1762,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', @@ -1758,6 +1774,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'frenchle' => '&POST_rmsymlink', 'genealogy-profiles' => '&POST_onelevel', 'gentium-tug' => '&POSTgentium_tug', + 'mp-geom2d' => '&POST_onelevel', 'ghsystem' => '&POSTghsystem', 'gitinfo-lua' => '&POST_onelevel', 'glossaries' => '&POST_do_man', @@ -1766,6 +1783,8 @@ 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', @@ -1774,9 +1793,12 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); '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', @@ -1817,6 +1839,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'musixtex' => '&POSTmusixtex', 'musixtnt' => '&POSTmusixtnt', 'niceframe' => '&POST_rmsymlink', + 'nodepthtext' => '&POST_onelevel', 'non-decimal-units' => '&POST_onelevel', 'notebeamer' => '&POST_onelevel', 'novel' => '&POST_onelevel', @@ -1860,7 +1883,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', @@ -1874,6 +1899,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', @@ -1890,6 +1916,7 @@ 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', 'tikz2d-fr' => '&POST_onelevel', 'tikz3d-fr' => '&POST_onelevel', @@ -1913,8 +1940,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', @@ -2109,6 +2138,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, @@ -2217,6 +2247,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, @@ -2265,7 +2296,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 @@ -2497,7 +2527,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, @@ -2587,6 +2619,7 @@ $standardtex '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 @@ -3050,6 +3083,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', @@ -3078,6 +3112,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)$|' . $standardsource, # pdf/README in doc 'fpl', 'Add|\.p[es]|' . $standardsource, 'fullblck', '\.asc|' . $standardsource, 'grverb', '\.vpl|' . $standardsource, @@ -3127,6 +3162,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', @@ -3237,6 +3273,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', @@ -3286,6 +3323,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', @@ -3314,6 +3352,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', @@ -3356,6 +3395,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', @@ -3404,6 +3444,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', @@ -3735,6 +3776,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$', @@ -3766,6 +3808,7 @@ $standardttf = '\.ttf|\.TTC'; 'bibcop' => '\.pl$', 'bibexport' => 'bibexport\.sh$', 'bibtexperllibs' => 'ltx2unitxt', + 'bookshelf' => 'bookshelf-(listallfonts|mkfontsel)$', 'bundledoc' => '(arlatex|bundledoc)$', 'checkcites' => '\.lua$', 'checklistings' => '\.sh$', @@ -3831,6 +3874,7 @@ $standardttf = '\.ttf|\.TTC'; 'match_parens' => '^match_parens$', 'mathspic' => '^mathspic\.pl$', 'memoize' => '\.p[ly]$', + 'minted' => 'latexminted.py$', 'multibibliography' => '\.pl$', 'mf2pt1' => '\.pl$', 'mkgrkindex' => 'mkgrkindex$', @@ -3862,6 +3906,7 @@ $standardttf = '\.ttf|\.TTC'; 'rubik' => '\.pl$', 'runtexshebang' => '\.lua$', 'spix' => '\.py$', + 'sqltex' => 'sqltex$', 'srcredact' => '\.pl$', 'splitindex' => 'splitindex\.pl$', 'sty2dtx' => '\.pl$', @@ -3924,6 +3969,7 @@ $standardttf = '\.ttf|\.TTC'; 'bib2gls' => '\.1$', 'bibtexperllibs' => '\.1$', 'bibcop' => '\.1$', + 'bookshelf' => '\.1$', 'bundledoc' => '\.1$', 'chklref' => '\.1$', 'citation-style-language' => '\.1$', @@ -4050,6 +4096,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 @@ -4553,10 +4600,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. @@ -6779,7 +6826,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/"); # @@ -7811,6 +7858,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"; diff --git a/Master/tlpkg/texlive.tlpdb b/Master/tlpkg/texlive.tlpdb index 743437499a6..f3eb75f2c3e 100644 --- a/Master/tlpkg/texlive.tlpdb +++ b/Master/tlpkg/texlive.tlpdb @@ -26,11 +26,11 @@ depend container_split_src_files/1 depend frozen/0 depend minrelease/2016 depend release/2024 -depend revision/71949 +depend revision/72854 name 00texlive.image category TLCore -revision 71947 +revision 72845 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=14493 +runfiles size=14487 .mkisofsrc autorun.inf texmf-dist/README @@ -432,6 +432,7 @@ runfiles size=14493 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 @@ -675,7 +676,7 @@ runfiles size=14493 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 +710,10 @@ runfiles size=14493 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 @@ -933,6 +936,7 @@ runfiles size=14493 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 @@ -963,6 +967,7 @@ runfiles size=14493 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.tlpsrc @@ -983,6 +988,7 @@ runfiles size=14493 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 @@ -1226,6 +1232,7 @@ runfiles size=14493 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 @@ -1290,6 +1297,7 @@ runfiles size=14493 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 @@ -1335,6 +1343,7 @@ runfiles size=14493 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 @@ -1504,6 +1513,7 @@ runfiles size=14493 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 @@ -1609,6 +1619,7 @@ runfiles size=14493 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 @@ -1625,7 +1636,7 @@ runfiles size=14493 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 @@ -1669,9 +1680,11 @@ runfiles size=14493 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 @@ -1745,6 +1758,7 @@ runfiles size=14493 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 @@ -1788,6 +1802,7 @@ runfiles size=14493 tlpkg/tlpsrc/extpfeil.tlpsrc tlpkg/tlpsrc/extract.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 @@ -1810,6 +1825,7 @@ runfiles size=14493 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 @@ -1853,6 +1869,7 @@ runfiles size=14493 tlpkg/tlpsrc/filehook.tlpsrc tlpkg/tlpsrc/fileinfo.tlpsrc tlpkg/tlpsrc/filemod.tlpsrc + tlpkg/tlpsrc/fillwith.tlpsrc tlpkg/tlpsrc/finbib.tlpsrc tlpkg/tlpsrc/findhyph.tlpsrc tlpkg/tlpsrc/fink.tlpsrc @@ -1925,6 +1942,7 @@ runfiles size=14493 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 @@ -1958,6 +1976,7 @@ runfiles size=14493 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 @@ -1997,6 +2016,7 @@ runfiles size=14493 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 @@ -2175,7 +2195,9 @@ runfiles size=14493 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 @@ -2385,6 +2407,7 @@ runfiles size=14493 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 @@ -2399,6 +2422,7 @@ runfiles size=14493 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 @@ -2498,6 +2522,7 @@ runfiles size=14493 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 @@ -2823,6 +2848,7 @@ runfiles size=14493 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 @@ -2980,6 +3006,7 @@ runfiles size=14493 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 @@ -3065,6 +3092,7 @@ runfiles size=14493 tlpkg/tlpsrc/morisawa.tlpsrc tlpkg/tlpsrc/movement-arrows.tlpsrc tlpkg/tlpsrc/movie15.tlpsrc + tlpkg/tlpsrc/mp-geom2d.tlpsrc tlpkg/tlpsrc/mp3d.tlpsrc tlpkg/tlpsrc/mparhack.tlpsrc tlpkg/tlpsrc/mparrows.tlpsrc @@ -3191,6 +3219,7 @@ runfiles size=14493 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 @@ -3218,6 +3247,7 @@ runfiles size=14493 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 @@ -3226,6 +3256,7 @@ runfiles size=14493 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 @@ -3747,6 +3778,7 @@ runfiles size=14493 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 @@ -3757,6 +3789,7 @@ runfiles size=14493 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 @@ -3773,6 +3806,7 @@ runfiles size=14493 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 @@ -3831,7 +3865,7 @@ runfiles size=14493 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 @@ -3886,6 +3920,7 @@ runfiles size=14493 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 @@ -3919,6 +3954,7 @@ runfiles size=14493 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 @@ -4078,6 +4114,7 @@ runfiles size=14493 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 @@ -4085,6 +4122,7 @@ runfiles size=14493 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 @@ -4115,6 +4153,7 @@ runfiles size=14493 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 @@ -4129,6 +4168,7 @@ runfiles size=14493 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 @@ -4147,6 +4187,7 @@ runfiles size=14493 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 @@ -4228,6 +4269,7 @@ runfiles size=14493 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 @@ -4362,6 +4404,7 @@ runfiles size=14493 tlpkg/tlpsrc/tikz-bayesnet.tlpsrc tlpkg/tlpsrc/tikz-bbox.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 @@ -4561,6 +4604,7 @@ runfiles size=14493 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 @@ -4717,6 +4761,7 @@ runfiles size=14493 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 @@ -4821,6 +4866,7 @@ runfiles size=14493 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 @@ -4878,6 +4924,7 @@ runfiles size=14493 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 @@ -4928,7 +4975,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd name 00texlive.installer category TLCore -revision 71949 +revision 72854 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 @@ -4938,7 +4985,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=803 install-tl release-texlive.txt tlpkg/installer/COPYING.MinGW-runtime.txt @@ -8403,7 +8450,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 @@ -8418,7 +8465,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 @@ -9013,11 +9060,11 @@ catalogue-version 3.13g name acmart category Package -revision 71406 +revision 72113 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=3406 texmf-dist/doc/latex/acmart/README details="Readme" texmf-dist/doc/latex/acmart/acm-jdslogo.png texmf-dist/doc/latex/acmart/acmart.bib @@ -9037,6 +9084,8 @@ 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.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 @@ -9067,8 +9116,9 @@ srcfiles size=75 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 @@ -9081,7 +9131,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.09 name acmconf category Package @@ -9172,14 +9222,14 @@ catalogue-version 3.8 name acronym category Package -revision 54758 +revision 72324 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=79 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" @@ -9193,7 +9243,7 @@ catalogue-also glossaries catalogue-ctan /macros/latex/contrib/acronym catalogue-license lppl1.3 catalogue-topics acronym -catalogue-version 1.47 +catalogue-version 1.49 name acroterm category Package @@ -9400,56 +9450,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 @@ -9458,10 +9515,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 @@ -9652,7 +9710,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, @@ -9704,7 +9762,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 @@ -10689,6 +10747,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 @@ -16116,25 +16202,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 @@ -17988,7 +18075,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 @@ -18055,6 +18142,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 @@ -18504,18 +18592,18 @@ catalogue-version 6.101 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 @@ -20688,7 +20776,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 @@ -21836,21 +21924,21 @@ catalogue-topics font font-sans font-maths name argumentation category Package -revision 71471 +revision 72754 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=143 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.4 name arimo category Package @@ -24174,7 +24262,7 @@ catalogue-version 0.2 name asmeconf category Package -revision 69742 +revision 71956 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, @@ -24192,7 +24280,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=11803 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" @@ -24213,14 +24301,14 @@ 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=34 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.38 name asmejour category Package @@ -24444,7 +24532,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, @@ -24487,7 +24575,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 @@ -24519,7 +24606,7 @@ catalogue-version 0.1c name asymptote category TLCore -revision 71609 +revision 72638 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 @@ -25068,7 +25155,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 2.94 name asymptote-by-example-zh-cn category Package @@ -25831,27 +25918,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 @@ -26927,7 +27010,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, @@ -27200,7 +27283,7 @@ catalogue-version 1.0 name babel category Package -revision 71656 +revision 72799 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 @@ -27213,17 +27296,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=307 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=476 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=1273 texmf-dist/makeindex/babel/bbglo.ist texmf-dist/makeindex/babel/bbind.ist texmf-dist/tex/generic/babel/UKenglish.sty @@ -28195,7 +28278,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 24.13 name babel-albanian category Package @@ -28812,20 +28895,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 @@ -30145,10 +30228,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 @@ -30161,101 +30243,115 @@ 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 @@ -32315,7 +32411,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 @@ -32731,6 +32828,61 @@ catalogue-license gpl3 catalogue-topics presentation catalogue-version 3.4.0 +name beamertheme-gotham +category Package +revision 72808 +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=778 + 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=80 + texmf-dist/source/latex/beamertheme-gotham/gotham.dtx + texmf-dist/source/latex/beamertheme-gotham/gotham.ins +runfiles size=43 + 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-bugs https://gitlab.com/RomainNOEL/beamertheme-gotham/issues/ +catalogue-contact-development https://gitlab.com/RomainNOEL/beamertheme-gotham/ +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.0.a + name beamertheme-light category Package revision 49867 @@ -32786,6 +32938,36 @@ catalogue-license other-free catalogue-topics presentation catalogue-version 1.2 +name beamertheme-mirage +category Package +revision 72656 +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 + name beamertheme-npbt category Package revision 54512 @@ -32992,7 +33174,7 @@ catalogue-version 1.0 name beamertheme-tcolorbox category Package -revision 71124 +revision 72368 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 @@ -33015,7 +33197,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.8 name beamertheme-trigon category Package @@ -33395,13 +33577,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 @@ -33691,28 +33873,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 @@ -33936,6 +34121,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 @@ -33958,11 +34150,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 @@ -34158,7 +34355,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 @@ -34168,7 +34365,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 @@ -34179,7 +34376,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 @@ -34487,20 +34684,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 @@ -34509,18 +34707,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 @@ -34859,7 +35055,7 @@ catalogue-version 2.6 name bibcop category Package -revision 71186 +revision 72840 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 @@ -34870,7 +35066,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" @@ -34888,7 +35084,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.23 name bibcop.aarch64-linux category Package @@ -35661,11 +35857,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 @@ -35675,14 +35871,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 @@ -35696,6 +35897,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 @@ -35704,7 +35908,7 @@ 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-ajc2020unofficial category Package @@ -37099,7 +37303,7 @@ catalogue-version 0.4 name biblatex-ieee category Package -revision 61243 +revision 72841 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 @@ -37109,23 +37313,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.4 name biblatex-ijsra category Package @@ -37890,7 +38095,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 @@ -37905,7 +38110,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 @@ -37917,11 +38122,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 @@ -37956,13 +38161,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 @@ -38029,7 +38235,7 @@ catalogue-version 1.1c name biblatex-publist category Package -revision 71821 +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 @@ -38037,11 +38243,11 @@ 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=35 +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 @@ -38065,7 +38271,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.12 +catalogue-version 2.13 name biblatex-readbbl category Package @@ -39008,7 +39214,7 @@ binfiles arch=x86_64-solaris size=59 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 @@ -39020,7 +39226,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 @@ -39065,6 +39271,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 @@ -39079,7 +39288,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 @@ -39089,10 +39298,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 @@ -40067,12 +40276,12 @@ catalogue-version 0.1 name bithesis category Package -revision 71392 +revision 72491 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 @@ -40093,7 +40302,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.0 name bitpattern category Package @@ -40591,7 +40800,7 @@ catalogue-version 2.0.0 name bmstu-iu8 category Package -revision 61937 +revision 72693 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 @@ -40599,35 +40808,74 @@ 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. -docfiles size=59 +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=60 + 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-repository https://github.com/CatInCosmicSpace/latex-template @@ -40635,7 +40883,7 @@ 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.5 name bnumexpr category Package @@ -40861,7 +41109,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 @@ -41206,10 +41453,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 @@ -41229,6 +41476,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 @@ -41242,7 +41490,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 @@ -41925,28 +42173,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 @@ -43087,6 +43472,43 @@ catalogue-license mit catalogue-topics japanese catalogue-version 0.5 +name bxcoloremoji +category Package +revision 72817 +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.0 + name bxdpx-beamer category Package revision 41813 @@ -43381,7 +43803,7 @@ catalogue-version 0.6 name bxpdfver category Package -revision 71893 +revision 71967 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 @@ -43393,12 +43815,12 @@ docfiles size=6 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.7 +catalogue-version 0.8 name bxtexlogo category Package @@ -44340,6 +44762,27 @@ catalogue-license lppl1.3 catalogue-topics calculation maths catalogue-version 2.1 +name calculatoritems +category Package +revision 72824 +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=60 + texmf-dist/doc/latex/calculatoritems/README.md details="Readme" + texmf-dist/doc/latex/calculatoritems/calculatoritems-doc.pdf + texmf-dist/doc/latex/calculatoritems/calculatoritems-doc.tex +runfiles size=4 + texmf-dist/tex/latex/calculatoritems/calculatoritems.sty +catalogue-contact-bugs https://github.com/cpierquet/calculatoritems/issues +catalogue-contact-home https://github.com/cpierquet/calculatoritems +catalogue-contact-repository https://github.com/cpierquet/calculatoritems +catalogue-ctan /macros/latex/contrib/calculatoritems +catalogue-license lppl1.3c +catalogue-topics graphics teaching maths +catalogue-version 0.1.0 + name calligra category Package revision 15878 @@ -46458,6 +46901,28 @@ 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 72257 +shortdesc Support for the OpenType font CascadiaMono (with CascadiaCode fontspec config files) +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-Light} for +longdesc semilight version. +docfiles size=26 + 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=2 + texmf-dist/tex/fonts/cascadiamono-otf/CascadiaMono-Light.fontspec + texmf-dist/tex/fonts/cascadiamono-otf/CascadiaMono.fontspec +catalogue-contact-repository https://github.com/cpierquet/cascadiamono-otf +catalogue-ctan /fonts/cascadiamono-otf +catalogue-license lppl1.3 +catalogue-topics font-supp font-otf font-mono +catalogue-version 0.1 + name cascadilla category Package revision 25144 @@ -46649,27 +47114,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 @@ -50186,11 +50649,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" @@ -50227,7 +50689,7 @@ catalogue-version 1.01 name cfr-lm category Package -revision 36195 +revision 72484 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 @@ -50251,23 +50713,26 @@ 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=1713 + 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 + texmf-dist/doc/fonts/cfr-lm/cfr-lm-tables.tex 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=72 + 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 @@ -51152,10 +51617,11 @@ 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-license lppl1.3c catalogue-topics font-supp -catalogue-version 1.5 +catalogue-version 1.7 name changebar category Package @@ -51209,7 +51675,7 @@ catalogue-version 1.0 name changelog category Package -revision 65861 +revision 72305 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 @@ -51223,14 +51689,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.5.1 name changepage category Package @@ -52704,12 +53170,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 @@ -52721,11 +53187,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 @@ -52734,7 +53200,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 @@ -52758,7 +53224,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 @@ -55443,7 +55909,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 @@ -55453,7 +55919,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 @@ -55461,7 +55927,7 @@ 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 @@ -55972,7 +56438,7 @@ catalogue-version 10.6 name circuitikz category Package -revision 71455 +revision 71968 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 @@ -55980,7 +56446,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=779 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 @@ -55990,7 +56456,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=3399 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 @@ -56041,7 +56507,7 @@ 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.0 name circularglyphs category Package @@ -56070,7 +56536,7 @@ catalogue-version 0.1.1 name citation-style-language category Package -revision 71944 +revision 72473 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 @@ -56084,9 +56550,9 @@ 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 @@ -56100,7 +56566,7 @@ docfiles size=75 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=4213 +runfiles size=4339 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 @@ -56212,7 +56678,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.6.0 +catalogue-version 0.6.5 name citation-style-language.aarch64-linux category Package @@ -65181,7 +65647,7 @@ depend zootaxa-bst name collection-binextra category Collection -revision 70681 +revision 72338 shortdesc TeX auxiliary programs longdesc Myriad additional TeX-related support programs. Includes longdesc programs and macros for DVI file manipulation, literate @@ -65266,6 +65732,7 @@ depend pythontex depend runtexshebang depend seetexk depend spix +depend sqltex depend srcredact depend sty2dtx depend synctex @@ -65299,7 +65766,7 @@ depend xpdfopen name collection-context category Collection -revision 71879 +revision 72727 shortdesc ConTeXt and packages longdesc Hans Hagen's powerful ConTeXt system, https://pragma-ade.com. longdesc Also includes third-party ConTeXt packages. @@ -65308,6 +65775,7 @@ 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 @@ -65330,7 +65798,7 @@ depend luajittex name collection-fontsextra category Collection -revision 71894 +revision 72727 shortdesc Additional fonts depend aboensis depend academicons @@ -65365,7 +65833,7 @@ depend auncial-new depend aurical depend b1encoding depend barcodes -depend baskervald +depend baskervaldadf depend baskervaldx depend baskervillef depend bbding @@ -65395,6 +65863,7 @@ depend cantarell depend carlito depend carolmin-ps depend cascadia-code +depend cascadiamono-otf depend ccicons depend cfr-initials depend cfr-lm @@ -65422,7 +65891,6 @@ depend comfortaa depend comicneue depend concmath-fonts depend concmath-otf -depend context-companion-fonts depend cookingsymbols depend cooperhewitt depend cormorantgaramond @@ -65461,7 +65929,7 @@ depend eczar depend eiad depend eiad-ltx depend ektype-tanka -depend electrum +depend electrumadf depend elvish depend epigrafica depend epsdice @@ -65488,6 +65956,7 @@ depend fontawesome depend fontawesome5 depend fontmfizz depend fonts-churchslavonic +depend fontscripts depend forum depend fourier depend fouriernc @@ -65577,6 +66046,7 @@ depend mdputu depend mdsymbol depend merriweather depend metsymb +depend mfb-oldstyle depend miama depend mintspirit depend missaali @@ -65633,7 +66103,7 @@ depend raleway depend recycle depend rit-fonts depend roboto -depend romande +depend romandeadf depend rosario depend rsfso depend ruscap @@ -65768,7 +66238,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 @@ -65779,7 +66249,6 @@ depend aleph depend antomega depend collection-basic depend collection-latex -depend edmac depend eplain depend hitex depend jadetex @@ -65861,7 +66330,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. @@ -65877,12 +66346,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 @@ -65963,7 +66435,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 @@ -65989,6 +66461,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 @@ -66268,7 +66741,7 @@ depend turkmen name collection-langfrench category Collection -revision 71182 +revision 72499 shortdesc French longdesc Support for French and Basque. depend aeguill @@ -66291,6 +66764,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 @@ -66433,7 +66907,7 @@ depend verifica name collection-langjapanese category Collection -revision 70738 +revision 72817 shortdesc Japanese longdesc Support for Japanese; additional packages are in longdesc collection-langcjk. @@ -66442,6 +66916,7 @@ depend asternote depend babel-japanese depend bxbase depend bxcjkjatype +depend bxcoloremoji depend bxghost depend bxjaholiday depend bxjalipsum @@ -66640,7 +67115,7 @@ depend xypic-tut-pt name collection-langspanish category Collection -revision 67307 +revision 72203 shortdesc Spanish longdesc Support for Spanish. depend antique-spanish-units @@ -66656,6 +67131,7 @@ depend l2tabu-spanish depend latex2e-help-texinfo-spanish depend latexcheat-esmx depend lshort-spanish +depend quran-es depend texlive-es name collection-latex @@ -66727,7 +67203,7 @@ depend url name collection-latexextra category Collection -revision 71914 +revision 72845 shortdesc LaTeX additional packages longdesc A very large collection of add-on packages for LaTeX. depend 2up @@ -66814,8 +67290,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 @@ -66879,6 +67357,7 @@ depend bxtexlogo depend calcage depend calctab depend calculator +depend calculatoritems depend calrsfs depend cals depend calxxxx-yyyy @@ -66971,6 +67450,7 @@ depend combelow depend combine depend comma depend commado +depend commalists-tools depend commedit depend comment depend commonunicode @@ -67176,9 +67656,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 @@ -67205,6 +67687,7 @@ depend etl depend etoc depend eukdate depend eulerpx +depend euromoney depend europasscv depend europecv depend everyhook @@ -67232,6 +67715,7 @@ depend export depend exsheets depend exsol depend extract +depend ezedits depend facsimile depend factura depend fail-fast @@ -67258,6 +67742,7 @@ depend filecontentsdef depend filedate depend fileinfo depend filemod +depend fillwith depend fink depend finstrut depend fistrum @@ -67310,6 +67795,7 @@ depend formular depend fragments depend frame depend framed +depend framedsyntax depend frankenstein depend frege depend froufrou @@ -67399,6 +67885,7 @@ depend harnon-cv depend harpoon depend hc depend he-she +depend hebdomon depend hep-acronym depend hep-float depend hep-math @@ -67452,6 +67939,7 @@ depend incgraph depend indextools depend inline-images depend inlinedef +depend inlinegraphicx depend inlinelabel depend inputenx depend inputtrc @@ -67722,6 +68210,7 @@ depend nidanfloat depend ninecolors depend nlctdoc depend noconflict +depend nodepthtext depend noindentafter depend noitcrul depend nolbreaks @@ -67890,6 +68379,7 @@ depend quoting depend quotmark depend ran_toks depend randexam +depend randintlist depend randtext depend rccol depend rcs-multi @@ -67948,11 +68438,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 @@ -68042,6 +68534,7 @@ depend stdclsdv depend stdpage depend stealcaps depend stex +depend stocksize depend storebox depend storecmd depend stringstrings @@ -68229,6 +68722,7 @@ depend warning depend warpcol depend was depend webquiz +depend whatsnote depend widetable depend widows-and-orphans depend williams @@ -68270,6 +68764,7 @@ depend xpatch depend xpeek depend xprintlen depend xpunctuate +depend xreview depend xsavebox depend xsim depend xstring @@ -68291,6 +68786,7 @@ depend zref depend zref-check depend zref-clever depend zref-vario +depend zugferd depend zwgetfdate depend zwpagelayout @@ -68375,7 +68871,7 @@ depend xunicode name collection-luatex category Collection -revision 71743 +revision 72049 shortdesc LuaTeX packages longdesc Packages for LuaTeX, a TeX engine using Lua as an embedded longdesc scripting and extension language, with native support for @@ -68437,6 +68933,7 @@ depend lualibs depend lualinalg depend luamathalign depend luamaths +depend luamml depend luamodulartables depend luamplib depend luaoptions @@ -68491,10 +68988,11 @@ depend yamlvars name collection-mathscience category Collection -revision 71810 +revision 72655 shortdesc Mathematics, natural sciences, computer science packages depend 12many depend accents +depend aiplans depend alg depend algobox depend algorithm2e @@ -68556,10 +69054,12 @@ 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 @@ -68569,6 +69069,7 @@ depend derivative depend diffcoeff depend digiconfigs depend dijkstra +depend domaincoloring depend drawmatrix depend drawstack depend dyntree @@ -68623,6 +69124,7 @@ depend jupynotex depend karnaugh depend karnaugh-map depend karnaughmap +depend keytheorems depend kvmap depend letterswitharrows depend lie-hasse @@ -68663,6 +69165,7 @@ depend nchairx depend nicematrix depend nuc depend nucleardata +depend numbersets depend numerica depend numerica-plus depend numerica-tables @@ -68742,6 +69245,7 @@ depend sympytexpackage depend synproof depend t-angles depend tablor +depend temporal-logic depend tensind depend tensor depend tex-ewd @@ -68766,7 +69270,7 @@ depend zx-calculus name collection-metapost category Collection -revision 71319 +revision 72550 shortdesc MetaPost and Metafont packages depend automata depend bbcard @@ -68800,6 +69304,7 @@ depend metauml depend mfpic depend mfpic4ode depend minim-hatching +depend mp-geom2d depend mp3d depend mparrows depend mpattern @@ -68864,7 +69369,7 @@ depend xpiano name collection-pictures category Collection -revision 71947 +revision 72555 shortdesc Graphics, pictures, diagrams longdesc Including TikZ, pict, etc., but MetaPost and PStricks are longdesc separate. @@ -69035,6 +69540,7 @@ depend smartdiagram depend spath3 depend spectralsequences depend strands +depend sunpath depend swimgraf depend syntaxdi depend table-fct @@ -69046,6 +69552,7 @@ depend tikz-bagua depend tikz-bayesnet depend tikz-bbox depend tikz-cd +depend tikz-decofonts depend tikz-dependency depend tikz-dimline depend tikz-ext @@ -69377,7 +69884,7 @@ depend vocaltract name collection-publishers category Collection -revision 71601 +revision 72771 shortdesc Publisher styles, theses, etc. depend aastex depend abnt @@ -69442,6 +69949,7 @@ depend dithesis depend ebook depend ebsthesis depend ecothesis +depend edmaths depend ejpecp depend ekaia depend elbioimp @@ -69470,6 +69978,7 @@ depend gzt depend h2020proposal depend hagenberg-thesis depend har2nat +depend hduthesis depend hecthese depend hep-paper depend heria @@ -69544,6 +70053,7 @@ depend njuvisual depend nostarch depend novel depend nrc +depend nstc-proposal depend nwafuthesis depend nwejm depend nxuthesis @@ -69564,6 +70074,7 @@ depend prtec depend ptptex depend qrbill depend quantumarticle +depend rebuttal depend regulatory depend resphilosophica depend resumecls @@ -69594,6 +70105,7 @@ depend sphdthesis depend spie depend sr-vorl depend srdp-mathematik +depend sshrc-insight depend stellenbosch depend stellenbosch-2 depend suftesi @@ -69633,6 +70145,7 @@ depend ucsmonograph depend ucthesis depend udepcolor depend udes-genie-these +depend udiss depend uestcthesis depend ufrgscca depend uhhassignment @@ -69876,40 +70389,48 @@ 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 72782 +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 72298 shortdesc A colourful boxed theorem environment longdesc This packages provides a colourful boxed theorem environment, longdesc combining tcolorbox and breakable boxes. @@ -69926,8 +70447,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.0.4 name colorframed category Package @@ -70760,6 +71281,26 @@ catalogue-license lppl1.3 catalogue-topics macro-supp catalogue-version r0.11a +name commalists-tools +category Package +revision 72641 +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-contact-bugs https://github.com/cpierquet/commalists-tools/issues +catalogue-contact-home https://github.com/cpierquet/commalists-tools +catalogue-contact-repository https://github.com/cpierquet/commalists-tools +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 @@ -71260,13 +71801,13 @@ catalogue-topics font font-mf font-maths name concmath-otf category Package -revision 70294 +revision 72660 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" @@ -71277,9 +71818,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.64 name concprog category Package @@ -71567,7 +72108,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 @@ -73017,7 +73558,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 @@ -75154,6 +75695,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 @@ -75161,6 +75703,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 @@ -75190,6 +75735,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 @@ -75216,6 +75762,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 @@ -75224,6 +75771,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 @@ -75241,6 +75790,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 @@ -75249,6 +75799,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 @@ -75258,6 +75809,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 @@ -76107,7 +76659,7 @@ catalogue-topics calendar calculation context name context-chat category ConTeXt -revision 71879 +revision 72010 depend context docfiles size=11 texmf-dist/doc/context/third/chat/LICENSE @@ -76139,18 +76691,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 @@ -78842,6 +79396,28 @@ catalogue-license lppl catalogue-topics typesetting catalogue-version 0.1 +name cora-macs +category Package +revision 72655 +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=49 + 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 +runfiles size=2 + 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 @@ -80519,7 +81095,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 @@ -81794,7 +82370,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 @@ -81805,7 +82381,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 @@ -81823,7 +82399,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 @@ -82575,25 +83151,21 @@ catalogue-topics czech slovak font font-mf name cs-techrep category Package -revision 70915 +revision 72666 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=81 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 @@ -82602,7 +83174,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.5 name csassignments category Package @@ -83103,6 +83675,38 @@ catalogue-ctan /macros/cstex catalogue-license other-free catalogue-topics distribution +name csthm +category Package +revision 72152 +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=105 + 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=3 + texmf-dist/source/latex/csthm/csthm.dtx + texmf-dist/source/latex/csthm/csthm.ins +runfiles size=1 + texmf-dist/tex/latex/csthm/csthm.sty +catalogue-contact-repository 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.2 + name cstypo category Package revision 41986 @@ -83153,7 +83757,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 @@ -83191,7 +83795,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 @@ -84780,7 +85384,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 @@ -84789,20 +85393,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 @@ -84904,11 +85508,11 @@ catalogue-version 1.1 name customenvs category Package -revision 71792 +revision 72764 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=471 +docfiles size=516 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 @@ -84916,14 +85520,14 @@ docfiles size=471 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=21 +runfiles size=36 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-ctan /macros/latex/contrib/customenvs catalogue-license lppl1.3c cc-by-sa-4 catalogue-topics list table -catalogue-version 0.1.8 +catalogue-version 0.2.6 name cutwin category Package @@ -85027,7 +85631,7 @@ catalogue-version 1.1.0 name cweb category Package -revision 71899 +revision 72731 catalogue cwebbin shortdesc CWEB for ANSI-C/C++ compilers longdesc A highly portable and extended version of Levy/Knuth CWEB 3.64c @@ -85066,7 +85670,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 @@ -86397,13 +87001,13 @@ catalogue-version 1.3 name dashrulex category Package -revision 71846 +revision 72642 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 @@ -86413,7 +87017,7 @@ 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.01a +catalogue-version 1.01d name dashundergaps category Package @@ -87883,7 +88487,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 @@ -87895,12 +88499,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 @@ -87915,7 +88519,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 @@ -89885,7 +90489,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 @@ -89897,7 +90501,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 @@ -89905,7 +90509,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 @@ -91029,6 +91633,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 @@ -92551,123 +93184,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 @@ -92692,27 +93258,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 @@ -92738,18 +93286,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 @@ -92758,10 +93298,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 @@ -92772,23 +93318,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 @@ -92796,100 +93398,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 @@ -92902,6 +93578,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 @@ -92914,8 +93591,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 @@ -92923,94 +93600,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 @@ -95438,7 +96150,7 @@ catalogue-version 2.10f name dtk-bibliography category Package -revision 70506 +revision 72281 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 @@ -95447,7 +96159,7 @@ docfiles size=73 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=142 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 @@ -95458,7 +96170,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-03 name dtl category TLCore @@ -97284,7 +97996,7 @@ catalogue-version 3.19.0 name dvipdfmx category TLCore -revision 71832 +revision 72829 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 @@ -98479,7 +99191,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 @@ -98548,7 +99260,7 @@ catalogue-topics notes editorial name easybook category Package -revision 71929 +revision 72831 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 @@ -98558,14 +99270,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=181 +docfiles size=188 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=25 texmf-dist/tex/latex/easybook/easybase.sty texmf-dist/tex/latex/easybook/easybook.cls texmf-dist/tex/latex/easybook/eb-tcolorbox.cfg @@ -98574,7 +99286,7 @@ 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 2024da +catalogue-version 2024hd name easydtx category Package @@ -98742,58 +99454,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 @@ -102736,22 +103454,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 @@ -102759,6 +103477,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 @@ -102790,6 +103509,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 @@ -103292,10 +104047,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, @@ -103304,320 +104058,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 @@ -104903,6 +105654,29 @@ catalogue-license lppl1.3c catalogue-topics colour catalogue-version 0.0.1 +name enumext +category Package +revision 72740 +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=403 + texmf-dist/doc/latex/enumext/README.md details="Readme" + texmf-dist/doc/latex/enumext/enumext.pdf details="Package documentation" +srcfiles size=151 + texmf-dist/source/latex/enumext/enumext.dtx + texmf-dist/source/latex/enumext/enumext.ins +runfiles size=54 + 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.0 + name enumitem category Package revision 51423 @@ -104970,6 +105744,39 @@ catalogue-ctan /macros/latex/contrib/envbig catalogue-license lppl catalogue-topics letter +name enverb +category Package +revision 72137 +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 +catalogue-version 1.0 + name environ category Package revision 56615 @@ -105025,7 +105832,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. @@ -105037,7 +105844,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" @@ -105056,7 +105863,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 @@ -109898,6 +110705,73 @@ catalogue-license bsd catalogue-topics font font-specialist font-mf catalogue-version 3.0b +name euromoney +category Package +revision 72221 +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-contact-bugs https://github.com/cpierquet/euromoney/issues +catalogue-contact-repository https://github.com/cpierquet/euromoney +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 @@ -110907,7 +111781,7 @@ catalogue-version 2.7 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 @@ -110917,7 +111791,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 @@ -110930,15 +111804,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 @@ -111448,6 +112322,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 @@ -111937,22 +112832,22 @@ catalogue-version 1.3 name fancyqr category Package -revision 70935 +revision 72472 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 @@ -111963,7 +112858,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.1 name fancyref category Package @@ -112176,6 +113071,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 72499 +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=15494 + 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.pdf details="Package documentation" + texmf-dist/doc/latex/faq-fr-gutenberg/pdf/faqlatexgutenberg_sombre.pdf +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 @@ -116022,6 +116970,35 @@ catalogue-license lppl1.3 catalogue-topics doc-tool catalogue-version 1.2 +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 @@ -118485,7 +119462,7 @@ catalogue-topics tut-latex name firstaid category Package -revision 71628 +revision 72739 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 @@ -118494,7 +119471,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" @@ -118509,7 +119486,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.1g name fistrum category Package @@ -119821,7 +120798,7 @@ catalogue-topics graphics-inline name fmtcount category Package -revision 53912 +revision 72583 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, @@ -119832,21 +120809,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=77 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 @@ -119862,12 +120840,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.09 name fn2end category Package @@ -121680,36 +122658,82 @@ catalogue-version 0.7.3 name fontscale category Package -revision 71281 +revision 72614 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=41 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 -runfiles size=12 + 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=11 texmf-dist/tex/latex/fontscale/fontscale.sty catalogue-also fix-cm scrartcl 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.0.1 + +name fontscripts +category Package +revision 72672 +shortdesc Font encodings, metrics and Lua script fragments for font creation +longdesc The package provides variant font encodings, support metrics +longdesc and Lua script fragments to automate the creation of TeX/LaTeXe +longdesc font files for 8-bit engines using l3build. A template-based +longdesc system enables the automatic generation of font tables and +longdesc l3build tests. +docfiles size=430 + texmf-dist/doc/fonts/fontscripts/README.md details="Readme" + texmf-dist/doc/fonts/fontscripts/fontscripts.pdf details="Package documentation" + texmf-dist/doc/fonts/fontscripts/manifest.txt +srcfiles size=173 + 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-ctan.lua + texmf-dist/source/fonts/fontscripts/fnt-tables.tex + texmf-dist/source/fonts/fontscripts/fontinst.lua + 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/tag.lua + 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 +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.1 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 @@ -121727,13 +122751,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 @@ -121754,6 +122781,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 @@ -121762,7 +122790,7 @@ 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 @@ -122749,7 +123777,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 @@ -122759,16 +123787,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 @@ -123033,8 +124061,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 @@ -123385,6 +124413,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 @@ -124075,27 +125123,27 @@ catalogue-version 1.2 name fvextra category Package -revision 71282 +revision 72706 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=228 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=84 texmf-dist/source/latex/fvextra/fvextra.dtx texmf-dist/source/latex/fvextra/fvextra.ins -runfiles size=25 +runfiles size=27 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.9.0 name fwlw category Package @@ -124996,6 +126044,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 @@ -128353,7 +129422,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 @@ -128363,7 +129432,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 @@ -128380,7 +129449,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 @@ -128579,7 +129648,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 @@ -128606,7 +129675,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 @@ -128636,21 +129705,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 @@ -128765,11 +129840,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 @@ -128783,6 +129858,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 @@ -128847,7 +129923,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 @@ -131180,7 +132256,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 @@ -132060,7 +133136,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 @@ -132071,20 +133147,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 @@ -133434,19 +134512,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 @@ -133646,6 +134724,61 @@ catalogue-ctan /macros/latex/contrib/hc catalogue-license other-free catalogue-topics class presentation letter +name hduthesis +category Package +revision 72513 +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=345 + texmf-dist/doc/xelatex/hduthesis/License + texmf-dist/doc/xelatex/hduthesis/README.md details="Readme" + texmf-dist/doc/xelatex/hduthesis/examples/cha/abstract.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/cha1.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/cha2.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/cha3.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/cha4.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/cha5.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/cha6.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/cha7.tex + texmf-dist/doc/xelatex/hduthesis/examples/cha/thanks.tex + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0145.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0162.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0163.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0236.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0284.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0285.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0289.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0419.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0439.png + texmf-dist/doc/xelatex/hduthesis/examples/figures/image-0440.png + texmf-dist/doc/xelatex/hduthesis/examples/hduthesis-bc.pdf details="Example of use (1)" language="zh" + texmf-dist/doc/xelatex/hduthesis/examples/hduthesis-bc.tex + texmf-dist/doc/xelatex/hduthesis/examples/hduthesis-pg.pdf details="Example of use (2)" language="zh" + texmf-dist/doc/xelatex/hduthesis/examples/hduthesis-pg.tex + texmf-dist/doc/xelatex/hduthesis/examples/reference.bib + texmf-dist/doc/xelatex/hduthesis/hduthesis.pdf details="Package documentation" language="zh" + texmf-dist/doc/xelatex/hduthesis/hduthesis.tex +runfiles size=29 + 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.layout-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-font-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-pg.layout-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-preamble-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis-unv.layout-module.code.tex + texmf-dist/tex/xelatex/hduthesis/hduthesis.cls +catalogue-contact-bugs https://github.com/xiamyphys/hduthesis/issues +catalogue-contact-development https://github.com/xiamyphys +catalogue-contact-repository https://github.com/xiamyphys/hduthesis +catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC +catalogue-ctan /macros/xetex/latex/hduthesis +catalogue-license lppl1.3c +catalogue-topics dissertation class doc-templ chinese expl3 +catalogue-version 0.2.1 + name he-she category Package revision 41359 @@ -133667,6 +134800,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 @@ -134643,7 +135798,7 @@ catalogue-version 1.0.2 name heria category Package -revision 71809 +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 @@ -134654,12 +135809,12 @@ 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=154 +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=36 @@ -134694,7 +135849,7 @@ catalogue-contact-repository https://github.com/logological/heria catalogue-ctan /macros/latex/contrib/heria catalogue-license lppl1.3c catalogue-topics class proposal -catalogue-version 3.4.1.0 +catalogue-version 3.4.1.3 name heros-otf category Package @@ -135957,7 +137112,7 @@ catalogue-topics listing synt-hlt name highlightx category Package -revision 68756 +revision 72619 shortdesc Highlight formulas or paragraphs longdesc This package provides commands (in French or English) to longdesc highlight formulas or paragraphs with handwriting effect: coded @@ -135976,7 +137131,7 @@ 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 @@ -136780,7 +137935,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 @@ -136794,7 +137949,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" @@ -136915,7 +138070,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. @@ -136936,7 +138091,7 @@ 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 @@ -137035,7 +138190,7 @@ catalogue-version 1.1.2 name huawei category Package -revision 69858 +revision 72668 shortdesc Template for Huawei documents longdesc This unofficial package provides a class for creating documents longdesc for people working with Huawei Technologies Co., Ltd. @@ -137078,7 +138233,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" @@ -137086,14 +138241,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.0 name huaz category Package @@ -137241,7 +138396,7 @@ catalogue-version 0.41 name hvfloat category Package -revision 70675 +revision 72452 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 @@ -137392,18 +138547,19 @@ 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.51 name hvindex category Package @@ -137427,7 +138583,7 @@ catalogue-version 0.04 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 @@ -137442,7 +138598,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 @@ -137556,12 +138712,12 @@ 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" @@ -137572,7 +138728,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 @@ -137736,7 +138892,7 @@ catalogue-version 1.0b name hyperref category Package -revision 71883 +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. @@ -137769,7 +138925,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 @@ -137786,6 +138942,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 @@ -137803,7 +138960,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 @@ -137838,7 +138995,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.01j +catalogue-version 7.01l name hyperxmp category Package @@ -139345,21 +140502,19 @@ catalogue-version 1.0 name iaria category Package -revision 70919 +revision 72670 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=70 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 texmf-dist/source/latex/iaria/iaria.dtx @@ -139369,29 +140524,27 @@ runfiles size=1 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.5 name iaria-lite category Package -revision 70918 +revision 72669 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=72 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 @@ -139399,8 +140552,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.5 name ibarra category Package @@ -141707,6 +142860,27 @@ catalogue-license lppl catalogue-topics macro-def catalogue-version 1.0 +name inlinegraphicx +category Package +revision 72795 +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-contact-bugs https://github.com/cpierquet/inlinegraphicx/issues +catalogue-contact-home https://github.com/cpierquet/inlinegraphicx +catalogue-contact-repository https://github.com/cpierquet/inlinegraphicx +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 @@ -141728,7 +142902,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 @@ -141751,7 +142925,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 @@ -142763,7 +143937,7 @@ catalogue-version 2.2 name install-latex-guide-zh-cn category Package -revision 71400 +revision 72158 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 @@ -142791,7 +143965,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 @@ -144442,6 +145616,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 @@ -146717,7 +147923,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 @@ -146754,7 +147960,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 @@ -147067,339 +148273,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 @@ -147437,7 +148640,6 @@ srcfiles size=8 runfiles size=2 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 @@ -153210,13 +154412,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" @@ -154669,7 +155871,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 @@ -154691,7 +155893,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 @@ -155187,26 +156389,27 @@ catalogue-version 1.13 name jsonparse category Package -revision 71329 +revision 72772 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=142 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=11 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 0.9.7 name jumplines category Package @@ -158832,32 +160035,28 @@ 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 @@ -159059,17 +160258,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)" @@ -160779,6 +161980,35 @@ catalogue-license gpl catalogue-topics doc-supp catalogue-version 1.6 +name keytheorems +category Package +revision 72832 +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=56 + 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=36 + 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.2 + name keyval2e category Package revision 23698 @@ -161182,7 +162412,7 @@ catalogue-topics doc-errata name knuth-hint category Package -revision 71883 +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 @@ -161197,7 +162427,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 @@ -161287,7 +162517,7 @@ catalogue-contact-support https://tug.org/texmfbug catalogue-ctan /info/knuth-hint catalogue-license pd knuth catalogue-topics collection -catalogue-version 2.4 +catalogue-version 2.5 name knuth-lib category Package @@ -161377,7 +162607,7 @@ catalogue-topics collection name knuth-pdf category Package -revision 71883 +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 @@ -161392,7 +162622,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 @@ -161481,7 +162711,7 @@ catalogue-contact-support https://tug.org/texmfbug catalogue-ctan /info/knuth-pdf catalogue-license pd catalogue-topics collection -catalogue-version 2.4 +catalogue-version 2.5 name koma-moderncvclassic category Package @@ -161508,7 +162738,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 @@ -161525,9 +162755,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 @@ -161627,10 +162865,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 @@ -161646,7 +162880,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 @@ -161666,6 +162899,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 @@ -161729,12 +162966,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 @@ -161771,7 +163004,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 @@ -161824,23 +163056,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 @@ -161860,8 +163084,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 @@ -161872,7 +163094,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 @@ -162072,7 +163294,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 @@ -162085,7 +163307,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 @@ -162395,7 +163616,7 @@ binfiles arch=x86_64-solaris size=3 name kpathsea category TLCore -revision 71664 +revision 72376 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 @@ -162617,7 +163838,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; @@ -162635,7 +163856,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" @@ -164558,7 +165779,7 @@ 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 @@ -165584,7 +166805,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. @@ -165660,7 +166881,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 @@ -165672,13 +166893,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 @@ -165815,7 +167036,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 @@ -165886,7 +167107,7 @@ catalogue-topics macro-supp layout latex3 pre-release name l3kernel category Package -revision 71444 +revision 72755 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 @@ -165895,7 +167116,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=3514 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" @@ -166039,13 +167260,13 @@ catalogue-topics format latex3 pre-release name l3kernel-dev category Package -revision 71856 +revision 72756 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=3507 +docfiles size=3514 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" @@ -166185,7 +167406,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 @@ -167055,7 +168276,7 @@ catalogue-version 2.1c name latex category Package -revision 71629 +revision 72739 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 @@ -167072,7 +168293,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=11727 texmf-dist/doc/latex/base/README.md texmf-dist/doc/latex/base/alltt.pdf texmf-dist/doc/latex/base/bugs.txt @@ -167213,6 +168434,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 @@ -167229,6 +168452,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 @@ -167255,7 +168482,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=1162 texmf-dist/source/latex/base/alltt.dtx texmf-dist/source/latex/base/alltt.ins texmf-dist/source/latex/base/classes.dtx @@ -167364,7 +168591,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 @@ -167536,11 +168763,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 @@ -167596,11 +168822,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 72738 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 @@ -167609,7 +168835,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=11786 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 @@ -167752,6 +168978,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 @@ -167768,6 +168996,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 @@ -167794,7 +169026,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=1162 texmf-dist/source/latex-dev/base/alltt.dtx texmf-dist/source/latex-dev/base/alltt.ins texmf-dist/source/latex-dev/base/classes.dtx @@ -167903,7 +169135,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=710 texmf-dist/tex/latex-dev/base/alltt.sty texmf-dist/tex/latex-dev/base/ansinew.def texmf-dist/tex/latex-dev/base/applemac.def @@ -168074,7 +169306,7 @@ 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-06-01 pre-release 0 name latex-bin category TLCore @@ -168539,20 +169771,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 @@ -168565,13 +169796,13 @@ catalogue-topics latex-doc name latex-firstaid-dev category Package -revision 70790 +revision 72738 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" @@ -168585,7 +169816,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.1g name latex-fonts category Package @@ -169270,7 +170501,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 @@ -169334,11 +170565,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 72739 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 @@ -169350,7 +170581,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 @@ -169384,7 +170615,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=174 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 @@ -169410,7 +170641,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 @@ -169463,14 +170694,14 @@ catalogue-topics format latex-devel name latex-lab-dev category Package -revision 71416 +revision 72738 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=3151 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 @@ -169504,7 +170735,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=174 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 @@ -169530,7 +170761,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 @@ -169579,7 +170810,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 0 name latex-make category Package @@ -169871,13 +171102,13 @@ catalogue-version 1.2 name latex-tools-dev category Package -revision 71433 +revision 72738 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=2014 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 @@ -169910,7 +171141,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 @@ -169946,7 +171177,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=129 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 @@ -170000,7 +171231,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 0 name latex-uni8 category Package @@ -170659,7 +171890,7 @@ binfiles arch=x86_64-solaris size=1 name latex2pydata category Package -revision 71283 +revision 72708 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 @@ -170681,7 +171912,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.3.0 name latex4musicians category Package @@ -170894,7 +172125,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 @@ -170913,7 +172144,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 @@ -171050,7 +172281,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 @@ -171063,7 +172294,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 @@ -171084,7 +172315,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 @@ -171092,7 +172323,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 @@ -174639,7 +175870,7 @@ catalogue-version 0.41 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 @@ -174664,7 +175895,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 @@ -174680,11 +175911,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 @@ -174700,7 +175931,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 @@ -174745,20 +175976,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 @@ -175982,7 +177214,7 @@ catalogue-version 2.0 name libertine category Package -revision 71061 +revision 72795 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 @@ -178388,6 +179620,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 @@ -178525,7 +179758,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 @@ -178535,7 +179768,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 @@ -178546,11 +179779,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 @@ -178572,7 +179805,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 @@ -178598,387 +179831,374 @@ catalogue-version 0.32 name libertinus-type1 category Package -revision 67450 +revision 72354 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=283 texmf-dist/doc/fonts/libertinus-type1/OFL.txt texmf-dist/doc/fonts/libertinus-type1/README details="Readme" 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=4057 + 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_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_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_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_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_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_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_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_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_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_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_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_rtitj6.enc + texmf-dist/fonts/enc/dvips/libertinus-type1/lbn1_rvhnvp.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_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_w5ro75.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_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_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_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/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 - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ot1.tfm - texmf-dist/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t1--base.tfm - 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-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 @@ -179081,106 +180301,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 @@ -180015,81 +181135,8 @@ 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-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 @@ -180098,17 +181145,7 @@ runfiles size=5031 texmf-dist/fonts/type1/public/libertinus-type1/LibertinusSerif-Regular.pfb 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-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 @@ -180145,39 +181182,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 @@ -180476,29 +181480,7 @@ 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 @@ -180509,12 +181491,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 @@ -180526,12 +181502,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerif-Sup.fd texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-LF.fd - texmf-dist/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-OsF.fd - 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 @@ -180543,12 +181513,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerif-Sup.fd texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-LF.fd - texmf-dist/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-OsF.fd - 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 @@ -180560,12 +181524,7 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerif-Sup.fd texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-LF.fd - texmf-dist/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-OsF.fd - 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 @@ -180576,12 +181535,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 @@ -180592,12 +181546,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 @@ -180608,12 +181557,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 @@ -180623,11 +181566,6 @@ runfiles size=5031 texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerif-OsF.fd texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerif-TLF.fd texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerif-TOsF.fd - texmf-dist/tex/latex/libertinus-type1/TS1LibertinusSerifDisplay-LF.fd - 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 @@ -181843,7 +182781,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 @@ -181852,86 +182790,92 @@ 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 @@ -183280,7 +184224,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 @@ -183328,7 +184272,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 @@ -183632,12 +184576,12 @@ catalogue-version 0.2b name litesolution category Package -revision 71205 +revision 72036 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 +docfiles size=213 texmf-dist/doc/latex/litesolution/License texmf-dist/doc/latex/litesolution/README.md details="Readme" texmf-dist/doc/latex/litesolution/figure/Beautiful-realities.jpeg @@ -183648,19 +184592,20 @@ docfiles size=125 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-announce https://qm.qq.com/q/RGFmHwBecC catalogue-contact-bugs https://github.com/xiamyphys/litesolution/issues catalogue-contact-development https://github.com/xiamyphys +catalogue-contact-home https://github.com/xiamyphys/litesolution catalogue-contact-repository https://github.com/xiamyphys/litesolution catalogue-contact-support https://qm.qq.com/q/RGFmHwBecC catalogue-ctan /macros/latex/contrib/litesolution catalogue-license lppl1.3c catalogue-topics class doc-templ -catalogue-version 2.2b +catalogue-version 2.4a name litetable category Package -revision 70352 +revision 72539 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 @@ -183668,26 +184613,27 @@ 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 +docfiles size=146 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-hk.pdf details="Package documentation (Cantonese)" language="yue" + texmf-dist/doc/latex/litetable/litetable-hk.tex +runfiles size=5 texmf-dist/tex/latex/litetable/litetable.cls -catalogue-contact-bugs https://github.com/xiamyphys/LiteTable/issues +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-repository https://github.com/xiamyphys/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.1D name lithuanian category Package @@ -183801,13 +184747,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" @@ -183819,7 +184765,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 @@ -186512,15 +187458,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 @@ -186536,7 +187482,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 @@ -187498,7 +188444,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 @@ -187519,7 +188465,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 @@ -187771,7 +188717,7 @@ catalogue-version 1.4 name luafindfont category Package -revision 67468 +revision 72111 shortdesc Search fonts in the LuaTeX font database longdesc This Lua script searches for fonts in the font database. depend luafindfont.ARCH @@ -187788,7 +188734,7 @@ catalogue-alias findfont catalogue-ctan /support/luafindfont catalogue-license lppl1.3c catalogue-topics font-sel -catalogue-version 0.13 +catalogue-version 0.14 name luafindfont.aarch64-linux category Package @@ -188321,7 +189267,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, @@ -188345,7 +189291,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 @@ -188597,6 +189543,51 @@ catalogue-license lppl1.3 catalogue-topics graphics maths pgf-tikz graphics-mpost luatex catalogue-version 0.7 +name luamml +category Package +revision 72714 +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=43 + texmf-dist/doc/lualatex/luamml/README.md details="Readme" + texmf-dist/doc/lualatex/luamml/luamml.pdf details="Package documentation" +srcfiles size=5 + texmf-dist/source/lualatex/luamml/luamml.dtx +runfiles size=36 + 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-array.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.2.0 + name luamodulartables category Package revision 68893 @@ -188627,22 +189618,22 @@ catalogue-version 1.1 name luamplib category Package -revision 71939 +revision 72835 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=75 +docfiles size=81 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=46 +srcfiles size=50 texmf-dist/source/luatex/luamplib/Makefile texmf-dist/source/luatex/luamplib/luamplib.dtx -runfiles size=26 +runfiles size=29 texmf-dist/tex/luatex/luamplib/luamplib.lua texmf-dist/tex/luatex/luamplib/luamplib.sty catalogue-contact-bugs https://github.com/lualatex/luamplib/issues @@ -188650,7 +189641,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.34.4 +catalogue-version 2.35.0 name luanumint category Package @@ -189453,13 +190444,13 @@ catalogue-version 1.3 name luatexja category Package -revision 71802 +revision 72546 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=983 texmf-dist/doc/luatex/luatexja/COPYING texmf-dist/doc/luatex/luatexja/README details="Readme" texmf-dist/doc/luatex/luatexja/jfm-test.lua @@ -189500,7 +190491,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=421 +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 @@ -189602,7 +190593,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 20240714.0 +catalogue-version 20241014.0 name luatexko category Package @@ -189754,17 +190745,17 @@ catalogue-version 0.1m name luaxml category Package -revision 71803 +revision 72574 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=41 +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=58 +runfiles size=61 texmf-dist/tex/luatex/luaxml/luaxml-cssquery.lua texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua texmf-dist/tex/luatex/luaxml/luaxml-encodings.lua @@ -189776,13 +190767,15 @@ runfiles size=58 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.2 +catalogue-version 0.2a name lutabulartools category Package @@ -191152,26 +192145,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 @@ -191350,7 +192346,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 @@ -191358,13 +192354,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 @@ -191419,6 +192415,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 @@ -191435,7 +192432,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 @@ -192480,18 +193477,22 @@ catalogue-topics notes name markdown category Package -revision 71798 +revision 72765 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=597 +depend l3kernel +depend lt3luabridge +depend lua-uni-algos +docfiles size=623 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 @@ -192507,11 +193508,11 @@ docfiles size=597 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=256 texmf-dist/source/generic/markdown/docstrip.cfg texmf-dist/source/generic/markdown/markdown.dtx texmf-dist/source/generic/markdown/markdown.ins -runfiles size=120 +runfiles size=153 texmf-dist/scripts/markdown/markdown-cli.lua texmf-dist/tex/context/third/markdown/t-markdown.tex texmf-dist/tex/context/third/markdown/t-markdownthemewitiko_markdown_defaults.tex @@ -192522,7 +193523,9 @@ runfiles size=120 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-parser.lua texmf-dist/tex/luatex/markdown/markdown-tinyyaml.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 @@ -192531,7 +193534,7 @@ catalogue-contact-repository https://github.com/Witiko/markdown catalogue-ctan /macros/generic/markdown catalogue-license lppl1.3c catalogue-topics markup -catalogue-version 3.6.2-0-g6c30af7e +catalogue-version 3.8.1-0-gbbed72f3 name marvosym category Package @@ -193052,7 +194055,7 @@ catalogue-version 1.143 name mathastext category Package -revision 71913 +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 @@ -193064,12 +194067,12 @@ 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=194 +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 -srcfiles size=127 +srcfiles size=132 texmf-dist/source/latex/mathastext/mathastext.dtx runfiles size=31 texmf-dist/tex/latex/mathastext/mathastext.sty @@ -193077,7 +194080,7 @@ catalogue-contact-home http://jf.burnol.free.fr/mathastext.html catalogue-ctan /macros/latex/contrib/mathastext catalogue-license lppl1.3c catalogue-topics maths font-supp-maths font-sel -catalogue-version 1.4b +catalogue-version 1.4e name mathcommand category Package @@ -194474,25 +195477,25 @@ catalogue-version 0.5 name mathfixs category Package -revision 49547 +revision 72653 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.11 name mathfont category Package @@ -194972,7 +195975,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 @@ -194991,13 +195994,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 @@ -195010,7 +196014,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 @@ -195203,12 +196207,12 @@ catalogue-version 0.5 name mcf2graph category Package -revision 70154 +revision 72816 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=343 texmf-dist/doc/metapost/mcf2graph/CHANGELOG texmf-dist/doc/metapost/mcf2graph/README details="Readme" texmf-dist/doc/metapost/mcf2graph/main_lib.mcf @@ -195224,7 +196228,7 @@ docfiles size=342 catalogue-ctan /graphics/mcf2graph catalogue-license mit catalogue-topics graphics graphics-mpost chemistry -catalogue-version 5.12 +catalogue-version 5.13 name mcite category Package @@ -195609,7 +196613,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 @@ -195621,7 +196625,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" @@ -195679,7 +196683,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 @@ -196285,7 +197289,7 @@ catalogue-version 1.6.2 name mercatormap category Package -revision 71946 +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 @@ -196294,7 +197298,7 @@ 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=5676 +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 @@ -196323,7 +197327,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.1.0 +catalogue-version 1.2.0 name merriweather category Package @@ -199066,6 +200070,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 @@ -200818,7 +202206,7 @@ catalogue-version 1.1 name minted category Package -revision 70838 +revision 72821 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 @@ -200827,35 +202215,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=139 + 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=354 + texmf-dist/scripts/minted/latex2pydata-0.4.0-py3-none-any.whl + texmf-dist/scripts/minted/latexminted-0.3.0-py3-none-any.whl + texmf-dist/scripts/minted/latexminted.py + texmf-dist/scripts/minted/latexrestricted-0.6.0-py3-none-any.whl + texmf-dist/scripts/minted/pygments-2.18.0-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.3.0 + +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 @@ -201530,7 +203027,7 @@ catalogue-version 2.0 name mitthesis category Package -revision 71855 +revision 72749 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 @@ -201546,18 +203043,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=1106 +docfiles size=1408 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 @@ -201585,7 +203085,8 @@ docfiles size=1106 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 @@ -201595,7 +203096,8 @@ docfiles size=1106 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 @@ -201611,7 +203113,7 @@ runfiles size=12 catalogue-ctan /macros/latex/contrib/mitthesis catalogue-license mit catalogue-topics class dissertation engineering humanities scientific-docs doc-templ expl3 -catalogue-version 1.14 +catalogue-version 1.17 name mkgrkindex category Package @@ -202049,7 +203551,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 @@ -202057,13 +203559,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 @@ -202077,7 +203579,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 @@ -203861,11 +205363,12 @@ catalogue-version 1.0 name moloch category Package -revision 71883 +revision 72715 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 +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=83 texmf-dist/doc/latex/moloch/CHANGELOG.md texmf-dist/doc/latex/moloch/LICENSE texmf-dist/doc/latex/moloch/README.md details="Readme" @@ -203890,7 +205393,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.4.0 +catalogue-version 0.5.0 name mongolian-babel category Package @@ -208566,7 +210069,7 @@ catalogue-version r0.83 name moremath category Package -revision 71810 +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 @@ -208585,11 +210088,11 @@ 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=233 +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=44 +srcfiles size=46 texmf-dist/source/latex/moremath/moremath.dtx texmf-dist/source/latex/moremath/moremath.ins runfiles size=10 @@ -208599,7 +210102,7 @@ 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.4.0 +catalogue-version 0.5.0 name moresize category Package @@ -208807,6 +210310,149 @@ 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 mp3d category Package revision 29349 @@ -208920,7 +210566,7 @@ catalogue-topics graphics-use name mpchess category Package -revision 67704 +revision 72664 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 @@ -208929,7 +210575,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=779 texmf-dist/doc/metapost/mpchess/LICENSE texmf-dist/doc/metapost/mpchess/README.md details="Readme" texmf-dist/doc/metapost/mpchess/ctan.bib @@ -208941,7 +210587,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 @@ -208950,13 +210596,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.8 name mpcolornames category Package @@ -210270,16 +211916,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 @@ -210292,7 +211938,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 @@ -211471,7 +213117,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. @@ -211718,7 +213364,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 @@ -211726,7 +213372,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" @@ -211740,7 +213386,7 @@ 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 @@ -214355,7 +216001,7 @@ catalogue-version 2.0 name newcomputermodern category Package -revision 71570 +revision 72735 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, @@ -214363,12 +216009,14 @@ 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=4698 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/newcm-doc.pdf details="Package documentation" texmf-dist/doc/fonts/newcomputermodern/newcm-doc.tex texmf-dist/doc/fonts/newcomputermodern/newcm-unimath-symbols.ltx @@ -214379,7 +216027,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=4720 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 @@ -214395,6 +216045,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 @@ -214413,6 +216064,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 @@ -214432,7 +216084,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.0 name newenviron category Package @@ -215320,7 +216972,7 @@ catalogue-version 1.0 name newtx category Package -revision 71883 +revision 72368 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, @@ -216429,7 +218081,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.752 +catalogue-version 1.754 name newtxsf category Package @@ -216759,21 +218411,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 @@ -216863,7 +218522,7 @@ catalogue-topics font font-type1 font-decor name nicematrix category Package -revision 71661 +revision 72844 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 @@ -216874,22 +218533,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=1076 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=150 texmf-dist/source/latex/nicematrix/nicematrix-code.dtx texmf-dist/source/latex/nicematrix/nicematrix.ins -runfiles size=97 +runfiles size=95 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 6.29b name nicetext category Package @@ -217599,7 +219258,7 @@ catalogue-version 1.0 name nlctdoc category Package -revision 68448 +revision 72810 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 @@ -217607,13 +219266,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-topics doc-supp class -catalogue-version 1.10 +catalogue-version 1.11 name nmbib category Package @@ -217710,16 +219369,36 @@ catalogue-license lppl1.3 catalogue-topics macro-supp catalogue-version 1.0 +name nodepthtext +category Package +revision 72822 +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-contact-bugs https://github.com/cpierquet/nodepthtext/issues +catalogue-contact-home https://github.com/cpierquet/nodepthtext +catalogue-contact-repository https://github.com/cpierquet/nodepthtext +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" @@ -217737,7 +219416,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 @@ -218038,19 +219717,21 @@ catalogue-version 2.4 name notebeamer category Package -revision 71192 +revision 72554 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 +docfiles size=52 texmf-dist/doc/latex/notebeamer/License 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-demo1.pdf + texmf-dist/doc/latex/notebeamer/notebeamer-demo1.tex + texmf-dist/doc/latex/notebeamer/notebeamer-demo2.pdf + texmf-dist/doc/latex/notebeamer/notebeamer-demo2.tex texmf-dist/doc/latex/notebeamer/notebeamer.pdf details="Package documentation" texmf-dist/doc/latex/notebeamer/notebeamer.tex -runfiles size=3 +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 @@ -218061,7 +219742,7 @@ 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.0A name notes category Package @@ -224270,6 +225951,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 @@ -224491,6 +226202,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 @@ -225650,7 +227384,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 @@ -225663,7 +227397,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 @@ -225672,7 +227406,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 @@ -225895,14 +227629,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 @@ -225913,7 +227647,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 @@ -230447,12 +232181,12 @@ catalogue-version 1.2 name outilsgeomtikz category Package -revision 69124 +revision 72145 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" @@ -230463,7 +232197,7 @@ 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 @@ -231635,16 +233369,16 @@ catalogue-version 0.0c name panneauxroute category Package -revision 67951 +revision 72287 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 @@ -231696,6 +233430,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 @@ -231738,6 +233473,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 @@ -231746,10 +233482,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 @@ -231770,6 +233508,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 @@ -231817,6 +233560,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 @@ -231855,12 +233613,22 @@ 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 + 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-contact-bugs https://github.com/cpierquet/PanneauxRoute/issues catalogue-contact-repository https://github.com/cpierquet/PanneauxRoute 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 @@ -231992,18 +233760,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 @@ -232013,13 +233781,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 @@ -233193,14 +234963,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 @@ -233209,7 +234979,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 @@ -233259,12 +235029,12 @@ catalogue-topics foreign-import name passopt category Package -revision 71828 +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=16 +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 @@ -233274,7 +235044,7 @@ 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.01a +catalogue-version 1.01c name patch category Package @@ -234516,22 +236286,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 @@ -234664,7 +236434,7 @@ catalogue-version 0.13 name pdfmanagement-testphase category Package -revision 71339 +revision 72677 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 @@ -234676,7 +236446,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=2909 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 @@ -234693,13 +236463,14 @@ docfiles size=2803 texmf-dist/doc/latex/pdfmanagement-testphase/l3pdffile.pdf texmf-dist/doc/latex/pdfmanagement-testphase/l3pdfmanagement.pdf texmf-dist/doc/latex/pdfmanagement-testphase/l3pdfmeta.pdf + texmf-dist/doc/latex/pdfmanagement-testphase/l3pdfoutline.pdf texmf-dist/doc/latex/pdfmanagement-testphase/l3pdftools.pdf texmf-dist/doc/latex/pdfmanagement-testphase/l3pdfxform.pdf texmf-dist/doc/latex/pdfmanagement-testphase/ltdocinit.pdf 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 @@ -234720,7 +236491,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 @@ -234742,7 +236513,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.96n name pdfmarginpar category Package @@ -234854,7 +236625,7 @@ catalogue-version 1.4 name pdfpages category Package -revision 71386 +revision 72691 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 @@ -234891,7 +236662,7 @@ runfiles size=25 catalogue-ctan /macros/latex/contrib/pdfpages catalogue-license lppl1.3c catalogue-topics graphics-incl pdf-feat -catalogue-version 0.6a +catalogue-version 0.6c name pdfpc category Package @@ -236215,7 +237986,7 @@ binfiles arch=x86_64-solaris size=1 name penlight category Package -revision 67716 +revision 72301 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 @@ -236224,7 +237995,7 @@ 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-contact-repository https://github.com/kalekje/penlight @@ -236234,15 +238005,15 @@ catalogue-topics luatex name penlightplus category Package -revision 70656 +revision 72426 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 -runfiles size=11 +runfiles size=12 texmf-dist/tex/luatex/penlightplus/penlightplus.lua texmf-dist/tex/luatex/penlightplus/penlightplus.sty catalogue-contact-repository https://github.com/kalekje/penlight @@ -237530,7 +239301,7 @@ catalogue-version 0.1 name pgf-periodictable category Package -revision 71948 +revision 72236 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 @@ -237541,7 +239312,7 @@ 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=2279 +docfiles size=2280 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 @@ -237590,7 +239361,7 @@ docfiles size=2279 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=601 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 @@ -237748,7 +239519,7 @@ 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.2 +catalogue-version 2.1.4 name pgf-pie category Package @@ -238128,12 +239899,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 @@ -238430,35 +240201,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 @@ -238703,7 +240488,7 @@ catalogue-version 1.18.1 name pgfplotsthemebeamer category Package -revision 71911 +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. @@ -238719,13 +240504,12 @@ docfiles size=43 texmf-dist/doc/latex/pgfplotsthemebeamer/pgfplotsthemebeamer-doc.tex runfiles size=1 texmf-dist/tex/latex/pgfplotsthemebeamer/pgfplotsthemebeamer.sty -catalogue-contact-announce https://github.com/samcarter/pgfplotsthemebeamer/releases 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.1 +catalogue-version 0.2 name phaistos category Package @@ -239754,20 +241538,20 @@ catalogue-topics doc-supp name piton category Package -revision 71932 +revision 72587 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=391 +docfiles size=392 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=71 +srcfiles size=79 texmf-dist/source/lualatex/piton/piton.dtx texmf-dist/source/lualatex/piton/piton.ins -runfiles size=27 +runfiles size=30 texmf-dist/tex/lualatex/piton/piton.lua texmf-dist/tex/lualatex/piton/piton.sty catalogue-also codehigh @@ -239775,7 +241559,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.1 +catalogue-version 4.1 name pittetd category Package @@ -239831,11 +241615,11 @@ catalogue-version 1.0.2 name pixelarttikz category Package -revision 70964 +revision 72726 shortdesc Work with PixelArts, with TikZ longdesc The package defines commands and an environment for displaying longdesc pixel arts. -docfiles size=399 +docfiles size=403 texmf-dist/doc/latex/pixelarttikz/PAkoala.csv texmf-dist/doc/latex/pixelarttikz/PAsorciere.csv texmf-dist/doc/latex/pixelarttikz/PAyoda.csv @@ -239847,6 +241631,7 @@ docfiles size=399 texmf-dist/doc/latex/pixelarttikz/base.csv texmf-dist/doc/latex/pixelarttikz/cap.csv texmf-dist/doc/latex/pixelarttikz/test1.csv + texmf-dist/doc/latex/pixelarttikz/testlist.csv runfiles size=9 texmf-dist/tex/latex/pixelarttikz/PixelArtTikz.sty catalogue-contact-bugs https://github.com/cpierquet/PixelArtTikz/issues @@ -239854,7 +241639,7 @@ catalogue-contact-repository https://github.com/cpierquet/PixelArtTikz catalogue-ctan /graphics/pgf/contrib/pixelarttikz catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz -catalogue-version 0.1.4 +catalogue-version 0.1.5 name pkfix category Package @@ -240824,13 +242609,13 @@ catalogue-version 1.0 name plantuml category Package -revision 67097 +revision 72315 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 @@ -240839,6 +242624,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 @@ -240849,7 +242635,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 @@ -241027,7 +242813,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 @@ -241054,9 +242840,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 @@ -243484,14 +245270,14 @@ catalogue-version 1.4 name pmdraw category Package -revision 71405 +revision 72486 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=160 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 @@ -243520,12 +245306,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=20 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.5 name pmgraph category Package @@ -245030,7 +246816,7 @@ catalogue-version 1.101 name polyglossia category Package -revision 71813 +revision 72368 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, @@ -245041,26 +246827,12 @@ depend fontspec depend iftex depend makecmds depend xkeyval -docfiles size=228 +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.tex - 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.tex - texmf-dist/doc/latex/polyglossia/example-thai.pdf - texmf-dist/doc/latex/polyglossia/example-thai.tex - texmf-dist/doc/latex/polyglossia/example-uyghur.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.tex -srcfiles size=261 - texmf-dist/source/latex/polyglossia/polyglossia.dtx -runfiles size=399 +runfiles size=401 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 @@ -245345,7 +247117,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.2 +catalogue-version 2.3 name polyhedra category Package @@ -245415,13 +247187,21 @@ catalogue-version 1.0 name polyomino category Package -revision 71947 +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 - texmf-dist/doc/latex/polyomino/polyomino.pdf + 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 @@ -245573,7 +247353,7 @@ catalogue-version 0.1.3 name postnotes category Package -revision 69102 +revision 72850 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 @@ -245585,7 +247365,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=295 texmf-dist/doc/latex/postnotes/CHANGELOG.md texmf-dist/doc/latex/postnotes/DEPENDS.txt texmf-dist/doc/latex/postnotes/README.md details="Readme" @@ -245593,16 +247373,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=41 texmf-dist/source/latex/postnotes/postnotes.dtx texmf-dist/source/latex/postnotes/postnotes.ins -runfiles size=12 +runfiles size=21 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.4.1 name powerdot category Package @@ -245771,7 +247551,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 @@ -245789,7 +247569,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" @@ -245809,7 +247589,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 @@ -246364,7 +248144,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 @@ -246373,12 +248153,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 @@ -246405,6 +248185,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 @@ -246615,11 +248396,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 @@ -246736,6 +248519,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 @@ -246755,7 +248539,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 @@ -246777,7 +248561,7 @@ catalogue-version 1.0 name proflycee category Package -revision 71790 +revision 72722 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 @@ -246785,18 +248569,37 @@ 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=538 +docfiles size=663 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=144 +runfiles size=275 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 @@ -246817,26 +248620,26 @@ catalogue-also profcollege catalogue-contact-bugs https://github.com/cpierquet/ProfLycee/issues catalogue-contact-repository https://github.com/cpierquet/ProfLycee catalogue-ctan /macros/latex/contrib/proflycee -catalogue-license lppl1.3c +catalogue-license lppl1.3c cc0 cc-by-sa-3 catalogue-topics maths french teaching expl3 pgf-tikz -catalogue-version 3.04d +catalogue-version 3.10f name profmaquette category Package -revision 71161 +revision 72757 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=59 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-k name profsio category Package @@ -246929,7 +248732,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 @@ -247027,7 +248830,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 @@ -247042,8 +248845,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 @@ -247051,10 +248854,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 @@ -248722,7 +250526,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 @@ -248731,7 +250535,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 @@ -248744,28 +250548,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 @@ -250142,12 +251946,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 @@ -250159,7 +251963,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 @@ -253410,7 +255214,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, @@ -253431,9 +255235,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 @@ -253445,7 +255250,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 @@ -253478,7 +255283,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 @@ -253490,7 +255295,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" @@ -253502,7 +255307,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 @@ -253594,7 +255399,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 @@ -253841,18 +255646,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 @@ -253861,7 +255666,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 @@ -255967,13 +257772,13 @@ catalogue-version 1.0 name quizztex category Package -revision 68823 +revision 72256 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 @@ -255984,7 +257789,7 @@ 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 @@ -256096,7 +257901,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 @@ -256105,7 +257910,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 @@ -256137,7 +257942,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 @@ -256230,6 +258035,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 @@ -257248,6 +259079,28 @@ catalogue-license lppl1.3c catalogue-topics exam catalogue-version 2024F +name randintlist +category Package +revision 72646 +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=25 + 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-contact-bugs https://github.com/cpierquet/randintlist/issues +catalogue-contact-home https://github.com/cpierquet/randintlist +catalogue-contact-repository https://github.com/cpierquet/randintlist +catalogue-ctan /macros/latex/contrib/randintlist +catalogue-license lppl1.3c +catalogue-topics random calculation +catalogue-version 0.1.2 + name random category Package revision 54723 @@ -257689,6 +259542,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 @@ -258101,14 +259979,14 @@ catalogue-version 1.1a 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 @@ -258130,15 +260008,14 @@ 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 @@ -258404,19 +260281,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 @@ -258426,7 +260303,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 @@ -264169,10 +266046,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 @@ -264187,118 +266063,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 @@ -265113,7 +266997,7 @@ catalogue-version 2.2 name rpgicons category Package -revision 71269 +revision 71994 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 @@ -265135,7 +267019,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.4 name rrgtrees category Package @@ -265328,27 +267212,26 @@ catalogue-topics german legal name rub-kunstgeschichte category Package -revision 71373 +revision 72721 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=128 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.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.3.0 name rubik category Package @@ -266223,16 +268106,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 @@ -266462,6 +268354,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 @@ -266492,6 +268388,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 @@ -267107,6 +269008,28 @@ catalogue-license lppl1.3 catalogue-topics graphics-manip catalogue-version 1.8 +name scaletextbullet +category Package +revision 72834 +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=24 + 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.pdf details="Package documentation" + texmf-dist/doc/latex/scaletextbullet/scaletextbullet.tex +runfiles size=2 + 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 1.0.1 + name scanpages category Package revision 42633 @@ -268968,6 +270891,48 @@ 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 @@ -269313,7 +271278,7 @@ catalogue-version 1.2.1 name se2thesis category Package -revision 71938 +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 @@ -269325,7 +271290,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=159 +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" @@ -269350,8 +271315,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.3.1 +catalogue-topics class dissertation doc-templ expl3 +catalogue-version 4.4.0 name secdot category Package @@ -270424,17 +272389,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 @@ -270444,7 +272410,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 @@ -271474,12 +273440,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 @@ -271494,7 +273460,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 @@ -271627,18 +273593,18 @@ catalogue-version 1.7 name sim-os-menus category Package -revision 68843 +revision 72484 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=219 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=9 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 @@ -271646,7 +273612,7 @@ catalogue-contact-repository https://github.com/cpierquet/sim-os-menus 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.3 name simple-resume-cv category Package @@ -271770,19 +273736,19 @@ catalogue-version 1.6a name simpleicons category Package -revision 71904 +revision 72797 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=670 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=1350 texmf-dist/fonts/enc/dvips/simpleicons/simpleiconseight.enc texmf-dist/fonts/enc/dvips/simpleicons/simpleiconsfive.enc texmf-dist/fonts/enc/dvips/simpleicons/simpleiconsfour.enc @@ -271833,7 +273799,7 @@ catalogue-contact-repository https://github.com/ineshbose/simple-icons-latex catalogue-ctan /fonts/simpleicons catalogue-license cc-by-1 catalogue-topics font font-symbol font-supp-symbol font-otf font-type1 -catalogue-version 13.2.0 +catalogue-version 13.16.0 name simpleinvoice category Package @@ -271921,7 +273887,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 @@ -272209,29 +274175,24 @@ catalogue-version 1.36 name siunitx category Package -revision 71945 +revision 72484 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=352 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" @@ -272267,17 +274228,17 @@ 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.20 +catalogue-version 3.3.22 name sjtutex category Package -revision 71663 +revision 72826 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=179 texmf-dist/doc/latex/sjtutex/README.md details="Readme" texmf-dist/doc/latex/sjtutex/sjtutex.pdf details="Package documentation" language="zh" srcfiles size=53 @@ -272354,7 +274315,7 @@ 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-version 2.1.5 name skak category Package @@ -276905,13 +278866,13 @@ catalogue-version 2.8 name spbmark category Package -revision 71812 +revision 72720 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 longdesc be adjusted with respect to relative position and format, and longdesc can be used in text and math mode. -docfiles size=30 +docfiles size=31 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 @@ -276921,7 +278882,7 @@ 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.46n +catalogue-version 1.46t name spectral category Package @@ -278306,7 +280267,7 @@ catalogue-version 1.3.3 name spelatex category Package -revision 71581 +revision 72763 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 @@ -278324,54 +280285,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=3990 + 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 @@ -278396,7 +280353,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 @@ -278420,46 +280376,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 @@ -278470,7 +280416,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 @@ -278502,6 +280447,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 @@ -278513,7 +280459,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 @@ -278535,8 +280480,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 @@ -278549,7 +280492,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 @@ -278558,6 +280500,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 @@ -278577,6 +280532,8 @@ 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.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 @@ -278614,6 +280571,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 @@ -278640,12 +280598,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 @@ -278660,30 +280626,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 @@ -278692,15 +280656,15 @@ 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.94b name spelling category Package @@ -279213,6 +281177,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 @@ -279521,6 +281635,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 @@ -280796,7 +282960,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 @@ -280811,7 +282975,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 @@ -281376,11 +283540,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 @@ -281781,6 +283948,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 72853 +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.2 + name storebox category Package revision 64967 @@ -282322,6 +284513,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 @@ -282757,6 +284985,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 @@ -283725,7 +285989,7 @@ catalogue-version 0.34 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 @@ -284186,7 +286450,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 @@ -284197,18 +286461,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 @@ -284344,28 +286608,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 @@ -284708,17 +286972,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 72690 +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=797 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 @@ -284747,14 +287007,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=106 texmf-dist/source/latex/tagpdf/tagpdf-backend.dtx texmf-dist/source/latex/tagpdf/tagpdf-checks.dtx texmf-dist/source/latex/tagpdf/tagpdf-data.dtx @@ -284768,7 +287031,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 @@ -284792,7 +287055,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.99g name talk category Package @@ -285142,7 +287405,7 @@ catalogue-version 2.40 name tcolorbox category Package -revision 71883 +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 @@ -285156,7 +287419,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" @@ -285229,8 +287492,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.3.0 +catalogue-topics boxing box-breaking colour verbatim listing macro-demo +catalogue-version 6.4.1 name tdclock category Package @@ -285676,6 +287939,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 @@ -287866,12 +290155,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" @@ -287893,7 +290182,7 @@ 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 @@ -288158,7 +290447,7 @@ binfiles arch=x86_64-solaris size=1 name tex4ht category Package -revision 71941 +revision 72825 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 @@ -288250,7 +290539,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=4653 +srcfiles size=4662 texmf-dist/source/generic/tex4ht/ChangeLog texmf-dist/source/generic/tex4ht/Makefile texmf-dist/source/generic/tex4ht/README @@ -288330,7 +290619,7 @@ srcfiles size=4653 texmf-dist/source/generic/tex4ht/update-htfonts texmf-dist/source/generic/tex4ht/wripro.tex texmf-dist/source/generic/tex4ht/xtpipes.tex -runfiles size=13102 +runfiles size=13124 texmf-dist/scripts/tex4ht/ht.sh texmf-dist/scripts/tex4ht/htcopy.pl texmf-dist/scripts/tex4ht/htlatex.sh @@ -288409,6 +290698,8 @@ runfiles size=13102 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 @@ -288434,6 +290725,7 @@ runfiles size=13102 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 @@ -288487,6 +290779,7 @@ runfiles size=13102 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 @@ -288497,6 +290790,7 @@ runfiles size=13102 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 @@ -288630,13 +290924,17 @@ runfiles size=13102 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 @@ -288662,6 +290960,7 @@ runfiles size=13102 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 @@ -288679,6 +290978,7 @@ runfiles size=13102 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 @@ -288762,6 +291062,7 @@ runfiles size=13102 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/stmaryrd.4ht texmf-dist/tex/generic/tex4ht/subcaption.4ht texmf-dist/tex/generic/tex4ht/subeqnarray.4ht texmf-dist/tex/generic/tex4ht/subfigure.4ht @@ -296974,6 +299275,7 @@ runfiles size=13102 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 @@ -297317,6 +299619,7 @@ runfiles size=13102 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 @@ -299949,7 +302252,7 @@ catalogue-version 6.8 name texlive-common category TLCore -revision 71543 +revision 72854 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 @@ -299973,9 +302276,9 @@ docfiles size=220 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 @@ -300218,7 +302521,7 @@ docfiles size=376 name texlive-scripts category TLCore -revision 71949 +revision 72854 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. @@ -300226,7 +302529,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=572 +docfiles size=573 doc.html texmf-dist/doc/man/man1/fmtutil-sys.1 texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf @@ -301033,7 +303336,7 @@ docfiles size=329 name texlive.infra category TLCore -revision 71926 +revision 72854 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 @@ -301041,7 +303344,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 @@ -301082,7 +303385,7 @@ docfiles size=139 texmf-dist/scripts/texlive/NEWS tlpkg/README tlpkg/installer/COPYING.MinGW-runtime.txt -runfiles size=328 +runfiles size=330 LICENSE.CTAN LICENSE.TL release-texlive.txt @@ -302153,7 +304456,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 @@ -302188,7 +304491,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 @@ -302196,7 +304499,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 @@ -305189,6 +307492,28 @@ catalogue-license lppl1.3 catalogue-topics graphics graphics-in-tex pgf-tikz diagram-comm catalogue-version 1.0 +name tikz-decofonts +category Package +revision 72545 +shortdesc Simple decoration fontes, made with TikZ, for short texts +longdesc Three simple "decoration" fonts made with TikZ, for short +longdesc texts: paint brush; ink brush; pixelart brush. +docfiles size=43 + 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=10 + texmf-dist/tex/latex/tikz-decofonts/tikz-decofonts.sty +catalogue-contact-home https://github.com/cpierquet/tikz-decofonts +catalogue-contact-repository https://github.com/cpierquet/tikz-decofonts +catalogue-contact-support https://github.com/cpierquet/tikz-decofonts/issues +catalogue-ctan /graphics/pgf/contrib/tikz-decofonts +catalogue-license lppl1.3c cc-by-sa-4 +catalogue-topics amusements pgf-tikz graphics +catalogue-version 0.1.0 + name tikz-dependency category Package revision 54512 @@ -306177,22 +308502,22 @@ catalogue-version 0.1.1 name tikz3d-fr category Package -revision 67774 +revision 72297 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-contact-bugs https://github.com/cpierquet/tikz3dfr/issues +catalogue-contact-repository https://github.com/cpierquet/tikz3dfr 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 @@ -306250,18 +308575,18 @@ catalogue-version 0.13 name tikzdotncross category Package -revision 69382 +revision 72638 shortdesc Small set of macros for defining/marking coordinates and crossing (jumps) 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 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 @@ -306269,7 +308594,7 @@ 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-version 1.2 name tikzducks category Package @@ -306665,7 +308990,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 @@ -306681,7 +309006,7 @@ 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 @@ -308356,7 +310681,7 @@ catalogue-version 2.0 name tkz-grapheur category Package -revision 71805 +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 @@ -308364,7 +310689,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=734 +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 @@ -308374,13 +310699,13 @@ docfiles size=734 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=38 +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.6 +catalogue-version 0.2.0 name tkz-orm category Package @@ -311118,7 +313443,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 @@ -311127,7 +313452,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 @@ -314638,7 +316963,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 @@ -314646,7 +316971,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" @@ -314656,12 +316981,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 @@ -314915,7 +317239,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 @@ -314924,7 +317248,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 @@ -314957,7 +317281,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 @@ -314993,7 +317317,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 @@ -315047,7 +317371,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 @@ -316200,24 +318523,24 @@ catalogue-version 1.3b name trivialpursuit category Package -revision 68971 +revision 72615 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 @@ -316828,12 +319151,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 @@ -316858,16 +319181,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 @@ -316881,7 +319204,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 @@ -317049,30 +319372,51 @@ catalogue-version 1.3a name tutodoc category Package -revision 69343 +revision 72719 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=572 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=32 + texmf-dist/tex/latex/tutodoc/tutodoc-bw-admonitions.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-bw-listing.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-bw-main.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-bw-showcase.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-bw-version-n-change.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-color-admonitions.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-color-listing.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-color-main.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-color-showcase.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-color-version-n-change.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-dark-admonitions.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-dark-listing.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-dark-main.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-dark-showcase.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-dark-version-n-change.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-draft-admonitions.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-draft-listing.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-draft-main.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-draft-showcase.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-draft-version-n-change.css.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-main-locale-en.cfg.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-main-locale-es.cfg.cls.sty + texmf-dist/tex/latex/tutodoc/tutodoc-main-locale-fr.cfg.cls.sty + 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.6.2 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. @@ -317081,7 +319425,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 @@ -318258,7 +320601,7 @@ catalogue-version 12.12 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 @@ -318634,7 +320977,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 @@ -318795,13 +321138,13 @@ catalogue-version 2.6 name ucph-revy category Package -revision 69750 +revision 72484 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=223 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" @@ -318826,7 +321169,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.0.2 name ucs category Package @@ -319275,6 +321618,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 @@ -319356,7 +321733,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 @@ -319364,7 +321741,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 @@ -319389,7 +321766,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 @@ -323203,7 +325580,7 @@ catalogue-version 2.1 name unbtex category Package -revision 71708 +revision 72488 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 @@ -323213,14 +325590,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 @@ -323230,11 +325607,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 @@ -323243,12 +325617,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.3 name undar-digitacion category Package @@ -323871,13 +326247,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 @@ -323918,7 +326293,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 @@ -324426,7 +326801,7 @@ catalogue-topics font font-body font-sans font-proportional font-otf font-type1 name univie-ling category Package -revision 71883 +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 @@ -324439,7 +326814,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=1384 +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 @@ -324467,6 +326842,8 @@ docfiles size=1384 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 @@ -324481,7 +326858,7 @@ docfiles size=1384 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 @@ -324499,7 +326876,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.7 +catalogue-version 2.9 name unizgklasa category Package @@ -324684,7 +327061,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 @@ -324701,7 +327078,7 @@ 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 @@ -325249,7 +327626,7 @@ catalogue-topics engine japanese chinese korean multilingual name uptex-base category Package -revision 68298 +revision 72534 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. @@ -325272,7 +327649,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 @@ -326002,7 +328378,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 @@ -326011,7 +328387,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 @@ -326024,7 +328400,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 @@ -328896,7 +331272,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 @@ -328909,829 +331285,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 @@ -329904,7 +332358,7 @@ catalogue-version 7.1 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 @@ -329913,19 +332367,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 @@ -333574,6 +336028,37 @@ catalogue-license lppl1.3c catalogue-topics games expl3 catalogue-version 0.1 +name whatsnote +category Package +revision 72823 +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=197 + 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=7 + 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.0A + name wheelchart category Package revision 71928 @@ -333721,7 +336206,7 @@ catalogue-topics biblatex name wintools.windows category TLCore -revision 71448 +revision 72482 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"' @@ -333776,7 +336261,7 @@ runfiles size=4 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=11419 bin/windows/aftopl.exe bin/windows/bitmap2eps.exe bin/windows/bmeps.exe @@ -333841,7 +336326,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), @@ -333850,12 +336335,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 @@ -333864,7 +336349,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 @@ -334137,25 +336622,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 @@ -334626,12 +337111,14 @@ catalogue-version 0.3 name writeongrid category Package -revision 70939 +revision 72768 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 @@ -334649,7 +337136,7 @@ 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 @@ -336366,26 +338853,26 @@ catalogue-version 1.26 name xcharter-math category Package -revision 71883 +revision 72658 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.63 +catalogue-version 0.64 name xcite category Package @@ -336814,7 +339301,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 @@ -336825,7 +339312,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 @@ -336849,7 +339336,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 @@ -336894,7 +339381,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 @@ -336905,19 +339392,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 @@ -337848,7 +340333,7 @@ catalogue-version 2.1 name xetex category TLCore -revision 71363 +revision 71991 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 @@ -338550,12 +341035,12 @@ catalogue-version 1.5.1 name xindex category Package -revision 71279 +revision 72605 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=275 texmf-dist/doc/lualatex/xindex/CHANGELOG texmf-dist/doc/lualatex/xindex/Makefile texmf-dist/doc/lualatex/xindex/README.md details="Readme" @@ -338600,6 +341085,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 @@ -338627,7 +341116,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.62 name xindex.aarch64-linux category Package @@ -339660,13 +342149,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 @@ -339683,7 +342172,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 @@ -340439,6 +342928,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 @@ -341268,7 +343783,7 @@ catalogue-version 1.1 name yamlvars category Package -revision 69071 +revision 72052 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. @@ -341276,7 +343791,7 @@ docfiles size=26 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 @@ -342060,7 +344575,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 @@ -342068,7 +344583,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 @@ -349851,7 +352366,7 @@ 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 @@ -355354,7 +357869,7 @@ catalogue-version 2.35 name zref-check category Package -revision 68846 +revision 72795 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 @@ -355384,11 +357899,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.6 name zref-clever category Package -revision 71315 +revision 72798 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 @@ -355399,7 +357914,7 @@ 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 +docfiles size=309 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" @@ -355407,10 +357922,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=97 texmf-dist/source/latex/zref-clever/zref-clever.dtx texmf-dist/source/latex/zref-clever/zref-clever.ins -runfiles size=76 +runfiles size=77 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 @@ -355424,11 +357939,11 @@ 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.4.8 name zref-vario category Package -revision 68846 +revision 72795 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 @@ -355437,7 +357952,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" @@ -355454,7 +357969,36 @@ 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.11 + +name zugferd +category Package +revision 72795 +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=121 + 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=24 + texmf-dist/source/latex/zugferd/zugferd.dtx + texmf-dist/source/latex/zugferd/zugferd.ins +runfiles size=13 + 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.9a name zwgetfdate category Package 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/aiplans.tlpsrc b/Master/tlpkg/tlpsrc/aiplans.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/aiplans.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/beamertheme-gotham.tlpsrc b/Master/tlpkg/tlpsrc/beamertheme-gotham.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/beamertheme-gotham.tlpsrc diff --git a/Master/tlpkg/tlpsrc/beamertheme-mirage.tlpsrc b/Master/tlpkg/tlpsrc/beamertheme-mirage.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/tlpkg/tlpsrc/beamertheme-mirage.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/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/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/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/collection-binextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc index f05a7edd868..35a54dad764 100644 --- a/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc @@ -85,6 +85,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 a6388fd1574..fb3e420ca8a 100644 --- a/Master/tlpkg/tlpsrc/collection-context.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-context.tlpsrc @@ -9,6 +9,7 @@ depend context depend luajittex depend context-legacy depend jmn +depend context-companion-fonts # # rest are contrib modules from the garden: depend context-calendar-examples diff --git a/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc index c972fcf04a7..86c8cacdf57 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 @@ -66,6 +66,7 @@ depend cantarell depend carlito depend carolmin-ps depend cascadia-code +depend cascadiamono-otf depend ccicons depend cfr-initials depend cfr-lm @@ -92,7 +93,6 @@ depend comfortaa depend comicneue depend concmath-fonts depend concmath-otf -depend context-companion-fonts depend cookingsymbols depend cooperhewitt depend cormorantgaramond @@ -131,7 +131,7 @@ depend eczar depend eiad depend eiad-ltx depend ektype-tanka -depend electrum +depend electrumadf depend elvish depend epigrafica depend epsdice @@ -158,6 +158,7 @@ depend fontawesome depend fontawesome5 depend fontmfizz depend fonts-churchslavonic +depend fontscripts depend forum depend fourier depend fouriernc @@ -247,6 +248,7 @@ depend mdputu depend mdsymbol depend merriweather depend metsymb +depend mfb-oldstyle depend miama depend mintspirit depend missaali @@ -303,7 +305,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-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-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-langjapanese.tlpsrc b/Master/tlpkg/tlpsrc/collection-langjapanese.tlpsrc index 7efc3cb03ab..3095c4cb4b5 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 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-latexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc index 48d2aa13156..bdd458b6f3e 100644 --- a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc @@ -64,9 +64,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 +89,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 @@ -154,6 +156,7 @@ depend bxtexlogo depend calcage depend calctab depend calculator +depend calculatoritems depend calrsfs depend cals depend calxxxx-yyyy @@ -244,6 +247,7 @@ depend combelow depend combine depend comma depend commado +depend commalists-tools depend commedit depend comment depend commonunicode @@ -449,9 +453,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 @@ -478,6 +484,7 @@ depend etl depend etoc depend eukdate depend eulerpx +depend euromoney depend europasscv depend europecv depend everyhook @@ -505,6 +512,7 @@ depend export depend exsheets depend exsol depend extract +depend ezedits depend facsimile depend factura depend fail-fast @@ -531,6 +539,7 @@ depend filecontentsdef depend filedate depend fileinfo depend filemod +depend fillwith depend fink depend finstrut depend fistrum @@ -583,6 +592,7 @@ depend formular depend fragments depend frame depend framed +depend framedsyntax depend frankenstein depend frege depend froufrou @@ -672,6 +682,7 @@ depend harnon-cv depend harpoon depend hc depend he-she +depend hebdomon depend hep-acronym depend hep-float depend hep-math @@ -725,6 +736,7 @@ depend incgraph depend indextools depend inline-images depend inlinedef +depend inlinegraphicx depend inlinelabel depend inputenx depend inputtrc @@ -995,6 +1007,7 @@ depend nidanfloat depend ninecolors depend nlctdoc depend noconflict +depend nodepthtext depend noindentafter depend noitcrul depend nolbreaks @@ -1041,6 +1054,7 @@ depend padcount depend pagecolor depend pagecont depend pagegrid +depend pagelayout depend pagenote depend pagerange depend pageslts @@ -1065,7 +1079,6 @@ depend patch depend patchcmd depend pauldoc depend pawpict -depend pagelayout depend pax depend pbalance depend pbox @@ -1119,8 +1132,8 @@ depend polynom depend polynomial depend polytable depend postcards -depend postnotes depend poster-mac +depend postnotes depend powerdot depend ppr-prv depend ppt-slides @@ -1163,6 +1176,7 @@ depend quoting depend quotmark depend ran_toks depend randexam +depend randintlist depend randtext depend rccol depend rcs-multi @@ -1221,11 +1235,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 @@ -1315,6 +1331,7 @@ depend stdclsdv depend stdpage depend stealcaps depend stex +depend stocksize depend storebox depend storecmd depend stringstrings @@ -1361,12 +1378,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 @@ -1502,6 +1519,7 @@ depend warning depend warpcol depend was depend webquiz +depend whatsnote depend widetable depend widows-and-orphans depend williams @@ -1543,6 +1561,7 @@ depend xpatch depend xpeek depend xprintlen depend xpunctuate +depend xreview depend xsavebox depend xsim depend xstring @@ -1564,5 +1583,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-luatex.tlpsrc b/Master/tlpkg/tlpsrc/collection-luatex.tlpsrc index e41f0ac1bfa..88f3edaa7b8 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 diff --git a/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc b/Master/tlpkg/tlpsrc/collection-mathscience.tlpsrc index f7392151044..ed5fc5682a8 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 @@ -65,10 +66,12 @@ 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 +81,7 @@ depend derivative depend diffcoeff depend digiconfigs depend dijkstra +depend domaincoloring depend drawmatrix depend drawstack depend dyntree @@ -132,6 +136,7 @@ depend jupynotex depend karnaugh depend karnaugh-map depend karnaughmap +depend keytheorems depend kvmap depend letterswitharrows depend lie-hasse @@ -172,6 +177,7 @@ depend nchairx depend nicematrix depend nuc depend nucleardata +depend numbersets depend numerica depend numerica-plus depend numerica-tables @@ -251,6 +257,7 @@ depend sympytexpackage depend synproof depend t-angles depend tablor +depend temporal-logic depend tensind depend tensor depend tex-ewd diff --git a/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc b/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc index dc524e07175..d8a19acfe50 100644 --- a/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-metapost.tlpsrc @@ -34,6 +34,7 @@ depend metauml depend mfpic depend mfpic4ode depend minim-hatching +depend mp-geom2d depend mp3d depend mparrows depend mpattern diff --git a/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc b/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc index e751f936a58..7d432c00350 100644 --- a/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-pictures.tlpsrc @@ -170,6 +170,7 @@ depend smartdiagram depend spath3 depend spectralsequences depend strands +depend sunpath depend swimgraf depend syntaxdi depend table-fct @@ -181,6 +182,7 @@ depend tikz-bagua depend tikz-bayesnet depend tikz-bbox depend tikz-cd +depend tikz-decofonts depend tikz-dependency depend tikz-dimline depend tikz-ext diff --git a/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc b/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc index cb8473e38e4..01de47d433f 100644 --- a/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc @@ -65,6 +65,7 @@ depend dithesis depend ebook depend ebsthesis depend ecothesis +depend edmaths depend ejpecp depend ekaia depend elbioimp @@ -93,6 +94,7 @@ depend gzt depend h2020proposal depend hagenberg-thesis depend har2nat +depend hduthesis depend hecthese depend hep-paper depend heria @@ -163,6 +165,7 @@ depend njustthesis depend njuthesis depend njuvisual depend novel +depend nstc-proposal depend nwafuthesis depend nwejm depend nih @@ -187,6 +190,7 @@ depend prtec depend ptptex depend qrbill depend quantumarticle +depend rebuttal depend regulatory depend resphilosophica depend resumecls @@ -217,6 +221,7 @@ depend sphdthesis depend spie depend sr-vorl depend srdp-mathematik +depend sshrc-insight depend stellenbosch depend stellenbosch-2 depend suftesi @@ -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/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/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/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/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/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/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/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/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/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/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/markdown.tlpsrc b/Master/tlpkg/tlpsrc/markdown.tlpsrc index e69de29bb2d..60ad525b418 100644 --- a/Master/tlpkg/tlpsrc/markdown.tlpsrc +++ b/Master/tlpkg/tlpsrc/markdown.tlpsrc @@ -0,0 +1,21 @@ +depend l3kernel +depend lt3luabridge +depend lua-uni-algos +#soft amsfonts +#soft amsmath +#soft catchfile +#soft csvsimple +#soft epstopdf-pkg +#soft etoolbox +#soft fancyvrb +#soft gobble +#soft graphics +#soft grffile +#soft latex +#soft ltxcmds +#soft paralist +#soft pgf +#soft soul +#soft tools +#soft url +#soft verse 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/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/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/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/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/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/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/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/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/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/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/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 |