texlive[55267] trunk: tl-update-auto

commits+karl at tug.org commits+karl at tug.org
Sun May 24 23:59:25 CEST 2020


Revision: 55267
          http://tug.org/svn/texlive?view=revision&revision=55267
Author:   karl
Date:     2020-05-24 23:59:25 +0200 (Sun, 24 May 2020)
Log Message:
-----------
tl-update-auto

Modified Paths:
--------------
    trunk/Build/source/build-aux/texinfo.tex
    trunk/Master/doc.html
    trunk/Master/texmf-dist/tex/texinfo/texinfo.tex

Modified: trunk/Build/source/build-aux/texinfo.tex
===================================================================
--- trunk/Build/source/build-aux/texinfo.tex	2020-05-24 21:53:16 UTC (rev 55266)
+++ trunk/Build/source/build-aux/texinfo.tex	2020-05-24 21:59:25 UTC (rev 55267)
@@ -3,7 +3,7 @@
 % Load plain if necessary, i.e., if running under initex.
 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
 %
-\def\texinfoversion{2020-05-07.17}
+\def\texinfoversion{2020-05-22.11}
 %
 % Copyright 1985, 1986, 1988, 1990-2020 Free Software Foundation, Inc.
 %
@@ -33,7 +33,7 @@
 % The texinfo.tex in any given distribution could well be out
 % of date, so if that's what you're using, please check.
 %
-% Send bug reports to bug-texinfo at gnu.org.  Please include including a
+% Send bug reports to bug-texinfo at gnu.org.  Please include a
 % complete document in each bug report with which we can reproduce the
 % problem.  Patches are, of course, greatly appreciated.
 %
@@ -408,7 +408,8 @@
 \ifr at ggedbottom \kern-\dimen@ \vfil \fi}
 }
 
-% Check if we are on the first page of a chapter.
+% Check if we are on the first page of a chapter.  Used for printing headings.
+\newif\ifchapterpage
 \def\checkchapterpage{%
   % Get the chapter that was current at the end of the last page
   \ifcase1\the\savedtopmark\fi
@@ -418,12 +419,9 @@
   \let\curchaptername\thischaptername
   %
   \ifx\curchaptername\prevchaptername
-    \let\thischapterheading\thischapter
+    \chapterpagefalse
   \else
-    % \thischapterheading is the same as \thischapter except it is blank
-    % for the first page of a chapter.  This is to prevent the chapter name
-    % being shown twice.
-    \def\thischapterheading{}%
+    \chapterpagetrue
   \fi
 }
 
@@ -1013,7 +1011,7 @@
 \let\setfilename=\comment
 
 % @bye.
-\outer\def\bye{\pagealignmacro\tracingstats=1\ptexend}
+\outer\def\bye{\chappager\pagelabels\tracingstats=1\ptexend}
 
 
 \message{pdf,}
@@ -1140,6 +1138,45 @@
 \fi
 
 
+% Output page labels information.
+% See PDF reference v.1.7 p.594, section 8.3.1.
+\ifpdf
+\def\pagelabels{%
+  \def\title{0 << /P (T-) /S /D >>}%
+  \edef\roman{\the\romancount << /S /r >>}%
+  \edef\arabic{\the\arabiccount << /S /D >>}%
+  %
+  % Page label ranges must be increasing.  Remove any duplicates.
+  % (There is a slight chance of this being wrong if e.g. there is
+  % a @contents but no @titlepage, etc.)
+  %
+  \ifnum\romancount=0 \def\roman{}\fi
+  \ifnum\arabiccount=0 \def\title{}%
+  \else
+    \ifnum\romancount=\arabiccount \def\roman{}\fi
+  \fi
+  %
+  \ifnum\romancount<\arabiccount
+    \pdfcatalog{/PageLabels << /Nums [\title \roman \arabic ] >> }\relax
+  \else
+    \pdfcatalog{/PageLabels << /Nums [\title \arabic \roman ] >> }\relax
+  \fi
+}
+\else
+  \let\pagelabels\relax
+\fi
+
+\newcount\pagecount \pagecount=0
+\newcount\romancount \romancount=0
+\newcount\arabiccount \arabiccount=0
+\ifpdf
+  \let\ptxadvancepageno\advancepageno
+  \def\advancepageno{%
+    \ptxadvancepageno\global\advance\pagecount by 1
+  }
+\fi
+
+
 % PDF uses PostScript string constants for the names of xref targets,
 % for display in the outlines, and in other places.  Thus, we have to
 % double any backslashes.  Otherwise, a name like "\node" will be
@@ -3806,12 +3843,19 @@
 
 \newtoks\evenheadline    % headline on even pages
 \newtoks\oddheadline     % headline on odd pages
+\newtoks\evenchapheadline% headline on even pages with a new chapter
+\newtoks\oddchapheadline % headline on odd pages with a new chapter
 \newtoks\evenfootline    % footline on even pages
 \newtoks\oddfootline     % footline on odd pages
 
 % Now make \makeheadline and \makefootline in Plain TeX use those variables
-\headline={{\textfonts\rm \ifodd\pageno \the\oddheadline
-                            \else \the\evenheadline \fi}}
+\headline={{\textfonts\rm
+            \ifchapterpage
+              \ifodd\pageno\the\oddchapheadline\else\the\evenchapheadline\fi
+            \else
+              \ifodd\pageno\the\oddheadline\else\the\evenheadline\fi
+            \fi}}
+
 \footline={{\textfonts\rm \ifodd\pageno \the\oddfootline
                             \else \the\evenfootline \fi}\HEADINGShook}
 \let\HEADINGShook=\relax
@@ -3827,12 +3871,14 @@
 \def\evenheading{\parsearg\evenheadingxxx}
 \def\evenheadingxxx #1{\evenheadingyyy #1\|\|\|\|\finish}
 \def\evenheadingyyy #1\|#2\|#3\|#4\finish{%
-\global\evenheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
+  \global\evenheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}
+  \global\evenchapheadline=\evenheadline}
 
 \def\oddheading{\parsearg\oddheadingxxx}
 \def\oddheadingxxx #1{\oddheadingyyy #1\|\|\|\|\finish}
 \def\oddheadingyyy #1\|#2\|#3\|#4\finish{%
-\global\oddheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}}
+  \global\oddheadline={\rlap{\centerline{#2}}\line{#1\hfil#3}}%
+  \global\oddchapheadline=\oddheadline}
 
 \parseargdef\everyheading{\oddheadingxxx{#1}\evenheadingxxx{#1}}%
 
@@ -3899,8 +3945,8 @@
 \parseargdef\headings{\csname HEADINGS#1\endcsname}
 
 \def\headingsoff{% non-global headings elimination
-  \evenheadline={\hfil}\evenfootline={\hfil}%
-   \oddheadline={\hfil}\oddfootline={\hfil}%
+  \evenheadline={\hfil}\evenfootline={\hfil}\evenchapheadline={\hfil}%
+   \oddheadline={\hfil}\oddfootline={\hfil}\oddchapheadline={\hfil}%
 }
 
 \def\HEADINGSoff{{\globaldefs=1 \headingsoff}} % global setting
@@ -3907,17 +3953,18 @@
 \HEADINGSoff  % it's the default
 
 % When we turn headings on, set the page number to 1.
+\def\pageone{
+  \global\pageno=1
+  \global\arabiccount = \pagecount
+}
+
 % For double-sided printing, put current file name in lower left corner,
 % chapter name on inside top of right hand pages, document
 % title on inside top of left hand pages, and page numbers on outside top
 % edge of all pages.
 \def\HEADINGSdouble{%
-\global\pageno=1
-\global\evenfootline={\hfil}
-\global\oddfootline={\hfil}
-\global\evenheadline={\line{\folio\hfil\thistitle}}
-\global\oddheadline={\line{\thischapterheading\hfil\folio}}
-\global\let\contentsalignmacro = \chapoddpage
+\pageone
+\HEADINGSdoublex
 }
 \let\contentsalignmacro = \chappager
 
@@ -3924,12 +3971,8 @@
 % For single-sided printing, chapter title goes across top left of page,
 % page number on top right.
 \def\HEADINGSsingle{%
-\global\pageno=1
-\global\evenfootline={\hfil}
-\global\oddfootline={\hfil}
-\global\evenheadline={\line{\thischapterheading\hfil\folio}}
-\global\oddheadline={\line{\thischapterheading\hfil\folio}}
-\global\let\contentsalignmacro = \chappager
+\pageone
+\HEADINGSsinglex
 }
 \def\HEADINGSon{\HEADINGSdouble}
 
@@ -3939,7 +3982,9 @@
 \global\evenfootline={\hfil}
 \global\oddfootline={\hfil}
 \global\evenheadline={\line{\folio\hfil\thistitle}}
-\global\oddheadline={\line{\thischapterheading\hfil\folio}}
+\global\oddheadline={\line{\thischapter\hfil\folio}}
+\global\evenchapheadline={\line{\folio\hfil}}
+\global\oddchapheadline={\line{\hfil\folio}}
 \global\let\contentsalignmacro = \chapoddpage
 }
 
@@ -3947,11 +3992,25 @@
 \def\HEADINGSsinglex{%
 \global\evenfootline={\hfil}
 \global\oddfootline={\hfil}
-\global\evenheadline={\line{\thischapterheading\hfil\folio}}
-\global\oddheadline={\line{\thischapterheading\hfil\folio}}
+\global\evenheadline={\line{\thischapter\hfil\folio}}
+\global\oddheadline={\line{\thischapter\hfil\folio}}
+\global\evenchapheadline={\line{\hfil\folio}}
+\global\oddchapheadline={\line{\hfil\folio}}
 \global\let\contentsalignmacro = \chappager
 }
 
+% for @setchapternewpage off
+\def\HEADINGSsinglechapoff{%
+\pageone
+\global\evenfootline={\hfil}
+\global\oddfootline={\hfil}
+\global\evenheadline={\line{\thischapter\hfil\folio}}
+\global\oddheadline={\line{\thischapter\hfil\folio}}
+\global\evenchapheadline=\evenheadline
+\global\oddchapheadline=\oddheadline
+\global\let\contentsalignmacro = \chappager
+}
+
 % Subroutines used in generating headings
 % This produces Day Month Year style of output.
 % Only define if not already defined, in case a txi-??.tex file has set
@@ -5139,64 +5198,66 @@
   \let\lbracechar\{%
   \let\rbracechar\}%
   %
+  %
+  \let\do\indexnofontsdef
+  %
   % Non-English letters.
-  \def\AA{AA}%
-  \def\AE{AE}%
-  \def\DH{DZZ}%
-  \def\L{L}%
-  \def\OE{OE}%
-  \def\O{O}%
-  \def\TH{TH}%
-  \def\aa{aa}%
-  \def\ae{ae}%
-  \def\dh{dzz}%
-  \def\exclamdown{!}%
-  \def\l{l}%
-  \def\oe{oe}%
-  \def\ordf{a}%
-  \def\ordm{o}%
-  \def\o{o}%
-  \def\questiondown{?}%
-  \def\ss{ss}%
-  \def\th{th}%
+  \do\AA{AA}%
+  \do\AE{AE}%
+  \do\DH{DZZ}%
+  \do\L{L}%
+  \do\OE{OE}%
+  \do\O{O}%
+  \do\TH{TH}%
+  \do\aa{aa}%
+  \do\ae{ae}%
+  \do\dh{dzz}%
+  \do\exclamdown{!}%
+  \do\l{l}%
+  \do\oe{oe}%
+  \do\ordf{a}%
+  \do\ordm{o}%
+  \do\o{o}%
+  \do\questiondown{?}%
+  \do\ss{ss}%
+  \do\th{th}%
   %
-  \def\LaTeX{LaTeX}%
-  \def\TeX{TeX}%
+  \do\LaTeX{LaTeX}%
+  \do\TeX{TeX}%
   %
-  % Assorted special characters.  \defglyph gives the control sequence a
-  % definition that removes the {} that follows its use.
-  \defglyph\atchar{@}%
-  \defglyph\arrow{->}%
-  \defglyph\bullet{bullet}%
-  \defglyph\comma{,}%
-  \defglyph\copyright{copyright}%
-  \defglyph\dots{...}%
-  \defglyph\enddots{...}%
-  \defglyph\equiv{==}%
-  \defglyph\error{error}%
-  \defglyph\euro{euro}%
-  \defglyph\expansion{==>}%
-  \defglyph\geq{>=}%
-  \defglyph\guillemetleft{<<}%
-  \defglyph\guillemetright{>>}%
-  \defglyph\guilsinglleft{<}%
-  \defglyph\guilsinglright{>}%
-  \defglyph\leq{<=}%
-  \defglyph\lbracechar{\{}%
-  \defglyph\minus{-}%
-  \defglyph\point{.}%
-  \defglyph\pounds{pounds}%
-  \defglyph\print{-|}%
-  \defglyph\quotedblbase{"}%
-  \defglyph\quotedblleft{"}%
-  \defglyph\quotedblright{"}%
-  \defglyph\quoteleft{`}%
-  \defglyph\quoteright{'}%
-  \defglyph\quotesinglbase{,}%
-  \defglyph\rbracechar{\}}%
-  \defglyph\registeredsymbol{R}%
-  \defglyph\result{=>}%
-  \defglyph\textdegree{o}%
+  % Assorted special characters.
+  \do\atchar{@}%
+  \do\arrow{->}%
+  \do\bullet{bullet}%
+  \do\comma{,}%
+  \do\copyright{copyright}%
+  \do\dots{...}%
+  \do\enddots{...}%
+  \do\equiv{==}%
+  \do\error{error}%
+  \do\euro{euro}%
+  \do\expansion{==>}%
+  \do\geq{>=}%
+  \do\guillemetleft{<<}%
+  \do\guillemetright{>>}%
+  \do\guilsinglleft{<}%
+  \do\guilsinglright{>}%
+  \do\leq{<=}%
+  \do\lbracechar{\{}%
+  \do\minus{-}%
+  \do\point{.}%
+  \do\pounds{pounds}%
+  \do\print{-|}%
+  \do\quotedblbase{"}%
+  \do\quotedblleft{"}%
+  \do\quotedblright{"}%
+  \do\quoteleft{`}%
+  \do\quoteright{'}%
+  \do\quotesinglbase{,}%
+  \do\rbracechar{\}}%
+  \do\registeredsymbol{R}%
+  \do\result{=>}%
+  \do\textdegree{o}%
   %
   % We need to get rid of all macros, leaving only the arguments (if present).
   % Of course this is not nearly correct, but it is the best we can do for now.
@@ -5211,11 +5272,14 @@
   \macrolist
   \let\value\indexnofontsvalue
 }
-\def\defglyph#1#2{\def#1##1{#2}} % see above
 
+% Give the control sequence a definition that removes the {} that follows
+% its use, e.g. @AA{} -> AA
+\def\indexnofontsdef#1#2{\def#1##1{#2}}%
 
 
 
+
 % #1 is the index name, #2 is the entry text.
 \def\doind#1#2{%
   \iflinks
@@ -6423,18 +6487,16 @@
 \def\CHAPPAGoff{%
 \global\let\contentsalignmacro = \chappager
 \global\let\pchapsepmacro=\chapbreak
-\global\let\pagealignmacro=\chappager}
+\global\def\HEADINGSon{\HEADINGSsinglechapoff}}
 
 \def\CHAPPAGon{%
 \global\let\contentsalignmacro = \chappager
 \global\let\pchapsepmacro=\chappager
-\global\let\pagealignmacro=\chappager
 \global\def\HEADINGSon{\HEADINGSsingle}}
 
 \def\CHAPPAGodd{%
 \global\let\contentsalignmacro = \chapoddpage
 \global\let\pchapsepmacro=\chapoddpage
-\global\let\pagealignmacro=\chapoddpage
 \global\def\HEADINGSon{\HEADINGSdouble}}
 
 \CHAPPAGon
@@ -6799,9 +6861,7 @@
 %
 \def\startcontents#1{%
   % If @setchapternewpage on, and @headings double, the contents should
-  % start on an odd page, unlike chapters.  Thus, we maintain
-  % \contentsalignmacro in parallel with \pagealignmacro.
-  % From: Torbjorn Granlund <tege at matematik.su.se>
+  % start on an odd page, unlike chapters.
   \contentsalignmacro
   \immediate\closeout\tocfile
   %
@@ -6816,6 +6876,9 @@
     %
     % Roman numerals for page numbers.
     \ifnum \pageno>0 \global\pageno = \lastnegativepageno \fi
+    \def\thistitle{}% no title in double-sided headings
+    % Record where the Roman numerals started.
+    \ifnum\romancount=0 \global\romancount=\pagecount \fi
 }
 
 % redefined for the two-volume lispref.  We always output on
@@ -6838,8 +6901,7 @@
     \fi
     \closein 1
   \endgroup
-  \lastnegativepageno = \pageno
-  \global\pageno = \savepageno
+  \contentsendroman
 }
 
 % And just the chapters.
@@ -6874,10 +6936,20 @@
     \vfill \eject
     \contentsalignmacro % in case @setchapternewpage odd is in effect
   \endgroup
+  \contentsendroman
+}
+\let\shortcontents = \summarycontents
+
+% Get ready to use Arabic numerals again
+\def\contentsendroman{%
   \lastnegativepageno = \pageno
   \global\pageno = \savepageno
+  %
+  % If \romancount > \arabiccount, the contents are at the end of the
+  % document.  Otherwise, advance where the Arabic numerals start for
+  % the page numbers.
+  \ifnum\romancount>\arabiccount\else\global\arabiccount=\pagecount\fi
 }
-\let\shortcontents = \summarycontents
 
 % Typeset the label for a chapter or appendix for the short contents.
 % The arg is, e.g., `A' for an appendix, or `3' for a chapter.
@@ -7559,7 +7631,7 @@
       \wlog{texinfo.tex: doing @verbatiminclude of #1^^J}%
       \edef\tmp{\noexpand\input #1 }
       \expandafter
-    }\tmp
+    }\expandafter\starttabbox\tmp\egroup
     \afterenvbreak
   }%
 }
@@ -10725,6 +10797,8 @@
   \DeclareUnicodeCharacter{0233}{\=y}%
   \DeclareUnicodeCharacter{0237}{\dotless{j}}%
   %
+  \DeclareUnicodeCharacter{02BC}{'}%
+  %
   \DeclareUnicodeCharacter{02DB}{\ogonek{ }}%
   %
   % Greek letters upper case

Modified: trunk/Master/doc.html
===================================================================
--- trunk/Master/doc.html	2020-05-24 21:53:16 UTC (rev 55266)
+++ trunk/Master/doc.html	2020-05-24 21:59:25 UTC (rev 55267)
@@ -1,8 +1,8 @@
 <html><head>
- <title>TeX Live documentation</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1">
- <style type="text/css"> ol { padding-left: 4em } </style>
+<title>TeX Live documentation</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<style type="text/css"> ol { padding-left: 4em } </style>
 </head><body>
 <h1>TeX Live documentation</h1>
 
@@ -23,9 +23,9 @@
 
 <ol start="1">
 
-<li id="12many"><b><a href="texmf-dist/doc/latex/12many">12many</a></b><small>
+<li id="12many"><b><a href="texmf-dist/doc/latex/12many/">12many</a></b><small>
 (<a href="https://ctan.org/pkg/12many">CTAN</a>):
-Generalising mathematical index sets
+Generalising mathematical index sets. 
 <a href="texmf-dist/doc/latex/12many/12many.pdf">12many.pdf</a>.
 </small></li>
 
@@ -35,9 +35,8 @@
 
 <ol start="2">
 
-<li id="2up"><b><a href="texmf-dist/doc/generic/2up">2up</a></b><small>
-(<a href="https://ctan.org/pkg/2up">CTAN</a>):
-Macros to print two-up
+<li id="2up"><b><a href="texmf-dist/doc/generic/2up/">2up</a></b><small>
+Macros to print two-up. 
 <a href="texmf-dist/doc/generic/2up/2up-doc.pdf">2up-doc.pdf</a>.
 </small></li>
 
@@ -47,34 +46,34 @@
 
 <ol start="3">
 
-<li id="a0poster"><b><a href="texmf-dist/doc/latex/a0poster">a0poster</a></b><small>
+<li id="a0poster"><b><a href="texmf-dist/doc/latex/a0poster/">a0poster</a></b><small>
 (<a href="https://ctan.org/pkg/a0poster">CTAN</a>):
-Support for designing posters on large paper
+Support for designing posters on large paper. 
 <a href="texmf-dist/doc/latex/a0poster/a0.pdf">a0.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/a0poster/a0_eng.pdf">a0_eng.pdf</a>.
 </small></li>
 
-<li id="a2ping"><b><a href="texmf-dist/doc/man/man1">a2ping</a></b><small>
+<li id="a2ping"><b><a href="texmf-dist/doc/man/man1/">a2ping</a></b><small>
 (<a href="https://ctan.org/pkg/a2ping">CTAN</a>):
-Advanced PS, PDF, EPS converter
+Advanced PS, PDF, EPS converter. 
 <a href="texmf-dist/doc/man/man1/a2ping.man1.pdf">a2ping.man1.pdf</a>.
 </small></li>
 
-<li id="a4wide"><b><a href="texmf-dist/doc/latex/a4wide">a4wide</a></b><small>
+<li id="a4wide"><b><a href="texmf-dist/doc/latex/a4wide/">a4wide</a></b><small>
 (<a href="https://ctan.org/pkg/a4wide">CTAN</a>):
-"Wide" a4 layout
+"Wide" a4 layout. 
 <a href="texmf-dist/doc/latex/a4wide/a4wide.pdf">a4wide.pdf</a>.
 </small></li>
 
-<li id="a5comb"><b><a href="texmf-dist/doc/latex/a5comb">a5comb</a></b><small>
+<li id="a5comb"><b><a href="texmf-dist/doc/latex/a5comb/">a5comb</a></b><small>
 (<a href="https://ctan.org/pkg/a5comb">CTAN</a>):
-Support for a5 paper sizes
+Support for a5 paper sizes. 
 <a href="texmf-dist/doc/latex/a5comb/a5comb.pdf">a5comb.pdf</a>.
 </small></li>
 
-<li id="aastex"><b><a href="texmf-dist/doc/latex/aastex">aastex</a></b><small>
+<li id="aastex"><b><a href="texmf-dist/doc/latex/aastex/">aastex</a></b><small>
 (<a href="https://ctan.org/pkg/aastex">CTAN</a>):
-Macros for Manuscript Preparation for AAS Journals
+Macros for Manuscript Preparation for AAS Journals. 
 <a href="texmf-dist/doc/latex/aastex/HV_Cet.pdf">HV_Cet.pdf</a>
 <a href="texmf-dist/doc/latex/aastex/KT_Eri.pdf">KT_Eri.pdf</a>
 <a href="texmf-dist/doc/latex/aastex/LMC_2009.pdf">LMC_2009.pdf</a>
@@ -88,21 +87,21 @@
 <a href="texmf-dist/doc/latex/aastex/sample63.pdf">sample63.pdf</a>.
 </small></li>
 
-<li id="abc"><b><a href="texmf-dist/doc/latex/abc">abc</a></b><small>
+<li id="abc"><b><a href="texmf-dist/doc/latex/abc/">abc</a></b><small>
 (<a href="https://ctan.org/pkg/abc">CTAN</a>):
-Support ABC music notation in LaTeX
+Support ABC music notation in LaTeX. 
 <a href="texmf-dist/doc/latex/abc/abc.pdf">abc.pdf</a>.
 </small></li>
 
-<li id="abnt"><b><a href="texmf-dist/doc/latex/abnt">abnt</a></b><small>
+<li id="abnt"><b><a href="texmf-dist/doc/latex/abnt/">abnt</a></b><small>
 (<a href="https://ctan.org/pkg/abnt">CTAN</a>):
-Typesetting academic works according to ABNT rules
+Typesetting academic works according to ABNT rules. 
 <a href="texmf-dist/doc/latex/abnt/abnt-doc.pdf">abnt-doc.pdf</a>.
 </small></li>
 
-<li id="abntex2"><b><a href="texmf-dist/doc/latex/abntex2">abntex2</a></b><small>
+<li id="abntex2"><b><a href="texmf-dist/doc/latex/abntex2/">abntex2</a></b><small>
 (<a href="https://ctan.org/pkg/abntex2">CTAN</a>):
-Typeset technical and scientific Brazilian documents based on ABNT rules
+Typeset technical and scientific Brazilian documents based on ABNT rules. 
 <a href="texmf-dist/doc/latex/abntex2/abntex2.pdf">abntex2.pdf</a> (pt-br) 
 <a href="texmf-dist/doc/latex/abntex2/abntex2cite-alf.pdf">abntex2cite-alf.pdf</a> (pt-br) 
 <a href="texmf-dist/doc/latex/abntex2/abntex2cite.pdf">abntex2cite.pdf</a> (pt-br) 
@@ -117,66 +116,65 @@
 <a href="texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.pdf">abntex2-modelo-trabalho-academico.pdf</a> (pt-br).
 </small></li>
 
-<li id="abraces"><b><a href="texmf-dist/doc/latex/abraces">abraces</a></b><small>
+<li id="abraces"><b><a href="texmf-dist/doc/latex/abraces/">abraces</a></b><small>
 (<a href="https://ctan.org/pkg/abraces">CTAN</a>):
-Asymmetric over-/underbraces in maths
+Asymmetric over-/underbraces in maths. 
 <a href="texmf-dist/doc/latex/abraces/abraces-doc.pdf">abraces-doc.pdf</a>.
 </small></li>
 
-<li id="abstract"><b><a href="texmf-dist/doc/latex/abstract">abstract</a></b><small>
+<li id="abstract"><b><a href="texmf-dist/doc/latex/abstract/">abstract</a></b><small>
 (<a href="https://ctan.org/pkg/abstract">CTAN</a>):
-Control the typesetting of the abstract environment
+Control the typesetting of the abstract environment. 
 <a href="texmf-dist/doc/latex/abstract/abstract.pdf">abstract.pdf</a>.
 </small></li>
 
-<li id="abstyles"><b><a href="texmf-dist/doc/bibtex/abstyles">abstyles</a></b><small>
-(<a href="https://ctan.org/pkg/abstyles">CTAN</a>):
-Adaptable BibTeX styles
+<li id="abstyles"><b><a href="texmf-dist/doc/bibtex/abstyles/">abstyles</a></b><small>
+Adaptable BibTeX styles. 
 <a href="texmf-dist/doc/bibtex/abstyles/abstdok.pdf">abstdok.pdf</a> (de).
 </small></li>
 
-<li id="academicons"><b><a href="texmf-dist/doc/fonts/academicons">academicons</a></b><small>
+<li id="academicons"><b><a href="texmf-dist/doc/fonts/academicons/">academicons</a></b><small>
 (<a href="https://ctan.org/pkg/academicons">CTAN</a>):
-Font containing high quality icons of online academic profiles
+Font containing high quality icons of online academic profiles. 
 <a href="texmf-dist/doc/fonts/academicons/academicons.pdf">academicons.pdf</a>.
 </small></li>
 
-<li id="accanthis"><b><a href="texmf-dist/doc/fonts/accanthis">accanthis</a></b><small>
+<li id="accanthis"><b><a href="texmf-dist/doc/fonts/accanthis/">accanthis</a></b><small>
 (<a href="https://ctan.org/pkg/accanthis">CTAN</a>):
-Accanthis fonts, with LaTeX support
+Accanthis fonts, with LaTeX support. 
 <a href="texmf-dist/doc/fonts/accanthis/Accanthis-Cat.pdf">Accanthis-Cat.pdf</a> (fr) 
 <a href="texmf-dist/doc/fonts/accanthis/accanthis-samples.pdf">accanthis-samples.pdf</a>.
 </small></li>
 
-<li id="accents"><b><a href="texmf-dist/doc/latex/accents">accents</a></b><small>
+<li id="accents"><b><a href="texmf-dist/doc/latex/accents/">accents</a></b><small>
 (<a href="https://ctan.org/pkg/accents">CTAN</a>):
-Multiple mathematical accents
+Multiple mathematical accents. 
 <a href="texmf-dist/doc/latex/accents/accents.pdf">accents.pdf</a>.
 </small></li>
 
-<li id="accessibility"><b><a href="texmf-dist/doc/latex/accessibility">accessibility</a></b><small>
+<li id="accessibility"><b><a href="texmf-dist/doc/latex/accessibility/">accessibility</a></b><small>
 (<a href="https://ctan.org/pkg/accessibility">CTAN</a>):
-Create tagged and structured PDF files
+Create tagged and structured PDF files. 
 <a href="texmf-dist/doc/latex/accessibility/accessibility-Anleitung-DE.pdf">accessibility-Anleitung-DE.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/accessibility/accessibility.pdf">accessibility.pdf</a>.
 </small></li>
 
-<li id="accsupp"><b><a href="texmf-dist/doc/latex/accsupp">accsupp</a></b><small>
+<li id="accsupp"><b><a href="texmf-dist/doc/latex/accsupp/">accsupp</a></b><small>
 (<a href="https://ctan.org/pkg/accsupp">CTAN</a>):
-Better accessibility support for PDF files
+Better accessibility support for PDF files. 
 <a href="texmf-dist/doc/latex/accsupp/accsupp.pdf">accsupp.pdf</a>.
 </small></li>
 
-<li id="achemso"><b><a href="texmf-dist/doc/latex/achemso">achemso</a></b><small>
+<li id="achemso"><b><a href="texmf-dist/doc/latex/achemso/">achemso</a></b><small>
 (<a href="https://ctan.org/pkg/achemso">CTAN</a>):
-Support for American Chemical Society journal submissions
+Support for American Chemical Society journal submissions. 
 <a href="texmf-dist/doc/latex/achemso/achemso-demo.pdf">achemso-demo.pdf</a>
 <a href="texmf-dist/doc/latex/achemso/achemso.pdf">achemso.pdf</a>.
 </small></li>
 
-<li id="acmart"><b><a href="texmf-dist/doc/latex/acmart">acmart</a></b><small>
+<li id="acmart"><b><a href="texmf-dist/doc/latex/acmart/">acmart</a></b><small>
 (<a href="https://ctan.org/pkg/acmart">CTAN</a>):
-Class for typesetting publications of ACM
+Class for typesetting publications of ACM. 
 <a href="texmf-dist/doc/latex/acmart/acmart.pdf">acmart.pdf</a>
 <a href="texmf-dist/doc/latex/acmart/acmguide.pdf">acmguide.pdf</a>
 <a href="texmf-dist/doc/latex/acmart/samples/sample-acmlarge.pdf">sample-acmlarge.pdf</a>
@@ -192,15 +190,15 @@
 <a href="texmf-dist/doc/latex/acmart/samples/sampleteaser.pdf">sampleteaser.pdf</a>.
 </small></li>
 
-<li id="acmconf"><b><a href="texmf-dist/doc/latex/acmconf">acmconf</a></b><small>
+<li id="acmconf"><b><a href="texmf-dist/doc/latex/acmconf/">acmconf</a></b><small>
 (<a href="https://ctan.org/pkg/acmconf">CTAN</a>):
-Class for ACM conference proceedings
+Class for ACM conference proceedings. 
 <a href="texmf-dist/doc/latex/acmconf/acmconf.pdf">acmconf.pdf</a>.
 </small></li>
 
-<li id="acro"><b><a href="texmf-dist/doc/latex/acro">acro</a></b><small>
+<li id="acro"><b><a href="texmf-dist/doc/latex/acro/">acro</a></b><small>
 (<a href="https://ctan.org/pkg/acro">CTAN</a>):
-Typeset acronyms
+Typeset acronyms. 
 <a href="texmf-dist/doc/latex/acro/acro-manual.pdf">acro-manual.pdf</a>
 <a href="texmf-dist/doc/latex/acro/examples/acro.example.acflike.pdf">acro.example.acflike.pdf</a>
 <a href="texmf-dist/doc/latex/acro/examples/acro.example.basic.pdf">acro.example.basic.pdf</a>
@@ -217,149 +215,148 @@
 <a href="texmf-dist/doc/latex/acro/examples/acro.example.units.pdf">acro.example.units.pdf</a>.
 </small></li>
 
-<li id="acronym"><b><a href="texmf-dist/doc/latex/acronym">acronym</a></b><small>
+<li id="acronym"><b><a href="texmf-dist/doc/latex/acronym/">acronym</a></b><small>
 (<a href="https://ctan.org/pkg/acronym">CTAN</a>):
-Expand acronyms at least once
+Expand acronyms at least once. 
 <a href="texmf-dist/doc/latex/acronym/acronym.pdf">acronym.pdf</a>.
 </small></li>
 
-<li id="acroterm"><b><a href="texmf-dist/doc/latex/acroterm">acroterm</a></b><small>
+<li id="acroterm"><b><a href="texmf-dist/doc/latex/acroterm/">acroterm</a></b><small>
 (<a href="https://ctan.org/pkg/acroterm">CTAN</a>):
-Manage and index acronyms and terms
+Manage and index acronyms and terms. 
 <a href="texmf-dist/doc/latex/acroterm/acroterm.pdf">acroterm.pdf</a>.
 </small></li>
 
-<li id="active-conf"><b><a href="texmf-dist/doc/latex/active-conf">active-conf</a></b><small>
+<li id="active-conf"><b><a href="texmf-dist/doc/latex/active-conf/">active-conf</a></b><small>
 (<a href="https://ctan.org/pkg/active-conf">CTAN</a>):
-Class for typesetting ACTIVE conference papers
+Class for typesetting ACTIVE conference papers. 
 <a href="texmf-dist/doc/latex/active-conf/active-conf.pdf">active-conf.pdf</a>
 <a href="texmf-dist/doc/latex/active-conf/example/header-logo-2006.pdf">header-logo-2006.pdf</a>.
 </small></li>
 
-<li id="actuarialangle"><b><a href="texmf-dist/doc/latex/actuarialangle">actuarialangle</a></b><small>
+<li id="actuarialangle"><b><a href="texmf-dist/doc/latex/actuarialangle/">actuarialangle</a></b><small>
 (<a href="https://ctan.org/pkg/actuarialangle">CTAN</a>):
-Angle symbol denoting a duration in actuarial and financial notation
+Angle symbol denoting a duration in actuarial and financial notation. 
 <a href="texmf-dist/doc/latex/actuarialangle/actuarialangle.pdf">actuarialangle.pdf</a>.
 </small></li>
 
-<li id="actuarialsymbol"><b><a href="texmf-dist/doc/latex/actuarialsymbol">actuarialsymbol</a></b><small>
+<li id="actuarialsymbol"><b><a href="texmf-dist/doc/latex/actuarialsymbol/">actuarialsymbol</a></b><small>
 (<a href="https://ctan.org/pkg/actuarialsymbol">CTAN</a>):
-Actuarial symbols of life contingencies and financial mathematics
+Actuarial symbols of life contingencies and financial mathematics. 
 <a href="texmf-dist/doc/latex/actuarialsymbol/actuarialsymbol.pdf">actuarialsymbol.pdf</a>.
 </small></li>
 
-<li id="addfont"><b><a href="texmf-dist/doc/latex/addfont">addfont</a></b><small>
+<li id="addfont"><b><a href="texmf-dist/doc/latex/addfont/">addfont</a></b><small>
 (<a href="https://ctan.org/pkg/addfont">CTAN</a>):
-Easier use of fonts without LaTeX support
+Easier use of fonts without LaTeX support. 
 <a href="texmf-dist/doc/latex/addfont/addfont.pdf">addfont.pdf</a>.
 </small></li>
 
-<li id="addliga"><b><a href="texmf-dist/doc/lualatex/addliga">addliga</a></b><small>
+<li id="addliga"><b><a href="texmf-dist/doc/lualatex/addliga/">addliga</a></b><small>
 (<a href="https://ctan.org/pkg/addliga">CTAN</a>):
-Access basic ligatures in legacy TrueType fonts
+Access basic ligatures in legacy TrueType fonts. 
 <a href="texmf-dist/doc/lualatex/addliga/addliga.pdf">addliga.pdf</a>.
 </small></li>
 
-<li id="addlines"><b><a href="texmf-dist/doc/latex/addlines">addlines</a></b><small>
+<li id="addlines"><b><a href="texmf-dist/doc/latex/addlines/">addlines</a></b><small>
 (<a href="https://ctan.org/pkg/addlines">CTAN</a>):
-A user-friendly wrapper around \enlargethispage
+A user-friendly wrapper around \enlargethispage. 
 <a href="texmf-dist/doc/latex/addlines/addlines.pdf">addlines.pdf</a>.
 </small></li>
 
-<li id="adfathesis"><b><a href="texmf-dist/doc/latex/adfathesis">adfathesis</a></b><small>
+<li id="adfathesis"><b><a href="texmf-dist/doc/latex/adfathesis/">adfathesis</a></b><small>
 (<a href="https://ctan.org/pkg/adfathesis">CTAN</a>):
-Australian Defence Force Academy thesis format
+Australian Defence Force Academy thesis format. 
 <a href="texmf-dist/doc/latex/adfathesis/adfathesis.pdf">adfathesis.pdf</a>.
 </small></li>
 
-<li id="adforn"><b><a href="texmf-dist/doc/fonts/adforn">adforn</a></b><small>
+<li id="adforn"><b><a href="texmf-dist/doc/fonts/adforn/">adforn</a></b><small>
 (<a href="https://ctan.org/pkg/adforn">CTAN</a>):
-OrnementsADF font with TeX/LaTeX support
+OrnementsADF font with TeX/LaTeX support. 
 <a href="texmf-dist/doc/fonts/adforn/adforn.pdf">adforn.pdf</a>.
 </small></li>
 
-<li id="adfsymbols"><b><a href="texmf-dist/doc/fonts/adfsymbols">adfsymbols</a></b><small>
+<li id="adfsymbols"><b><a href="texmf-dist/doc/fonts/adfsymbols/">adfsymbols</a></b><small>
 (<a href="https://ctan.org/pkg/adfsymbols">CTAN</a>):
-SymbolsADF with TeX/LaTeX support
+SymbolsADF with TeX/LaTeX support. 
 <a href="texmf-dist/doc/fonts/adfsymbols/adfsymbols.pdf">adfsymbols.pdf</a>.
 </small></li>
 
-<li id="adigraph"><b><a href="texmf-dist/doc/latex/adigraph">adigraph</a></b><small>
+<li id="adigraph"><b><a href="texmf-dist/doc/latex/adigraph/">adigraph</a></b><small>
 (<a href="https://ctan.org/pkg/adigraph">CTAN</a>):
-Augmenting directed graphs
+Augmenting directed graphs. 
 <a href="texmf-dist/doc/latex/adigraph/adigraph_documentation.pdf">adigraph_documentation.pdf</a>
 <a href="texmf-dist/doc/latex/adigraph/adigraph_working_test.pdf">adigraph_working_test.pdf</a>.
 </small></li>
 
-<li id="adjmulticol"><b><a href="texmf-dist/doc/latex/adjmulticol">adjmulticol</a></b><small>
+<li id="adjmulticol"><b><a href="texmf-dist/doc/latex/adjmulticol/">adjmulticol</a></b><small>
 (<a href="https://ctan.org/pkg/adjmulticol">CTAN</a>):
-Adjusting margins for multicolumn and single column output
+Adjusting margins for multicolumn and single column output. 
 <a href="texmf-dist/doc/latex/adjmulticol/adjmulticol.pdf">adjmulticol.pdf</a>
 <a href="texmf-dist/doc/latex/adjmulticol/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="adjustbox"><b><a href="texmf-dist/doc/latex/adjustbox">adjustbox</a></b><small>
+<li id="adjustbox"><b><a href="texmf-dist/doc/latex/adjustbox/">adjustbox</a></b><small>
 (<a href="https://ctan.org/pkg/adjustbox">CTAN</a>):
-Graphics package-alike macros for "general" boxes
+Graphics package-alike macros for "general" boxes. 
 <a href="texmf-dist/doc/latex/adjustbox/adjcalc.pdf">adjcalc.pdf</a>
 <a href="texmf-dist/doc/latex/adjustbox/adjustbox.pdf">adjustbox.pdf</a>
 <a href="texmf-dist/doc/latex/adjustbox/trimclip.pdf">trimclip.pdf</a>.
 </small></li>
 
-<li id="adrconv"><b><a href="texmf-dist/doc/latex/adrconv">adrconv</a></b><small>
+<li id="adrconv"><b><a href="texmf-dist/doc/latex/adrconv/">adrconv</a></b><small>
 (<a href="https://ctan.org/pkg/adrconv">CTAN</a>):
-BibTeX styles to implement an address database
+BibTeX styles to implement an address database. 
 <a href="texmf-dist/doc/latex/adrconv/adrconv.pdf">adrconv.pdf</a>
 <a href="texmf-dist/doc/latex/adrconv/adrguide.pdf">adrguide.pdf</a> (de).
 </small></li>
 
-<li id="adtrees"><b><a href="texmf-dist/doc/latex/adtrees">adtrees</a></b><small>
+<li id="adtrees"><b><a href="texmf-dist/doc/latex/adtrees/">adtrees</a></b><small>
 (<a href="https://ctan.org/pkg/adtrees">CTAN</a>):
-Macros for drawing adpositional trees
+Macros for drawing adpositional trees. 
 <a href="texmf-dist/doc/latex/adtrees/adtreesdoc.pdf">adtreesdoc.pdf</a>.
 </small></li>
 
-<li id="advdate"><b><a href="texmf-dist/doc/latex/advdate">advdate</a></b><small>
+<li id="advdate"><b><a href="texmf-dist/doc/latex/advdate/">advdate</a></b><small>
 (<a href="https://ctan.org/pkg/advdate">CTAN</a>):
-Print a date relative to "today"
+Print a date relative to "today". 
 <a href="texmf-dist/doc/latex/advdate/advdate.pdf">advdate.pdf</a>.
 </small></li>
 
-<li id="aeguill"><b><a href="texmf-dist/doc/latex/aeguill">aeguill</a></b><small>
+<li id="aeguill"><b><a href="texmf-dist/doc/latex/aeguill/">aeguill</a></b><small>
 (<a href="https://ctan.org/pkg/aeguill">CTAN</a>):
-Add several kinds of guillemets to the ae fonts
+Add several kinds of guillemets to the ae fonts. 
 <a href="texmf-dist/doc/latex/aeguill/guil-test1.pdf">guil-test1.pdf</a>
 <a href="texmf-dist/doc/latex/aeguill/guil-test2.pdf">guil-test2.pdf</a>.
 </small></li>
 
-<li id="afm2pl"><b><a href="texmf-dist/doc/man/man1">afm2pl</a></b><small>
-(<a href="https://ctan.org/pkg/afm2pl">CTAN</a>):
-convert AFM to TeX property list (.pl) metrics
+<li id="afm2pl"><b><a href="texmf-dist/doc/man/man1/">afm2pl</a></b><small>
+convert AFM to TeX property list (.pl) metrics. 
 <a href="texmf-dist/doc/man/man1/afm2pl.man1.pdf">afm2pl.man1.pdf</a>.
 </small></li>
 
-<li id="afparticle"><b><a href="texmf-dist/doc/latex/afparticle">afparticle</a></b><small>
+<li id="afparticle"><b><a href="texmf-dist/doc/latex/afparticle/">afparticle</a></b><small>
 (<a href="https://ctan.org/pkg/afparticle">CTAN</a>):
-Typesetting articles for Archives of Forensic Psychology
+Typesetting articles for Archives of Forensic Psychology. 
 <a href="texmf-dist/doc/latex/afparticle/afparticle.pdf">afparticle.pdf</a>
 <a href="texmf-dist/doc/latex/afparticle/afpsample.pdf">afpsample.pdf</a>.
 </small></li>
 
-<li id="afthesis"><b><a href="texmf-dist/doc/latex/afthesis">afthesis</a></b><small>
+<li id="afthesis"><b><a href="texmf-dist/doc/latex/afthesis/">afthesis</a></b><small>
 (<a href="https://ctan.org/pkg/afthesis">CTAN</a>):
-Air Force Institute of Technology thesis class
+Air Force Institute of Technology thesis class. 
 <a href="texmf-dist/doc/latex/afthesis/usethesis.pdf">usethesis.pdf</a>.
 </small></li>
 
-<li id="aguplus"><b><a href="texmf-dist/doc/latex/aguplus">aguplus</a></b><small>
+<li id="aguplus"><b><a href="texmf-dist/doc/latex/aguplus/">aguplus</a></b><small>
 (<a href="https://ctan.org/pkg/aguplus">CTAN</a>):
-Styles for American Geophysical Union
+Styles for American Geophysical Union. 
 <a href="texmf-dist/doc/latex/aguplus/aguplus.pdf">aguplus.pdf</a>.
 </small></li>
 
-<li id="aiaa"><b><a href="texmf-dist/doc/latex/aiaa">aiaa</a></b><small>
+<li id="aiaa"><b><a href="texmf-dist/doc/latex/aiaa/">aiaa</a></b><small>
 (<a href="https://ctan.org/pkg/aiaa">CTAN</a>):
-Typeset AIAA conference papers
+Typeset AIAA conference papers. 
 <a href="texmf-dist/doc/latex/aiaa/aiaa.pdf">aiaa.pdf</a>
 <a href="texmf-dist/doc/latex/aiaa/author_guide.pdf">author_guide.pdf</a>
 <a href="texmf-dist/doc/latex/aiaa/figure_magnet.pdf">figure_magnet.pdf</a>
@@ -368,101 +365,101 @@
 <a href="texmf-dist/doc/latex/aiaa/template_basic.pdf">template_basic.pdf</a>.
 </small></li>
 
-<li id="akletter"><b><a href="texmf-dist/doc/latex/akletter">akletter</a></b><small>
+<li id="akletter"><b><a href="texmf-dist/doc/latex/akletter/">akletter</a></b><small>
 (<a href="https://ctan.org/pkg/akletter">CTAN</a>):
-Comprehensive letter support
+Comprehensive letter support. 
 <a href="texmf-dist/doc/latex/akletter/letterdoc.pdf">letterdoc.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/akletter/lettereng.pdf">lettereng.pdf</a>.
 </small></li>
 
-<li id="akshar"><b><a href="texmf-dist/doc/latex/akshar">akshar</a></b><small>
+<li id="akshar"><b><a href="texmf-dist/doc/latex/akshar/">akshar</a></b><small>
 (<a href="https://ctan.org/pkg/akshar">CTAN</a>):
-Support for syllables in the Devanagari script
+Support for syllables in the Devanagari script. 
 <a href="texmf-dist/doc/latex/akshar/akshar.pdf">akshar.pdf</a>.
 </small></li>
 
-<li id="alegreya"><b><a href="texmf-dist/doc/fonts/alegreya">alegreya</a></b><small>
+<li id="alegreya"><b><a href="texmf-dist/doc/fonts/alegreya/">alegreya</a></b><small>
 (<a href="https://ctan.org/pkg/alegreya">CTAN</a>):
-Alegreya fonts with LaTeX support
+Alegreya fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/alegreya/alegreya-samples.pdf">alegreya-samples.pdf</a>.
 </small></li>
 
-<li id="aleph"><b><a href="texmf-dist/doc/man/man1">aleph</a></b><small>
+<li id="aleph"><b><a href="texmf-dist/doc/man/man1/">aleph</a></b><small>
 (<a href="https://ctan.org/pkg/aleph">CTAN</a>):
-Extended TeX
+Extended TeX. 
 <a href="texmf-dist/doc/man/man1/aleph.man1.pdf">aleph.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/lamed.man1.pdf">lamed.man1.pdf</a>.
 </small></li>
 
-<li id="alertmessage"><b><a href="texmf-dist/doc/latex/alertmessage">alertmessage</a></b><small>
+<li id="alertmessage"><b><a href="texmf-dist/doc/latex/alertmessage/">alertmessage</a></b><small>
 (<a href="https://ctan.org/pkg/alertmessage">CTAN</a>):
-Alert messages for LaTeX
+Alert messages for LaTeX. 
 <a href="texmf-dist/doc/latex/alertmessage/alertmessage.pdf">alertmessage.pdf</a>.
 </small></li>
 
-<li id="algobox"><b><a href="texmf-dist/doc/latex/algobox">algobox</a></b><small>
+<li id="algobox"><b><a href="texmf-dist/doc/latex/algobox/">algobox</a></b><small>
 (<a href="https://ctan.org/pkg/algobox">CTAN</a>):
-Typeset Algobox programs
+Typeset Algobox programs. 
 <a href="texmf-dist/doc/latex/algobox/algobox.pdf">algobox.pdf</a>.
 </small></li>
 
-<li id="algolrevived"><b><a href="texmf-dist/doc/fonts/algolrevived">algolrevived</a></b><small>
+<li id="algolrevived"><b><a href="texmf-dist/doc/fonts/algolrevived/">algolrevived</a></b><small>
 (<a href="https://ctan.org/pkg/algolrevived">CTAN</a>):
-A revival of Frutiger's Algol alphabet
+A revival of Frutiger's Algol alphabet. 
 <a href="texmf-dist/doc/fonts/algolrevived/algolrevived-doc.pdf">algolrevived-doc.pdf</a>.
 </small></li>
 
-<li id="algorithm2e"><b><a href="texmf-dist/doc/latex/algorithm2e">algorithm2e</a></b><small>
+<li id="algorithm2e"><b><a href="texmf-dist/doc/latex/algorithm2e/">algorithm2e</a></b><small>
 (<a href="https://ctan.org/pkg/algorithm2e">CTAN</a>):
-Floating algorithm environment with algorithmic keywords
+Floating algorithm environment with algorithmic keywords. 
 <a href="texmf-dist/doc/latex/algorithm2e/algorithm2e.pdf">algorithm2e.pdf</a>.
 </small></li>
 
-<li id="algorithmicx"><b><a href="texmf-dist/doc/latex/algorithmicx">algorithmicx</a></b><small>
+<li id="algorithmicx"><b><a href="texmf-dist/doc/latex/algorithmicx/">algorithmicx</a></b><small>
 (<a href="https://ctan.org/pkg/algorithmicx">CTAN</a>):
-The algorithmic style you always wanted
+The algorithmic style you always wanted. 
 <a href="texmf-dist/doc/latex/algorithmicx/algorithmicx.pdf">algorithmicx.pdf</a>.
 </small></li>
 
-<li id="algorithms"><b><a href="texmf-dist/doc/latex/algorithms">algorithms</a></b><small>
+<li id="algorithms"><b><a href="texmf-dist/doc/latex/algorithms/">algorithms</a></b><small>
 (<a href="https://ctan.org/pkg/algorithms">CTAN</a>):
-A suite of tools for typesetting algorithms in pseudo-code
+A suite of tools for typesetting algorithms in pseudo-code. 
 <a href="texmf-dist/doc/latex/algorithms/algorithms.pdf">algorithms.pdf</a>.
 </small></li>
 
-<li id="algxpar"><b><a href="texmf-dist/doc/latex/algxpar">algxpar</a></b><small>
+<li id="algxpar"><b><a href="texmf-dist/doc/latex/algxpar/">algxpar</a></b><small>
 (<a href="https://ctan.org/pkg/algxpar">CTAN</a>):
-Support multiple lines pseudocode
+Support multiple lines pseudocode. 
 <a href="texmf-dist/doc/latex/algxpar/algxpar.pdf">algxpar.pdf</a>.
 </small></li>
 
-<li id="aligned-overset"><b><a href="texmf-dist/doc/latex/aligned-overset">aligned-overset</a></b><small>
+<li id="aligned-overset"><b><a href="texmf-dist/doc/latex/aligned-overset/">aligned-overset</a></b><small>
 (<a href="https://ctan.org/pkg/aligned-overset">CTAN</a>):
-Fix alignment at \overset or \underset
+Fix alignment at \overset or \underset. 
 <a href="texmf-dist/doc/latex/aligned-overset/aligned-overset.pdf">aligned-overset.pdf</a>.
 </small></li>
 
-<li id="alkalami"><b><a href="texmf-dist/doc/fonts/alkalami">alkalami</a></b><small>
+<li id="alkalami"><b><a href="texmf-dist/doc/fonts/alkalami/">alkalami</a></b><small>
 (<a href="https://ctan.org/pkg/alkalami">CTAN</a>):
-A font for Arabic-based writing systems in Nigeria and Niger
+A font for Arabic-based writing systems in Nigeria and Niger. 
 <a href="texmf-dist/doc/fonts/alkalami/AlkalamiSample.pdf">AlkalamiSample.pdf</a>.
 </small></li>
 
-<li id="allrunes"><b><a href="texmf-dist/doc/fonts/allrunes">allrunes</a></b><small>
+<li id="allrunes"><b><a href="texmf-dist/doc/fonts/allrunes/">allrunes</a></b><small>
 (<a href="https://ctan.org/pkg/allrunes">CTAN</a>):
-Fonts and LaTeX package for almost all runes
+Fonts and LaTeX package for almost all runes. 
 <a href="texmf-dist/doc/fonts/allrunes/allrunes.pdf">allrunes.pdf</a>.
 </small></li>
 
-<li id="almendra"><b><a href="texmf-dist/doc/fonts/almendra">almendra</a></b><small>
+<li id="almendra"><b><a href="texmf-dist/doc/fonts/almendra/">almendra</a></b><small>
 (<a href="https://ctan.org/pkg/almendra">CTAN</a>):
-Almendra fonts with LaTeX support
+Almendra fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/almendra/almendra-samples.pdf">almendra-samples.pdf</a>.
 </small></li>
 
-<li id="almfixed"><b><a href="texmf-dist/doc/fonts/almfixed">almfixed</a></b><small>
+<li id="almfixed"><b><a href="texmf-dist/doc/fonts/almfixed/">almfixed</a></b><small>
 (<a href="https://ctan.org/pkg/almfixed">CTAN</a>):
-Arabic-Latin Modern Fixed extends TeX-Gyre Latin Modern Mono 10 Regular to full Arabic Unicode support
+Arabic-Latin Modern Fixed extends TeX-Gyre Latin Modern Mono 10 Regular to full Arabic Unicode support. 
 <a href="texmf-dist/doc/fonts/almfixed/Unibook_0600.pdf">Unibook_0600.pdf</a>
 <a href="texmf-dist/doc/fonts/almfixed/Unibook_0750.pdf">Unibook_0750.pdf</a>
 <a href="texmf-dist/doc/fonts/almfixed/Unibook_08A0.pdf">Unibook_08A0.pdf</a>
@@ -479,53 +476,53 @@
 <a href="texmf-dist/doc/fonts/almfixed/wa.pdf">wa.pdf</a>.
 </small></li>
 
-<li id="alnumsec"><b><a href="texmf-dist/doc/latex/alnumsec">alnumsec</a></b><small>
+<li id="alnumsec"><b><a href="texmf-dist/doc/latex/alnumsec/">alnumsec</a></b><small>
 (<a href="https://ctan.org/pkg/alnumsec">CTAN</a>):
-Alphanumeric section numbering
+Alphanumeric section numbering. 
 <a href="texmf-dist/doc/latex/alnumsec/alnumsec.pdf">alnumsec.pdf</a>.
 </small></li>
 
-<li id="alpha-persian"><b><a href="texmf-dist/doc/bibtex/alpha-persian">alpha-persian</a></b><small>
+<li id="alpha-persian"><b><a href="texmf-dist/doc/bibtex/alpha-persian/">alpha-persian</a></b><small>
 (<a href="https://ctan.org/pkg/alpha-persian">CTAN</a>):
-Persian version of alpha.bst
+Persian version of alpha.bst. 
 <a href="texmf-dist/doc/bibtex/alpha-persian/alpha-persian-l.userguide.pdf">alpha-persian-l.userguide.pdf</a>
 <a href="texmf-dist/doc/bibtex/alpha-persian/alpha-persian-p.userguide.pdf">alpha-persian-p.userguide.pdf</a> (fa).
 </small></li>
 
-<li id="alphalph"><b><a href="texmf-dist/doc/latex/alphalph">alphalph</a></b><small>
+<li id="alphalph"><b><a href="texmf-dist/doc/latex/alphalph/">alphalph</a></b><small>
 (<a href="https://ctan.org/pkg/alphalph">CTAN</a>):
-Convert numbers to letters
+Convert numbers to letters. 
 <a href="texmf-dist/doc/latex/alphalph/alphalph.pdf">alphalph.pdf</a>.
 </small></li>
 
-<li id="altfont"><b><a href="texmf-dist/doc/latex/altfont">altfont</a></b><small>
+<li id="altfont"><b><a href="texmf-dist/doc/latex/altfont/">altfont</a></b><small>
 (<a href="https://ctan.org/pkg/altfont">CTAN</a>):
-Alternative font handling in LaTeX
+Alternative font handling in LaTeX. 
 <a href="texmf-dist/doc/latex/altfont/altfont.pdf">altfont.pdf</a>
 <a href="texmf-dist/doc/latex/altfont/psfont.pdf">psfont.pdf</a>.
 </small></li>
 
-<li id="amiri"><b><a href="texmf-dist/doc/fonts/amiri">amiri</a></b><small>
+<li id="amiri"><b><a href="texmf-dist/doc/fonts/amiri/">amiri</a></b><small>
 (<a href="https://ctan.org/pkg/amiri">CTAN</a>):
-A classical Arabic typeface, Naskh style
+A classical Arabic typeface, Naskh style. 
 <a href="texmf-dist/doc/fonts/amiri/Documentation-Arabic.pdf">Documentation-Arabic.pdf</a> (ar).
 </small></li>
 
-<li id="amsaddr"><b><a href="texmf-dist/doc/latex/amsaddr">amsaddr</a></b><small>
+<li id="amsaddr"><b><a href="texmf-dist/doc/latex/amsaddr/">amsaddr</a></b><small>
 (<a href="https://ctan.org/pkg/amsaddr">CTAN</a>):
-Alter the position of affiliations in amsart
+Alter the position of affiliations in amsart. 
 <a href="texmf-dist/doc/latex/amsaddr/amsaddr.pdf">amsaddr.pdf</a>.
 </small></li>
 
-<li id="amscdx"><b><a href="texmf-dist/doc/latex/amscdx">amscdx</a></b><small>
+<li id="amscdx"><b><a href="texmf-dist/doc/latex/amscdx/">amscdx</a></b><small>
 (<a href="https://ctan.org/pkg/amscdx">CTAN</a>):
-Enhanced commutative diagrams
+Enhanced commutative diagrams. 
 <a href="texmf-dist/doc/latex/amscdx/amscdx.pdf">amscdx.pdf</a>.
 </small></li>
 
-<li id="amscls"><b><a href="texmf-dist/doc/latex/amscls">amscls</a></b><small>
+<li id="amscls"><b><a href="texmf-dist/doc/latex/amscls/">amscls</a></b><small>
 (<a href="https://ctan.org/pkg/amscls">CTAN</a>):
-AMS document classes for LaTeX
+AMS document classes for LaTeX. 
 <a href="texmf-dist/doc/latex/amscls/amsbooka.pdf">amsbooka.pdf</a>
 <a href="texmf-dist/doc/latex/amscls/amsclass.pdf">amsclass.pdf</a>
 <a href="texmf-dist/doc/latex/amscls/amsdtx.pdf">amsdtx.pdf</a>
@@ -535,9 +532,9 @@
 <a href="texmf-dist/doc/latex/amscls/upref.pdf">upref.pdf</a>.
 </small></li>
 
-<li id="amscls-doc"><b><a href="texmf-dist/doc/latex/amscls-doc">amscls-doc</a></b><small>
+<li id="amscls-doc"><b><a href="texmf-dist/doc/latex/amscls-doc/">amscls-doc</a></b><small>
 (<a href="https://ctan.org/pkg/amscls-doc">CTAN</a>):
-User documentation for AMS document classes
+User documentation for AMS document classes. 
 <a href="texmf-dist/doc/latex/amscls-doc/Author_Handbook_Journals.pdf">Author_Handbook_Journals.pdf</a>
 <a href="texmf-dist/doc/latex/amscls-doc/Author_Handbook_Memo.pdf">Author_Handbook_Memo.pdf</a>
 <a href="texmf-dist/doc/latex/amscls-doc/Author_Handbook_Mono.pdf">Author_Handbook_Mono.pdf</a>
@@ -549,9 +546,9 @@
 <a href="texmf-dist/doc/latex/amscls-doc/spectrum.pdf">spectrum.pdf</a>.
 </small></li>
 
-<li id="amsfonts"><b><a href="texmf-dist/doc/fonts/amsfonts">amsfonts</a></b><small>
+<li id="amsfonts"><b><a href="texmf-dist/doc/fonts/amsfonts/">amsfonts</a></b><small>
 (<a href="https://ctan.org/pkg/amsfonts">CTAN</a>):
-TeX fonts from the American Mathematical Society
+TeX fonts from the American Mathematical Society. 
 <a href="texmf-dist/doc/fonts/amsfonts/amsfndoc.pdf">amsfndoc.pdf</a>
 <a href="texmf-dist/doc/fonts/amsfonts/amsfonts.pdf">amsfonts.pdf</a>
 <a href="texmf-dist/doc/fonts/amsfonts/amssymb.pdf">amssymb.pdf</a>
@@ -560,28 +557,26 @@
 <a href="texmf-dist/doc/fonts/amsfonts/euscript.pdf">euscript.pdf</a>.
 </small></li>
 
-<li id="amslatex-primer"><b><a href="texmf-dist/doc/latex/amslatex-primer">amslatex-primer</a></b><small>
+<li id="amslatex-primer"><b><a href="texmf-dist/doc/latex/amslatex-primer/">amslatex-primer</a></b><small>
 (<a href="https://ctan.org/pkg/amslatex-primer">CTAN</a>):
-Getting up and running with AMS-LaTeX
+Getting up and running with AMS-LaTeX. 
 <a href="texmf-dist/doc/latex/amslatex-primer/amshelp.pdf">amshelp.pdf</a>.
 </small></li>
 
-<li id="amsldoc-it"><b><a href="texmf-dist/doc/latex/amsldoc-it">amsldoc-it</a></b><small>
-(<a href="https://ctan.org/pkg/amsldoc-it">CTAN</a>):
-Italian translation of amsldoc
+<li id="amsldoc-it"><b><a href="texmf-dist/doc/latex/amsldoc-it/">amsldoc-it</a></b><small>
+Italian translation of amsldoc. 
 <a href="texmf-dist/doc/latex/amsldoc-it/itamsldoc.pdf">itamsldoc.pdf</a>.
 </small></li>
 
-<li id="amsldoc-vn"><b><a href="texmf-dist/doc/latex/amsldoc-vn">amsldoc-vn</a></b><small>
-(<a href="https://ctan.org/pkg/amsldoc-vn">CTAN</a>):
-Vietnamese translation of AMSLaTeX documentation
+<li id="amsldoc-vn"><b><a href="texmf-dist/doc/latex/amsldoc-vn/">amsldoc-vn</a></b><small>
+Vietnamese translation of AMSLaTeX documentation. 
 <a href="texmf-dist/doc/latex/amsldoc-vn/amsldoc-print-vi.pdf">amsldoc-print-vi.pdf</a> (vi) 
 <a href="texmf-dist/doc/latex/amsldoc-vn/amsldoc-vi.pdf">amsldoc-vi.pdf</a> (vi).
 </small></li>
 
-<li id="amsmath"><b><a href="texmf-dist/doc/latex/amsmath">amsmath</a></b><small>
+<li id="amsmath"><b><a href="texmf-dist/doc/latex/amsmath/">amsmath</a></b><small>
 (<a href="https://ctan.org/pkg/amsmath">CTAN</a>):
-AMS mathematical facilities for LaTeX
+AMS mathematical facilities for LaTeX. 
 <a href="texmf-dist/doc/latex/amsmath/amsbsy.pdf">amsbsy.pdf</a>
 <a href="texmf-dist/doc/latex/amsmath/amscd.pdf">amscd.pdf</a>
 <a href="texmf-dist/doc/latex/amsmath/amsgen.pdf">amsgen.pdf</a>
@@ -595,9 +590,9 @@
 <a href="texmf-dist/doc/latex/amsmath/testmath.pdf">testmath.pdf</a>.
 </small></li>
 
-<li id="amsrefs"><b><a href="texmf-dist/doc/latex/amsrefs">amsrefs</a></b><small>
+<li id="amsrefs"><b><a href="texmf-dist/doc/latex/amsrefs/">amsrefs</a></b><small>
 (<a href="https://ctan.org/pkg/amsrefs">CTAN</a>):
-A LaTeX-based replacement for BibTeX
+A LaTeX-based replacement for BibTeX. 
 <a href="texmf-dist/doc/latex/amsrefs/amsrdoc.pdf">amsrdoc.pdf</a>
 <a href="texmf-dist/doc/latex/amsrefs/amsrefs.pdf">amsrefs.pdf</a>
 <a href="texmf-dist/doc/latex/amsrefs/amsxport.pdf">amsxport.pdf</a>
@@ -609,98 +604,97 @@
 <a href="texmf-dist/doc/latex/amsrefs/textcmds.pdf">textcmds.pdf</a>.
 </small></li>
 
-<li id="amstex"><b><a href="texmf-dist/doc/amstex/base">amstex</a></b><small>
+<li id="amstex"><b><a href="texmf-dist/doc/amstex/base/">amstex</a></b><small>
 (<a href="https://ctan.org/pkg/amstex">CTAN</a>):
-American Mathematical Society plain TeX macros
+American Mathematical Society plain TeX macros. 
 <a href="texmf-dist/doc/amstex/base/amsguide.pdf">amsguide.pdf</a>
 <a href="texmf-dist/doc/amstex/base/amstinst.pdf">amstinst.pdf</a>
 <a href="texmf-dist/doc/man/man1/amstex.man1.pdf">amstex.man1.pdf</a>.
 </small></li>
 
-<li id="amsthdoc-it"><b><a href="texmf-dist/doc/latex/amsthdoc-it">amsthdoc-it</a></b><small>
-(<a href="https://ctan.org/pkg/amsthdoc-it">CTAN</a>):
-Italian translation of amsthdoc: Using the amsthm package
+<li id="amsthdoc-it"><b><a href="texmf-dist/doc/latex/amsthdoc-it/">amsthdoc-it</a></b><small>
+Italian translation of amsthdoc: Using the amsthm package. 
 <a href="texmf-dist/doc/latex/amsthdoc-it/amsthdoc_it.pdf">amsthdoc_it.pdf</a>.
 </small></li>
 
-<li id="animate"><b><a href="texmf-dist/doc/latex/animate">animate</a></b><small>
+<li id="animate"><b><a href="texmf-dist/doc/latex/animate/">animate</a></b><small>
 (<a href="https://ctan.org/pkg/animate">CTAN</a>):
-Create PDF and SVG animations from graphics files and inline graphics
+Create PDF and SVG animations from graphics files and inline graphics. 
 <a href="texmf-dist/doc/latex/animate/animate.pdf">animate.pdf</a>.
 </small></li>
 
-<li id="annee-scolaire"><b><a href="texmf-dist/doc/latex/annee-scolaire">annee-scolaire</a></b><small>
+<li id="annee-scolaire"><b><a href="texmf-dist/doc/latex/annee-scolaire/">annee-scolaire</a></b><small>
 (<a href="https://ctan.org/pkg/annee-scolaire">CTAN</a>):
-Automatically typeset the academic year (French way)
+Automatically typeset the academic year (French way). 
 <a href="texmf-dist/doc/latex/annee-scolaire/annee-scolaire-eng.pdf">annee-scolaire-eng.pdf</a>
 <a href="texmf-dist/doc/latex/annee-scolaire/annee-scolaire-fra.pdf">annee-scolaire-fra.pdf</a> (fr) 
 <a href="texmf-dist/doc/latex/annee-scolaire/annee-scolaire.pdf">annee-scolaire.pdf</a>.
 </small></li>
 
-<li id="anonchap"><b><a href="texmf-dist/doc/latex/anonchap">anonchap</a></b><small>
+<li id="anonchap"><b><a href="texmf-dist/doc/latex/anonchap/">anonchap</a></b><small>
 (<a href="https://ctan.org/pkg/anonchap">CTAN</a>):
-Make chapters be typeset like sections
+Make chapters be typeset like sections. 
 <a href="texmf-dist/doc/latex/anonchap/anonchap.pdf">anonchap.pdf</a>.
 </small></li>
 
-<li id="anonymous-acm"><b><a href="texmf-dist/doc/latex/anonymous-acm">anonymous-acm</a></b><small>
+<li id="anonymous-acm"><b><a href="texmf-dist/doc/latex/anonymous-acm/">anonymous-acm</a></b><small>
 (<a href="https://ctan.org/pkg/anonymous-acm">CTAN</a>):
-Typeset anonymous versions for ACM articles
+Typeset anonymous versions for ACM articles. 
 <a href="texmf-dist/doc/latex/anonymous-acm/anonymous-acm.pdf">anonymous-acm.pdf</a>.
 </small></li>
 
-<li id="anonymouspro"><b><a href="texmf-dist/doc/fonts/anonymouspro">anonymouspro</a></b><small>
+<li id="anonymouspro"><b><a href="texmf-dist/doc/fonts/anonymouspro/">anonymouspro</a></b><small>
 (<a href="https://ctan.org/pkg/anonymouspro">CTAN</a>):
-Use AnonymousPro fonts with LaTeX
+Use AnonymousPro fonts with LaTeX. 
 <a href="texmf-dist/doc/fonts/anonymouspro/AnonymousPro.pdf">AnonymousPro.pdf</a>.
 </small></li>
 
-<li id="answers"><b><a href="texmf-dist/doc/latex/answers">answers</a></b><small>
+<li id="answers"><b><a href="texmf-dist/doc/latex/answers/">answers</a></b><small>
 (<a href="https://ctan.org/pkg/answers">CTAN</a>):
-Setting questions (or exercises) and answers
+Setting questions (or exercises) and answers. 
 <a href="texmf-dist/doc/latex/answers/answers.pdf">answers.pdf</a>.
 </small></li>
 
-<li id="antanilipsum"><b><a href="texmf-dist/doc/latex/antanilipsum">antanilipsum</a></b><small>
+<li id="antanilipsum"><b><a href="texmf-dist/doc/latex/antanilipsum/">antanilipsum</a></b><small>
 (<a href="https://ctan.org/pkg/antanilipsum">CTAN</a>):
-Generate sentences in the style of "Amici miei"
+Generate sentences in the style of "Amici miei". 
 <a href="texmf-dist/doc/latex/antanilipsum/antanilipsum.pdf">antanilipsum.pdf</a>.
 </small></li>
 
-<li id="antomega"><b><a href="texmf-dist/doc/omega/antomega">antomega</a></b><small>
+<li id="antomega"><b><a href="texmf-dist/doc/omega/antomega/">antomega</a></b><small>
 (<a href="https://ctan.org/pkg/antomega">CTAN</a>):
-Alternative language support for Omega/Lambda
+Alternative language support for Omega/Lambda. 
 <a href="texmf-dist/doc/omega/antomega/antomega.pdf">antomega.pdf</a>.
 </small></li>
 
-<li id="antt"><b><a href="texmf-dist/doc/fonts/antt">antt</a></b><small>
+<li id="antt"><b><a href="texmf-dist/doc/fonts/antt/">antt</a></b><small>
 (<a href="https://ctan.org/pkg/antt">CTAN</a>):
-Antykwa Torunska: a Type 1 family of a Polish traditional type
+Antykwa Torunska: a Type 1 family of a Polish traditional type. 
 <a href="texmf-dist/doc/fonts/antt/AntykwaTorunska-doc-en-2_03.pdf">AntykwaTorunska-doc-en-2_03.pdf</a>
 <a href="texmf-dist/doc/fonts/antt/AntykwaTorunska-doc-pl-2_03.pdf">AntykwaTorunska-doc-pl-2_03.pdf</a> (pl).
 </small></li>
 
-<li id="anyfontsize"><b><a href="texmf-dist/doc/latex/anyfontsize">anyfontsize</a></b><small>
+<li id="anyfontsize"><b><a href="texmf-dist/doc/latex/anyfontsize/">anyfontsize</a></b><small>
 (<a href="https://ctan.org/pkg/anyfontsize">CTAN</a>):
-Select any font size in LaTeX
+Select any font size in LaTeX. 
 <a href="texmf-dist/doc/latex/anyfontsize/anyfontsize.pdf">anyfontsize.pdf</a>.
 </small></li>
 
-<li id="anysize"><b><a href="texmf-dist/doc/latex/anysize">anysize</a></b><small>
+<li id="anysize"><b><a href="texmf-dist/doc/latex/anysize/">anysize</a></b><small>
 (<a href="https://ctan.org/pkg/anysize">CTAN</a>):
-A simple package to set up document margins
+A simple package to set up document margins. 
 <a href="texmf-dist/doc/latex/anysize/anysize.pdf">anysize.pdf</a>.
 </small></li>
 
-<li id="aobs-tikz"><b><a href="texmf-dist/doc/latex/aobs-tikz">aobs-tikz</a></b><small>
+<li id="aobs-tikz"><b><a href="texmf-dist/doc/latex/aobs-tikz/">aobs-tikz</a></b><small>
 (<a href="https://ctan.org/pkg/aobs-tikz">CTAN</a>):
-TikZ styles for creating overlaid pictures in beamer
+TikZ styles for creating overlaid pictures in beamer. 
 <a href="texmf-dist/doc/latex/aobs-tikz/aobs-tikz.pdf">aobs-tikz.pdf</a>.
 </small></li>
 
-<li id="aomart"><b><a href="texmf-dist/doc/latex/aomart">aomart</a></b><small>
+<li id="aomart"><b><a href="texmf-dist/doc/latex/aomart/">aomart</a></b><small>
 (<a href="https://ctan.org/pkg/aomart">CTAN</a>):
-Typeset articles for the Annals of Mathematics
+Typeset articles for the Annals of Mathematics. 
 <a href="texmf-dist/doc/latex/aomart/aomart.pdf">aomart.pdf</a>
 <a href="texmf-dist/doc/latex/aomart/aomfrench.pdf">aomfrench.pdf</a>
 <a href="texmf-dist/doc/latex/aomart/aomsample.pdf">aomsample.pdf</a>
@@ -707,28 +701,28 @@
 <a href="texmf-dist/doc/latex/aomart/aomsample1.pdf">aomsample1.pdf</a>.
 </small></li>
 
-<li id="apa"><b><a href="texmf-dist/doc/latex/apa">apa</a></b><small>
+<li id="apa"><b><a href="texmf-dist/doc/latex/apa/">apa</a></b><small>
 (<a href="https://ctan.org/pkg/apa">CTAN</a>):
-American Psychological Association format
+American Psychological Association format. 
 <a href="texmf-dist/doc/latex/apa/apacls.html">apacls.html</a>.
 </small></li>
 
-<li id="apa6"><b><a href="texmf-dist/doc/latex/apa6">apa6</a></b><small>
+<li id="apa6"><b><a href="texmf-dist/doc/latex/apa6/">apa6</a></b><small>
 (<a href="https://ctan.org/pkg/apa6">CTAN</a>):
-Format documents in APA style (6th edition)
+Format documents in APA style (6th edition). 
 <a href="texmf-dist/doc/latex/apa6/apa6.pdf">apa6.pdf</a>
 <a href="texmf-dist/doc/latex/apa6/samples/Figure1.pdf">Figure1.pdf</a>.
 </small></li>
 
-<li id="apa6e"><b><a href="texmf-dist/doc/latex/apa6e">apa6e</a></b><small>
+<li id="apa6e"><b><a href="texmf-dist/doc/latex/apa6e/">apa6e</a></b><small>
 (<a href="https://ctan.org/pkg/apa6e">CTAN</a>):
-Format manuscripts to APA 6th edition guidelines
+Format manuscripts to APA 6th edition guidelines. 
 <a href="texmf-dist/doc/latex/apa6e/apa6e.pdf">apa6e.pdf</a>.
 </small></li>
 
-<li id="apa7"><b><a href="texmf-dist/doc/latex/apa7">apa7</a></b><small>
+<li id="apa7"><b><a href="texmf-dist/doc/latex/apa7/">apa7</a></b><small>
 (<a href="https://ctan.org/pkg/apa7">CTAN</a>):
-Format documents in APA style (7th edition)
+Format documents in APA style (7th edition). 
 <a href="texmf-dist/doc/latex/apa7/apa7.pdf">apa7.pdf</a>
 <a href="texmf-dist/doc/latex/apa7/samples/Figure1.pdf">Figure1.pdf</a>
 <a href="texmf-dist/doc/latex/apa7/samples/longsample.pdf">longsample.pdf</a>
@@ -735,33 +729,33 @@
 <a href="texmf-dist/doc/latex/apa7/samples/shortsample.pdf">shortsample.pdf</a>.
 </small></li>
 
-<li id="apacite"><b><a href="texmf-dist/doc/bibtex/apacite">apacite</a></b><small>
+<li id="apacite"><b><a href="texmf-dist/doc/bibtex/apacite/">apacite</a></b><small>
 (<a href="https://ctan.org/pkg/apacite">CTAN</a>):
-Citation style following the rules of the APA
+Citation style following the rules of the APA. 
 <a href="texmf-dist/doc/bibtex/apacite/apacite.pdf">apacite.pdf</a>.
 </small></li>
 
-<li id="apalike-german"><b><a href="texmf-dist/doc/bibtex/apalike-german">apalike-german</a></b><small>
+<li id="apalike-german"><b><a href="texmf-dist/doc/bibtex/apalike-german/">apalike-german</a></b><small>
 (<a href="https://ctan.org/pkg/apalike-german">CTAN</a>):
-A copy of apalike.bst with German localization
+A copy of apalike.bst with German localization. 
 <a href="texmf-dist/doc/bibtex/apalike-german/README.html">README.html</a>.
 </small></li>
 
-<li id="apnum"><b><a href="texmf-dist/doc/generic/apnum">apnum</a></b><small>
+<li id="apnum"><b><a href="texmf-dist/doc/generic/apnum/">apnum</a></b><small>
 (<a href="https://ctan.org/pkg/apnum">CTAN</a>):
-Arbitrary precision numbers implemented by TeX macros
+Arbitrary precision numbers implemented by TeX macros. 
 <a href="texmf-dist/doc/generic/apnum/apnum.pdf">apnum.pdf</a>.
 </small></li>
 
-<li id="appendix"><b><a href="texmf-dist/doc/latex/appendix">appendix</a></b><small>
+<li id="appendix"><b><a href="texmf-dist/doc/latex/appendix/">appendix</a></b><small>
 (<a href="https://ctan.org/pkg/appendix">CTAN</a>):
-Extra control of appendices
+Extra control of appendices. 
 <a href="texmf-dist/doc/latex/appendix/appendix.pdf">appendix.pdf</a>.
 </small></li>
 
-<li id="apprendre-a-programmer-en-tex"><b><a href="texmf-dist/doc/plain/apprendre-a-programmer-en-tex/cover">apprendre-a-programmer-en-tex</a></b><small>
+<li id="apprendre-a-programmer-en-tex"><b><a href="texmf-dist/doc/plain/apprendre-a-programmer-en-tex/">apprendre-a-programmer-en-tex</a></b><small>
 (<a href="https://ctan.org/pkg/apprendre-a-programmer-en-tex">CTAN</a>):
-The book "Apprendre a programmer en TeX"
+The book "Apprendre a programmer en TeX". 
 <a href="texmf-dist/doc/plain/apprendre-a-programmer-en-tex/cover/couverture.pdf">couverture.pdf</a>
 <a href="texmf-dist/doc/plain/apprendre-a-programmer-en-tex/output/apprendre-a-programmer-en-tex.pdf">apprendre-a-programmer-en-tex.pdf</a> (fr) 
 <a href="texmf-dist/doc/plain/apprendre-a-programmer-en-tex/source/mandelbrot.pdf">mandelbrot.pdf</a>
@@ -770,27 +764,27 @@
 <a href="texmf-dist/doc/plain/apprendre-a-programmer-en-tex/source/pg0003.pdf">pg0003.pdf</a>.
 </small></li>
 
-<li id="apprends-latex"><b><a href="texmf-dist/doc/latex/apprends-latex">apprends-latex</a></b><small>
+<li id="apprends-latex"><b><a href="texmf-dist/doc/latex/apprends-latex/">apprends-latex</a></b><small>
 (<a href="https://ctan.org/pkg/apprends-latex">CTAN</a>):
-Apprends LaTeX!
+Apprends LaTeX!. 
 <a href="texmf-dist/doc/latex/apprends-latex/Apprends_LaTeX.pdf">Apprends_LaTeX.pdf</a> (fr).
 </small></li>
 
-<li id="apptools"><b><a href="texmf-dist/doc/latex/apptools">apptools</a></b><small>
+<li id="apptools"><b><a href="texmf-dist/doc/latex/apptools/">apptools</a></b><small>
 (<a href="https://ctan.org/pkg/apptools">CTAN</a>):
-Tools for customising appendices
+Tools for customising appendices. 
 <a href="texmf-dist/doc/latex/apptools/apptools.pdf">apptools.pdf</a>.
 </small></li>
 
-<li id="apxproof"><b><a href="texmf-dist/doc/latex/apxproof">apxproof</a></b><small>
+<li id="apxproof"><b><a href="texmf-dist/doc/latex/apxproof/">apxproof</a></b><small>
 (<a href="https://ctan.org/pkg/apxproof">CTAN</a>):
-Proofs in appendix
+Proofs in appendix. 
 <a href="texmf-dist/doc/latex/apxproof/apxproof.pdf">apxproof.pdf</a>.
 </small></li>
 
-<li id="arabi"><b><a href="texmf-dist/doc/latex/arabi">arabi</a></b><small>
+<li id="arabi"><b><a href="texmf-dist/doc/latex/arabi/">arabi</a></b><small>
 (<a href="https://ctan.org/pkg/arabi">CTAN</a>):
-(La)TeX support for Arabic and Farsi, compliant with Babel
+(La)TeX support for Arabic and Farsi, compliant with Babel. 
 <a href="texmf-dist/doc/latex/arabi/big2.pdf">big2.pdf</a>
 <a href="texmf-dist/doc/latex/arabi/fontchart_arabic.pdf">fontchart_arabic.pdf</a>
 <a href="texmf-dist/doc/latex/arabi/fontchart_farsi.pdf">fontchart_farsi.pdf</a>
@@ -802,16 +796,16 @@
 <a href="texmf-dist/doc/latex/arabi/user_guide.pdf">user_guide.pdf</a>.
 </small></li>
 
-<li id="arabi-add"><b><a href="texmf-dist/doc/latex/arabi-add">arabi-add</a></b><small>
+<li id="arabi-add"><b><a href="texmf-dist/doc/latex/arabi-add/">arabi-add</a></b><small>
 (<a href="https://ctan.org/pkg/arabi-add">CTAN</a>):
-Using hyperref and bookmark packages with arabic and farsi languages
+Using hyperref and bookmark packages with arabic and farsi languages. 
 <a href="texmf-dist/doc/latex/arabi-add/arabi-add-doc.pdf">arabi-add-doc.pdf</a>
 <a href="texmf-dist/doc/latex/arabi-add/arabi-add-example.pdf">arabi-add-example.pdf</a>.
 </small></li>
 
-<li id="arabluatex"><b><a href="texmf-dist/doc/lualatex/arabluatex">arabluatex</a></b><small>
+<li id="arabluatex"><b><a href="texmf-dist/doc/lualatex/arabluatex/">arabluatex</a></b><small>
 (<a href="https://ctan.org/pkg/arabluatex">CTAN</a>):
-ArabTeX for LuaLaTeX
+ArabTeX for LuaLaTeX. 
 <a href="texmf-dist/doc/lualatex/arabluatex/arabluatex.pdf">arabluatex.pdf</a>
 <a href="texmf-dist/doc/lualatex/arabluatex/samples/al-Jahiz.pdf">al-Jahiz.pdf</a>
 <a href="texmf-dist/doc/lualatex/arabluatex/samples/exporting.pdf">exporting.pdf</a>
@@ -818,28 +812,28 @@
 <a href="texmf-dist/doc/lualatex/arabluatex/samples/template-01.pdf">template-01.pdf</a>.
 </small></li>
 
-<li id="arabtex"><b><a href="texmf-dist/doc/latex/arabtex">arabtex</a></b><small>
+<li id="arabtex"><b><a href="texmf-dist/doc/latex/arabtex/">arabtex</a></b><small>
 (<a href="https://ctan.org/pkg/arabtex">CTAN</a>):
-Macros and fonts for typesetting Arabic
+Macros and fonts for typesetting Arabic. 
 <a href="texmf-dist/doc/latex/arabtex/arabtex-doc.pdf">arabtex-doc.pdf</a>.
 </small></li>
 
-<li id="arabxetex"><b><a href="texmf-dist/doc/xelatex/arabxetex">arabxetex</a></b><small>
+<li id="arabxetex"><b><a href="texmf-dist/doc/xelatex/arabxetex/">arabxetex</a></b><small>
 (<a href="https://ctan.org/pkg/arabxetex">CTAN</a>):
-An ArabTeX-like interface for XeLaTeX
+An ArabTeX-like interface for XeLaTeX. 
 <a href="texmf-dist/doc/xelatex/arabxetex/arabxetex.pdf">arabxetex.pdf</a>
 <a href="texmf-dist/doc/xelatex/arabxetex/examples/ednotes_example.pdf">ednotes_example.pdf</a>.
 </small></li>
 
-<li id="aramaic-serto"><b><a href="texmf-dist/doc/latex/aramaic-serto">aramaic-serto</a></b><small>
+<li id="aramaic-serto"><b><a href="texmf-dist/doc/latex/aramaic-serto/">aramaic-serto</a></b><small>
 (<a href="https://ctan.org/pkg/aramaic-serto">CTAN</a>):
-Fonts and LaTeX for Syriac written in Serto
+Fonts and LaTeX for Syriac written in Serto. 
 <a href="texmf-dist/doc/latex/aramaic-serto/sertodoc.pdf">sertodoc.pdf</a>.
 </small></li>
 
-<li id="arara"><b><a href="texmf-dist/doc/support/arara">arara</a></b><small>
+<li id="arara"><b><a href="texmf-dist/doc/support/arara/">arara</a></b><small>
 (<a href="https://ctan.org/pkg/arara">CTAN</a>):
-Automation of LaTeX compilation
+Automation of LaTeX compilation. 
 <a href="texmf-dist/doc/support/arara/arara-manual.pdf">arara-manual.pdf</a>
 <a href="texmf-dist/doc/support/arara/figures/dropdown1.pdf">dropdown1.pdf</a>
 <a href="texmf-dist/doc/support/arara/figures/dropdown2.pdf">dropdown2.pdf</a>
@@ -855,15 +849,15 @@
 <a href="texmf-dist/doc/support/arara/logos/logo2.pdf">logo2.pdf</a>.
 </small></li>
 
-<li id="archaeologie"><b><a href="texmf-dist/doc/latex/archaeologie">archaeologie</a></b><small>
+<li id="archaeologie"><b><a href="texmf-dist/doc/latex/archaeologie/">archaeologie</a></b><small>
 (<a href="https://ctan.org/pkg/archaeologie">CTAN</a>):
-A citation-style which covers rules of the German Archaeological Institute
+A citation-style which covers rules of the German Archaeological Institute. 
 <a href="texmf-dist/doc/latex/archaeologie/archaeologie.pdf">archaeologie.pdf</a>.
 </small></li>
 
-<li id="archaic"><b><a href="texmf-dist/doc/fonts/archaic">archaic</a></b><small>
+<li id="archaic"><b><a href="texmf-dist/doc/fonts/archaic/">archaic</a></b><small>
 (<a href="https://ctan.org/pkg/archaic">CTAN</a>):
-A collection of archaic fonts
+A collection of archaic fonts. 
 <a href="texmf-dist/doc/fonts/archaic/aramaic.pdf">aramaic.pdf</a>
 <a href="texmf-dist/doc/fonts/archaic/asamples.pdf">asamples.pdf</a>
 <a href="texmf-dist/doc/fonts/archaic/cypriot.pdf">cypriot.pdf</a>
@@ -897,134 +891,134 @@
 <a href="texmf-dist/doc/fonts/archaic/ugarite.pdf">ugarite.pdf</a>.
 </small></li>
 
-<li id="arcs"><b><a href="texmf-dist/doc/latex/arcs">arcs</a></b><small>
+<li id="arcs"><b><a href="texmf-dist/doc/latex/arcs/">arcs</a></b><small>
 (<a href="https://ctan.org/pkg/arcs">CTAN</a>):
-Draw arcs over and under text
+Draw arcs over and under text. 
 <a href="texmf-dist/doc/latex/arcs/arcs.pdf">arcs.pdf</a>.
 </small></li>
 
-<li id="arev"><b><a href="texmf-dist/doc/fonts/arev">arev</a></b><small>
+<li id="arev"><b><a href="texmf-dist/doc/fonts/arev/">arev</a></b><small>
 (<a href="https://ctan.org/pkg/arev">CTAN</a>):
-Fonts and LaTeX support files for Arev Sans
+Fonts and LaTeX support files for Arev Sans. 
 <a href="texmf-dist/doc/fonts/arev/arevdoc.pdf">arevdoc.pdf</a>
 <a href="texmf-dist/doc/fonts/arev/mathtesty.pdf">mathtesty.pdf</a>.
 </small></li>
 
-<li id="arimo"><b><a href="texmf-dist/doc/fonts/arimo">arimo</a></b><small>
+<li id="arimo"><b><a href="texmf-dist/doc/fonts/arimo/">arimo</a></b><small>
 (<a href="https://ctan.org/pkg/arimo">CTAN</a>):
-Arimo sans serif fonts with LaTeX support
+Arimo sans serif fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/arimo/arimo-samples.pdf">arimo-samples.pdf</a>.
 </small></li>
 
-<li id="armtex"><b><a href="texmf-dist/doc/generic/armenian">armtex</a></b><small>
+<li id="armtex"><b><a href="texmf-dist/doc/generic/armenian/">armtex</a></b><small>
 (<a href="https://ctan.org/pkg/armtex">CTAN</a>):
-A system for writing Armenian with TeX and LaTeX
+A system for writing Armenian with TeX and LaTeX. 
 <a href="texmf-dist/doc/generic/armenian/manual-e.pdf">manual-e.pdf</a>
 <a href="texmf-dist/doc/generic/armenian/manual.pdf">manual.pdf</a> (hy).
 </small></li>
 
-<li id="around-the-bend"><b><a href="texmf-dist/doc/generic/around-the-bend">around-the-bend</a></b><small>
+<li id="around-the-bend"><b><a href="texmf-dist/doc/generic/around-the-bend/">around-the-bend</a></b><small>
 (<a href="https://ctan.org/pkg/around-the-bend">CTAN</a>):
-Typeset exercises in TeX, with answers
+Typeset exercises in TeX, with answers. 
 <a href="texmf-dist/doc/generic/around-the-bend/AroundTheBend.pdf">AroundTheBend.pdf</a>.
 </small></li>
 
-<li id="arphic"><b><a href="texmf-dist/doc/fonts/arphic">arphic</a></b><small>
+<li id="arphic"><b><a href="texmf-dist/doc/fonts/arphic/">arphic</a></b><small>
 (<a href="https://ctan.org/pkg/arphic">CTAN</a>):
-Arphic (Chinese) font packages
+Arphic (Chinese) font packages. 
 <a href="texmf-dist/doc/fonts/arphic/arphic-sampler.pdf">arphic-sampler.pdf</a>.
 </small></li>
 
-<li id="arraycols"><b><a href="texmf-dist/doc/latex/arraycols">arraycols</a></b><small>
+<li id="arraycols"><b><a href="texmf-dist/doc/latex/arraycols/">arraycols</a></b><small>
 (<a href="https://ctan.org/pkg/arraycols">CTAN</a>):
-New column types for array and tabular environments
+New column types for array and tabular environments. 
 <a href="texmf-dist/doc/latex/arraycols/arraycols.pdf">arraycols.pdf</a>.
 </small></li>
 
-<li id="arrayjobx"><b><a href="texmf-dist/doc/generic/arrayjobx">arrayjobx</a></b><small>
+<li id="arrayjobx"><b><a href="texmf-dist/doc/generic/arrayjobx/">arrayjobx</a></b><small>
 (<a href="https://ctan.org/pkg/arrayjobx">CTAN</a>):
-Array data structures for (La)TeX
+Array data structures for (La)TeX. 
 <a href="texmf-dist/doc/generic/arrayjobx/arrayjob.pdf">arrayjob.pdf</a>
 <a href="texmf-dist/doc/generic/arrayjobx/arrayjobx.pdf">arrayjobx.pdf</a>.
 </small></li>
 
-<li id="arraysort"><b><a href="texmf-dist/doc/latex/arraysort">arraysort</a></b><small>
+<li id="arraysort"><b><a href="texmf-dist/doc/latex/arraysort/">arraysort</a></b><small>
 (<a href="https://ctan.org/pkg/arraysort">CTAN</a>):
-Sort arrays (or portions of them)
+Sort arrays (or portions of them). 
 <a href="texmf-dist/doc/latex/arraysort/arraysort.pdf">arraysort.pdf</a>.
 </small></li>
 
-<li id="arsclassica"><b><a href="texmf-dist/doc/latex/arsclassica">arsclassica</a></b><small>
+<li id="arsclassica"><b><a href="texmf-dist/doc/latex/arsclassica/">arsclassica</a></b><small>
 (<a href="https://ctan.org/pkg/arsclassica">CTAN</a>):
-A different view of the ClassicThesis package
+A different view of the ClassicThesis package. 
 <a href="texmf-dist/doc/latex/arsclassica/ArsClassica.pdf">ArsClassica.pdf</a>
 <a href="texmf-dist/doc/latex/arsclassica/Graphics/TFZSuperEllisse.pdf">TFZSuperEllisse.pdf</a>.
 </small></li>
 
-<li id="articleingud"><b><a href="texmf-dist/doc/latex/articleingud">articleingud</a></b><small>
+<li id="articleingud"><b><a href="texmf-dist/doc/latex/articleingud/">articleingud</a></b><small>
 (<a href="https://ctan.org/pkg/articleingud">CTAN</a>):
-LaTeX class for articles published in INGENIERIA review
+LaTeX class for articles published in INGENIERIA review. 
 <a href="texmf-dist/doc/latex/articleingud/articleingud.pdf">articleingud.pdf</a> (es).
 </small></li>
 
-<li id="arydshln"><b><a href="texmf-dist/doc/latex/arydshln">arydshln</a></b><small>
+<li id="arydshln"><b><a href="texmf-dist/doc/latex/arydshln/">arydshln</a></b><small>
 (<a href="https://ctan.org/pkg/arydshln">CTAN</a>):
-Draw dash-lines in array/tabular
+Draw dash-lines in array/tabular. 
 <a href="texmf-dist/doc/latex/arydshln/arydshln-man.pdf">arydshln-man.pdf</a>
 <a href="texmf-dist/doc/latex/arydshln/arydshln.pdf">arydshln.pdf</a>.
 </small></li>
 
-<li id="asaetr"><b><a href="texmf-dist/doc/latex/asaetr">asaetr</a></b><small>
+<li id="asaetr"><b><a href="texmf-dist/doc/latex/asaetr/">asaetr</a></b><small>
 (<a href="https://ctan.org/pkg/asaetr">CTAN</a>):
-Transactions of the ASAE
+Transactions of the ASAE. 
 <a href="texmf-dist/doc/latex/asaetr/asaetr.pdf">asaetr.pdf</a>.
 </small></li>
 
-<li id="asapsym"><b><a href="texmf-dist/doc/fonts/asapsym">asapsym</a></b><small>
+<li id="asapsym"><b><a href="texmf-dist/doc/fonts/asapsym/">asapsym</a></b><small>
 (<a href="https://ctan.org/pkg/asapsym">CTAN</a>):
-Using the free ASAP Symbol font with LaTeX and Plain TeX
+Using the free ASAP Symbol font with LaTeX and Plain TeX. 
 <a href="texmf-dist/doc/fonts/asapsym/asapsym.pdf">asapsym.pdf</a>.
 </small></li>
 
-<li id="ascelike"><b><a href="texmf-dist/doc/latex/ascelike">ascelike</a></b><small>
+<li id="ascelike"><b><a href="texmf-dist/doc/latex/ascelike/">ascelike</a></b><small>
 (<a href="https://ctan.org/pkg/ascelike">CTAN</a>):
-Bibliography style for the ASCE
+Bibliography style for the ASCE. 
 <a href="texmf-dist/doc/latex/ascelike/ascexmpl.pdf">ascexmpl.pdf</a>.
 </small></li>
 
-<li id="ascii-chart"><b><a href="texmf-dist/doc/support/ascii-chart">ascii-chart</a></b><small>
+<li id="ascii-chart"><b><a href="texmf-dist/doc/support/ascii-chart/">ascii-chart</a></b><small>
 (<a href="https://ctan.org/pkg/ascii-chart">CTAN</a>):
-An ASCII wall chart
+An ASCII wall chart. 
 <a href="texmf-dist/doc/support/ascii-chart/ascii.pdf">ascii.pdf</a>.
 </small></li>
 
-<li id="asciilist"><b><a href="texmf-dist/doc/latex/asciilist">asciilist</a></b><small>
+<li id="asciilist"><b><a href="texmf-dist/doc/latex/asciilist/">asciilist</a></b><small>
 (<a href="https://ctan.org/pkg/asciilist">CTAN</a>):
-Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX
+Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX. 
 <a href="texmf-dist/doc/latex/asciilist/asciilist.pdf">asciilist.pdf</a>.
 </small></li>
 
-<li id="ascmac"><b><a href="texmf-dist/doc/latex/ascmac">ascmac</a></b><small>
+<li id="ascmac"><b><a href="texmf-dist/doc/latex/ascmac/">ascmac</a></b><small>
 (<a href="https://ctan.org/pkg/ascmac">CTAN</a>):
-Boxes and picture macros with Japanese vertical writing support
+Boxes and picture macros with Japanese vertical writing support. 
 <a href="texmf-dist/doc/latex/ascmac/ascmac.pdf">ascmac.pdf</a> (ja).
 </small></li>
 
-<li id="askinclude"><b><a href="texmf-dist/doc/latex/askinclude">askinclude</a></b><small>
+<li id="askinclude"><b><a href="texmf-dist/doc/latex/askinclude/">askinclude</a></b><small>
 (<a href="https://ctan.org/pkg/askinclude">CTAN</a>):
-Interactive use of \includeonly
+Interactive use of \includeonly. 
 <a href="texmf-dist/doc/latex/askinclude/askinclude.pdf">askinclude.pdf</a>.
 </small></li>
 
-<li id="askmaps"><b><a href="texmf-dist/doc/latex/askmaps">askmaps</a></b><small>
+<li id="askmaps"><b><a href="texmf-dist/doc/latex/askmaps/">askmaps</a></b><small>
 (<a href="https://ctan.org/pkg/askmaps">CTAN</a>):
-Typeset American style Karnaugh maps
+Typeset American style Karnaugh maps. 
 <a href="texmf-dist/doc/latex/askmaps/askmaps.pdf">askmaps.pdf</a>.
 </small></li>
 
-<li id="asmeconf"><b><a href="texmf-dist/doc/latex/asmeconf">asmeconf</a></b><small>
+<li id="asmeconf"><b><a href="texmf-dist/doc/latex/asmeconf/">asmeconf</a></b><small>
 (<a href="https://ctan.org/pkg/asmeconf">CTAN</a>):
-A template for ASME conference papers
+A template for ASME conference papers. 
 <a href="texmf-dist/doc/latex/asmeconf/asmeconf-template.pdf">asmeconf-template.pdf</a>
 <a href="texmf-dist/doc/latex/asmeconf/sample-figure-1.pdf">sample-figure-1.pdf</a>
 <a href="texmf-dist/doc/latex/asmeconf/sample-figure-2a.pdf">sample-figure-2a.pdf</a>
@@ -1031,9 +1025,9 @@
 <a href="texmf-dist/doc/latex/asmeconf/sample-figure-2b.pdf">sample-figure-2b.pdf</a>.
 </small></li>
 
-<li id="asmejour"><b><a href="texmf-dist/doc/latex/asmejour">asmejour</a></b><small>
+<li id="asmejour"><b><a href="texmf-dist/doc/latex/asmejour/">asmejour</a></b><small>
 (<a href="https://ctan.org/pkg/asmejour">CTAN</a>):
-A template for ASME journal papers
+A template for ASME journal papers. 
 <a href="texmf-dist/doc/latex/asmejour/asmejour-template.pdf">asmejour-template.pdf</a>
 <a href="texmf-dist/doc/latex/asmejour/sample-figure-1.pdf">sample-figure-1.pdf</a>
 <a href="texmf-dist/doc/latex/asmejour/sample-figure-2a.pdf">sample-figure-2a.pdf</a>
@@ -1040,34 +1034,34 @@
 <a href="texmf-dist/doc/latex/asmejour/sample-figure-2b.pdf">sample-figure-2b.pdf</a>.
 </small></li>
 
-<li id="aspectratio"><b><a href="texmf-dist/doc/latex/aspectratio">aspectratio</a></b><small>
+<li id="aspectratio"><b><a href="texmf-dist/doc/latex/aspectratio/">aspectratio</a></b><small>
 (<a href="https://ctan.org/pkg/aspectratio">CTAN</a>):
-Capital A and capital R ligature for Aspect Ratio
+Capital A and capital R ligature for Aspect Ratio. 
 <a href="texmf-dist/doc/latex/aspectratio/ar.pdf">ar.pdf</a>.
 </small></li>
 
-<li id="assignment"><b><a href="texmf-dist/doc/latex/assignment">assignment</a></b><small>
+<li id="assignment"><b><a href="texmf-dist/doc/latex/assignment/">assignment</a></b><small>
 (<a href="https://ctan.org/pkg/assignment">CTAN</a>):
-A class file for typesetting homework and lab assignments
+A class file for typesetting homework and lab assignments. 
 <a href="texmf-dist/doc/latex/assignment/assignment.pdf">assignment.pdf</a>.
 </small></li>
 
-<li id="assoccnt"><b><a href="texmf-dist/doc/latex/assoccnt">assoccnt</a></b><small>
+<li id="assoccnt"><b><a href="texmf-dist/doc/latex/assoccnt/">assoccnt</a></b><small>
 (<a href="https://ctan.org/pkg/assoccnt">CTAN</a>):
-Associate counters, making them step when a master steps
+Associate counters, making them step when a master steps. 
 <a href="texmf-dist/doc/latex/assoccnt/assoccnt_doc.pdf">assoccnt_doc.pdf</a>
 <a href="texmf-dist/doc/latex/assoccnt/assoccnt_example.pdf">assoccnt_example.pdf</a>.
 </small></li>
 
-<li id="asyfig"><b><a href="texmf-dist/doc/latex/asyfig">asyfig</a></b><small>
+<li id="asyfig"><b><a href="texmf-dist/doc/latex/asyfig/">asyfig</a></b><small>
 (<a href="https://ctan.org/pkg/asyfig">CTAN</a>):
-Commands for using Asymptote figures
+Commands for using Asymptote figures. 
 <a href="texmf-dist/doc/latex/asyfig/asyfig.pdf">asyfig.pdf</a>.
 </small></li>
 
-<li id="asymptote"><b><a href="texmf-dist/doc/asymptote">asymptote</a></b><small>
+<li id="asymptote"><b><a href="texmf-dist/doc/asymptote/">asymptote</a></b><small>
 (<a href="https://ctan.org/pkg/asymptote">CTAN</a>):
-2D and 3D TeX-Aware Vector Graphics Language
+2D and 3D TeX-Aware Vector Graphics Language. 
 <a href="texmf-dist/doc/asymptote/CAD.pdf">CAD.pdf</a>
 <a href="texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf">TeXShopAndAsymptote.pdf</a>
 <a href="texmf-dist/doc/asymptote/asy-latex.pdf">asy-latex.pdf</a>
@@ -1078,9 +1072,9 @@
 <a href="texmf-dist/doc/man/man1/xasy.man1.pdf">xasy.man1.pdf</a>.
 </small></li>
 
-<li id="asymptote-by-example-zh-cn"><b><a href="texmf-dist/doc/support/asymptote-by-example-zh-cn">asymptote-by-example-zh-cn</a></b><small>
+<li id="asymptote-by-example-zh-cn"><b><a href="texmf-dist/doc/support/asymptote-by-example-zh-cn/">asymptote-by-example-zh-cn</a></b><small>
 (<a href="https://ctan.org/pkg/asymptote-by-example-zh-cn">CTAN</a>):
-Asymptote by example
+Asymptote by example. 
 <a href="texmf-dist/doc/support/asymptote-by-example-zh-cn/asymptote-by-example-zh-cn.pdf">asymptote-by-example-zh-cn.pdf</a> (zh) 
 <a href="texmf-dist/doc/support/asymptote-by-example-zh-cn/src/tiling.pdf">tiling.pdf</a>
 <a href="texmf-dist/doc/support/asymptote-by-example-zh-cn/src/xiantu-ancient.pdf">xiantu-ancient.pdf</a>
@@ -1087,9 +1081,9 @@
 <a href="texmf-dist/doc/support/asymptote-by-example-zh-cn/src/xiantu.pdf">xiantu.pdf</a>.
 </small></li>
 
-<li id="asymptote-faq-zh-cn"><b><a href="texmf-dist/doc/support/asymptote-faq-zh-cn">asymptote-faq-zh-cn</a></b><small>
+<li id="asymptote-faq-zh-cn"><b><a href="texmf-dist/doc/support/asymptote-faq-zh-cn/">asymptote-faq-zh-cn</a></b><small>
 (<a href="https://ctan.org/pkg/asymptote-faq-zh-cn">CTAN</a>):
-Asymptote FAQ (Chinese translation)
+Asymptote FAQ (Chinese translation). 
 <a href="texmf-dist/doc/support/asymptote-faq-zh-cn/asymptote-faq-zh-cn.pdf">asymptote-faq-zh-cn.pdf</a> (zh) 
 <a href="texmf-dist/doc/support/asymptote-faq-zh-cn/src/figures/4-1.pdf">4-1.pdf</a>
 <a href="texmf-dist/doc/support/asymptote-faq-zh-cn/src/figures/4-2.pdf">4-2.pdf</a>
@@ -1125,71 +1119,71 @@
 <a href="texmf-dist/doc/support/asymptote-faq-zh-cn/src/figures/8-9b.pdf">8-9b.pdf</a>.
 </small></li>
 
-<li id="asymptote-manual-zh-cn"><b><a href="texmf-dist/doc/support/asymptote-manual-zh-cn">asymptote-manual-zh-cn</a></b><small>
+<li id="asymptote-manual-zh-cn"><b><a href="texmf-dist/doc/support/asymptote-manual-zh-cn/">asymptote-manual-zh-cn</a></b><small>
 (<a href="https://ctan.org/pkg/asymptote-manual-zh-cn">CTAN</a>):
-A Chinese translation of the asymptote manual
+A Chinese translation of the asymptote manual. 
 <a href="texmf-dist/doc/support/asymptote-manual-zh-cn/asymptote-manual-zh-cn.pdf">asymptote-manual-zh-cn.pdf</a> (zh).
 </small></li>
 
-<li id="asypictureb"><b><a href="texmf-dist/doc/latex/asypictureb">asypictureb</a></b><small>
+<li id="asypictureb"><b><a href="texmf-dist/doc/latex/asypictureb/">asypictureb</a></b><small>
 (<a href="https://ctan.org/pkg/asypictureb">CTAN</a>):
-User-friendly integration of Asymptote into LaTeX
+User-friendly integration of Asymptote into LaTeX. 
 <a href="texmf-dist/doc/latex/asypictureb/asypictureB.pdf">asypictureB.pdf</a>.
 </small></li>
 
-<li id="atbegshi"><b><a href="texmf-dist/doc/latex/atbegshi">atbegshi</a></b><small>
+<li id="atbegshi"><b><a href="texmf-dist/doc/latex/atbegshi/">atbegshi</a></b><small>
 (<a href="https://ctan.org/pkg/atbegshi">CTAN</a>):
-Execute stuff at \shipout time
+Execute stuff at \shipout time. 
 <a href="texmf-dist/doc/latex/atbegshi/atbegshi.pdf">atbegshi.pdf</a>.
 </small></li>
 
-<li id="atenddvi"><b><a href="texmf-dist/doc/latex/atenddvi">atenddvi</a></b><small>
+<li id="atenddvi"><b><a href="texmf-dist/doc/latex/atenddvi/">atenddvi</a></b><small>
 (<a href="https://ctan.org/pkg/atenddvi">CTAN</a>):
-Provides the \AtEndDvi command
+Provides the \AtEndDvi command. 
 <a href="texmf-dist/doc/latex/atenddvi/atenddvi.pdf">atenddvi.pdf</a>.
 </small></li>
 
-<li id="attachfile"><b><a href="texmf-dist/doc/latex/attachfile">attachfile</a></b><small>
+<li id="attachfile"><b><a href="texmf-dist/doc/latex/attachfile/">attachfile</a></b><small>
 (<a href="https://ctan.org/pkg/attachfile">CTAN</a>):
-Attach arbitrary files to a PDF document
+Attach arbitrary files to a PDF document. 
 <a href="texmf-dist/doc/latex/attachfile/attachfile.pdf">attachfile.pdf</a>.
 </small></li>
 
-<li id="attachfile2"><b><a href="texmf-dist/doc/latex/attachfile2">attachfile2</a></b><small>
+<li id="attachfile2"><b><a href="texmf-dist/doc/latex/attachfile2/">attachfile2</a></b><small>
 (<a href="https://ctan.org/pkg/attachfile2">CTAN</a>):
-Attach files into PDF
+Attach files into PDF. 
 <a href="texmf-dist/doc/latex/attachfile2/attachfile2.pdf">attachfile2.pdf</a>
 <a href="texmf-dist/doc/man/man1/pdfatfi.man1.pdf">pdfatfi.man1.pdf</a>.
 </small></li>
 
-<li id="atveryend"><b><a href="texmf-dist/doc/latex/atveryend">atveryend</a></b><small>
+<li id="atveryend"><b><a href="texmf-dist/doc/latex/atveryend/">atveryend</a></b><small>
 (<a href="https://ctan.org/pkg/atveryend">CTAN</a>):
-Hooks at the very end of a document
+Hooks at the very end of a document. 
 <a href="texmf-dist/doc/latex/atveryend/atveryend.pdf">atveryend.pdf</a>.
 </small></li>
 
-<li id="auncial-new"><b><a href="texmf-dist/doc/fonts/auncial-new">auncial-new</a></b><small>
+<li id="auncial-new"><b><a href="texmf-dist/doc/fonts/auncial-new/">auncial-new</a></b><small>
 (<a href="https://ctan.org/pkg/auncial-new">CTAN</a>):
-Artificial Uncial font and LaTeX support macros
+Artificial Uncial font and LaTeX support macros. 
 <a href="texmf-dist/doc/fonts/auncial-new/auncial.pdf">auncial.pdf</a>
 <a href="texmf-dist/doc/fonts/auncial-new/tryauncial.pdf">tryauncial.pdf</a>.
 </small></li>
 
-<li id="aurical"><b><a href="texmf-dist/doc/latex/aurical">aurical</a></b><small>
+<li id="aurical"><b><a href="texmf-dist/doc/latex/aurical/">aurical</a></b><small>
 (<a href="https://ctan.org/pkg/aurical">CTAN</a>):
-Calligraphic fonts for use with LaTeX in T1 encoding
+Calligraphic fonts for use with LaTeX in T1 encoding. 
 <a href="texmf-dist/doc/latex/aurical/aurical.pdf">aurical.pdf</a>.
 </small></li>
 
-<li id="authoraftertitle"><b><a href="texmf-dist/doc/latex/authoraftertitle">authoraftertitle</a></b><small>
+<li id="authoraftertitle"><b><a href="texmf-dist/doc/latex/authoraftertitle/">authoraftertitle</a></b><small>
 (<a href="https://ctan.org/pkg/authoraftertitle">CTAN</a>):
-Make author, etc., available after \maketitle
+Make author, etc., available after \maketitle. 
 <a href="texmf-dist/doc/latex/authoraftertitle/authoraftertitle.pdf">authoraftertitle.pdf</a>.
 </small></li>
 
-<li id="authorarchive"><b><a href="texmf-dist/doc/latex/authorarchive/examples">authorarchive</a></b><small>
+<li id="authorarchive"><b><a href="texmf-dist/doc/latex/authorarchive/">authorarchive</a></b><small>
 (<a href="https://ctan.org/pkg/authorarchive">CTAN</a>):
-Adds self-archiving information to scientific papers
+Adds self-archiving information to scientific papers. 
 <a href="texmf-dist/doc/latex/authorarchive/examples/brucker-authorarchive-2016-IEEEtran-nourl.pdf">brucker-authorarchive-2016-IEEEtran-nourl.pdf</a>
 <a href="texmf-dist/doc/latex/authorarchive/examples/brucker-authorarchive-2016-IEEEtran.pdf">brucker-authorarchive-2016-IEEEtran.pdf</a>
 <a href="texmf-dist/doc/latex/authorarchive/examples/brucker-authorarchive-2016-acmart.pdf">brucker-authorarchive-2016-acmart.pdf</a>
@@ -1202,66 +1196,65 @@
 <a href="texmf-dist/doc/latex/authorarchive/icons/vector_iD_icon.pdf">vector_iD_icon.pdf</a>.
 </small></li>
 
-<li id="authorindex"><b><a href="texmf-dist/doc/latex/authorindex">authorindex</a></b><small>
+<li id="authorindex"><b><a href="texmf-dist/doc/latex/authorindex/">authorindex</a></b><small>
 (<a href="https://ctan.org/pkg/authorindex">CTAN</a>):
-Index citations by author names
+Index citations by author names. 
 <a href="texmf-dist/doc/latex/authorindex/authorindex.pdf">authorindex.pdf</a>.
 </small></li>
 
-<li id="auto-pst-pdf"><b><a href="texmf-dist/doc/latex/auto-pst-pdf">auto-pst-pdf</a></b><small>
+<li id="auto-pst-pdf"><b><a href="texmf-dist/doc/latex/auto-pst-pdf/">auto-pst-pdf</a></b><small>
 (<a href="https://ctan.org/pkg/auto-pst-pdf">CTAN</a>):
-Wrapper for pst-pdf (with some psfrag features)
+Wrapper for pst-pdf (with some psfrag features). 
 <a href="texmf-dist/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.pdf">auto-pst-pdf-DE.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/auto-pst-pdf/auto-pst-pdf.pdf">auto-pst-pdf.pdf</a>.
 </small></li>
 
-<li id="auto-pst-pdf-lua"><b><a href="texmf-dist/doc/latex/auto-pst-pdf-lua">auto-pst-pdf-lua</a></b><small>
+<li id="auto-pst-pdf-lua"><b><a href="texmf-dist/doc/latex/auto-pst-pdf-lua/">auto-pst-pdf-lua</a></b><small>
 (<a href="https://ctan.org/pkg/auto-pst-pdf-lua">CTAN</a>):
-Using LuaLaTeX together with PostScript code
+Using LuaLaTeX together with PostScript code. 
 <a href="texmf-dist/doc/latex/auto-pst-pdf-lua/auto-pst-pdf-lua-doc.pdf">auto-pst-pdf-lua-doc.pdf</a>.
 </small></li>
 
-<li id="autoaligne"><b><a href="texmf-dist/doc/generic/autoaligne">autoaligne</a></b><small>
+<li id="autoaligne"><b><a href="texmf-dist/doc/generic/autoaligne/">autoaligne</a></b><small>
 (<a href="https://ctan.org/pkg/autoaligne">CTAN</a>):
-Align terms and members in math expressions
+Align terms and members in math expressions. 
 <a href="texmf-dist/doc/generic/autoaligne/autoaligne-fr.pdf">autoaligne-fr.pdf</a> (fr).
 </small></li>
 
-<li id="autoarea"><b><a href="texmf-dist/doc/latex/autoarea/autodemo">autoarea</a></b><small>
-(<a href="https://ctan.org/pkg/autoarea">CTAN</a>):
-Automatic computation of bounding boxes with PiCTeX
+<li id="autoarea"><b><a href="texmf-dist/doc/latex/autoarea/">autoarea</a></b><small>
+Automatic computation of bounding boxes with PiCTeX. 
 <a href="texmf-dist/doc/latex/autoarea/autodemo/autodemo+.pdf">autodemo+.pdf</a>
 <a href="texmf-dist/doc/latex/autoarea/autodemo/autodemo-.pdf">autodemo-.pdf</a>.
 </small></li>
 
-<li id="autobreak"><b><a href="texmf-dist/doc/latex/autobreak">autobreak</a></b><small>
+<li id="autobreak"><b><a href="texmf-dist/doc/latex/autobreak/">autobreak</a></b><small>
 (<a href="https://ctan.org/pkg/autobreak">CTAN</a>):
-Simple line breaking of long formulae
+Simple line breaking of long formulae. 
 <a href="texmf-dist/doc/latex/autobreak/autobreak.pdf">autobreak.pdf</a>.
 </small></li>
 
-<li id="automata"><b><a href="texmf-dist/doc/metapost/automata">automata</a></b><small>
+<li id="automata"><b><a href="texmf-dist/doc/metapost/automata/">automata</a></b><small>
 (<a href="https://ctan.org/pkg/automata">CTAN</a>):
-Finite state machines, graphs and trees in MetaPost
+Finite state machines, graphs and trees in MetaPost. 
 <a href="texmf-dist/doc/metapost/automata/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="autonum"><b><a href="texmf-dist/doc/latex/autonum">autonum</a></b><small>
+<li id="autonum"><b><a href="texmf-dist/doc/latex/autonum/">autonum</a></b><small>
 (<a href="https://ctan.org/pkg/autonum">CTAN</a>):
-Automatic equation references
+Automatic equation references. 
 <a href="texmf-dist/doc/latex/autonum/autonum.pdf">autonum.pdf</a>
 <a href="texmf-dist/doc/latex/autonum/test-autonum.pdf">test-autonum.pdf</a>.
 </small></li>
 
-<li id="autopdf"><b><a href="texmf-dist/doc/latex/autopdf">autopdf</a></b><small>
+<li id="autopdf"><b><a href="texmf-dist/doc/latex/autopdf/">autopdf</a></b><small>
 (<a href="https://ctan.org/pkg/autopdf">CTAN</a>):
-Conversion of graphics to pdfLaTeX-compatible formats
+Conversion of graphics to pdfLaTeX-compatible formats. 
 <a href="texmf-dist/doc/latex/autopdf/autopdf.pdf">autopdf.pdf</a>.
 </small></li>
 
-<li id="autosp"><b><a href="texmf-dist/doc/generic/autosp">autosp</a></b><small>
+<li id="autosp"><b><a href="texmf-dist/doc/generic/autosp/">autosp</a></b><small>
 (<a href="https://ctan.org/pkg/autosp">CTAN</a>):
-A Preprocessor that generates note-spacing commands for MusiXTeX scores
+A Preprocessor that generates note-spacing commands for MusiXTeX scores. 
 <a href="texmf-dist/doc/generic/autosp/barsant2.pdf">barsant2.pdf</a>
 <a href="texmf-dist/doc/generic/autosp/geminiani.pdf">geminiani.pdf</a>
 <a href="texmf-dist/doc/generic/autosp/kinder2.pdf">kinder2.pdf</a>
@@ -1272,33 +1265,33 @@
 <a href="texmf-dist/doc/man/man1/tex2aspc.man1.pdf">tex2aspc.man1.pdf</a>.
 </small></li>
 
-<li id="auxhook"><b><a href="texmf-dist/doc/latex/auxhook">auxhook</a></b><small>
+<li id="auxhook"><b><a href="texmf-dist/doc/latex/auxhook/">auxhook</a></b><small>
 (<a href="https://ctan.org/pkg/auxhook">CTAN</a>):
-Hooks for auxiliary files
+Hooks for auxiliary files. 
 <a href="texmf-dist/doc/latex/auxhook/auxhook.pdf">auxhook.pdf</a>.
 </small></li>
 
-<li id="avremu"><b><a href="texmf-dist/doc/latex/avremu">avremu</a></b><small>
+<li id="avremu"><b><a href="texmf-dist/doc/latex/avremu/">avremu</a></b><small>
 (<a href="https://ctan.org/pkg/avremu">CTAN</a>):
-An 8-Bit Microcontroller Simulator written in LaTeX
+An 8-Bit Microcontroller Simulator written in LaTeX. 
 <a href="texmf-dist/doc/latex/avremu/avremu.pdf">avremu.pdf</a>.
 </small></li>
 
-<li id="awesomebox"><b><a href="texmf-dist/doc/latex/awesomebox">awesomebox</a></b><small>
+<li id="awesomebox"><b><a href="texmf-dist/doc/latex/awesomebox/">awesomebox</a></b><small>
 (<a href="https://ctan.org/pkg/awesomebox">CTAN</a>):
-Draw admonition blocks in your documents, illustrated with FontAwesome icons
+Draw admonition blocks in your documents, illustrated with FontAwesome icons. 
 <a href="texmf-dist/doc/latex/awesomebox/awesomebox.pdf">awesomebox.pdf</a>.
 </small></li>
 
-<li id="axessibility"><b><a href="texmf-dist/doc/latex/axessibility">axessibility</a></b><small>
+<li id="axessibility"><b><a href="texmf-dist/doc/latex/axessibility/">axessibility</a></b><small>
 (<a href="https://ctan.org/pkg/axessibility">CTAN</a>):
-Access to formulas in PDF files by assistive technologies
+Access to formulas in PDF files by assistive technologies. 
 <a href="texmf-dist/doc/latex/axessibility/axessibility.pdf">axessibility.pdf</a>.
 </small></li>
 
-<li id="axodraw2"><b><a href="texmf-dist/doc/latex/axodraw2">axodraw2</a></b><small>
+<li id="axodraw2"><b><a href="texmf-dist/doc/latex/axodraw2/">axodraw2</a></b><small>
 (<a href="https://ctan.org/pkg/axodraw2">CTAN</a>):
-Feynman diagrams in a LaTeX document
+Feynman diagrams in a LaTeX document. 
 <a href="texmf-dist/doc/latex/axodraw2/axodraw2-man.pdf">axodraw2-man.pdf</a>
 <a href="texmf-dist/doc/man/man1/axohelp.man1.pdf">axohelp.man1.pdf</a>.
 </small></li>
@@ -1309,143 +1302,143 @@
 
 <ol start="168">
 
-<li id="b1encoding"><b><a href="texmf-dist/doc/latex/b1encoding">b1encoding</a></b><small>
+<li id="b1encoding"><b><a href="texmf-dist/doc/latex/b1encoding/">b1encoding</a></b><small>
 (<a href="https://ctan.org/pkg/b1encoding">CTAN</a>):
-LaTeX encoding tools for Bookhands fonts
+LaTeX encoding tools for Bookhands fonts. 
 <a href="texmf-dist/doc/latex/b1encoding/b1encoding.pdf">b1encoding.pdf</a>.
 </small></li>
 
-<li id="babel"><b><a href="texmf-dist/doc/latex/babel">babel</a></b><small>
+<li id="babel"><b><a href="texmf-dist/doc/latex/babel/">babel</a></b><small>
 (<a href="https://ctan.org/pkg/babel">CTAN</a>):
-Multilingual support for Plain TeX or LaTeX
+Multilingual support for Plain TeX or LaTeX. 
 <a href="texmf-dist/doc/latex/babel/babel.pdf">babel.pdf</a>.
 </small></li>
 
-<li id="babel-albanian"><b><a href="texmf-dist/doc/generic/babel-albanian">babel-albanian</a></b><small>
+<li id="babel-albanian"><b><a href="texmf-dist/doc/generic/babel-albanian/">babel-albanian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-albanian">CTAN</a>):
-Support for Albanian within babel
+Support for Albanian within babel. 
 <a href="texmf-dist/doc/generic/babel-albanian/albanian.pdf">albanian.pdf</a>.
 </small></li>
 
-<li id="babel-azerbaijani"><b><a href="texmf-dist/doc/generic/babel-azerbaijani">babel-azerbaijani</a></b><small>
+<li id="babel-azerbaijani"><b><a href="texmf-dist/doc/generic/babel-azerbaijani/">babel-azerbaijani</a></b><small>
 (<a href="https://ctan.org/pkg/babel-azerbaijani">CTAN</a>):
-Support for Azerbaijani within babel
+Support for Azerbaijani within babel. 
 <a href="texmf-dist/doc/generic/babel-azerbaijani/azerbaijani.pdf">azerbaijani.pdf</a>.
 </small></li>
 
-<li id="babel-basque"><b><a href="texmf-dist/doc/generic/babel-basque">babel-basque</a></b><small>
+<li id="babel-basque"><b><a href="texmf-dist/doc/generic/babel-basque/">babel-basque</a></b><small>
 (<a href="https://ctan.org/pkg/babel-basque">CTAN</a>):
-Babel contributed support for Basque
+Babel contributed support for Basque. 
 <a href="texmf-dist/doc/generic/babel-basque/basque.pdf">basque.pdf</a>.
 </small></li>
 
-<li id="babel-belarusian"><b><a href="texmf-dist/doc/generic/babel-belarusian">babel-belarusian</a></b><small>
+<li id="babel-belarusian"><b><a href="texmf-dist/doc/generic/babel-belarusian/">babel-belarusian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-belarusian">CTAN</a>):
-Babel support for Belarusian
+Babel support for Belarusian. 
 <a href="texmf-dist/doc/generic/babel-belarusian/belarusian.pdf">belarusian.pdf</a>.
 </small></li>
 
-<li id="babel-bosnian"><b><a href="texmf-dist/doc/generic/babel-bosnian">babel-bosnian</a></b><small>
+<li id="babel-bosnian"><b><a href="texmf-dist/doc/generic/babel-bosnian/">babel-bosnian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-bosnian">CTAN</a>):
-Babel contrib support for Bosnian
+Babel contrib support for Bosnian. 
 <a href="texmf-dist/doc/generic/babel-bosnian/bosnian.pdf">bosnian.pdf</a>.
 </small></li>
 
-<li id="babel-breton"><b><a href="texmf-dist/doc/generic/babel-breton">babel-breton</a></b><small>
+<li id="babel-breton"><b><a href="texmf-dist/doc/generic/babel-breton/">babel-breton</a></b><small>
 (<a href="https://ctan.org/pkg/babel-breton">CTAN</a>):
-Babel contributed support for Breton
+Babel contributed support for Breton. 
 <a href="texmf-dist/doc/generic/babel-breton/breton.pdf">breton.pdf</a>.
 </small></li>
 
-<li id="babel-bulgarian"><b><a href="texmf-dist/doc/generic/babel-bulgarian">babel-bulgarian</a></b><small>
+<li id="babel-bulgarian"><b><a href="texmf-dist/doc/generic/babel-bulgarian/">babel-bulgarian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-bulgarian">CTAN</a>):
-Babel contributed support for Bulgarian
+Babel contributed support for Bulgarian. 
 <a href="texmf-dist/doc/generic/babel-bulgarian/bulgarian.pdf">bulgarian.pdf</a>.
 </small></li>
 
-<li id="babel-catalan"><b><a href="texmf-dist/doc/generic/babel-catalan">babel-catalan</a></b><small>
+<li id="babel-catalan"><b><a href="texmf-dist/doc/generic/babel-catalan/">babel-catalan</a></b><small>
 (<a href="https://ctan.org/pkg/babel-catalan">CTAN</a>):
-Babel contributed support for Catalan
+Babel contributed support for Catalan. 
 <a href="texmf-dist/doc/generic/babel-catalan/catalan.pdf">catalan.pdf</a>.
 </small></li>
 
-<li id="babel-croatian"><b><a href="texmf-dist/doc/generic/babel-croatian">babel-croatian</a></b><small>
+<li id="babel-croatian"><b><a href="texmf-dist/doc/generic/babel-croatian/">babel-croatian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-croatian">CTAN</a>):
-Babel contributed support for Croatian
+Babel contributed support for Croatian. 
 <a href="texmf-dist/doc/generic/babel-croatian/croatian.pdf">croatian.pdf</a>.
 </small></li>
 
-<li id="babel-czech"><b><a href="texmf-dist/doc/generic/babel-czech">babel-czech</a></b><small>
+<li id="babel-czech"><b><a href="texmf-dist/doc/generic/babel-czech/">babel-czech</a></b><small>
 (<a href="https://ctan.org/pkg/babel-czech">CTAN</a>):
-Babel support for Czech
+Babel support for Czech. 
 <a href="texmf-dist/doc/generic/babel-czech/czech.pdf">czech.pdf</a>.
 </small></li>
 
-<li id="babel-danish"><b><a href="texmf-dist/doc/generic/babel-danish">babel-danish</a></b><small>
+<li id="babel-danish"><b><a href="texmf-dist/doc/generic/babel-danish/">babel-danish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-danish">CTAN</a>):
-Babel contributed support for Danish
+Babel contributed support for Danish. 
 <a href="texmf-dist/doc/generic/babel-danish/danish.pdf">danish.pdf</a>.
 </small></li>
 
-<li id="babel-dutch"><b><a href="texmf-dist/doc/generic/babel-dutch">babel-dutch</a></b><small>
+<li id="babel-dutch"><b><a href="texmf-dist/doc/generic/babel-dutch/">babel-dutch</a></b><small>
 (<a href="https://ctan.org/pkg/babel-dutch">CTAN</a>):
-Babel contributed support for Dutch
+Babel contributed support for Dutch. 
 <a href="texmf-dist/doc/generic/babel-dutch/dutch.pdf">dutch.pdf</a>.
 </small></li>
 
-<li id="babel-english"><b><a href="texmf-dist/doc/generic/babel-english">babel-english</a></b><small>
+<li id="babel-english"><b><a href="texmf-dist/doc/generic/babel-english/">babel-english</a></b><small>
 (<a href="https://ctan.org/pkg/babel-english">CTAN</a>):
-Babel support for English
+Babel support for English. 
 <a href="texmf-dist/doc/generic/babel-english/english.pdf">english.pdf</a>.
 </small></li>
 
-<li id="babel-esperanto"><b><a href="texmf-dist/doc/generic/babel-esperanto">babel-esperanto</a></b><small>
+<li id="babel-esperanto"><b><a href="texmf-dist/doc/generic/babel-esperanto/">babel-esperanto</a></b><small>
 (<a href="https://ctan.org/pkg/babel-esperanto">CTAN</a>):
-Babel support for Esperanto
+Babel support for Esperanto. 
 <a href="texmf-dist/doc/generic/babel-esperanto/esperanto.pdf">esperanto.pdf</a>.
 </small></li>
 
-<li id="babel-estonian"><b><a href="texmf-dist/doc/generic/babel-estonian">babel-estonian</a></b><small>
+<li id="babel-estonian"><b><a href="texmf-dist/doc/generic/babel-estonian/">babel-estonian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-estonian">CTAN</a>):
-Babel support for Estonian
+Babel support for Estonian. 
 <a href="texmf-dist/doc/generic/babel-estonian/estonian.pdf">estonian.pdf</a>.
 </small></li>
 
-<li id="babel-finnish"><b><a href="texmf-dist/doc/generic/babel-finnish">babel-finnish</a></b><small>
+<li id="babel-finnish"><b><a href="texmf-dist/doc/generic/babel-finnish/">babel-finnish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-finnish">CTAN</a>):
-Babel support for Finnish
+Babel support for Finnish. 
 <a href="texmf-dist/doc/generic/babel-finnish/finnish.pdf">finnish.pdf</a>.
 </small></li>
 
-<li id="babel-french"><b><a href="texmf-dist/doc/generic/babel-french">babel-french</a></b><small>
+<li id="babel-french"><b><a href="texmf-dist/doc/generic/babel-french/">babel-french</a></b><small>
 (<a href="https://ctan.org/pkg/babel-french">CTAN</a>):
-Babel contributed support for French
+Babel contributed support for French. 
 <a href="texmf-dist/doc/generic/babel-french/frenchb-doc.pdf">frenchb-doc.pdf</a> (fr) 
 <a href="texmf-dist/doc/generic/babel-french/frenchb.pdf">frenchb.pdf</a>.
 </small></li>
 
-<li id="babel-friulan"><b><a href="texmf-dist/doc/generic/babel-friulan">babel-friulan</a></b><small>
+<li id="babel-friulan"><b><a href="texmf-dist/doc/generic/babel-friulan/">babel-friulan</a></b><small>
 (<a href="https://ctan.org/pkg/babel-friulan">CTAN</a>):
-Babel/Polyglossia support for Friulan(Furlan)
+Babel/Polyglossia support for Friulan(Furlan). 
 <a href="texmf-dist/doc/generic/babel-friulan/friulan.pdf">friulan.pdf</a>.
 </small></li>
 
-<li id="babel-galician"><b><a href="texmf-dist/doc/generic/babel-galician">babel-galician</a></b><small>
+<li id="babel-galician"><b><a href="texmf-dist/doc/generic/babel-galician/">babel-galician</a></b><small>
 (<a href="https://ctan.org/pkg/babel-galician">CTAN</a>):
-Babel/Polyglossia support for Galician
+Babel/Polyglossia support for Galician. 
 <a href="texmf-dist/doc/generic/babel-galician/galician.pdf">galician.pdf</a>.
 </small></li>
 
-<li id="babel-german"><b><a href="texmf-dist/doc/generic/babel-german">babel-german</a></b><small>
+<li id="babel-german"><b><a href="texmf-dist/doc/generic/babel-german/">babel-german</a></b><small>
 (<a href="https://ctan.org/pkg/babel-german">CTAN</a>):
-Babel support for documents written in German
+Babel support for documents written in German. 
 <a href="texmf-dist/doc/generic/babel-german/germanb.pdf">germanb.pdf</a>
 <a href="texmf-dist/doc/generic/babel-german/ngermanb.pdf">ngermanb.pdf</a>.
 </small></li>
 
-<li id="babel-greek"><b><a href="texmf-dist/doc/generic/babel-greek">babel-greek</a></b><small>
+<li id="babel-greek"><b><a href="texmf-dist/doc/generic/babel-greek/">babel-greek</a></b><small>
 (<a href="https://ctan.org/pkg/babel-greek">CTAN</a>):
-Babel support for documents written in Greek
+Babel support for documents written in Greek. 
 <a href="texmf-dist/doc/generic/babel-greek/README.html">README.html</a>
 <a href="texmf-dist/doc/generic/babel-greek/athnum.pdf">athnum.pdf</a>
 <a href="texmf-dist/doc/generic/babel-greek/babel-greek.pdf">babel-greek.pdf</a>
@@ -1456,236 +1449,236 @@
 <a href="texmf-dist/doc/generic/babel-greek/usage.pdf">usage.pdf</a>.
 </small></li>
 
-<li id="babel-hebrew"><b><a href="texmf-dist/doc/generic/babel-hebrew">babel-hebrew</a></b><small>
+<li id="babel-hebrew"><b><a href="texmf-dist/doc/generic/babel-hebrew/">babel-hebrew</a></b><small>
 (<a href="https://ctan.org/pkg/babel-hebrew">CTAN</a>):
-Babel support for Hebrew
+Babel support for Hebrew. 
 <a href="texmf-dist/doc/generic/babel-hebrew/heb209.pdf">heb209.pdf</a>
 <a href="texmf-dist/doc/generic/babel-hebrew/hebinp.pdf">hebinp.pdf</a>
 <a href="texmf-dist/doc/generic/babel-hebrew/hebrew.pdf">hebrew.pdf</a>.
 </small></li>
 
-<li id="babel-icelandic"><b><a href="texmf-dist/doc/generic/babel-icelandic">babel-icelandic</a></b><small>
+<li id="babel-icelandic"><b><a href="texmf-dist/doc/generic/babel-icelandic/">babel-icelandic</a></b><small>
 (<a href="https://ctan.org/pkg/babel-icelandic">CTAN</a>):
-Babel support for Icelandic
+Babel support for Icelandic. 
 <a href="texmf-dist/doc/generic/babel-icelandic/icelandic.pdf">icelandic.pdf</a>.
 </small></li>
 
-<li id="babel-indonesian"><b><a href="texmf-dist/doc/generic/babel-indonesian">babel-indonesian</a></b><small>
+<li id="babel-indonesian"><b><a href="texmf-dist/doc/generic/babel-indonesian/">babel-indonesian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-indonesian">CTAN</a>):
-Support for Indonesian within babel
+Support for Indonesian within babel. 
 <a href="texmf-dist/doc/generic/babel-indonesian/indonesian.pdf">indonesian.pdf</a>.
 </small></li>
 
-<li id="babel-interlingua"><b><a href="texmf-dist/doc/generic/babel-interlingua">babel-interlingua</a></b><small>
+<li id="babel-interlingua"><b><a href="texmf-dist/doc/generic/babel-interlingua/">babel-interlingua</a></b><small>
 (<a href="https://ctan.org/pkg/babel-interlingua">CTAN</a>):
-Babel support for Interlingua
+Babel support for Interlingua. 
 <a href="texmf-dist/doc/generic/babel-interlingua/interlingua.pdf">interlingua.pdf</a>.
 </small></li>
 
-<li id="babel-irish"><b><a href="texmf-dist/doc/generic/babel-irish">babel-irish</a></b><small>
+<li id="babel-irish"><b><a href="texmf-dist/doc/generic/babel-irish/">babel-irish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-irish">CTAN</a>):
-Babel support for Irish
+Babel support for Irish. 
 <a href="texmf-dist/doc/generic/babel-irish/irish.pdf">irish.pdf</a>.
 </small></li>
 
-<li id="babel-italian"><b><a href="texmf-dist/doc/generic/babel-italian">babel-italian</a></b><small>
+<li id="babel-italian"><b><a href="texmf-dist/doc/generic/babel-italian/">babel-italian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-italian">CTAN</a>):
-Babel support for Italian text
+Babel support for Italian text. 
 <a href="texmf-dist/doc/generic/babel-italian/italian.pdf">italian.pdf</a>.
 </small></li>
 
-<li id="babel-japanese"><b><a href="texmf-dist/doc/generic/babel-japanese">babel-japanese</a></b><small>
+<li id="babel-japanese"><b><a href="texmf-dist/doc/generic/babel-japanese/">babel-japanese</a></b><small>
 (<a href="https://ctan.org/pkg/babel-japanese">CTAN</a>):
-Babel support for Japanese
+Babel support for Japanese. 
 <a href="texmf-dist/doc/generic/babel-japanese/japanese-sample.pdf">japanese-sample.pdf</a> (ja) 
 <a href="texmf-dist/doc/generic/babel-japanese/japanese.pdf">japanese.pdf</a> (ja).
 </small></li>
 
-<li id="babel-kurmanji"><b><a href="texmf-dist/doc/generic/babel-kurmanji">babel-kurmanji</a></b><small>
+<li id="babel-kurmanji"><b><a href="texmf-dist/doc/generic/babel-kurmanji/">babel-kurmanji</a></b><small>
 (<a href="https://ctan.org/pkg/babel-kurmanji">CTAN</a>):
-Babel support for Kurmanji
+Babel support for Kurmanji. 
 <a href="texmf-dist/doc/generic/babel-kurmanji/kurmanji.pdf">kurmanji.pdf</a>.
 </small></li>
 
-<li id="babel-latin"><b><a href="texmf-dist/doc/generic/babel-latin">babel-latin</a></b><small>
+<li id="babel-latin"><b><a href="texmf-dist/doc/generic/babel-latin/">babel-latin</a></b><small>
 (<a href="https://ctan.org/pkg/babel-latin">CTAN</a>):
-Babel support for Latin
+Babel support for Latin. 
 <a href="texmf-dist/doc/generic/babel-latin/latin.pdf">latin.pdf</a>.
 </small></li>
 
-<li id="babel-latvian"><b><a href="texmf-dist/doc/generic/babel-latvian">babel-latvian</a></b><small>
+<li id="babel-latvian"><b><a href="texmf-dist/doc/generic/babel-latvian/">babel-latvian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-latvian">CTAN</a>):
-Babel support for Latvian
+Babel support for Latvian. 
 <a href="texmf-dist/doc/generic/babel-latvian/latvian.pdf">latvian.pdf</a>.
 </small></li>
 
-<li id="babel-macedonian"><b><a href="texmf-dist/doc/generic/babel-macedonian">babel-macedonian</a></b><small>
+<li id="babel-macedonian"><b><a href="texmf-dist/doc/generic/babel-macedonian/">babel-macedonian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-macedonian">CTAN</a>):
-Babel module to support Macedonian Cyrillic
+Babel module to support Macedonian Cyrillic. 
 <a href="texmf-dist/doc/generic/babel-macedonian/macedonian.pdf">macedonian.pdf</a>.
 </small></li>
 
-<li id="babel-malay"><b><a href="texmf-dist/doc/generic/babel-malay">babel-malay</a></b><small>
+<li id="babel-malay"><b><a href="texmf-dist/doc/generic/babel-malay/">babel-malay</a></b><small>
 (<a href="https://ctan.org/pkg/babel-malay">CTAN</a>):
-Support for Malay within babel
+Support for Malay within babel. 
 <a href="texmf-dist/doc/generic/babel-malay/malay.pdf">malay.pdf</a>.
 </small></li>
 
-<li id="babel-norsk"><b><a href="texmf-dist/doc/generic/babel-norsk">babel-norsk</a></b><small>
+<li id="babel-norsk"><b><a href="texmf-dist/doc/generic/babel-norsk/">babel-norsk</a></b><small>
 (<a href="https://ctan.org/pkg/babel-norsk">CTAN</a>):
-Babel support for Norwegian
+Babel support for Norwegian. 
 <a href="texmf-dist/doc/generic/babel-norsk/norsk.pdf">norsk.pdf</a>.
 </small></li>
 
-<li id="babel-occitan"><b><a href="texmf-dist/doc/generic/babel-occitan">babel-occitan</a></b><small>
+<li id="babel-occitan"><b><a href="texmf-dist/doc/generic/babel-occitan/">babel-occitan</a></b><small>
 (<a href="https://ctan.org/pkg/babel-occitan">CTAN</a>):
-Babel support for Occitan
+Babel support for Occitan. 
 <a href="texmf-dist/doc/generic/babel-occitan/occitan.pdf">occitan.pdf</a>.
 </small></li>
 
-<li id="babel-piedmontese"><b><a href="texmf-dist/doc/generic/babel-piedmontese">babel-piedmontese</a></b><small>
+<li id="babel-piedmontese"><b><a href="texmf-dist/doc/generic/babel-piedmontese/">babel-piedmontese</a></b><small>
 (<a href="https://ctan.org/pkg/babel-piedmontese">CTAN</a>):
-Babel support for Piedmontese
+Babel support for Piedmontese. 
 <a href="texmf-dist/doc/generic/babel-piedmontese/piedmontese.pdf">piedmontese.pdf</a>.
 </small></li>
 
-<li id="babel-polish"><b><a href="texmf-dist/doc/generic/babel-polish">babel-polish</a></b><small>
+<li id="babel-polish"><b><a href="texmf-dist/doc/generic/babel-polish/">babel-polish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-polish">CTAN</a>):
-Babel support for Polish
+Babel support for Polish. 
 <a href="texmf-dist/doc/generic/babel-polish/polish.pdf">polish.pdf</a>.
 </small></li>
 
-<li id="babel-portuges"><b><a href="texmf-dist/doc/generic/babel-portuges">babel-portuges</a></b><small>
+<li id="babel-portuges"><b><a href="texmf-dist/doc/generic/babel-portuges/">babel-portuges</a></b><small>
 (<a href="https://ctan.org/pkg/babel-portuges">CTAN</a>):
-Babel support for Portuges
+Babel support for Portuges. 
 <a href="texmf-dist/doc/generic/babel-portuges/portuges.pdf">portuges.pdf</a>.
 </small></li>
 
-<li id="babel-romanian"><b><a href="texmf-dist/doc/generic/babel-romanian">babel-romanian</a></b><small>
+<li id="babel-romanian"><b><a href="texmf-dist/doc/generic/babel-romanian/">babel-romanian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-romanian">CTAN</a>):
-Babel support for Romanian
+Babel support for Romanian. 
 <a href="texmf-dist/doc/generic/babel-romanian/romanian.pdf">romanian.pdf</a>.
 </small></li>
 
-<li id="babel-romansh"><b><a href="texmf-dist/doc/generic/babel-romansh">babel-romansh</a></b><small>
+<li id="babel-romansh"><b><a href="texmf-dist/doc/generic/babel-romansh/">babel-romansh</a></b><small>
 (<a href="https://ctan.org/pkg/babel-romansh">CTAN</a>):
-Babel/Polyglossia support for the Romansh language
+Babel/Polyglossia support for the Romansh language. 
 <a href="texmf-dist/doc/generic/babel-romansh/romansh.pdf">romansh.pdf</a>.
 </small></li>
 
-<li id="babel-russian"><b><a href="texmf-dist/doc/generic/babel-russian">babel-russian</a></b><small>
+<li id="babel-russian"><b><a href="texmf-dist/doc/generic/babel-russian/">babel-russian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-russian">CTAN</a>):
-Russian language module for Babel
+Russian language module for Babel. 
 <a href="texmf-dist/doc/generic/babel-russian/russianb.pdf">russianb.pdf</a>.
 </small></li>
 
-<li id="babel-samin"><b><a href="texmf-dist/doc/generic/babel-samin">babel-samin</a></b><small>
+<li id="babel-samin"><b><a href="texmf-dist/doc/generic/babel-samin/">babel-samin</a></b><small>
 (<a href="https://ctan.org/pkg/babel-samin">CTAN</a>):
-Babel support for Samin
+Babel support for Samin. 
 <a href="texmf-dist/doc/generic/babel-samin/samin.pdf">samin.pdf</a>.
 </small></li>
 
-<li id="babel-scottish"><b><a href="texmf-dist/doc/generic/babel-scottish">babel-scottish</a></b><small>
+<li id="babel-scottish"><b><a href="texmf-dist/doc/generic/babel-scottish/">babel-scottish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-scottish">CTAN</a>):
-Babel support for Scottish Gaelic
+Babel support for Scottish Gaelic. 
 <a href="texmf-dist/doc/generic/babel-scottish/scottish.pdf">scottish.pdf</a>.
 </small></li>
 
-<li id="babel-serbian"><b><a href="texmf-dist/doc/generic/babel-serbian">babel-serbian</a></b><small>
+<li id="babel-serbian"><b><a href="texmf-dist/doc/generic/babel-serbian/">babel-serbian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-serbian">CTAN</a>):
-Babel/Polyglossia support for Serbian
+Babel/Polyglossia support for Serbian. 
 <a href="texmf-dist/doc/generic/babel-serbian/serbian.pdf">serbian.pdf</a>.
 </small></li>
 
-<li id="babel-serbianc"><b><a href="texmf-dist/doc/generic/babel-serbianc">babel-serbianc</a></b><small>
+<li id="babel-serbianc"><b><a href="texmf-dist/doc/generic/babel-serbianc/">babel-serbianc</a></b><small>
 (<a href="https://ctan.org/pkg/babel-serbianc">CTAN</a>):
-Babel module to support Serbian Cyrillic
+Babel module to support Serbian Cyrillic. 
 <a href="texmf-dist/doc/generic/babel-serbianc/serbianc.pdf">serbianc.pdf</a>.
 </small></li>
 
-<li id="babel-slovak"><b><a href="texmf-dist/doc/generic/babel-slovak">babel-slovak</a></b><small>
+<li id="babel-slovak"><b><a href="texmf-dist/doc/generic/babel-slovak/">babel-slovak</a></b><small>
 (<a href="https://ctan.org/pkg/babel-slovak">CTAN</a>):
-Babel support for typesetting Slovak
+Babel support for typesetting Slovak. 
 <a href="texmf-dist/doc/generic/babel-slovak/slovak.pdf">slovak.pdf</a>.
 </small></li>
 
-<li id="babel-slovenian"><b><a href="texmf-dist/doc/generic/babel-slovenian">babel-slovenian</a></b><small>
+<li id="babel-slovenian"><b><a href="texmf-dist/doc/generic/babel-slovenian/">babel-slovenian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-slovenian">CTAN</a>):
-Babel support for typesetting Slovenian
+Babel support for typesetting Slovenian. 
 <a href="texmf-dist/doc/generic/babel-slovenian/slovene.pdf">slovene.pdf</a>.
 </small></li>
 
-<li id="babel-sorbian"><b><a href="texmf-dist/doc/generic/babel-sorbian">babel-sorbian</a></b><small>
+<li id="babel-sorbian"><b><a href="texmf-dist/doc/generic/babel-sorbian/">babel-sorbian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-sorbian">CTAN</a>):
-Babel support for Upper and Lower Sorbian
+Babel support for Upper and Lower Sorbian. 
 <a href="texmf-dist/doc/generic/babel-sorbian/lsorbian.pdf">lsorbian.pdf</a>
 <a href="texmf-dist/doc/generic/babel-sorbian/usorbian.pdf">usorbian.pdf</a>.
 </small></li>
 
-<li id="babel-spanish"><b><a href="texmf-dist/doc/generic/babel-spanish">babel-spanish</a></b><small>
+<li id="babel-spanish"><b><a href="texmf-dist/doc/generic/babel-spanish/">babel-spanish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-spanish">CTAN</a>):
-Babel support for Spanish
+Babel support for Spanish. 
 <a href="texmf-dist/doc/generic/babel-spanish/spanish.pdf">spanish.pdf</a> (es).
 </small></li>
 
-<li id="babel-swedish"><b><a href="texmf-dist/doc/generic/babel-swedish">babel-swedish</a></b><small>
+<li id="babel-swedish"><b><a href="texmf-dist/doc/generic/babel-swedish/">babel-swedish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-swedish">CTAN</a>):
-Babel support for typesetting Swedish
+Babel support for typesetting Swedish. 
 <a href="texmf-dist/doc/generic/babel-swedish/swedish.pdf">swedish.pdf</a>.
 </small></li>
 
-<li id="babel-thai"><b><a href="texmf-dist/doc/generic/babel-thai">babel-thai</a></b><small>
+<li id="babel-thai"><b><a href="texmf-dist/doc/generic/babel-thai/">babel-thai</a></b><small>
 (<a href="https://ctan.org/pkg/babel-thai">CTAN</a>):
-Support for Thai within babel
+Support for Thai within babel. 
 <a href="texmf-dist/doc/generic/babel-thai/thai.pdf">thai.pdf</a>.
 </small></li>
 
-<li id="babel-turkish"><b><a href="texmf-dist/doc/generic/babel-turkish">babel-turkish</a></b><small>
+<li id="babel-turkish"><b><a href="texmf-dist/doc/generic/babel-turkish/">babel-turkish</a></b><small>
 (<a href="https://ctan.org/pkg/babel-turkish">CTAN</a>):
-Babel support for Turkish documents
+Babel support for Turkish documents. 
 <a href="texmf-dist/doc/generic/babel-turkish/turkish.pdf">turkish.pdf</a>.
 </small></li>
 
-<li id="babel-ukrainian"><b><a href="texmf-dist/doc/generic/babel-ukrainian">babel-ukrainian</a></b><small>
+<li id="babel-ukrainian"><b><a href="texmf-dist/doc/generic/babel-ukrainian/">babel-ukrainian</a></b><small>
 (<a href="https://ctan.org/pkg/babel-ukrainian">CTAN</a>):
-Babel support for Ukrainian
+Babel support for Ukrainian. 
 <a href="texmf-dist/doc/generic/babel-ukrainian/ukraineb.pdf">ukraineb.pdf</a>.
 </small></li>
 
-<li id="babel-vietnamese"><b><a href="texmf-dist/doc/generic/babel-vietnamese">babel-vietnamese</a></b><small>
+<li id="babel-vietnamese"><b><a href="texmf-dist/doc/generic/babel-vietnamese/">babel-vietnamese</a></b><small>
 (<a href="https://ctan.org/pkg/babel-vietnamese">CTAN</a>):
-Babel support for typesetting Vietnamese
+Babel support for typesetting Vietnamese. 
 <a href="texmf-dist/doc/generic/babel-vietnamese/vietnamese.pdf">vietnamese.pdf</a>.
 </small></li>
 
-<li id="babel-welsh"><b><a href="texmf-dist/doc/generic/babel-welsh">babel-welsh</a></b><small>
+<li id="babel-welsh"><b><a href="texmf-dist/doc/generic/babel-welsh/">babel-welsh</a></b><small>
 (<a href="https://ctan.org/pkg/babel-welsh">CTAN</a>):
-Babel support for Welsh
+Babel support for Welsh. 
 <a href="texmf-dist/doc/generic/babel-welsh/welsh.pdf">welsh.pdf</a>.
 </small></li>
 
-<li id="babelbib"><b><a href="texmf-dist/doc/bibtex/babelbib">babelbib</a></b><small>
+<li id="babelbib"><b><a href="texmf-dist/doc/bibtex/babelbib/">babelbib</a></b><small>
 (<a href="https://ctan.org/pkg/babelbib">CTAN</a>):
-Multilingual bibliographies
+Multilingual bibliographies. 
 <a href="texmf-dist/doc/bibtex/babelbib/babelbib.pdf">babelbib.pdf</a>
 <a href="texmf-dist/doc/bibtex/babelbib/tugboat-babelbib.pdf">tugboat-babelbib.pdf</a>.
 </small></li>
 
-<li id="background"><b><a href="texmf-dist/doc/latex/background">background</a></b><small>
+<li id="background"><b><a href="texmf-dist/doc/latex/background/">background</a></b><small>
 (<a href="https://ctan.org/pkg/background">CTAN</a>):
-Placement of background material on pages of a document
+Placement of background material on pages of a document. 
 <a href="texmf-dist/doc/latex/background/background.pdf">background.pdf</a>.
 </small></li>
 
-<li id="backnaur"><b><a href="texmf-dist/doc/latex/backnaur">backnaur</a></b><small>
+<li id="backnaur"><b><a href="texmf-dist/doc/latex/backnaur/">backnaur</a></b><small>
 (<a href="https://ctan.org/pkg/backnaur">CTAN</a>):
-Typeset Backus Naur Form definitions
+Typeset Backus Naur Form definitions. 
 <a href="texmf-dist/doc/latex/backnaur/backnaur.pdf">backnaur.pdf</a>.
 </small></li>
 
-<li id="bagpipe"><b><a href="texmf-dist/doc/generic/bagpipe">bagpipe</a></b><small>
+<li id="bagpipe"><b><a href="texmf-dist/doc/generic/bagpipe/">bagpipe</a></b><small>
 (<a href="https://ctan.org/pkg/bagpipe">CTAN</a>):
-Support for typesetting bagpipe music
+Support for typesetting bagpipe music. 
 <a href="texmf-dist/doc/generic/bagpipe/BlackDonald.pdf">BlackDonald.pdf</a>
 <a href="texmf-dist/doc/generic/bagpipe/Bonnets.pdf">Bonnets.pdf</a>
 <a href="texmf-dist/doc/generic/bagpipe/Green.pdf">Green.pdf</a>
@@ -1695,48 +1688,47 @@
 <a href="texmf-dist/doc/generic/bagpipe/quickref.pdf">quickref.pdf</a>.
 </small></li>
 
-<li id="bangorcsthesis"><b><a href="texmf-dist/doc/latex/bangorcsthesis">bangorcsthesis</a></b><small>
+<li id="bangorcsthesis"><b><a href="texmf-dist/doc/latex/bangorcsthesis/">bangorcsthesis</a></b><small>
 (<a href="https://ctan.org/pkg/bangorcsthesis">CTAN</a>):
-Typeset a thesis at Bangor University
+Typeset a thesis at Bangor University. 
 <a href="texmf-dist/doc/latex/bangorcsthesis/bangorcsthesis.pdf">bangorcsthesis.pdf</a>.
 </small></li>
 
-<li id="bangorexam"><b><a href="texmf-dist/doc/latex/bangorexam">bangorexam</a></b><small>
+<li id="bangorexam"><b><a href="texmf-dist/doc/latex/bangorexam/">bangorexam</a></b><small>
 (<a href="https://ctan.org/pkg/bangorexam">CTAN</a>):
-Typeset an examination at Bangor University
+Typeset an examination at Bangor University. 
 <a href="texmf-dist/doc/latex/bangorexam/bangorexam.pdf">bangorexam.pdf</a>.
 </small></li>
 
-<li id="bankstatement"><b><a href="texmf-dist/doc/latex/bankstatement">bankstatement</a></b><small>
+<li id="bankstatement"><b><a href="texmf-dist/doc/latex/bankstatement/">bankstatement</a></b><small>
 (<a href="https://ctan.org/pkg/bankstatement">CTAN</a>):
-A LaTeX class for bank statements based on csv data
+A LaTeX class for bank statements based on csv data. 
 <a href="texmf-dist/doc/latex/bankstatement/bankstatement-example.pdf">bankstatement-example.pdf</a>
 <a href="texmf-dist/doc/latex/bankstatement/bankstatement.pdf">bankstatement.pdf</a>.
 </small></li>
 
-<li id="barcodes"><b><a href="texmf-dist/doc/latex/barcodes">barcodes</a></b><small>
+<li id="barcodes"><b><a href="texmf-dist/doc/latex/barcodes/">barcodes</a></b><small>
 (<a href="https://ctan.org/pkg/barcodes">CTAN</a>):
-Fonts for making barcodes
+Fonts for making barcodes. 
 <a href="texmf-dist/doc/latex/barcodes/eandoc.pdf">eandoc.pdf</a>.
 </small></li>
 
-<li id="bardiag"><b><a href="texmf-dist/doc/latex/bardiag">bardiag</a></b><small>
+<li id="bardiag"><b><a href="texmf-dist/doc/latex/bardiag/">bardiag</a></b><small>
 (<a href="https://ctan.org/pkg/bardiag">CTAN</a>):
-LaTeX package for drawing bar diagrams
+LaTeX package for drawing bar diagrams. 
 <a href="texmf-dist/doc/latex/bardiag/bardiag.pdf">bardiag.pdf</a>
 <a href="texmf-dist/doc/latex/bardiag/bardiag1.pdf">bardiag1.pdf</a>
 <a href="texmf-dist/doc/latex/bardiag/bardiag2.pdf">bardiag2.pdf</a>.
 </small></li>
 
-<li id="barr"><b><a href="texmf-dist/doc/generic/barr">barr</a></b><small>
-(<a href="https://ctan.org/pkg/barr">CTAN</a>):
-Diagram macros by Michael Barr
+<li id="barr"><b><a href="texmf-dist/doc/generic/barr/">barr</a></b><small>
+Diagram macros by Michael Barr. 
 <a href="texmf-dist/doc/generic/barr/diaxydoc.pdf">diaxydoc.pdf</a>.
 </small></li>
 
-<li id="barracuda"><b><a href="texmf-dist/doc/luatex/barracuda/doc">barracuda</a></b><small>
+<li id="barracuda"><b><a href="texmf-dist/doc/luatex/barracuda/">barracuda</a></b><small>
 (<a href="https://ctan.org/pkg/barracuda">CTAN</a>):
-Draw barcodes with Lua
+Draw barcodes with Lua. 
 <a href="texmf-dist/doc/luatex/barracuda/doc/barracuda-ga-asm.pdf">barracuda-ga-asm.pdf</a>
 <a href="texmf-dist/doc/luatex/barracuda/doc/barracuda.pdf">barracuda.pdf</a>
 <a href="texmf-dist/doc/luatex/barracuda/doc/image/8006194056290.pdf">8006194056290.pdf</a>
@@ -1755,90 +1747,89 @@
 <a href="texmf-dist/doc/luatex/barracuda/test/test-i2of5/002-ITF14-test.pdf">002-ITF14-test.pdf</a>.
 </small></li>
 
-<li id="bashful"><b><a href="texmf-dist/doc/latex/bashful">bashful</a></b><small>
+<li id="bashful"><b><a href="texmf-dist/doc/latex/bashful/">bashful</a></b><small>
 (<a href="https://ctan.org/pkg/bashful">CTAN</a>):
-Invoke bash commands from within LaTeX
+Invoke bash commands from within LaTeX. 
 <a href="texmf-dist/doc/latex/bashful/bashful.pdf">bashful.pdf</a>.
 </small></li>
 
-<li id="basicarith"><b><a href="texmf-dist/doc/latex/basicarith">basicarith</a></b><small>
+<li id="basicarith"><b><a href="texmf-dist/doc/latex/basicarith/">basicarith</a></b><small>
 (<a href="https://ctan.org/pkg/basicarith">CTAN</a>):
-Macros for typesetting basic arithmetic
+Macros for typesetting basic arithmetic. 
 <a href="texmf-dist/doc/latex/basicarith/basicarith.pdf">basicarith.pdf</a>.
 </small></li>
 
-<li id="baskervald"><b><a href="texmf-dist/doc/fonts/baskervald">baskervald</a></b><small>
-(<a href="https://ctan.org/pkg/baskervald">CTAN</a>):
-Baskervald ADF fonts collection with TeX/LaTeX support
+<li id="baskervald"><b><a href="texmf-dist/doc/fonts/baskervald/">baskervald</a></b><small>
+Baskervald ADF fonts collection with TeX/LaTeX support. 
 <a href="texmf-dist/doc/fonts/baskervald/baskervaldadf.pdf">baskervaldadf.pdf</a>.
 </small></li>
 
-<li id="baskervaldx"><b><a href="texmf-dist/doc/fonts/baskervaldx">baskervaldx</a></b><small>
+<li id="baskervaldx"><b><a href="texmf-dist/doc/fonts/baskervaldx/">baskervaldx</a></b><small>
 (<a href="https://ctan.org/pkg/baskervaldx">CTAN</a>):
-Extension and modification of BaskervaldADF with LaTeX support
+Extension and modification of BaskervaldADF with LaTeX support. 
 <a href="texmf-dist/doc/fonts/baskervaldx/baskervaldx-doc.pdf">baskervaldx-doc.pdf</a>
 <a href="texmf-dist/doc/fonts/baskervaldx/baskervaldxmatheg-crop.pdf">baskervaldxmatheg-crop.pdf</a>.
 </small></li>
 
-<li id="baskervillef"><b><a href="texmf-dist/doc/fonts/baskervillef">baskervillef</a></b><small>
+<li id="baskervillef"><b><a href="texmf-dist/doc/fonts/baskervillef/">baskervillef</a></b><small>
 (<a href="https://ctan.org/pkg/baskervillef">CTAN</a>):
-Fry's Baskerville look-alike, with math support
+Fry's Baskerville look-alike, with math support. 
 <a href="texmf-dist/doc/fonts/baskervillef/baskervillef-doc.pdf">baskervillef-doc.pdf</a>.
 </small></li>
 
-<li id="basque-book"><b><a href="texmf-dist/doc/latex/basque-book">basque-book</a></b><small>
+<li id="basque-book"><b><a href="texmf-dist/doc/latex/basque-book/">basque-book</a></b><small>
 (<a href="https://ctan.org/pkg/basque-book">CTAN</a>):
-Class for book-type documents written in Basque
+Class for book-type documents written in Basque. 
 <a href="texmf-dist/doc/latex/basque-book/basque-book.pdf">basque-book.pdf</a>
 <a href="texmf-dist/doc/latex/basque-book/basque-book_EUS.pdf">basque-book_EUS.pdf</a> (eu).
 </small></li>
 
-<li id="basque-date"><b><a href="texmf-dist/doc/latex/basque-date">basque-date</a></b><small>
+<li id="basque-date"><b><a href="texmf-dist/doc/latex/basque-date/">basque-date</a></b><small>
 (<a href="https://ctan.org/pkg/basque-date">CTAN</a>):
-Print the date in Basque
+Print the date in Basque. 
 <a href="texmf-dist/doc/latex/basque-date/basque-date.pdf">basque-date.pdf</a>.
 </small></li>
 
-<li id="bath-bst"><b><a href="texmf-dist/doc/bibtex/bath-bst">bath-bst</a></b><small>
+<li id="bath-bst"><b><a href="texmf-dist/doc/bibtex/bath-bst/">bath-bst</a></b><small>
 (<a href="https://ctan.org/pkg/bath-bst">CTAN</a>):
-Harvard referencing style as recommended by the University of Bath Library
+Harvard referencing style as recommended by the University of Bath Library. 
 <a href="texmf-dist/doc/bibtex/bath-bst/bath-bst-v1.pdf">bath-bst-v1.pdf</a>
 <a href="texmf-dist/doc/bibtex/bath-bst/bath-bst.pdf">bath-bst.pdf</a>.
 </small></li>
 
-<li id="bbding"><b><a href="texmf-dist/doc/latex/bbding">bbding</a></b><small>
+<li id="bbding"><b><a href="texmf-dist/doc/latex/bbding/">bbding</a></b><small>
 (<a href="https://ctan.org/pkg/bbding">CTAN</a>):
-A symbol (dingbat) font and LaTeX macros for its use
+A symbol (dingbat) font and LaTeX macros for its use. 
 <a href="texmf-dist/doc/latex/bbding/bbding.pdf">bbding.pdf</a>.
 </small></li>
 
-<li id="bbm-macros"><b><a href="texmf-dist/doc/latex/bbm-macros">bbm-macros</a></b><small>
+<li id="bbm-macros"><b><a href="texmf-dist/doc/latex/bbm-macros/">bbm-macros</a></b><small>
 (<a href="https://ctan.org/pkg/bbm-macros">CTAN</a>):
-LaTeX support for "blackboard-style" cm fonts
+LaTeX support for "blackboard-style" cm fonts. 
 <a href="texmf-dist/doc/latex/bbm-macros/bbm.pdf">bbm.pdf</a>.
 </small></li>
 
-<li id="bbold"><b><a href="texmf-dist/doc/latex/bbold">bbold</a></b><small>
+<li id="bbold"><b><a href="texmf-dist/doc/latex/bbold/">bbold</a></b><small>
 (<a href="https://ctan.org/pkg/bbold">CTAN</a>):
-Sans serif blackboard bold
+Sans serif blackboard bold. 
 <a href="texmf-dist/doc/latex/bbold/bbold.pdf">bbold.pdf</a>.
 </small></li>
 
-<li id="bbold-type1"><b><a href="texmf-dist/doc/fonts/bbold-type1">bbold-type1</a></b><small>
+<li id="bbold-type1"><b><a href="texmf-dist/doc/fonts/bbold-type1/">bbold-type1</a></b><small>
 (<a href="https://ctan.org/pkg/bbold-type1">CTAN</a>):
-An Adobe Type 1 format version of the bbold font
+An Adobe Type 1 format version of the bbold font. 
 <a href="texmf-dist/doc/fonts/bbold-type1/test.pdf">test.pdf</a>.
 </small></li>
 
-<li id="bchart"><b><a href="texmf-dist/doc/latex/bchart">bchart</a></b><small>
+<li id="bchart"><b><a href="texmf-dist/doc/latex/bchart/">bchart</a></b><small>
 (<a href="https://ctan.org/pkg/bchart">CTAN</a>):
-Draw simple bar charts in LaTeX
+Draw simple bar charts in LaTeX. 
 <a href="texmf-dist/doc/latex/bchart/bchart.pdf">bchart.pdf</a>.
 </small></li>
 
-<li id="bclogo"><b><a href="texmf-dist/doc/latex/bclogo">bclogo</a></b><small>
+<li id="bclogo"><b><a href="texmf-dist/doc/latex/bclogo/">bclogo</a></b><small>
 (<a href="https://ctan.org/pkg/bclogo">CTAN</a>):
-Creating colourful boxes with logos
+Creating colourful boxes with logos. 
 <a href="texmf-dist/doc/latex/bclogo/bclogo-doc.pdf">bclogo-doc.pdf</a> (fr) 
 <a href="texmf-dist/doc/latex/bclogo/bclogo.pdf">bclogo.pdf</a>
 <a href="texmf-dist/doc/latex/bclogo/fond.pdf">fond.pdf</a>
@@ -1846,9 +1837,9 @@
 <a href="texmf-dist/doc/latex/bclogo/syracuse.pdf">syracuse.pdf</a>.
 </small></li>
 
-<li id="beamer"><b><a href="texmf-dist/doc/latex/beamer">beamer</a></b><small>
+<li id="beamer"><b><a href="texmf-dist/doc/latex/beamer/">beamer</a></b><small>
 (<a href="https://ctan.org/pkg/beamer">CTAN</a>):
-A LaTeX class for producing presentations and slides
+A LaTeX class for producing presentations and slides. 
 <a href="texmf-dist/doc/latex/beamer/beamerexample-conference-talk.pdf">beamerexample-conference-talk.pdf</a>
 <a href="texmf-dist/doc/latex/beamer/beamerexample-lecture-beamer-version.pdf">beamerexample-lecture-beamer-version.pdf</a>
 <a href="texmf-dist/doc/latex/beamer/beamerexample-lecture-print-version.pdf">beamerexample-lecture-print-version.pdf</a>
@@ -1857,51 +1848,51 @@
 <a href="texmf-dist/doc/latex/beamer/examples/a-lecture/beamerexample-lecture-logo.pdf">beamerexample-lecture-logo.pdf</a>.
 </small></li>
 
-<li id="beamer-FUBerlin"><b><a href="texmf-dist/doc/latex/beamer-FUBerlin/doc">beamer-FUBerlin</a></b><small>
+<li id="beamer-FUBerlin"><b><a href="texmf-dist/doc/latex/beamer-FUBerlin/">beamer-FUBerlin</a></b><small>
 (<a href="https://ctan.org/pkg/beamer-FUBerlin">CTAN</a>):
-Beamer, using the style of FU Berlin
+Beamer, using the style of FU Berlin. 
 <a href="texmf-dist/doc/latex/beamer-FUBerlin/doc/exampleClass.pdf">exampleClass.pdf</a>
 <a href="texmf-dist/doc/latex/beamer-FUBerlin/doc/exampleTheme.pdf">exampleTheme.pdf</a>.
 </small></li>
 
-<li id="beamer-rl"><b><a href="texmf-dist/doc/lualatex/beamer-rl">beamer-rl</a></b><small>
+<li id="beamer-rl"><b><a href="texmf-dist/doc/lualatex/beamer-rl/">beamer-rl</a></b><small>
 (<a href="https://ctan.org/pkg/beamer-rl">CTAN</a>):
-Right to left presentation with beamer and babel
+Right to left presentation with beamer and babel. 
 <a href="texmf-dist/doc/lualatex/beamer-rl/Example-of-use-ar.pdf">Example-of-use-ar.pdf</a> (ar) 
 <a href="texmf-dist/doc/lualatex/beamer-rl/Example-of-use-en.pdf">Example-of-use-en.pdf</a>.
 </small></li>
 
-<li id="beamer-tut-pt"><b><a href="texmf-dist/doc/latex/beamer-tut-pt">beamer-tut-pt</a></b><small>
+<li id="beamer-tut-pt"><b><a href="texmf-dist/doc/latex/beamer-tut-pt/">beamer-tut-pt</a></b><small>
 (<a href="https://ctan.org/pkg/beamer-tut-pt">CTAN</a>):
-An introduction to the Beamer class, in Portuguese
+An introduction to the Beamer class, in Portuguese. 
 <a href="texmf-dist/doc/latex/beamer-tut-pt/tutorialbeamer.pdf">tutorialbeamer.pdf</a> (pt).
 </small></li>
 
-<li id="beamer-verona"><b><a href="texmf-dist/doc/latex/beamer-verona">beamer-verona</a></b><small>
+<li id="beamer-verona"><b><a href="texmf-dist/doc/latex/beamer-verona/">beamer-verona</a></b><small>
 (<a href="https://ctan.org/pkg/beamer-verona">CTAN</a>):
-A theme for the beamer class
+A theme for the beamer class. 
 <a href="texmf-dist/doc/latex/beamer-verona/beamer-verona-default.pdf">beamer-verona-default.pdf</a>
 <a href="texmf-dist/doc/latex/beamer-verona/beamer-verona-sidebar.pdf">beamer-verona-sidebar.pdf</a>
 <a href="texmf-dist/doc/latex/beamer-verona/beamer-verona.pdf">beamer-verona.pdf</a>.
 </small></li>
 
-<li id="beamer2thesis"><b><a href="texmf-dist/doc/latex/beamer2thesis">beamer2thesis</a></b><small>
+<li id="beamer2thesis"><b><a href="texmf-dist/doc/latex/beamer2thesis/">beamer2thesis</a></b><small>
 (<a href="https://ctan.org/pkg/beamer2thesis">CTAN</a>):
-Thesis presentations using beamer
+Thesis presentations using beamer. 
 <a href="texmf-dist/doc/latex/beamer2thesis/beamer2thesis.pdf">beamer2thesis.pdf</a>
 <a href="texmf-dist/doc/latex/beamer2thesis/beamer2thesis_ita.pdf">beamer2thesis_ita.pdf</a> (it).
 </small></li>
 
-<li id="beamerappendixnote"><b><a href="texmf-dist/doc/latex/beamerappendixnote">beamerappendixnote</a></b><small>
+<li id="beamerappendixnote"><b><a href="texmf-dist/doc/latex/beamerappendixnote/">beamerappendixnote</a></b><small>
 (<a href="https://ctan.org/pkg/beamerappendixnote">CTAN</a>):
-Create notes on appendix frames in beamer
+Create notes on appendix frames in beamer. 
 <a href="texmf-dist/doc/latex/beamerappendixnote/beamerappendixnote.pdf">beamerappendixnote.pdf</a>
 <a href="texmf-dist/doc/latex/beamerappendixnote/example-basic.pdf">example-basic.pdf</a>.
 </small></li>
 
-<li id="beamerauxtheme"><b><a href="texmf-dist/doc/latex/beamerauxtheme">beamerauxtheme</a></b><small>
+<li id="beamerauxtheme"><b><a href="texmf-dist/doc/latex/beamerauxtheme/">beamerauxtheme</a></b><small>
 (<a href="https://ctan.org/pkg/beamerauxtheme">CTAN</a>):
-Supplementary outer and inner themes for beamer
+Supplementary outer and inner themes for beamer. 
 <a href="texmf-dist/doc/latex/beamerauxtheme/example-inner-simplelines.pdf">example-inner-simplelines.pdf</a>
 <a href="texmf-dist/doc/latex/beamerauxtheme/example-outer-sidebarwithminiframes.pdf">example-outer-sidebarwithminiframes.pdf</a>
 <a href="texmf-dist/doc/latex/beamerauxtheme/example-outer-splitwithminiframes.pdf">example-outer-splitwithminiframes.pdf</a>
@@ -1908,15 +1899,15 @@
 <a href="texmf-dist/doc/latex/beamerauxtheme/example-outer-twolines.pdf">example-outer-twolines.pdf</a>.
 </small></li>
 
-<li id="beamercolorthemeowl"><b><a href="texmf-dist/doc/latex/beamercolorthemeowl">beamercolorthemeowl</a></b><small>
+<li id="beamercolorthemeowl"><b><a href="texmf-dist/doc/latex/beamercolorthemeowl/">beamercolorthemeowl</a></b><small>
 (<a href="https://ctan.org/pkg/beamercolorthemeowl">CTAN</a>):
-A flexible beamer color theme to maximize visibility
+A flexible beamer color theme to maximize visibility. 
 <a href="texmf-dist/doc/latex/beamercolorthemeowl/beamercolorthemeowl.pdf">beamercolorthemeowl.pdf</a>.
 </small></li>
 
-<li id="beamerdarkthemes"><b><a href="texmf-dist/doc/latex/beamerdarkthemes">beamerdarkthemes</a></b><small>
+<li id="beamerdarkthemes"><b><a href="texmf-dist/doc/latex/beamerdarkthemes/">beamerdarkthemes</a></b><small>
 (<a href="https://ctan.org/pkg/beamerdarkthemes">CTAN</a>):
-Dark color themes for beamer
+Dark color themes for beamer. 
 <a href="texmf-dist/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.pdf">beamerdarkthemesuserguide.pdf</a>
 <a href="texmf-dist/doc/latex/beamerdarkthemes/cormorantexampledefault.pdf">cormorantexampledefault.pdf</a>
 <a href="texmf-dist/doc/latex/beamerdarkthemes/cormorantexampleinfolines.pdf">cormorantexampleinfolines.pdf</a>
@@ -1932,23 +1923,23 @@
 <a href="texmf-dist/doc/latex/beamerdarkthemes/magpieexampletree.pdf">magpieexampletree.pdf</a>.
 </small></li>
 
-<li id="beamerposter"><b><a href="texmf-dist/doc/latex/beamerposter">beamerposter</a></b><small>
+<li id="beamerposter"><b><a href="texmf-dist/doc/latex/beamerposter/">beamerposter</a></b><small>
 (<a href="https://ctan.org/pkg/beamerposter">CTAN</a>):
-Extend beamer and a0poster for custom sized posters
+Extend beamer and a0poster for custom sized posters. 
 <a href="texmf-dist/doc/latex/beamerposter/beamerposter.pdf">beamerposter.pdf</a>.
 </small></li>
 
-<li id="beamersubframe"><b><a href="texmf-dist/doc/latex/beamersubframe">beamersubframe</a></b><small>
+<li id="beamersubframe"><b><a href="texmf-dist/doc/latex/beamersubframe/">beamersubframe</a></b><small>
 (<a href="https://ctan.org/pkg/beamersubframe">CTAN</a>):
-Reorder frames in the PDF file
+Reorder frames in the PDF file. 
 <a href="texmf-dist/doc/latex/beamersubframe/beamersubframe-append.pdf">beamersubframe-append.pdf</a>
 <a href="texmf-dist/doc/latex/beamersubframe/beamersubframe-embed.pdf">beamersubframe-embed.pdf</a>
 <a href="texmf-dist/doc/latex/beamersubframe/beamersubframe.pdf">beamersubframe.pdf</a>.
 </small></li>
 
-<li id="beamerswitch"><b><a href="texmf-dist/doc/latex/beamerswitch">beamerswitch</a></b><small>
+<li id="beamerswitch"><b><a href="texmf-dist/doc/latex/beamerswitch/">beamerswitch</a></b><small>
 (<a href="https://ctan.org/pkg/beamerswitch">CTAN</a>):
-Convenient mode selection in Beamer documents
+Convenient mode selection in Beamer documents. 
 <a href="texmf-dist/doc/latex/beamerswitch/beamerswitch-example-article.pdf">beamerswitch-example-article.pdf</a>
 <a href="texmf-dist/doc/latex/beamerswitch/beamerswitch-example-handout.pdf">beamerswitch-example-handout.pdf</a>
 <a href="texmf-dist/doc/latex/beamerswitch/beamerswitch-example-trans.pdf">beamerswitch-example-trans.pdf</a>
@@ -1956,9 +1947,9 @@
 <a href="texmf-dist/doc/latex/beamerswitch/beamerswitch.pdf">beamerswitch.pdf</a>.
 </small></li>
 
-<li id="beamertheme-cuerna"><b><a href="texmf-dist/doc/latex/beamertheme-cuerna">beamertheme-cuerna</a></b><small>
+<li id="beamertheme-cuerna"><b><a href="texmf-dist/doc/latex/beamertheme-cuerna/">beamertheme-cuerna</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-cuerna">CTAN</a>):
-A beamer theme with 4 colour palettes
+A beamer theme with 4 colour palettes. 
 <a href="texmf-dist/doc/latex/beamertheme-cuerna/beamertheme-cuerna.pdf">beamertheme-cuerna.pdf</a>
 <a href="texmf-dist/doc/latex/beamertheme-cuerna/pictures/bluesimplexexample.pdf">bluesimplexexample.pdf</a>
 <a href="texmf-dist/doc/latex/beamertheme-cuerna/pictures/brickexample.pdf">brickexample.pdf</a>
@@ -1966,68 +1957,68 @@
 <a href="texmf-dist/doc/latex/beamertheme-cuerna/pictures/lettuceexample.pdf">lettuceexample.pdf</a>.
 </small></li>
 
-<li id="beamertheme-detlevcm"><b><a href="texmf-dist/doc/latex/beamertheme-detlevcm">beamertheme-detlevcm</a></b><small>
+<li id="beamertheme-detlevcm"><b><a href="texmf-dist/doc/latex/beamertheme-detlevcm/">beamertheme-detlevcm</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-detlevcm">CTAN</a>):
-A beamer theme designed for use in the University of Leeds
+A beamer theme designed for use in the University of Leeds. 
 <a href="texmf-dist/doc/latex/beamertheme-detlevcm/beamertheme-detlevcm.pdf">beamertheme-detlevcm.pdf</a>.
 </small></li>
 
-<li id="beamertheme-epyt"><b><a href="texmf-dist/doc/latex/beamertheme-epyt">beamertheme-epyt</a></b><small>
+<li id="beamertheme-epyt"><b><a href="texmf-dist/doc/latex/beamertheme-epyt/">beamertheme-epyt</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-epyt">CTAN</a>):
-A simple and clean theme for LaTeX beamer class
+A simple and clean theme for LaTeX beamer class. 
 <a href="texmf-dist/doc/latex/beamertheme-epyt/epyt-demo-cn.pdf">epyt-demo-cn.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/beamertheme-epyt/epyt-demo.pdf">epyt-demo.pdf</a>.
 </small></li>
 
-<li id="beamertheme-focus"><b><a href="texmf-dist/doc/latex/beamertheme-focus">beamertheme-focus</a></b><small>
+<li id="beamertheme-focus"><b><a href="texmf-dist/doc/latex/beamertheme-focus/">beamertheme-focus</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-focus">CTAN</a>):
-A minimalist presentation theme for LaTeX Beamer
+A minimalist presentation theme for LaTeX Beamer. 
 <a href="texmf-dist/doc/latex/beamertheme-focus/demo.pdf">demo.pdf</a>
 <a href="texmf-dist/doc/latex/beamertheme-focus/focuslogo.pdf">focuslogo.pdf</a>.
 </small></li>
 
-<li id="beamertheme-light"><b><a href="texmf-dist/doc/latex/beamertheme-light">beamertheme-light</a></b><small>
+<li id="beamertheme-light"><b><a href="texmf-dist/doc/latex/beamertheme-light/">beamertheme-light</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-light">CTAN</a>):
-A minimal beamer style
+A minimal beamer style. 
 <a href="texmf-dist/doc/latex/beamertheme-light/beamertheme-light-example.pdf">beamertheme-light-example.pdf</a>.
 </small></li>
 
-<li id="beamertheme-metropolis"><b><a href="texmf-dist/doc/latex/beamertheme-metropolis">beamertheme-metropolis</a></b><small>
+<li id="beamertheme-metropolis"><b><a href="texmf-dist/doc/latex/beamertheme-metropolis/">beamertheme-metropolis</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-metropolis">CTAN</a>):
-A modern LaTeX beamer theme
+A modern LaTeX beamer theme. 
 <a href="texmf-dist/doc/latex/beamertheme-metropolis/demo.pdf">demo.pdf</a>
 <a href="texmf-dist/doc/latex/beamertheme-metropolis/metropolistheme.pdf">metropolistheme.pdf</a>.
 </small></li>
 
-<li id="beamertheme-npbt"><b><a href="texmf-dist/doc/latex/beamertheme-npbt/example">beamertheme-npbt</a></b><small>
+<li id="beamertheme-npbt"><b><a href="texmf-dist/doc/latex/beamertheme-npbt/">beamertheme-npbt</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-npbt">CTAN</a>):
-A collection of LaTeX beamer themes
+A collection of LaTeX beamer themes. 
 <a href="texmf-dist/doc/latex/beamertheme-npbt/example/NPBT_exsamle.pdf">NPBT_exsamle.pdf</a>.
 </small></li>
 
-<li id="beamertheme-phnompenh"><b><a href="texmf-dist/doc/latex/beamertheme-phnompenh">beamertheme-phnompenh</a></b><small>
+<li id="beamertheme-phnompenh"><b><a href="texmf-dist/doc/latex/beamertheme-phnompenh/">beamertheme-phnompenh</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-phnompenh">CTAN</a>):
-A simple beamer theme
+A simple beamer theme. 
 <a href="texmf-dist/doc/latex/beamertheme-phnompenh/beamerthemePhnomPenh.pdf">beamerthemePhnomPenh.pdf</a>.
 </small></li>
 
-<li id="beamertheme-saintpetersburg"><b><a href="texmf-dist/doc/latex/beamertheme-saintpetersburg">beamertheme-saintpetersburg</a></b><small>
+<li id="beamertheme-saintpetersburg"><b><a href="texmf-dist/doc/latex/beamertheme-saintpetersburg/">beamertheme-saintpetersburg</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-saintpetersburg">CTAN</a>):
-A beamer theme that incorporates colours and fonts of Saint Petersburg State University
+A beamer theme that incorporates colours and fonts of Saint Petersburg State University. 
 <a href="texmf-dist/doc/latex/beamertheme-saintpetersburg/SaintPetersburg.pdf">SaintPetersburg.pdf</a>
 <a href="texmf-dist/doc/latex/beamertheme-saintpetersburg/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="beamertheme-upenn-bc"><b><a href="texmf-dist/doc/latex/beamertheme-upenn-bc">beamertheme-upenn-bc</a></b><small>
+<li id="beamertheme-upenn-bc"><b><a href="texmf-dist/doc/latex/beamertheme-upenn-bc/">beamertheme-upenn-bc</a></b><small>
 (<a href="https://ctan.org/pkg/beamertheme-upenn-bc">CTAN</a>):
-Beamer themes for Boston College and the University of Pennsylvania
+Beamer themes for Boston College and the University of Pennsylvania. 
 <a href="texmf-dist/doc/latex/beamertheme-upenn-bc/beamerBCstyle.pdf">beamerBCstyle.pdf</a>
 <a href="texmf-dist/doc/latex/beamertheme-upenn-bc/beamerPENNstyle.pdf">beamerPENNstyle.pdf</a>.
 </small></li>
 
-<li id="bearwear"><b><a href="texmf-dist/doc/latex/bearwear">bearwear</a></b><small>
+<li id="bearwear"><b><a href="texmf-dist/doc/latex/bearwear/">bearwear</a></b><small>
 (<a href="https://ctan.org/pkg/bearwear">CTAN</a>):
-Shirts to dress TikZbears
+Shirts to dress TikZbears. 
 <a href="texmf-dist/doc/latex/bearwear/bearwear.pdf">bearwear.pdf</a>
 <a href="texmf-dist/doc/latex/bearwear/flag.pdf">flag.pdf</a>
 <a href="texmf-dist/doc/latex/bearwear/latex-project-logo.pdf">latex-project-logo.pdf</a>
@@ -2034,21 +2025,21 @@
 <a href="texmf-dist/doc/latex/bearwear/ulrike.pdf">ulrike.pdf</a>.
 </small></li>
 
-<li id="begingreek"><b><a href="texmf-dist/doc/latex/begingreek">begingreek</a></b><small>
+<li id="begingreek"><b><a href="texmf-dist/doc/latex/begingreek/">begingreek</a></b><small>
 (<a href="https://ctan.org/pkg/begingreek">CTAN</a>):
-Greek environment to be used with pdfLaTeX only
+Greek environment to be used with pdfLaTeX only. 
 <a href="texmf-dist/doc/latex/begingreek/begingreek.pdf">begingreek.pdf</a>.
 </small></li>
 
-<li id="begriff"><b><a href="texmf-dist/doc/latex/begriff">begriff</a></b><small>
+<li id="begriff"><b><a href="texmf-dist/doc/latex/begriff/">begriff</a></b><small>
 (<a href="https://ctan.org/pkg/begriff">CTAN</a>):
-Typeset Begriffschrift
+Typeset Begriffschrift. 
 <a href="texmf-dist/doc/latex/begriff/examples.pdf">examples.pdf</a>.
 </small></li>
 
-<li id="beilstein"><b><a href="texmf-dist/doc/latex/beilstein">beilstein</a></b><small>
+<li id="beilstein"><b><a href="texmf-dist/doc/latex/beilstein/">beilstein</a></b><small>
 (<a href="https://ctan.org/pkg/beilstein">CTAN</a>):
-Support for submissions to the "Beilstein Journal of Nanotechnology"
+Support for submissions to the "Beilstein Journal of Nanotechnology". 
 <a href="texmf-dist/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf">BJNANO_Technical_Handbook.pdf</a>
 <a href="texmf-dist/doc/latex/beilstein/figure1.pdf">figure1.pdf</a>
 <a href="texmf-dist/doc/latex/beilstein/scheme1.pdf">scheme1.pdf</a>
@@ -2055,53 +2046,52 @@
 <a href="texmf-dist/doc/latex/beilstein/scheme2.pdf">scheme2.pdf</a>.
 </small></li>
 
-<li id="bengali"><b><a href="texmf-dist/doc/fonts/bengali">bengali</a></b><small>
-(<a href="https://ctan.org/pkg/bengali">CTAN</a>):
-Support for the Bengali language
+<li id="bengali"><b><a href="texmf-dist/doc/fonts/bengali/">bengali</a></b><small>
+Support for the Bengali language. 
 <a href="texmf-dist/doc/fonts/bengali/bengdoc.pdf">bengdoc.pdf</a>
 <a href="texmf-dist/doc/fonts/bengali/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="bera"><b><a href="texmf-dist/doc/fonts/bera">bera</a></b><small>
+<li id="bera"><b><a href="texmf-dist/doc/fonts/bera/">bera</a></b><small>
 (<a href="https://ctan.org/pkg/bera">CTAN</a>):
-Bera fonts
+Bera fonts. 
 <a href="texmf-dist/doc/fonts/bera/bera.pdf">bera.pdf</a>.
 </small></li>
 
-<li id="berenisadf"><b><a href="texmf-dist/doc/fonts/berenisadf">berenisadf</a></b><small>
+<li id="berenisadf"><b><a href="texmf-dist/doc/fonts/berenisadf/">berenisadf</a></b><small>
 (<a href="https://ctan.org/pkg/berenisadf">CTAN</a>):
-Berenis ADF fonts and TeX/LaTeX support
+Berenis ADF fonts and TeX/LaTeX support. 
 <a href="texmf-dist/doc/fonts/berenisadf/berenisadf.pdf">berenisadf.pdf</a>.
 </small></li>
 
-<li id="bestpapers"><b><a href="texmf-dist/doc/bibtex/bestpapers">bestpapers</a></b><small>
+<li id="bestpapers"><b><a href="texmf-dist/doc/bibtex/bestpapers/">bestpapers</a></b><small>
 (<a href="https://ctan.org/pkg/bestpapers">CTAN</a>):
-A BibTeX package to produce lists of authors' best papers
+A BibTeX package to produce lists of authors' best papers. 
 <a href="texmf-dist/doc/bibtex/bestpapers/bestpapers-guide.pdf">bestpapers-guide.pdf</a>.
 </small></li>
 
-<li id="betababel"><b><a href="texmf-dist/doc/latex/betababel">betababel</a></b><small>
+<li id="betababel"><b><a href="texmf-dist/doc/latex/betababel/">betababel</a></b><small>
 (<a href="https://ctan.org/pkg/betababel">CTAN</a>):
-Insert ancient greek text coded in Beta Code
+Insert ancient greek text coded in Beta Code. 
 <a href="texmf-dist/doc/latex/betababel/betatest.pdf">betatest.pdf</a>.
 </small></li>
 
-<li id="beton"><b><a href="texmf-dist/doc/latex/beton">beton</a></b><small>
+<li id="beton"><b><a href="texmf-dist/doc/latex/beton/">beton</a></b><small>
 (<a href="https://ctan.org/pkg/beton">CTAN</a>):
-Use Concrete fonts
+Use Concrete fonts. 
 <a href="texmf-dist/doc/latex/beton/beton.pdf">beton.pdf</a>.
 </small></li>
 
-<li id="beuron"><b><a href="texmf-dist/doc/fonts/beuron">beuron</a></b><small>
+<li id="beuron"><b><a href="texmf-dist/doc/fonts/beuron/">beuron</a></b><small>
 (<a href="https://ctan.org/pkg/beuron">CTAN</a>):
-The script of the Beuronese art school
+The script of the Beuronese art school. 
 <a href="texmf-dist/doc/fonts/beuron/beuron-de.pdf">beuron-de.pdf</a> (de) 
 <a href="texmf-dist/doc/fonts/beuron/beuron-en.pdf">beuron-en.pdf</a>.
 </small></li>
 
-<li id="bewerbung"><b><a href="texmf-dist/doc/latex/bewerbung">bewerbung</a></b><small>
+<li id="bewerbung"><b><a href="texmf-dist/doc/latex/bewerbung/">bewerbung</a></b><small>
 (<a href="https://ctan.org/pkg/bewerbung">CTAN</a>):
-Typesetting job application
+Typesetting job application. 
 <a href="texmf-dist/doc/latex/bewerbung/Foto.pdf">Foto.pdf</a>
 <a href="texmf-dist/doc/latex/bewerbung/argetabelle-example.pdf">argetabelle-example.pdf</a>
 <a href="texmf-dist/doc/latex/bewerbung/bewerbung-example.pdf">bewerbung-example.pdf</a>
@@ -2108,21 +2098,21 @@
 <a href="texmf-dist/doc/latex/bewerbung/bewerbung.pdf">bewerbung.pdf</a>.
 </small></li>
 
-<li id="bez123"><b><a href="texmf-dist/doc/latex/bez123">bez123</a></b><small>
+<li id="bez123"><b><a href="texmf-dist/doc/latex/bez123/">bez123</a></b><small>
 (<a href="https://ctan.org/pkg/bez123">CTAN</a>):
-Support for Bezier curves
+Support for Bezier curves. 
 <a href="texmf-dist/doc/latex/bez123/bez123.pdf">bez123.pdf</a>.
 </small></li>
 
-<li id="bezierplot"><b><a href="texmf-dist/doc/lualatex/bezierplot">bezierplot</a></b><small>
+<li id="bezierplot"><b><a href="texmf-dist/doc/lualatex/bezierplot/">bezierplot</a></b><small>
 (<a href="https://ctan.org/pkg/bezierplot">CTAN</a>):
-Approximate smooth function graphs with cubic bezier splines for use with TikZ or MetaPost
+Approximate smooth function graphs with cubic bezier splines for use with TikZ or MetaPost. 
 <a href="texmf-dist/doc/lualatex/bezierplot/bezierplot-doc.pdf">bezierplot-doc.pdf</a>.
 </small></li>
 
-<li id="bgteubner"><b><a href="texmf-dist/doc/latex/bgteubner">bgteubner</a></b><small>
+<li id="bgteubner"><b><a href="texmf-dist/doc/latex/bgteubner/">bgteubner</a></b><small>
 (<a href="https://ctan.org/pkg/bgteubner">CTAN</a>):
-Class for producing books for the publisher "Teubner Verlag"
+Class for producing books for the publisher "Teubner Verlag". 
 <a href="texmf-dist/doc/latex/bgteubner/bgteubner-cm.pdf">bgteubner-cm.pdf</a>
 <a href="texmf-dist/doc/latex/bgteubner/bgteubner.pdf">bgteubner.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/bgteubner/bgteucls.pdf">bgteucls.pdf</a> (de) 
@@ -2145,15 +2135,15 @@
 <a href="texmf-dist/doc/latex/bgteubner/umbruch3a.pdf">umbruch3a.pdf</a>.
 </small></li>
 
-<li id="bguq"><b><a href="texmf-dist/doc/fonts/bguq">bguq</a></b><small>
+<li id="bguq"><b><a href="texmf-dist/doc/fonts/bguq/">bguq</a></b><small>
 (<a href="https://ctan.org/pkg/bguq">CTAN</a>):
-Improved quantifier stroke for Begriffsschrift packages
+Improved quantifier stroke for Begriffsschrift packages. 
 <a href="texmf-dist/doc/fonts/bguq/bguq-doc.pdf">bguq-doc.pdf</a>.
 </small></li>
 
-<li id="bib2gls"><b><a href="texmf-dist/doc/support/bib2gls">bib2gls</a></b><small>
+<li id="bib2gls"><b><a href="texmf-dist/doc/support/bib2gls/">bib2gls</a></b><small>
 (<a href="https://ctan.org/pkg/bib2gls">CTAN</a>):
-Command line application to convert .bib files to glossaries-extra.sty resource files
+Command line application to convert .bib files to glossaries-extra.sty resource files. 
 <a href="texmf-dist/doc/support/bib2gls/bib2gls-begin.pdf">bib2gls-begin.pdf</a>
 <a href="texmf-dist/doc/support/bib2gls/bib2gls.pdf">bib2gls.pdf</a>
 <a href="texmf-dist/doc/support/bib2gls/examples/sample-authors.pdf">sample-authors.pdf</a>
@@ -2178,34 +2168,34 @@
 <a href="texmf-dist/doc/support/bib2gls/examples/sample-usergroups.pdf">sample-usergroups.pdf</a>.
 </small></li>
 
-<li id="bibarts"><b><a href="texmf-dist/doc/latex/bibarts">bibarts</a></b><small>
+<li id="bibarts"><b><a href="texmf-dist/doc/latex/bibarts/">bibarts</a></b><small>
 (<a href="https://ctan.org/pkg/bibarts">CTAN</a>):
-"Arts"-style bibliographical information
+"Arts"-style bibliographical information. 
 <a href="texmf-dist/doc/latex/bibarts/ba-short.pdf">ba-short.pdf</a>
 <a href="texmf-dist/doc/latex/bibarts/bibarts.pdf">bibarts.pdf</a> (de).
 </small></li>
 
-<li id="biber"><b><a href="texmf-dist/doc/bibtex/biber">biber</a></b><small>
+<li id="biber"><b><a href="texmf-dist/doc/bibtex/biber/">biber</a></b><small>
 (<a href="https://ctan.org/pkg/biber">CTAN</a>):
-A BibTeX replacement for users of BibLaTeX
+A BibTeX replacement for users of BibLaTeX. 
 <a href="texmf-dist/doc/bibtex/biber/biber.pdf">biber.pdf</a>.
 </small></li>
 
-<li id="bibexport"><b><a href="texmf-dist/doc/bibtex/bibexport">bibexport</a></b><small>
+<li id="bibexport"><b><a href="texmf-dist/doc/bibtex/bibexport/">bibexport</a></b><small>
 (<a href="https://ctan.org/pkg/bibexport">CTAN</a>):
-Extract a BibTeX file based on a .aux file
+Extract a BibTeX file based on a .aux file. 
 <a href="texmf-dist/doc/bibtex/bibexport/bibexport.pdf">bibexport.pdf</a>.
 </small></li>
 
-<li id="bibhtml"><b><a href="texmf-dist/doc/bibtex/bibhtml">bibhtml</a></b><small>
+<li id="bibhtml"><b><a href="texmf-dist/doc/bibtex/bibhtml/">bibhtml</a></b><small>
 (<a href="https://ctan.org/pkg/bibhtml">CTAN</a>):
-BibTeX support for HTML files
+BibTeX support for HTML files. 
 <a href="texmf-dist/doc/bibtex/bibhtml/bibhtml.html">bibhtml.html</a>.
 </small></li>
 
-<li id="biblatex"><b><a href="texmf-dist/doc/latex/biblatex">biblatex</a></b><small>
+<li id="biblatex"><b><a href="texmf-dist/doc/latex/biblatex/">biblatex</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex">CTAN</a>):
-Sophisticated Bibliographies in LaTeX
+Sophisticated Bibliographies in LaTeX. 
 <a href="texmf-dist/doc/latex/biblatex/biblatex.pdf">biblatex.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex/examples/01-introduction-biber.pdf">01-introduction-biber.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex/examples/01-introduction-bibtex.pdf">01-introduction-bibtex.pdf</a>
@@ -2305,23 +2295,23 @@
 <a href="texmf-dist/doc/latex/biblatex/examples/97-annotations-biber.pdf">97-annotations-biber.pdf</a>.
 </small></li>
 
-<li id="biblatex-abnt"><b><a href="texmf-dist/doc/latex/biblatex-abnt">biblatex-abnt</a></b><small>
+<li id="biblatex-abnt"><b><a href="texmf-dist/doc/latex/biblatex-abnt/">biblatex-abnt</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-abnt">CTAN</a>):
-BibLaTeX style for Brazil's ABNT rules
+BibLaTeX style for Brazil's ABNT rules. 
 <a href="texmf-dist/doc/latex/biblatex-abnt/NBR10520-2002_reference.pdf">NBR10520-2002_reference.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-abnt/NBR6023-2002_reference.pdf">NBR6023-2002_reference.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-abnt/biblatex-abnt.pdf">biblatex-abnt.pdf</a> (pt-br).
 </small></li>
 
-<li id="biblatex-anonymous"><b><a href="texmf-dist/doc/latex/biblatex-anonymous">biblatex-anonymous</a></b><small>
+<li id="biblatex-anonymous"><b><a href="texmf-dist/doc/latex/biblatex-anonymous/">biblatex-anonymous</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-anonymous">CTAN</a>):
-A tool to manage anonymous work with BibLaTeX
+A tool to manage anonymous work with BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-anonymous/biblatex-anonymous.pdf">biblatex-anonymous.pdf</a>.
 </small></li>
 
-<li id="biblatex-apa"><b><a href="texmf-dist/doc/latex/biblatex-apa">biblatex-apa</a></b><small>
+<li id="biblatex-apa"><b><a href="texmf-dist/doc/latex/biblatex-apa/">biblatex-apa</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-apa">CTAN</a>):
-BibLaTeX citation and reference style for APA
+BibLaTeX citation and reference style for APA. 
 <a href="texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test.pdf">biblatex-apa-test.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-apa/biblatex-apa.pdf">biblatex-apa.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-apa/biblatex-apa6-test.pdf">biblatex-apa6-test.pdf</a>
@@ -2328,16 +2318,16 @@
 <a href="texmf-dist/doc/latex/biblatex-apa/biblatex-apa6.pdf">biblatex-apa6.pdf</a>.
 </small></li>
 
-<li id="biblatex-apa6"><b><a href="texmf-dist/doc/latex/biblatex-apa6">biblatex-apa6</a></b><small>
+<li id="biblatex-apa6"><b><a href="texmf-dist/doc/latex/biblatex-apa6/">biblatex-apa6</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-apa6">CTAN</a>):
-BibLaTeX citation and reference style for APA 6th Edition
+BibLaTeX citation and reference style for APA 6th Edition. 
 <a href="texmf-dist/doc/latex/biblatex-apa6/biblatex-apa6-test.pdf">biblatex-apa6-test.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-apa6/biblatex-apa6.pdf">biblatex-apa6.pdf</a>.
 </small></li>
 
-<li id="biblatex-archaeology"><b><a href="texmf-dist/doc/latex/biblatex-archaeology">biblatex-archaeology</a></b><small>
+<li id="biblatex-archaeology"><b><a href="texmf-dist/doc/latex/biblatex-archaeology/">biblatex-archaeology</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-archaeology">CTAN</a>):
-A collection of BibLaTeX styles for German prehistory
+A collection of BibLaTeX styles for German prehistory. 
 <a href="texmf-dist/doc/latex/biblatex-archaeology/biblatex-archaeology.pdf">biblatex-archaeology.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-archaeology/example/aefkw-example.pdf">aefkw-example.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-archaeology/example/afwl-example.pdf">afwl-example.pdf</a>
@@ -2384,28 +2374,28 @@
 <a href="texmf-dist/doc/latex/biblatex-archaeology/example/zaes-example.pdf">zaes-example.pdf</a>.
 </small></li>
 
-<li id="biblatex-arthistory-bonn"><b><a href="texmf-dist/doc/latex/biblatex-arthistory-bonn">biblatex-arthistory-bonn</a></b><small>
+<li id="biblatex-arthistory-bonn"><b><a href="texmf-dist/doc/latex/biblatex-arthistory-bonn/">biblatex-arthistory-bonn</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-arthistory-bonn">CTAN</a>):
-BibLaTeX citation style covers the citation and bibliography guidelines for art historians
+BibLaTeX citation style covers the citation and bibliography guidelines for art historians. 
 <a href="texmf-dist/doc/latex/biblatex-arthistory-bonn/arthistory-bonn.pdf">arthistory-bonn.pdf</a>.
 </small></li>
 
-<li id="biblatex-bath"><b><a href="texmf-dist/doc/latex/biblatex-bath">biblatex-bath</a></b><small>
+<li id="biblatex-bath"><b><a href="texmf-dist/doc/latex/biblatex-bath/">biblatex-bath</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-bath">CTAN</a>):
-Harvard referencing style as recommended by the University of Bath Library
+Harvard referencing style as recommended by the University of Bath Library. 
 <a href="texmf-dist/doc/latex/biblatex-bath/biblatex-bath.pdf">biblatex-bath.pdf</a>.
 </small></li>
 
-<li id="biblatex-bookinarticle"><b><a href="texmf-dist/doc/latex/biblatex-bookinarticle/documentation">biblatex-bookinarticle</a></b><small>
+<li id="biblatex-bookinarticle"><b><a href="texmf-dist/doc/latex/biblatex-bookinarticle/">biblatex-bookinarticle</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-bookinarticle">CTAN</a>):
-Manage book edited in article
+Manage book edited in article. 
 <a href="texmf-dist/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle-crossref.pdf">biblatex-bookinarticle-crossref.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.pdf">biblatex-bookinarticle.pdf</a>.
 </small></li>
 
-<li id="biblatex-bookinother"><b><a href="texmf-dist/doc/latex/biblatex-bookinother/documentation">biblatex-bookinother</a></b><small>
+<li id="biblatex-bookinother"><b><a href="texmf-dist/doc/latex/biblatex-bookinother/">biblatex-bookinother</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-bookinother">CTAN</a>):
-Manage book edited in other entry type
+Manage book edited in other entry type. 
 <a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/biblatex-bookinother.pdf">biblatex-bookinother.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookinarticle.pdf">example-bookinarticle.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookincollection.pdf">example-bookincollection.pdf</a>
@@ -2418,28 +2408,28 @@
 <a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookinthesis.pdf">example-bookinthesis.pdf</a>.
 </small></li>
 
-<li id="biblatex-bwl"><b><a href="texmf-dist/doc/latex/biblatex-bwl/doc">biblatex-bwl</a></b><small>
+<li id="biblatex-bwl"><b><a href="texmf-dist/doc/latex/biblatex-bwl/">biblatex-bwl</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-bwl">CTAN</a>):
-BibLaTeX citations for FU Berlin
+BibLaTeX citations for FU Berlin. 
 <a href="texmf-dist/doc/latex/biblatex-bwl/doc/bwl-FU.pdf">bwl-FU.pdf</a>.
 </small></li>
 
-<li id="biblatex-caspervector"><b><a href="texmf-dist/doc/latex/biblatex-caspervector">biblatex-caspervector</a></b><small>
+<li id="biblatex-caspervector"><b><a href="texmf-dist/doc/latex/biblatex-caspervector/">biblatex-caspervector</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-caspervector">CTAN</a>):
-A simple citation style for Chinese users
+A simple citation style for Chinese users. 
 <a href="texmf-dist/doc/latex/biblatex-caspervector/caspervector-ay.pdf">caspervector-ay.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-caspervector/caspervector.pdf">caspervector.pdf</a> (zh).
 </small></li>
 
-<li id="biblatex-cheatsheet"><b><a href="texmf-dist/doc/latex/biblatex-cheatsheet">biblatex-cheatsheet</a></b><small>
+<li id="biblatex-cheatsheet"><b><a href="texmf-dist/doc/latex/biblatex-cheatsheet/">biblatex-cheatsheet</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-cheatsheet">CTAN</a>):
-BibLaTeX/Biber 'cheat sheet'
+BibLaTeX/Biber 'cheat sheet'. 
 <a href="texmf-dist/doc/latex/biblatex-cheatsheet/biblatex-cheatsheet.pdf">biblatex-cheatsheet.pdf</a>.
 </small></li>
 
-<li id="biblatex-chem"><b><a href="texmf-dist/doc/latex/biblatex-chem">biblatex-chem</a></b><small>
+<li id="biblatex-chem"><b><a href="texmf-dist/doc/latex/biblatex-chem/">biblatex-chem</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-chem">CTAN</a>):
-A set of BibLaTeX implementations of chemistry-related bibliography styles
+A set of BibLaTeX implementations of chemistry-related bibliography styles. 
 <a href="texmf-dist/doc/latex/biblatex-chem/biblatex-chem-acs.pdf">biblatex-chem-acs.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-chem/biblatex-chem-angew.pdf">biblatex-chem-angew.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-chem/biblatex-chem-biochem.pdf">biblatex-chem-biochem.pdf</a>
@@ -2447,9 +2437,9 @@
 <a href="texmf-dist/doc/latex/biblatex-chem/biblatex-chem.pdf">biblatex-chem.pdf</a>.
 </small></li>
 
-<li id="biblatex-chicago"><b><a href="texmf-dist/doc/latex/biblatex-chicago">biblatex-chicago</a></b><small>
+<li id="biblatex-chicago"><b><a href="texmf-dist/doc/latex/biblatex-chicago/">biblatex-chicago</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-chicago">CTAN</a>):
-Chicago style files for BibLaTeX
+Chicago style files for BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-chicago/biblatex-chicago.pdf">biblatex-chicago.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-chicago/cms-dates-intro.pdf">cms-dates-intro.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-chicago/cms-dates-sample.pdf">cms-dates-sample.pdf</a>
@@ -2461,15 +2451,15 @@
 <a href="texmf-dist/doc/latex/biblatex-chicago/cms-trad-sample.pdf">cms-trad-sample.pdf</a>.
 </small></li>
 
-<li id="biblatex-claves"><b><a href="texmf-dist/doc/latex/biblatex-claves/documentation">biblatex-claves</a></b><small>
+<li id="biblatex-claves"><b><a href="texmf-dist/doc/latex/biblatex-claves/">biblatex-claves</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-claves">CTAN</a>):
-A tool to manage claves of old litterature with BibLaTeX
+A tool to manage claves of old litterature with BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-claves/documentation/biblatex-claves.pdf">biblatex-claves.pdf</a>.
 </small></li>
 
-<li id="biblatex-dw"><b><a href="texmf-dist/doc/latex/biblatex-dw">biblatex-dw</a></b><small>
+<li id="biblatex-dw"><b><a href="texmf-dist/doc/latex/biblatex-dw/">biblatex-dw</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-dw">CTAN</a>):
-Humanities styles for BibLaTeX
+Humanities styles for BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-dw/biblatex-dw.pdf">biblatex-dw.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-dw/de-biblatex-dw.pdf">de-biblatex-dw.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/biblatex-dw/examples/de-authortitle-dw.pdf">de-authortitle-dw.pdf</a>
@@ -2478,15 +2468,15 @@
 <a href="texmf-dist/doc/latex/biblatex-dw/examples/en-footnote-dw.pdf">en-footnote-dw.pdf</a>.
 </small></li>
 
-<li id="biblatex-ext"><b><a href="texmf-dist/doc/latex/biblatex-ext">biblatex-ext</a></b><small>
+<li id="biblatex-ext"><b><a href="texmf-dist/doc/latex/biblatex-ext/">biblatex-ext</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-ext">CTAN</a>):
-Extended BibLaTeX standard styles
+Extended BibLaTeX standard styles. 
 <a href="texmf-dist/doc/latex/biblatex-ext/biblatex-ext.pdf">biblatex-ext.pdf</a>.
 </small></li>
 
-<li id="biblatex-fiwi"><b><a href="texmf-dist/doc/latex/biblatex-fiwi">biblatex-fiwi</a></b><small>
+<li id="biblatex-fiwi"><b><a href="texmf-dist/doc/latex/biblatex-fiwi/">biblatex-fiwi</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-fiwi">CTAN</a>):
-BibLaTeX styles for use in German humanities
+BibLaTeX styles for use in German humanities. 
 <a href="texmf-dist/doc/latex/biblatex-fiwi/biblatex-fiwi.pdf">biblatex-fiwi.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/biblatex-fiwi/example-biblatex-fiwi-options.pdf">example-biblatex-fiwi-options.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-fiwi/example-biblatex-fiwi-xindy.pdf">example-biblatex-fiwi-xindy.pdf</a>
@@ -2494,78 +2484,78 @@
 <a href="texmf-dist/doc/latex/biblatex-fiwi/example-biblatex-fiwi2-options.pdf">example-biblatex-fiwi2-options.pdf</a>.
 </small></li>
 
-<li id="biblatex-gb7714-2015"><b><a href="texmf-dist/doc/latex/biblatex-gb7714-2015">biblatex-gb7714-2015</a></b><small>
+<li id="biblatex-gb7714-2015"><b><a href="texmf-dist/doc/latex/biblatex-gb7714-2015/">biblatex-gb7714-2015</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-gb7714-2015">CTAN</a>):
-A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users
+A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users. 
 <a href="texmf-dist/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf">biblatex-gb7714-2015.pdf</a> (zh).
 </small></li>
 
-<li id="biblatex-german-legal"><b><a href="texmf-dist/doc/latex/biblatex-german-legal">biblatex-german-legal</a></b><small>
+<li id="biblatex-german-legal"><b><a href="texmf-dist/doc/latex/biblatex-german-legal/">biblatex-german-legal</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-german-legal">CTAN</a>):
-Comprehensive citation style for German legal texts
+Comprehensive citation style for German legal texts. 
 <a href="texmf-dist/doc/latex/biblatex-german-legal/biblatex-german-legal.pdf">biblatex-german-legal.pdf</a> (de).
 </small></li>
 
-<li id="biblatex-gost"><b><a href="texmf-dist/doc/latex/biblatex-gost">biblatex-gost</a></b><small>
+<li id="biblatex-gost"><b><a href="texmf-dist/doc/latex/biblatex-gost/">biblatex-gost</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-gost">CTAN</a>):
-BibLaTeX support for GOST standard bibliographies
+BibLaTeX support for GOST standard bibliographies. 
 <a href="texmf-dist/doc/latex/biblatex-gost/biblatex-gost-examples.pdf">biblatex-gost-examples.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-gost/biblatex-gost.pdf">biblatex-gost.pdf</a> (ru).
 </small></li>
 
-<li id="biblatex-historian"><b><a href="texmf-dist/doc/latex/biblatex-historian">biblatex-historian</a></b><small>
+<li id="biblatex-historian"><b><a href="texmf-dist/doc/latex/biblatex-historian/">biblatex-historian</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-historian">CTAN</a>):
-A BibLaTeX style
+A BibLaTeX style. 
 <a href="texmf-dist/doc/latex/biblatex-historian/historian.pdf">historian.pdf</a>.
 </small></li>
 
-<li id="biblatex-ieee"><b><a href="texmf-dist/doc/latex/biblatex-ieee">biblatex-ieee</a></b><small>
+<li id="biblatex-ieee"><b><a href="texmf-dist/doc/latex/biblatex-ieee/">biblatex-ieee</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-ieee">CTAN</a>):
-IEEE style files for BibLaTeX
+IEEE style files for BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.pdf">biblatex-ieee-alphabetic.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee.pdf">biblatex-ieee.pdf</a>.
 </small></li>
 
-<li id="biblatex-ijsra"><b><a href="texmf-dist/doc/latex/biblatex-ijsra">biblatex-ijsra</a></b><small>
+<li id="biblatex-ijsra"><b><a href="texmf-dist/doc/latex/biblatex-ijsra/">biblatex-ijsra</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-ijsra">CTAN</a>):
-BibLaTeX style for the International Journal of Student Research in Archaeology
+BibLaTeX style for the International Journal of Student Research in Archaeology. 
 <a href="texmf-dist/doc/latex/biblatex-ijsra/biblatex-ijsra.pdf">biblatex-ijsra.pdf</a>.
 </small></li>
 
-<li id="biblatex-iso690"><b><a href="texmf-dist/doc/latex/biblatex-iso690">biblatex-iso690</a></b><small>
+<li id="biblatex-iso690"><b><a href="texmf-dist/doc/latex/biblatex-iso690/">biblatex-iso690</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-iso690">CTAN</a>):
-BibLaTeX style for ISO 690 standard
+BibLaTeX style for ISO 690 standard. 
 <a href="texmf-dist/doc/latex/biblatex-iso690/biblatex-iso690.pdf">biblatex-iso690.pdf</a>.
 </small></li>
 
-<li id="biblatex-jura2"><b><a href="texmf-dist/doc/latex/biblatex-jura2">biblatex-jura2</a></b><small>
+<li id="biblatex-jura2"><b><a href="texmf-dist/doc/latex/biblatex-jura2/">biblatex-jura2</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-jura2">CTAN</a>):
-Citation style for the German legal profession
+Citation style for the German legal profession. 
 <a href="texmf-dist/doc/latex/biblatex-jura2/biblatex_jura2.pdf">biblatex_jura2.pdf</a> (de).
 </small></li>
 
-<li id="biblatex-juradiss"><b><a href="texmf-dist/doc/latex/biblatex-juradiss">biblatex-juradiss</a></b><small>
+<li id="biblatex-juradiss"><b><a href="texmf-dist/doc/latex/biblatex-juradiss/">biblatex-juradiss</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-juradiss">CTAN</a>):
-BibLaTeX stylefiles for German law theses
+BibLaTeX stylefiles for German law theses. 
 <a href="texmf-dist/doc/latex/biblatex-juradiss/biblatex-juradiss.pdf">biblatex-juradiss.pdf</a>.
 </small></li>
 
-<li id="biblatex-luh-ipw"><b><a href="texmf-dist/doc/latex/biblatex-luh-ipw">biblatex-luh-ipw</a></b><small>
+<li id="biblatex-luh-ipw"><b><a href="texmf-dist/doc/latex/biblatex-luh-ipw/">biblatex-luh-ipw</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-luh-ipw">CTAN</a>):
-BibLaTeX styles for social sciences
+BibLaTeX styles for social sciences. 
 <a href="texmf-dist/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.pdf">de-biblatex-luh-ipw.pdf</a> (de).
 </small></li>
 
-<li id="biblatex-manuscripts-philology"><b><a href="texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation">biblatex-manuscripts-philology</a></b><small>
+<li id="biblatex-manuscripts-philology"><b><a href="texmf-dist/doc/latex/biblatex-manuscripts-philology/">biblatex-manuscripts-philology</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-manuscripts-philology">CTAN</a>):
-Manage classical manuscripts with BibLaTeX
+Manage classical manuscripts with BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology-example.pdf">biblatex-manuscripts-philology-example.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.pdf">biblatex-manuscripts-philology.pdf</a>.
 </small></li>
 
-<li id="biblatex-mla"><b><a href="texmf-dist/doc/latex/biblatex-mla/doc">biblatex-mla</a></b><small>
+<li id="biblatex-mla"><b><a href="texmf-dist/doc/latex/biblatex-mla/">biblatex-mla</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-mla">CTAN</a>):
-MLA style files for BibLaTeX
+MLA style files for BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-mla/doc/biblatex-mla.pdf">biblatex-mla.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-mla/doc/citation-examples-new.pdf">citation-examples-new.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-mla/doc/citation-examples.pdf">citation-examples.pdf</a>
@@ -2573,9 +2563,9 @@
 <a href="texmf-dist/doc/latex/biblatex-mla/doc/handbooksamplebib.pdf">handbooksamplebib.pdf</a>.
 </small></li>
 
-<li id="biblatex-morenames"><b><a href="texmf-dist/doc/latex/biblatex-morenames/documentation">biblatex-morenames</a></b><small>
+<li id="biblatex-morenames"><b><a href="texmf-dist/doc/latex/biblatex-morenames/">biblatex-morenames</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-morenames">CTAN</a>):
-New names for standard BibLaTeX entry type
+New names for standard BibLaTeX entry type. 
 <a href="texmf-dist/doc/latex/biblatex-morenames/documentation/biblatex-morenames.pdf">biblatex-morenames.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-morenames/documentation/example-bookineditor-BookineditorFromEditor.pdf">example-bookineditor-BookineditorFromEditor.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-morenames/documentation/example-bookineditor.pdf">example-bookineditor.pdf</a>
@@ -2582,46 +2572,46 @@
 <a href="texmf-dist/doc/latex/biblatex-morenames/documentation/example-maineditor.pdf">example-maineditor.pdf</a>.
 </small></li>
 
-<li id="biblatex-multiple-dm"><b><a href="texmf-dist/doc/latex/biblatex-multiple-dm">biblatex-multiple-dm</a></b><small>
+<li id="biblatex-multiple-dm"><b><a href="texmf-dist/doc/latex/biblatex-multiple-dm/">biblatex-multiple-dm</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-multiple-dm">CTAN</a>):
-Load multiple datamodels in BibLaTeX
+Load multiple datamodels in BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.pdf">biblatex-multiple-dm.pdf</a>.
 </small></li>
 
-<li id="biblatex-musuos"><b><a href="texmf-dist/doc/latex/biblatex-musuos">biblatex-musuos</a></b><small>
+<li id="biblatex-musuos"><b><a href="texmf-dist/doc/latex/biblatex-musuos/">biblatex-musuos</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-musuos">CTAN</a>):
-A BibLaTeX style for citations in musuos.cls
+A BibLaTeX style for citations in musuos.cls. 
 <a href="texmf-dist/doc/latex/biblatex-musuos/biblatex-musuos.pdf">biblatex-musuos.pdf</a>.
 </small></li>
 
-<li id="biblatex-nature"><b><a href="texmf-dist/doc/latex/biblatex-nature">biblatex-nature</a></b><small>
+<li id="biblatex-nature"><b><a href="texmf-dist/doc/latex/biblatex-nature/">biblatex-nature</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-nature">CTAN</a>):
-BibLaTeX support for Nature
+BibLaTeX support for Nature. 
 <a href="texmf-dist/doc/latex/biblatex-nature/biblatex-nature.pdf">biblatex-nature.pdf</a>.
 </small></li>
 
-<li id="biblatex-nejm"><b><a href="texmf-dist/doc/latex/biblatex-nejm">biblatex-nejm</a></b><small>
+<li id="biblatex-nejm"><b><a href="texmf-dist/doc/latex/biblatex-nejm/">biblatex-nejm</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-nejm">CTAN</a>):
-BibLaTeX style for the New England Journal of Medicine (NEJM)
+BibLaTeX style for the New England Journal of Medicine (NEJM). 
 <a href="texmf-dist/doc/latex/biblatex-nejm/biblatex-nejm.pdf">biblatex-nejm.pdf</a>.
 </small></li>
 
-<li id="biblatex-nottsclassic"><b><a href="texmf-dist/doc/latex/biblatex-nottsclassic">biblatex-nottsclassic</a></b><small>
+<li id="biblatex-nottsclassic"><b><a href="texmf-dist/doc/latex/biblatex-nottsclassic/">biblatex-nottsclassic</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-nottsclassic">CTAN</a>):
-Citation style for the University of Nottingham
+Citation style for the University of Nottingham. 
 <a href="texmf-dist/doc/latex/biblatex-nottsclassic/nottsclassic.pdf">nottsclassic.pdf</a>.
 </small></li>
 
-<li id="biblatex-opcit-booktitle"><b><a href="texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation">biblatex-opcit-booktitle</a></b><small>
+<li id="biblatex-opcit-booktitle"><b><a href="texmf-dist/doc/latex/biblatex-opcit-booktitle/">biblatex-opcit-booktitle</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-opcit-booktitle">CTAN</a>):
-Use op. cit. for the booktitle of a subentry
+Use op. cit. for the booktitle of a subentry. 
 <a href="texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle-example.pdf">biblatex-opcit-booktitle-example.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-opcit-booktitle/documentation/biblatex-opcit-booktitle.pdf">biblatex-opcit-booktitle.pdf</a>.
 </small></li>
 
-<li id="biblatex-oxref"><b><a href="texmf-dist/doc/latex/biblatex-oxref">biblatex-oxref</a></b><small>
+<li id="biblatex-oxref"><b><a href="texmf-dist/doc/latex/biblatex-oxref/">biblatex-oxref</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-oxref">CTAN</a>):
-BibLaTeX styles inspired by the Oxford Guide to Style
+BibLaTeX styles inspired by the Oxford Guide to Style. 
 <a href="texmf-dist/doc/latex/biblatex-oxref/oxalph-doc.pdf">oxalph-doc.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-oxref/oxnotes-doc.pdf">oxnotes-doc.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-oxref/oxnum-doc.pdf">oxnum-doc.pdf</a>
@@ -2629,34 +2619,34 @@
 <a href="texmf-dist/doc/latex/biblatex-oxref/oxyear-doc.pdf">oxyear-doc.pdf</a>.
 </small></li>
 
-<li id="biblatex-philosophy"><b><a href="texmf-dist/doc/latex/biblatex-philosophy">biblatex-philosophy</a></b><small>
+<li id="biblatex-philosophy"><b><a href="texmf-dist/doc/latex/biblatex-philosophy/">biblatex-philosophy</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-philosophy">CTAN</a>):
-Styles for using BibLaTeX for work in philosophy
+Styles for using BibLaTeX for work in philosophy. 
 <a href="texmf-dist/doc/latex/biblatex-philosophy/biblatex-philosophy.pdf">biblatex-philosophy.pdf</a>.
 </small></li>
 
-<li id="biblatex-phys"><b><a href="texmf-dist/doc/latex/biblatex-phys">biblatex-phys</a></b><small>
+<li id="biblatex-phys"><b><a href="texmf-dist/doc/latex/biblatex-phys/">biblatex-phys</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-phys">CTAN</a>):
-A BibLaTeX implementation of the AIP and APS bibliography style
+A BibLaTeX implementation of the AIP and APS bibliography style. 
 <a href="texmf-dist/doc/latex/biblatex-phys/biblatex-phys.pdf">biblatex-phys.pdf</a>.
 </small></li>
 
-<li id="biblatex-publist"><b><a href="texmf-dist/doc/latex/biblatex-publist">biblatex-publist</a></b><small>
+<li id="biblatex-publist"><b><a href="texmf-dist/doc/latex/biblatex-publist/">biblatex-publist</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-publist">CTAN</a>):
-BibLaTeX bibliography support for publication lists
+BibLaTeX bibliography support for publication lists. 
 <a href="texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf">biblatex-publist.pdf</a>.
 </small></li>
 
-<li id="biblatex-realauthor"><b><a href="texmf-dist/doc/latex/biblatex-realauthor/documentation">biblatex-realauthor</a></b><small>
+<li id="biblatex-realauthor"><b><a href="texmf-dist/doc/latex/biblatex-realauthor/">biblatex-realauthor</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-realauthor">CTAN</a>):
-Indicate the real author of a work
+Indicate the real author of a work. 
 <a href="texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf">biblatex-realauthor.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-realauthor/documentation/example-realauthor.pdf">example-realauthor.pdf</a>.
 </small></li>
 
-<li id="biblatex-sbl"><b><a href="texmf-dist/doc/latex/biblatex-sbl">biblatex-sbl</a></b><small>
+<li id="biblatex-sbl"><b><a href="texmf-dist/doc/latex/biblatex-sbl/">biblatex-sbl</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-sbl">CTAN</a>):
-Society of Biblical Literature (SBL) style files for BibLaTeX
+Society of Biblical Literature (SBL) style files for BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-sbl/biblatex-sbl-examples.pdf">biblatex-sbl-examples.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-sbl/biblatex-sbl-ibid.pdf">biblatex-sbl-ibid.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-sbl/biblatex-sbl.pdf">biblatex-sbl.pdf</a>
@@ -2663,73 +2653,73 @@
 <a href="texmf-dist/doc/latex/biblatex-sbl/sbl-paper.pdf">sbl-paper.pdf</a>.
 </small></li>
 
-<li id="biblatex-science"><b><a href="texmf-dist/doc/latex/biblatex-science">biblatex-science</a></b><small>
+<li id="biblatex-science"><b><a href="texmf-dist/doc/latex/biblatex-science/">biblatex-science</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-science">CTAN</a>):
-BibLaTeX implementation of the Science bibliography style
+BibLaTeX implementation of the Science bibliography style. 
 <a href="texmf-dist/doc/latex/biblatex-science/biblatex-science.pdf">biblatex-science.pdf</a>.
 </small></li>
 
-<li id="biblatex-shortfields"><b><a href="texmf-dist/doc/latex/biblatex-shortfields/documentation">biblatex-shortfields</a></b><small>
+<li id="biblatex-shortfields"><b><a href="texmf-dist/doc/latex/biblatex-shortfields/">biblatex-shortfields</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-shortfields">CTAN</a>):
-Use short forms of fields with BibLaTeX
+Use short forms of fields with BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields-example.pdf">biblatex-shortfields-example.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-shortfields/documentation/biblatex-shortfields.pdf">biblatex-shortfields.pdf</a>.
 </small></li>
 
-<li id="biblatex-socialscienceshuberlin"><b><a href="texmf-dist/doc/latex/biblatex-socialscienceshuberlin">biblatex-socialscienceshuberlin</a></b><small>
+<li id="biblatex-socialscienceshuberlin"><b><a href="texmf-dist/doc/latex/biblatex-socialscienceshuberlin/">biblatex-socialscienceshuberlin</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-socialscienceshuberlin">CTAN</a>):
-BibLaTeX-style for the social sciences at HU Berlin
+BibLaTeX-style for the social sciences at HU Berlin. 
 <a href="texmf-dist/doc/latex/biblatex-socialscienceshuberlin/socialscienceshuberlin.pdf">socialscienceshuberlin.pdf</a>.
 </small></li>
 
-<li id="biblatex-software"><b><a href="texmf-dist/doc/latex/biblatex-software">biblatex-software</a></b><small>
+<li id="biblatex-software"><b><a href="texmf-dist/doc/latex/biblatex-software/">biblatex-software</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-software">CTAN</a>):
-BibLaTeX stylefiles for software products
+BibLaTeX stylefiles for software products. 
 <a href="texmf-dist/doc/latex/biblatex-software/sample-use-sty.pdf">sample-use-sty.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-software/software-biblatex.pdf">software-biblatex.pdf</a>.
 </small></li>
 
-<li id="biblatex-source-division"><b><a href="texmf-dist/doc/latex/biblatex-source-division">biblatex-source-division</a></b><small>
+<li id="biblatex-source-division"><b><a href="texmf-dist/doc/latex/biblatex-source-division/">biblatex-source-division</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-source-division">CTAN</a>):
-References by "division" in classical sources
+References by "division" in classical sources. 
 <a href="texmf-dist/doc/latex/biblatex-source-division/biblatex-source-division.pdf">biblatex-source-division.pdf</a>.
 </small></li>
 
-<li id="biblatex-subseries"><b><a href="texmf-dist/doc/latex/biblatex-subseries/documentation">biblatex-subseries</a></b><small>
+<li id="biblatex-subseries"><b><a href="texmf-dist/doc/latex/biblatex-subseries/">biblatex-subseries</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-subseries">CTAN</a>):
-Manages subseries with BibLaTeX
+Manages subseries with BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-subseries/documentation/biblatex-subseries-example.pdf">biblatex-subseries-example.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-subseries/documentation/biblatex-subseries.pdf">biblatex-subseries.pdf</a>.
 </small></li>
 
-<li id="biblatex-swiss-legal"><b><a href="texmf-dist/doc/latex/biblatex-swiss-legal">biblatex-swiss-legal</a></b><small>
+<li id="biblatex-swiss-legal"><b><a href="texmf-dist/doc/latex/biblatex-swiss-legal/">biblatex-swiss-legal</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-swiss-legal">CTAN</a>):
-Bibliography and citation styles following Swiss legal practice
+Bibliography and citation styles following Swiss legal practice. 
 <a href="texmf-dist/doc/latex/biblatex-swiss-legal/biblatex-swiss-legal.pdf">biblatex-swiss-legal.pdf</a> (fr).
 </small></li>
 
-<li id="biblatex-trad"><b><a href="texmf-dist/doc/latex/biblatex-trad">biblatex-trad</a></b><small>
+<li id="biblatex-trad"><b><a href="texmf-dist/doc/latex/biblatex-trad/">biblatex-trad</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-trad">CTAN</a>):
-"Traditional" BibTeX styles with BibLaTeX
+"Traditional" BibTeX styles with BibLaTeX. 
 <a href="texmf-dist/doc/latex/biblatex-trad/biblatex-trad.pdf">biblatex-trad.pdf</a>.
 </small></li>
 
-<li id="biblatex-true-citepages-omit"><b><a href="texmf-dist/doc/latex/biblatex-true-citepages-omit">biblatex-true-citepages-omit</a></b><small>
+<li id="biblatex-true-citepages-omit"><b><a href="texmf-dist/doc/latex/biblatex-true-citepages-omit/">biblatex-true-citepages-omit</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex-true-citepages-omit">CTAN</a>):
-Correction of some limitation of the citepages=omit option of BibLaTeX styles
+Correction of some limitation of the citepages=omit option of BibLaTeX styles. 
 <a href="texmf-dist/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit-example.pdf">biblatex-true-citepages-omit-example.pdf</a>
 <a href="texmf-dist/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.pdf">biblatex-true-citepages-omit.pdf</a>.
 </small></li>
 
-<li id="biblatex2bibitem"><b><a href="texmf-dist/doc/latex/biblatex2bibitem">biblatex2bibitem</a></b><small>
+<li id="biblatex2bibitem"><b><a href="texmf-dist/doc/latex/biblatex2bibitem/">biblatex2bibitem</a></b><small>
 (<a href="https://ctan.org/pkg/biblatex2bibitem">CTAN</a>):
-Convert BibLaTeX-generated bibliography to bibitems
+Convert BibLaTeX-generated bibliography to bibitems. 
 <a href="texmf-dist/doc/latex/biblatex2bibitem/biblatex2bibitem-mwe.pdf">biblatex2bibitem-mwe.pdf</a>.
 </small></li>
 
-<li id="bibleref"><b><a href="texmf-dist/doc/latex/bibleref">bibleref</a></b><small>
+<li id="bibleref"><b><a href="texmf-dist/doc/latex/bibleref/">bibleref</a></b><small>
 (<a href="https://ctan.org/pkg/bibleref">CTAN</a>):
-Format bible citations
+Format bible citations. 
 <a href="texmf-dist/doc/latex/bibleref/bibleref.pdf">bibleref.pdf</a>
 <a href="texmf-dist/doc/latex/bibleref/samples/sample-categories.pdf">sample-categories.pdf</a>
 <a href="texmf-dist/doc/latex/bibleref/samples/sample-indextools.pdf">sample-indextools.pdf</a>
@@ -2737,101 +2727,99 @@
 <a href="texmf-dist/doc/latex/bibleref/samples/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="bibleref-french"><b><a href="texmf-dist/doc/latex/bibleref-french">bibleref-french</a></b><small>
+<li id="bibleref-french"><b><a href="texmf-dist/doc/latex/bibleref-french/">bibleref-french</a></b><small>
 (<a href="https://ctan.org/pkg/bibleref-french">CTAN</a>):
-French translations for bibleref
+French translations for bibleref. 
 <a href="texmf-dist/doc/latex/bibleref-french/Lacroux-Bible.pdf">Lacroux-Bible.pdf</a>
 <a href="texmf-dist/doc/latex/bibleref-french/bibleref-french-francais.pdf">bibleref-french-francais.pdf</a> (fr) 
 <a href="texmf-dist/doc/latex/bibleref-french/bibleref-french.pdf">bibleref-french.pdf</a>.
 </small></li>
 
-<li id="bibleref-german"><b><a href="texmf-dist/doc/latex/bibleref-german">bibleref-german</a></b><small>
+<li id="bibleref-german"><b><a href="texmf-dist/doc/latex/bibleref-german/">bibleref-german</a></b><small>
 (<a href="https://ctan.org/pkg/bibleref-german">CTAN</a>):
-German adaptation of bibleref
+German adaptation of bibleref. 
 <a href="texmf-dist/doc/latex/bibleref-german/de-bibleref-german.pdf">de-bibleref-german.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/bibleref-german/en-bibleref-german.pdf">en-bibleref-german.pdf</a>.
 </small></li>
 
-<li id="bibleref-lds"><b><a href="texmf-dist/doc/latex/bibleref-lds">bibleref-lds</a></b><small>
+<li id="bibleref-lds"><b><a href="texmf-dist/doc/latex/bibleref-lds/">bibleref-lds</a></b><small>
 (<a href="https://ctan.org/pkg/bibleref-lds">CTAN</a>):
-Bible references, including those to the scriptures of the Church of Jesus Christ of Latter Day Saints
+Bible references, including those to the scriptures of the Church of Jesus Christ of Latter Day Saints. 
 <a href="texmf-dist/doc/latex/bibleref-lds/bibleref-lds.pdf">bibleref-lds.pdf</a>.
 </small></li>
 
-<li id="bibleref-mouth"><b><a href="texmf-dist/doc/latex/bibleref-mouth">bibleref-mouth</a></b><small>
+<li id="bibleref-mouth"><b><a href="texmf-dist/doc/latex/bibleref-mouth/">bibleref-mouth</a></b><small>
 (<a href="https://ctan.org/pkg/bibleref-mouth">CTAN</a>):
-Consistent formatting of Bible references
+Consistent formatting of Bible references. 
 <a href="texmf-dist/doc/latex/bibleref-mouth/bibleref-mouth.pdf">bibleref-mouth.pdf</a>.
 </small></li>
 
-<li id="bibleref-parse"><b><a href="texmf-dist/doc/latex/bibleref-parse">bibleref-parse</a></b><small>
+<li id="bibleref-parse"><b><a href="texmf-dist/doc/latex/bibleref-parse/">bibleref-parse</a></b><small>
 (<a href="https://ctan.org/pkg/bibleref-parse">CTAN</a>):
-Specify Bible passages in human-readable format
+Specify Bible passages in human-readable format. 
 <a href="texmf-dist/doc/latex/bibleref-parse/bibleref-parse.pdf">bibleref-parse.pdf</a>.
 </small></li>
 
-<li id="bibletext"><b><a href="texmf-dist/doc/latex/bibletext">bibletext</a></b><small>
+<li id="bibletext"><b><a href="texmf-dist/doc/latex/bibletext/">bibletext</a></b><small>
 (<a href="https://ctan.org/pkg/bibletext">CTAN</a>):
-Insert Bible passages by their reference
+Insert Bible passages by their reference. 
 <a href="texmf-dist/doc/latex/bibletext/bibletext.pdf">bibletext.pdf</a>.
 </small></li>
 
-<li id="biblist"><b><a href="texmf-dist/doc/latex/biblist">biblist</a></b><small>
+<li id="biblist"><b><a href="texmf-dist/doc/latex/biblist/">biblist</a></b><small>
 (<a href="https://ctan.org/pkg/biblist">CTAN</a>):
-Print a BibTeX database
+Print a BibTeX database. 
 <a href="texmf-dist/doc/latex/biblist/biblist.pdf">biblist.pdf</a>.
 </small></li>
 
-<li id="bibtex"><b><a href="texmf-dist/doc/bibtex/base">bibtex</a></b><small>
+<li id="bibtex"><b><a href="texmf-dist/doc/bibtex/base/">bibtex</a></b><small>
 (<a href="https://ctan.org/pkg/bibtex">CTAN</a>):
-Process bibliographies for LaTeX, etc
+Process bibliographies for LaTeX, etc. 
 <a href="texmf-dist/doc/bibtex/base/btxdoc.pdf">btxdoc.pdf</a>
 <a href="texmf-dist/doc/bibtex/base/btxhak.pdf">btxhak.pdf</a>
 <a href="texmf-dist/doc/man/man1/bibtex.man1.pdf">bibtex.man1.pdf</a>.
 </small></li>
 
-<li id="bibtex8"><b><a href="texmf-dist/doc/man/man1">bibtex8</a></b><small>
-(<a href="https://ctan.org/pkg/bibtex8">CTAN</a>):
-BibTeX variant supporting 8-bit encodings
+<li id="bibtex8"><b><a href="texmf-dist/doc/man/man1/">bibtex8</a></b><small>
+BibTeX variant supporting 8-bit encodings. 
 <a href="texmf-dist/doc/man/man1/bibtex8.man1.pdf">bibtex8.man1.pdf</a>.
 </small></li>
 
-<li id="bibtexu"><b><a href="texmf-dist/doc/bibtexu/examples">bibtexu</a></b><small>
-(<a href="https://ctan.org/pkg/bibtexu">CTAN</a>):
-BibTeX variant supporting Unicode (UTF-8)
+<li id="bibtexu"><b><a href="texmf-dist/doc/bibtexu/">bibtexu</a></b><small>
+BibTeX variant supporting Unicode (UTF-8). 
 <a href="texmf-dist/doc/bibtexu/examples/test.pdf">test.pdf</a>
 <a href="texmf-dist/doc/man/man1/bibtexu.man1.pdf">bibtexu.man1.pdf</a>.
 </small></li>
 
-<li id="bibtopic"><b><a href="texmf-dist/doc/latex/bibtopic">bibtopic</a></b><small>
+<li id="bibtopic"><b><a href="texmf-dist/doc/latex/bibtopic/">bibtopic</a></b><small>
 (<a href="https://ctan.org/pkg/bibtopic">CTAN</a>):
-Include multiple bibliographies in a document
+Include multiple bibliographies in a document. 
 <a href="texmf-dist/doc/latex/bibtopic/bibtopic.pdf">bibtopic.pdf</a>.
 </small></li>
 
-<li id="bibtopicprefix"><b><a href="texmf-dist/doc/latex/bibtopicprefix">bibtopicprefix</a></b><small>
+<li id="bibtopicprefix"><b><a href="texmf-dist/doc/latex/bibtopicprefix/">bibtopicprefix</a></b><small>
 (<a href="https://ctan.org/pkg/bibtopicprefix">CTAN</a>):
-Prefix references to bibliographies produced by bibtopic
+Prefix references to bibliographies produced by bibtopic. 
 <a href="texmf-dist/doc/latex/bibtopicprefix/bibtopicprefix.pdf">bibtopicprefix.pdf</a>.
 </small></li>
 
-<li id="bibunits"><b><a href="texmf-dist/doc/latex/bibunits">bibunits</a></b><small>
+<li id="bibunits"><b><a href="texmf-dist/doc/latex/bibunits/">bibunits</a></b><small>
 (<a href="https://ctan.org/pkg/bibunits">CTAN</a>):
-Multiple bibliographies in one document
+Multiple bibliographies in one document. 
 <a href="texmf-dist/doc/latex/bibunits/bibunits.pdf">bibunits.pdf</a>.
 </small></li>
 
-<li id="bidi"><b><a href="texmf-dist/doc/xelatex/bidi">bidi</a></b><small>
+<li id="bidi"><b><a href="texmf-dist/doc/xelatex/bidi/">bidi</a></b><small>
 (<a href="https://ctan.org/pkg/bidi">CTAN</a>):
-Bidirectional typesetting in plain TeX and LaTeX, using XeTeX
+Bidirectional typesetting in plain TeX and LaTeX, using XeTeX. 
 <a href="texmf-dist/doc/xelatex/bidi/bidi-bibitem.pdf">bidi-bibitem.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidi/bidi-doc.pdf">bidi-doc.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidi/bidi.pdf">bidi.pdf</a>.
 </small></li>
 
-<li id="bidi-atbegshi"><b><a href="texmf-dist/doc/xelatex/bidi-atbegshi">bidi-atbegshi</a></b><small>
+<li id="bidi-atbegshi"><b><a href="texmf-dist/doc/xelatex/bidi-atbegshi/">bidi-atbegshi</a></b><small>
 (<a href="https://ctan.org/pkg/bidi-atbegshi">CTAN</a>):
-Bidi-aware shipout macros
+Bidi-aware shipout macros. 
 <a href="texmf-dist/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.pdf">bidi-atbegshi-doc.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidi-atbegshi/test-LTR.pdf">test-LTR.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidi-atbegshi/test-RTL.pdf">test-RTL.pdf</a>
@@ -2839,64 +2827,64 @@
 <a href="texmf-dist/doc/xelatex/bidi-atbegshi/test-foreground-RTL.pdf">test-foreground-RTL.pdf</a>.
 </small></li>
 
-<li id="bidicontour"><b><a href="texmf-dist/doc/xelatex/bidicontour">bidicontour</a></b><small>
+<li id="bidicontour"><b><a href="texmf-dist/doc/xelatex/bidicontour/">bidicontour</a></b><small>
 (<a href="https://ctan.org/pkg/bidicontour">CTAN</a>):
-Bidi-aware coloured contour around text
+Bidi-aware coloured contour around text. 
 <a href="texmf-dist/doc/xelatex/bidicontour/bidicontour-doc.pdf">bidicontour-doc.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidicontour/bidicontour-example-copies.pdf">bidicontour-example-copies.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidicontour/bidicontour-example-outline.pdf">bidicontour-example-outline.pdf</a>.
 </small></li>
 
-<li id="bidihl"><b><a href="texmf-dist/doc/xelatex/bidihl">bidihl</a></b><small>
+<li id="bidihl"><b><a href="texmf-dist/doc/xelatex/bidihl/">bidihl</a></b><small>
 (<a href="https://ctan.org/pkg/bidihl">CTAN</a>):
-Experimental bidi-aware text highlighting
+Experimental bidi-aware text highlighting. 
 <a href="texmf-dist/doc/xelatex/bidihl/bidihl-doc.pdf">bidihl-doc.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidihl/test-bidihl.pdf">test-bidihl.pdf</a>.
 </small></li>
 
-<li id="bidipagegrid"><b><a href="texmf-dist/doc/xelatex/bidipagegrid">bidipagegrid</a></b><small>
+<li id="bidipagegrid"><b><a href="texmf-dist/doc/xelatex/bidipagegrid/">bidipagegrid</a></b><small>
 (<a href="https://ctan.org/pkg/bidipagegrid">CTAN</a>):
-Bidi-aware page grid in background
+Bidi-aware page grid in background. 
 <a href="texmf-dist/doc/xelatex/bidipagegrid/bidipagegrid-doc.pdf">bidipagegrid-doc.pdf</a>.
 </small></li>
 
-<li id="bidipresentation"><b><a href="texmf-dist/doc/xelatex/bidipresentation">bidipresentation</a></b><small>
+<li id="bidipresentation"><b><a href="texmf-dist/doc/xelatex/bidipresentation/">bidipresentation</a></b><small>
 (<a href="https://ctan.org/pkg/bidipresentation">CTAN</a>):
-Experimental bidi presentation
+Experimental bidi presentation. 
 <a href="texmf-dist/doc/xelatex/bidipresentation/fig-1.pdf">fig-1.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidipresentation/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="bidishadowtext"><b><a href="texmf-dist/doc/xelatex/bidishadowtext">bidishadowtext</a></b><small>
+<li id="bidishadowtext"><b><a href="texmf-dist/doc/xelatex/bidishadowtext/">bidishadowtext</a></b><small>
 (<a href="https://ctan.org/pkg/bidishadowtext">CTAN</a>):
-Bidi-aware shadow text
+Bidi-aware shadow text. 
 <a href="texmf-dist/doc/xelatex/bidishadowtext/bidishadowtext-demo.pdf">bidishadowtext-demo.pdf</a>
 <a href="texmf-dist/doc/xelatex/bidishadowtext/bidishadowtext-doc.pdf">bidishadowtext-doc.pdf</a>.
 </small></li>
 
-<li id="bigfoot"><b><a href="texmf-dist/doc/latex/bigfoot">bigfoot</a></b><small>
+<li id="bigfoot"><b><a href="texmf-dist/doc/latex/bigfoot/">bigfoot</a></b><small>
 (<a href="https://ctan.org/pkg/bigfoot">CTAN</a>):
-Footnotes for critical editions
+Footnotes for critical editions. 
 <a href="texmf-dist/doc/latex/bigfoot/bigfoot.pdf">bigfoot.pdf</a>
 <a href="texmf-dist/doc/latex/bigfoot/perpage.pdf">perpage.pdf</a>
 <a href="texmf-dist/doc/latex/bigfoot/suffix.pdf">suffix.pdf</a>.
 </small></li>
 
-<li id="bigintcalc"><b><a href="texmf-dist/doc/latex/bigintcalc">bigintcalc</a></b><small>
+<li id="bigintcalc"><b><a href="texmf-dist/doc/latex/bigintcalc/">bigintcalc</a></b><small>
 (<a href="https://ctan.org/pkg/bigintcalc">CTAN</a>):
-Integer calculations on very large numbers
+Integer calculations on very large numbers. 
 <a href="texmf-dist/doc/latex/bigintcalc/bigintcalc.pdf">bigintcalc.pdf</a>.
 </small></li>
 
-<li id="bigints"><b><a href="texmf-dist/doc/latex/bigints">bigints</a></b><small>
+<li id="bigints"><b><a href="texmf-dist/doc/latex/bigints/">bigints</a></b><small>
 (<a href="https://ctan.org/pkg/bigints">CTAN</a>):
-Writing big integrals
+Writing big integrals. 
 <a href="texmf-dist/doc/latex/bigints/bigints.pdf">bigints.pdf</a>.
 </small></li>
 
-<li id="binarytree"><b><a href="texmf-dist/doc/latex/binarytree">binarytree</a></b><small>
+<li id="binarytree"><b><a href="texmf-dist/doc/latex/binarytree/">binarytree</a></b><small>
 (<a href="https://ctan.org/pkg/binarytree">CTAN</a>):
-Drawing binary trees using TikZ
+Drawing binary trees using TikZ. 
 <a href="texmf-dist/doc/latex/binarytree/binarytree.pdf">binarytree.pdf</a>
 <a href="texmf-dist/doc/latex/binarytree/examples/binarytree-ex1.pdf">binarytree-ex1.pdf</a>
 <a href="texmf-dist/doc/latex/binarytree/examples/binarytree-ex2.pdf">binarytree-ex2.pdf</a>
@@ -2905,105 +2893,105 @@
 <a href="texmf-dist/doc/latex/binarytree/examples/btree-5_up_0,0,0_3729359_7458719_655360_0.7_0.7_-lrr-x--_-llrr-x--_-rll-x--_-rrll-x--.pdf">btree-5_up_0,0,0_3729359_7458719_655360_0.7_0.7_-lrr-x--_-llrr-x--_-rll-x--_-rrll-x--.pdf</a>.
 </small></li>
 
-<li id="binomexp"><b><a href="texmf-dist/doc/latex/binomexp">binomexp</a></b><small>
+<li id="binomexp"><b><a href="texmf-dist/doc/latex/binomexp/">binomexp</a></b><small>
 (<a href="https://ctan.org/pkg/binomexp">CTAN</a>):
-Calculate Pascal's triangle
+Calculate Pascal's triangle. 
 <a href="texmf-dist/doc/latex/binomexp/binomexp.pdf">binomexp.pdf</a>.
 </small></li>
 
-<li id="biochemistry-colors"><b><a href="texmf-dist/doc/latex/biochemistry-colors">biochemistry-colors</a></b><small>
+<li id="biochemistry-colors"><b><a href="texmf-dist/doc/latex/biochemistry-colors/">biochemistry-colors</a></b><small>
 (<a href="https://ctan.org/pkg/biochemistry-colors">CTAN</a>):
-Colors used to display amino acids, nucleotides, sugars or atoms in biochemistry
+Colors used to display amino acids, nucleotides, sugars or atoms in biochemistry. 
 <a href="texmf-dist/doc/latex/biochemistry-colors/Biochemistry-colors.pdf">Biochemistry-colors.pdf</a>.
 </small></li>
 
-<li id="biocon"><b><a href="texmf-dist/doc/latex/biocon">biocon</a></b><small>
+<li id="biocon"><b><a href="texmf-dist/doc/latex/biocon/">biocon</a></b><small>
 (<a href="https://ctan.org/pkg/biocon">CTAN</a>):
-Typesetting biological species names
+Typesetting biological species names. 
 <a href="texmf-dist/doc/latex/biocon/manual-old.pdf">manual-old.pdf</a>
 <a href="texmf-dist/doc/latex/biocon/manual.pdf">manual.pdf</a>
 <a href="texmf-dist/doc/latex/biocon/source.pdf">source.pdf</a>.
 </small></li>
 
-<li id="bitelist"><b><a href="texmf-dist/doc/generic/bitelist">bitelist</a></b><small>
+<li id="bitelist"><b><a href="texmf-dist/doc/generic/bitelist/">bitelist</a></b><small>
 (<a href="https://ctan.org/pkg/bitelist">CTAN</a>):
-Split list, in TeX's mouth
+Split list, in TeX's mouth. 
 <a href="texmf-dist/doc/generic/bitelist/bitelist.pdf">bitelist.pdf</a>.
 </small></li>
 
-<li id="bitpattern"><b><a href="texmf-dist/doc/latex/bitpattern">bitpattern</a></b><small>
+<li id="bitpattern"><b><a href="texmf-dist/doc/latex/bitpattern/">bitpattern</a></b><small>
 (<a href="https://ctan.org/pkg/bitpattern">CTAN</a>):
-Typeset bit pattern diagrams
+Typeset bit pattern diagrams. 
 <a href="texmf-dist/doc/latex/bitpattern/bitpattern.pdf">bitpattern.pdf</a>.
 </small></li>
 
-<li id="bitset"><b><a href="texmf-dist/doc/latex/bitset">bitset</a></b><small>
+<li id="bitset"><b><a href="texmf-dist/doc/latex/bitset/">bitset</a></b><small>
 (<a href="https://ctan.org/pkg/bitset">CTAN</a>):
-Handle bit-vector datatype
+Handle bit-vector datatype. 
 <a href="texmf-dist/doc/latex/bitset/bitset.pdf">bitset.pdf</a>.
 </small></li>
 
-<li id="bitter"><b><a href="texmf-dist/doc/fonts/bitter">bitter</a></b><small>
+<li id="bitter"><b><a href="texmf-dist/doc/fonts/bitter/">bitter</a></b><small>
 (<a href="https://ctan.org/pkg/bitter">CTAN</a>):
-LaTeX support for the Bitter family of fonts
+LaTeX support for the Bitter family of fonts. 
 <a href="texmf-dist/doc/fonts/bitter/bitter-samples.pdf">bitter-samples.pdf</a>.
 </small></li>
 
-<li id="bizcard"><b><a href="texmf-dist/doc/latex/bizcard">bizcard</a></b><small>
+<li id="bizcard"><b><a href="texmf-dist/doc/latex/bizcard/">bizcard</a></b><small>
 (<a href="https://ctan.org/pkg/bizcard">CTAN</a>):
-Typeset business cards
+Typeset business cards. 
 <a href="texmf-dist/doc/latex/bizcard/bizcard.pdf">bizcard.pdf</a>
 <a href="texmf-dist/doc/latex/bizcard/bizex.pdf">bizex.pdf</a>.
 </small></li>
 
-<li id="blacklettert1"><b><a href="texmf-dist/doc/fonts/blacklettert1">blacklettert1</a></b><small>
+<li id="blacklettert1"><b><a href="texmf-dist/doc/fonts/blacklettert1/">blacklettert1</a></b><small>
 (<a href="https://ctan.org/pkg/blacklettert1">CTAN</a>):
-T1-encoded versions of Haralambous old German fonts
+T1-encoded versions of Haralambous old German fonts. 
 <a href="texmf-dist/doc/fonts/blacklettert1/blacklettert1.pdf">blacklettert1.pdf</a>.
 </small></li>
 
-<li id="blindtext"><b><a href="texmf-dist/doc/latex/blindtext">blindtext</a></b><small>
+<li id="blindtext"><b><a href="texmf-dist/doc/latex/blindtext/">blindtext</a></b><small>
 (<a href="https://ctan.org/pkg/blindtext">CTAN</a>):
-Producing 'blind' text for testing
+Producing 'blind' text for testing. 
 <a href="texmf-dist/doc/latex/blindtext/blindtext.pdf">blindtext.pdf</a>.
 </small></li>
 
-<li id="blkarray"><b><a href="texmf-dist/doc/latex/blkarray">blkarray</a></b><small>
+<li id="blkarray"><b><a href="texmf-dist/doc/latex/blkarray/">blkarray</a></b><small>
 (<a href="https://ctan.org/pkg/blkarray">CTAN</a>):
-Extended array and tabular
+Extended array and tabular. 
 <a href="texmf-dist/doc/latex/blkarray/blkarray.pdf">blkarray.pdf</a>.
 </small></li>
 
-<li id="blochsphere"><b><a href="texmf-dist/doc/latex/blochsphere">blochsphere</a></b><small>
+<li id="blochsphere"><b><a href="texmf-dist/doc/latex/blochsphere/">blochsphere</a></b><small>
 (<a href="https://ctan.org/pkg/blochsphere">CTAN</a>):
-Draw pseudo-3D diagrams of Bloch spheres
+Draw pseudo-3D diagrams of Bloch spheres. 
 <a href="texmf-dist/doc/latex/blochsphere/blochsphere.pdf">blochsphere.pdf</a>
 <a href="texmf-dist/doc/latex/blochsphere/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="block"><b><a href="texmf-dist/doc/latex/block">block</a></b><small>
+<li id="block"><b><a href="texmf-dist/doc/latex/block/">block</a></b><small>
 (<a href="https://ctan.org/pkg/block">CTAN</a>):
-A block letter style for the letter class
+A block letter style for the letter class. 
 <a href="texmf-dist/doc/latex/block/block.pdf">block.pdf</a>.
 </small></li>
 
-<li id="blockdraw_mp"><b><a href="texmf-dist/doc/metapost/blockdraw_mp">blockdraw_mp</a></b><small>
+<li id="blockdraw_mp"><b><a href="texmf-dist/doc/metapost/blockdraw_mp/">blockdraw_mp</a></b><small>
 (<a href="https://ctan.org/pkg/blockdraw_mp">CTAN</a>):
-Block diagrams and bond graphs, with MetaPost
+Block diagrams and bond graphs, with MetaPost. 
 <a href="texmf-dist/doc/metapost/blockdraw_mp/blockdraw_mp.pdf">blockdraw_mp.pdf</a>
 <a href="texmf-dist/doc/metapost/blockdraw_mp/bonddemo.pdf">bonddemo.pdf</a>
 <a href="texmf-dist/doc/metapost/blockdraw_mp/cascadedemo.pdf">cascadedemo.pdf</a>.
 </small></li>
 
-<li id="bloques"><b><a href="texmf-dist/doc/latex/bloques">bloques</a></b><small>
+<li id="bloques"><b><a href="texmf-dist/doc/latex/bloques/">bloques</a></b><small>
 (<a href="https://ctan.org/pkg/bloques">CTAN</a>):
-Generate control diagrams
+Generate control diagrams. 
 <a href="texmf-dist/doc/latex/bloques/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="blowup"><b><a href="texmf-dist/doc/latex/blowup">blowup</a></b><small>
+<li id="blowup"><b><a href="texmf-dist/doc/latex/blowup/">blowup</a></b><small>
 (<a href="https://ctan.org/pkg/blowup">CTAN</a>):
-Upscale or downscale all pages of a document
+Upscale or downscale all pages of a document. 
 <a href="texmf-dist/doc/latex/blowup/blowup-ex1.pdf">blowup-ex1.pdf</a>
 <a href="texmf-dist/doc/latex/blowup/blowup-ex2.pdf">blowup-ex2.pdf</a>
 <a href="texmf-dist/doc/latex/blowup/blowup-ex3.pdf">blowup-ex3.pdf</a>
@@ -3012,33 +3000,33 @@
 <a href="texmf-dist/doc/latex/blowup/blowup.pdf">blowup.pdf</a>.
 </small></li>
 
-<li id="blox"><b><a href="texmf-dist/doc/latex/blox">blox</a></b><small>
+<li id="blox"><b><a href="texmf-dist/doc/latex/blox/">blox</a></b><small>
 (<a href="https://ctan.org/pkg/blox">CTAN</a>):
-Draw block diagrams, using TikZ
+Draw block diagrams, using TikZ. 
 <a href="texmf-dist/doc/latex/blox/blox.pdf">blox.pdf</a>.
 </small></li>
 
-<li id="bnumexpr"><b><a href="texmf-dist/doc/latex/bnumexpr">bnumexpr</a></b><small>
+<li id="bnumexpr"><b><a href="texmf-dist/doc/latex/bnumexpr/">bnumexpr</a></b><small>
 (<a href="https://ctan.org/pkg/bnumexpr">CTAN</a>):
-Extends eTeX's \numexpr...\relax construct to big integers
+Extends eTeX's \numexpr...\relax construct to big integers. 
 <a href="texmf-dist/doc/latex/bnumexpr/bnumexpr.pdf">bnumexpr.pdf</a>.
 </small></li>
 
-<li id="bodegraph"><b><a href="texmf-dist/doc/latex/bodegraph">bodegraph</a></b><small>
+<li id="bodegraph"><b><a href="texmf-dist/doc/latex/bodegraph/">bodegraph</a></b><small>
 (<a href="https://ctan.org/pkg/bodegraph">CTAN</a>):
-Draw Bode, Nyquist and Black plots with gnuplot and TikZ
+Draw Bode, Nyquist and Black plots with gnuplot and TikZ. 
 <a href="texmf-dist/doc/latex/bodegraph/bodegraph.pdf">bodegraph.pdf</a>.
 </small></li>
 
-<li id="bohr"><b><a href="texmf-dist/doc/latex/bohr">bohr</a></b><small>
+<li id="bohr"><b><a href="texmf-dist/doc/latex/bohr/">bohr</a></b><small>
 (<a href="https://ctan.org/pkg/bohr">CTAN</a>):
-Simple atom representation according to the Bohr model
+Simple atom representation according to the Bohr model. 
 <a href="texmf-dist/doc/latex/bohr/bohr_en.pdf">bohr_en.pdf</a>.
 </small></li>
 
-<li id="boisik"><b><a href="texmf-dist/doc/fonts/boisik/example">boisik</a></b><small>
+<li id="boisik"><b><a href="texmf-dist/doc/fonts/boisik/">boisik</a></b><small>
 (<a href="https://ctan.org/pkg/boisik">CTAN</a>):
-A font inspired by Baskerville design
+A font inspired by Baskerville design. 
 <a href="texmf-dist/doc/fonts/boisik/example/boisik-idiot.pdf">boisik-idiot.pdf</a> (cs) 
 <a href="texmf-dist/doc/fonts/boisik/example/boisik.pdf">boisik.pdf</a>
 <a href="texmf-dist/doc/fonts/boisik/example/table.pdf">table.pdf</a>
@@ -3045,40 +3033,40 @@
 <a href="texmf-dist/doc/fonts/boisik/example/testfont.pdf">testfont.pdf</a>.
 </small></li>
 
-<li id="boites"><b><a href="texmf-dist/doc/latex/boites">boites</a></b><small>
+<li id="boites"><b><a href="texmf-dist/doc/latex/boites/">boites</a></b><small>
 (<a href="https://ctan.org/pkg/boites">CTAN</a>):
-Boxes that may break across pages
+Boxes that may break across pages. 
 <a href="texmf-dist/doc/latex/boites/boites.pdf">boites.pdf</a>
 <a href="texmf-dist/doc/latex/boites/demo.pdf">demo.pdf</a>.
 </small></li>
 
-<li id="bold-extra"><b><a href="texmf-dist/doc/latex/bold-extra">bold-extra</a></b><small>
+<li id="bold-extra"><b><a href="texmf-dist/doc/latex/bold-extra/">bold-extra</a></b><small>
 (<a href="https://ctan.org/pkg/bold-extra">CTAN</a>):
-Use bold small caps and typewriter fonts
+Use bold small caps and typewriter fonts. 
 <a href="texmf-dist/doc/latex/bold-extra/bold-extra.pdf">bold-extra.pdf</a>.
 </small></li>
 
-<li id="boldtensors"><b><a href="texmf-dist/doc/latex/boldtensors">boldtensors</a></b><small>
+<li id="boldtensors"><b><a href="texmf-dist/doc/latex/boldtensors/">boldtensors</a></b><small>
 (<a href="https://ctan.org/pkg/boldtensors">CTAN</a>):
-Bold latin and greek characters through simple prefix characters
+Bold latin and greek characters through simple prefix characters. 
 <a href="texmf-dist/doc/latex/boldtensors/boldtensors.pdf">boldtensors.pdf</a>.
 </small></li>
 
-<li id="bondgraph"><b><a href="texmf-dist/doc/latex/bondgraph">bondgraph</a></b><small>
+<li id="bondgraph"><b><a href="texmf-dist/doc/latex/bondgraph/">bondgraph</a></b><small>
 (<a href="https://ctan.org/pkg/bondgraph">CTAN</a>):
-Create bond graph figures in LaTeX documents
+Create bond graph figures in LaTeX documents. 
 <a href="texmf-dist/doc/latex/bondgraph/bondgraph_example.pdf">bondgraph_example.pdf</a>.
 </small></li>
 
-<li id="bondgraphs"><b><a href="texmf-dist/doc/latex/bondgraphs">bondgraphs</a></b><small>
+<li id="bondgraphs"><b><a href="texmf-dist/doc/latex/bondgraphs/">bondgraphs</a></b><small>
 (<a href="https://ctan.org/pkg/bondgraphs">CTAN</a>):
-Draws bond graphs in LaTeX, using PGF/TikZ
+Draws bond graphs in LaTeX, using PGF/TikZ. 
 <a href="texmf-dist/doc/latex/bondgraphs/bondgraphs.pdf">bondgraphs.pdf</a>.
 </small></li>
 
-<li id="bookcover"><b><a href="texmf-dist/doc/latex/bookcover">bookcover</a></b><small>
+<li id="bookcover"><b><a href="texmf-dist/doc/latex/bookcover/">bookcover</a></b><small>
 (<a href="https://ctan.org/pkg/bookcover">CTAN</a>):
-A class for book covers and dust jackets
+A class for book covers and dust jackets. 
 <a href="texmf-dist/doc/latex/bookcover/bookcover-example1.pdf">bookcover-example1.pdf</a>
 <a href="texmf-dist/doc/latex/bookcover/bookcover-example2.pdf">bookcover-example2.pdf</a>
 <a href="texmf-dist/doc/latex/bookcover/bookcover.pdf">bookcover.pdf</a>
@@ -3104,22 +3092,22 @@
 <a href="texmf-dist/doc/latex/bookcover/figures/tikzclip.pdf">tikzclip.pdf</a>.
 </small></li>
 
-<li id="bookdb"><b><a href="texmf-dist/doc/bibtex/bookdb">bookdb</a></b><small>
+<li id="bookdb"><b><a href="texmf-dist/doc/bibtex/bookdb/">bookdb</a></b><small>
 (<a href="https://ctan.org/pkg/bookdb">CTAN</a>):
-A BibTeX style file for cataloguing a home library
+A BibTeX style file for cataloguing a home library. 
 <a href="texmf-dist/doc/bibtex/bookdb/bookdb.pdf">bookdb.pdf</a>.
 </small></li>
 
-<li id="bookest"><b><a href="texmf-dist/doc/latex/bookest">bookest</a></b><small>
+<li id="bookest"><b><a href="texmf-dist/doc/latex/bookest/">bookest</a></b><small>
 (<a href="https://ctan.org/pkg/bookest">CTAN</a>):
-Extended book class
+Extended book class. 
 <a href="texmf-dist/doc/latex/bookest/bookestdoc-en.pdf">bookestdoc-en.pdf</a>
 <a href="texmf-dist/doc/latex/bookest/bookestdoc-it.pdf">bookestdoc-it.pdf</a> (it).
 </small></li>
 
-<li id="bookhands"><b><a href="texmf-dist/doc/fonts/bookhands">bookhands</a></b><small>
+<li id="bookhands"><b><a href="texmf-dist/doc/fonts/bookhands/">bookhands</a></b><small>
 (<a href="https://ctan.org/pkg/bookhands">CTAN</a>):
-A collection of book-hand fonts
+A collection of book-hand fonts. 
 <a href="texmf-dist/doc/fonts/bookhands/allsqrcaps.pdf">allsqrcaps.pdf</a>
 <a href="texmf-dist/doc/fonts/bookhands/pgothic-tryfont.pdf">pgothic-tryfont.pdf</a>
 <a href="texmf-dist/doc/fonts/bookhands/sqrcaps.pdf">sqrcaps.pdf</a>
@@ -3126,191 +3114,197 @@
 <a href="texmf-dist/doc/fonts/bookhands/trysqrcaps.pdf">trysqrcaps.pdf</a>.
 </small></li>
 
-<li id="booklet"><b><a href="texmf-dist/doc/latex/booklet">booklet</a></b><small>
+<li id="booklet"><b><a href="texmf-dist/doc/latex/booklet/">booklet</a></b><small>
 (<a href="https://ctan.org/pkg/booklet">CTAN</a>):
-Aids for printing simple booklets
+Aids for printing simple booklets. 
 <a href="texmf-dist/doc/latex/booklet/booklet.pdf">booklet.pdf</a>.
 </small></li>
 
-<li id="bookmark"><b><a href="texmf-dist/doc/latex/bookmark">bookmark</a></b><small>
+<li id="bookmark"><b><a href="texmf-dist/doc/latex/bookmark/">bookmark</a></b><small>
 (<a href="https://ctan.org/pkg/bookmark">CTAN</a>):
-A new bookmark (outline) organization for hyperref
+A new bookmark (outline) organization for hyperref. 
 <a href="texmf-dist/doc/latex/bookmark/bookmark.pdf">bookmark.pdf</a>.
 </small></li>
 
-<li id="booktabs"><b><a href="texmf-dist/doc/latex/booktabs">booktabs</a></b><small>
+<li id="bookshelf"><b><a href="texmf-dist/doc/latex/bookshelf/">bookshelf</a></b><small>
+(<a href="https://ctan.org/pkg/bookshelf">CTAN</a>):
+Create a nice image from a BibTeX filee. 
+<a href="texmf-dist/doc/latex/bookshelf/bookshelf.pdf">bookshelf.pdf</a>.
+</small></li>
+
+<li id="booktabs"><b><a href="texmf-dist/doc/latex/booktabs/">booktabs</a></b><small>
 (<a href="https://ctan.org/pkg/booktabs">CTAN</a>):
-Publication quality tables in LaTeX
+Publication quality tables in LaTeX. 
 <a href="texmf-dist/doc/latex/booktabs/booktabs.pdf">booktabs.pdf</a>.
 </small></li>
 
-<li id="booktabs-de"><b><a href="texmf-dist/doc/latex/booktabs-de">booktabs-de</a></b><small>
+<li id="booktabs-de"><b><a href="texmf-dist/doc/latex/booktabs-de/">booktabs-de</a></b><small>
 (<a href="https://ctan.org/pkg/booktabs-de">CTAN</a>):
-German version of booktabs
+German version of booktabs. 
 <a href="texmf-dist/doc/latex/booktabs-de/booktabs-de.pdf">booktabs-de.pdf</a>.
 </small></li>
 
-<li id="booktabs-fr"><b><a href="texmf-dist/doc/latex/booktabs-fr">booktabs-fr</a></b><small>
+<li id="booktabs-fr"><b><a href="texmf-dist/doc/latex/booktabs-fr/">booktabs-fr</a></b><small>
 (<a href="https://ctan.org/pkg/booktabs-fr">CTAN</a>):
-French translation of booktabs documentation
+French translation of booktabs documentation. 
 <a href="texmf-dist/doc/latex/booktabs-fr/f-booktabs.pdf">f-booktabs.pdf</a>.
 </small></li>
 
-<li id="boolexpr"><b><a href="texmf-dist/doc/latex/boolexpr">boolexpr</a></b><small>
+<li id="boolexpr"><b><a href="texmf-dist/doc/latex/boolexpr/">boolexpr</a></b><small>
 (<a href="https://ctan.org/pkg/boolexpr">CTAN</a>):
-A boolean expression evaluator and a switch command
+A boolean expression evaluator and a switch command. 
 <a href="texmf-dist/doc/latex/boolexpr/boolexpr.pdf">boolexpr.pdf</a>.
 </small></li>
 
-<li id="boondox"><b><a href="texmf-dist/doc/fonts/boondox">boondox</a></b><small>
+<li id="boondox"><b><a href="texmf-dist/doc/fonts/boondox/">boondox</a></b><small>
 (<a href="https://ctan.org/pkg/boondox">CTAN</a>):
-Mathematical alphabets derived from the STIX fonts
+Mathematical alphabets derived from the STIX fonts. 
 <a href="texmf-dist/doc/fonts/boondox/boondox-doc.pdf">boondox-doc.pdf</a>.
 </small></li>
 
-<li id="bophook"><b><a href="texmf-dist/doc/latex/bophook">bophook</a></b><small>
+<li id="bophook"><b><a href="texmf-dist/doc/latex/bophook/">bophook</a></b><small>
 (<a href="https://ctan.org/pkg/bophook">CTAN</a>):
-Provides an At-Begin-Page hook
+Provides an At-Begin-Page hook. 
 <a href="texmf-dist/doc/latex/bophook/bophook.pdf">bophook.pdf</a>.
 </small></li>
 
-<li id="bosisio"><b><a href="texmf-dist/doc/latex/bosisio">bosisio</a></b><small>
+<li id="bosisio"><b><a href="texmf-dist/doc/latex/bosisio/">bosisio</a></b><small>
 (<a href="https://ctan.org/pkg/bosisio">CTAN</a>):
-A collection of packages by Francesco Bosisio
+A collection of packages by Francesco Bosisio. 
 <a href="texmf-dist/doc/latex/bosisio/index.html">index.html</a>.
 </small></li>
 
-<li id="boxedminipage"><b><a href="texmf-dist/doc/latex/boxedminipage">boxedminipage</a></b><small>
+<li id="boxedminipage"><b><a href="texmf-dist/doc/latex/boxedminipage/">boxedminipage</a></b><small>
 (<a href="https://ctan.org/pkg/boxedminipage">CTAN</a>):
-Framed minipages of a specified total width (text and frame combined)
+Framed minipages of a specified total width (text and frame combined). 
 <a href="texmf-dist/doc/latex/boxedminipage/boxedminipage.pdf">boxedminipage.pdf</a>.
 </small></li>
 
-<li id="boxhandler"><b><a href="texmf-dist/doc/latex/boxhandler">boxhandler</a></b><small>
+<li id="boxhandler"><b><a href="texmf-dist/doc/latex/boxhandler/">boxhandler</a></b><small>
 (<a href="https://ctan.org/pkg/boxhandler">CTAN</a>):
-Flexible Captioning and Deferred Box/List Printing
+Flexible Captioning and Deferred Box/List Printing. 
 <a href="texmf-dist/doc/latex/boxhandler/boxhandler.pdf">boxhandler.pdf</a>.
 </small></li>
 
-<li id="bpchem"><b><a href="texmf-dist/doc/latex/bpchem">bpchem</a></b><small>
+<li id="bpchem"><b><a href="texmf-dist/doc/latex/bpchem/">bpchem</a></b><small>
 (<a href="https://ctan.org/pkg/bpchem">CTAN</a>):
-Typeset chemical names, formulae, etc
+Typeset chemical names, formulae, etc. 
 <a href="texmf-dist/doc/latex/bpchem/bpchem.pdf">bpchem.pdf</a>.
 </small></li>
 
-<li id="bpolynomial"><b><a href="texmf-dist/doc/metapost/bpolynomial">bpolynomial</a></b><small>
+<li id="bpolynomial"><b><a href="texmf-dist/doc/metapost/bpolynomial/">bpolynomial</a></b><small>
 (<a href="https://ctan.org/pkg/bpolynomial">CTAN</a>):
-Drawing polynomial functions of up to order 3
+Drawing polynomial functions of up to order 3. 
 <a href="texmf-dist/doc/metapost/bpolynomial/bpolynomial.pdf">bpolynomial.pdf</a>.
 </small></li>
 
-<li id="br-lex"><b><a href="texmf-dist/doc/latex/br-lex">br-lex</a></b><small>
+<li id="br-lex"><b><a href="texmf-dist/doc/latex/br-lex/">br-lex</a></b><small>
 (<a href="https://ctan.org/pkg/br-lex">CTAN</a>):
-A Class for Typesetting Brazilian legal texts
+A Class for Typesetting Brazilian legal texts. 
 <a href="texmf-dist/doc/latex/br-lex/brlex-doc.pdf">brlex-doc.pdf</a> (pt-br) 
 <a href="texmf-dist/doc/latex/br-lex/leis-exemplo.pdf">leis-exemplo.pdf</a> (pt-br).
 </small></li>
 
-<li id="bracketkey"><b><a href="texmf-dist/doc/latex/bracketkey">bracketkey</a></b><small>
+<li id="bracketkey"><b><a href="texmf-dist/doc/latex/bracketkey/">bracketkey</a></b><small>
 (<a href="https://ctan.org/pkg/bracketkey">CTAN</a>):
-Produce bracketed identification keys
+Produce bracketed identification keys. 
 <a href="texmf-dist/doc/latex/bracketkey/Malva.pdf">Malva.pdf</a>
 <a href="texmf-dist/doc/latex/bracketkey/bracketkey.pdf">bracketkey.pdf</a>.
 </small></li>
 
-<li id="braids"><b><a href="texmf-dist/doc/latex/braids">braids</a></b><small>
+<li id="braids"><b><a href="texmf-dist/doc/latex/braids/">braids</a></b><small>
 (<a href="https://ctan.org/pkg/braids">CTAN</a>):
-Draw braid diagrams with PGF/TikZ
+Draw braid diagrams with PGF/TikZ. 
 <a href="texmf-dist/doc/latex/braids/braids.pdf">braids.pdf</a>
 <a href="texmf-dist/doc/latex/braids/braids_code.pdf">braids_code.pdf</a>.
 </small></li>
 
-<li id="braille"><b><a href="texmf-dist/doc/latex/braille">braille</a></b><small>
+<li id="braille"><b><a href="texmf-dist/doc/latex/braille/">braille</a></b><small>
 (<a href="https://ctan.org/pkg/braille">CTAN</a>):
-Support for braille
+Support for braille. 
 <a href="texmf-dist/doc/latex/braille/braille.html">braille.html</a>
 <a href="texmf-dist/doc/latex/braille/summary.pdf">summary.pdf</a>.
 </small></li>
 
-<li id="braket"><b><a href="texmf-dist/doc/latex/braket">braket</a></b><small>
+<li id="braket"><b><a href="texmf-dist/doc/latex/braket/">braket</a></b><small>
 (<a href="https://ctan.org/pkg/braket">CTAN</a>):
-Dirac bra-ket and set notations
+Dirac bra-ket and set notations. 
 <a href="texmf-dist/doc/latex/braket/braket.pdf">braket.pdf</a>.
 </small></li>
 
-<li id="brandeis-dissertation"><b><a href="texmf-dist/doc/latex/brandeis-dissertation">brandeis-dissertation</a></b><small>
+<li id="brandeis-dissertation"><b><a href="texmf-dist/doc/latex/brandeis-dissertation/">brandeis-dissertation</a></b><small>
 (<a href="https://ctan.org/pkg/brandeis-dissertation">CTAN</a>):
-Class for Brandeis University dissertations
+Class for Brandeis University dissertations. 
 <a href="texmf-dist/doc/latex/brandeis-dissertation/brandeis-dissertation.pdf">brandeis-dissertation.pdf</a>.
 </small></li>
 
-<li id="brandeis-problemset"><b><a href="texmf-dist/doc/latex/brandeis-problemset">brandeis-problemset</a></b><small>
+<li id="brandeis-problemset"><b><a href="texmf-dist/doc/latex/brandeis-problemset/">brandeis-problemset</a></b><small>
 (<a href="https://ctan.org/pkg/brandeis-problemset">CTAN</a>):
-Document class for COSI Problem sets at Brandeis University (Waltham, MA)
+Document class for COSI Problem sets at Brandeis University (Waltham, MA). 
 <a href="texmf-dist/doc/latex/brandeis-problemset/brandeis-problemset.pdf">brandeis-problemset.pdf</a>
 <a href="texmf-dist/doc/latex/brandeis-problemset/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="brandeis-thesis"><b><a href="texmf-dist/doc/latex/brandeis-thesis">brandeis-thesis</a></b><small>
+<li id="brandeis-thesis"><b><a href="texmf-dist/doc/latex/brandeis-thesis/">brandeis-thesis</a></b><small>
 (<a href="https://ctan.org/pkg/brandeis-thesis">CTAN</a>):
-A class for Brandeis University M.A. theses
+A class for Brandeis University M.A. theses. 
 <a href="texmf-dist/doc/latex/brandeis-thesis/brandeis-thesis.pdf">brandeis-thesis.pdf</a>.
 </small></li>
 
-<li id="breakcites"><b><a href="texmf-dist/doc/latex/breakcites">breakcites</a></b><small>
+<li id="breakcites"><b><a href="texmf-dist/doc/latex/breakcites/">breakcites</a></b><small>
 (<a href="https://ctan.org/pkg/breakcites">CTAN</a>):
-Ensure that multiple citations may break at line end
+Ensure that multiple citations may break at line end. 
 <a href="texmf-dist/doc/latex/breakcites/breakcites.pdf">breakcites.pdf</a>.
 </small></li>
 
-<li id="breakurl"><b><a href="texmf-dist/doc/latex/breakurl">breakurl</a></b><small>
+<li id="breakurl"><b><a href="texmf-dist/doc/latex/breakurl/">breakurl</a></b><small>
 (<a href="https://ctan.org/pkg/breakurl">CTAN</a>):
-Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf
+Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf. 
 <a href="texmf-dist/doc/latex/breakurl/breakurl.pdf">breakurl.pdf</a>.
 </small></li>
 
-<li id="bredzenie"><b><a href="texmf-dist/doc/latex/bredzenie">bredzenie</a></b><small>
+<li id="bredzenie"><b><a href="texmf-dist/doc/latex/bredzenie/">bredzenie</a></b><small>
 (<a href="https://ctan.org/pkg/bredzenie">CTAN</a>):
-A Polish version of "lorem ipsum..." in the form of a LaTeX package
+A Polish version of "lorem ipsum..." in the form of a LaTeX package. 
 <a href="texmf-dist/doc/latex/bredzenie/bredzenie.pdf">bredzenie.pdf</a>.
 </small></li>
 
-<li id="breqn"><b><a href="texmf-dist/doc/latex/breqn">breqn</a></b><small>
+<li id="breqn"><b><a href="texmf-dist/doc/latex/breqn/">breqn</a></b><small>
 (<a href="https://ctan.org/pkg/breqn">CTAN</a>):
-Automatic line breaking of displayed equations
+Automatic line breaking of displayed equations. 
 <a href="texmf-dist/doc/latex/breqn/breqn.pdf">breqn.pdf</a>
 <a href="texmf-dist/doc/latex/breqn/flexisym.pdf">flexisym.pdf</a>
 <a href="texmf-dist/doc/latex/breqn/mathstyle.pdf">mathstyle.pdf</a>.
 </small></li>
 
-<li id="bropd"><b><a href="texmf-dist/doc/latex/bropd">bropd</a></b><small>
+<li id="bropd"><b><a href="texmf-dist/doc/latex/bropd/">bropd</a></b><small>
 (<a href="https://ctan.org/pkg/bropd">CTAN</a>):
-Simplified brackets and differentials in LaTeX
+Simplified brackets and differentials in LaTeX. 
 <a href="texmf-dist/doc/latex/bropd/bropd.pdf">bropd.pdf</a>.
 </small></li>
 
-<li id="bullcntr"><b><a href="texmf-dist/doc/latex/bullcntr">bullcntr</a></b><small>
+<li id="bullcntr"><b><a href="texmf-dist/doc/latex/bullcntr/">bullcntr</a></b><small>
 (<a href="https://ctan.org/pkg/bullcntr">CTAN</a>):
-Display list item counter as regular pattern of bullets
+Display list item counter as regular pattern of bullets. 
 <a href="texmf-dist/doc/latex/bullcntr/bullcntr-man.pdf">bullcntr-man.pdf</a>.
 </small></li>
 
-<li id="bundledoc"><b><a href="texmf-dist/doc/man/man1">bundledoc</a></b><small>
+<li id="bundledoc"><b><a href="texmf-dist/doc/man/man1/">bundledoc</a></b><small>
 (<a href="https://ctan.org/pkg/bundledoc">CTAN</a>):
-Bundle together all the files needed to build a LaTeX document
+Bundle together all the files needed to build a LaTeX document. 
 <a href="texmf-dist/doc/man/man1/arlatex.man1.pdf">arlatex.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/bundledoc.man1.pdf">bundledoc.man1.pdf</a>.
 </small></li>
 
-<li id="burmese"><b><a href="texmf-dist/doc/fonts/burmese">burmese</a></b><small>
+<li id="burmese"><b><a href="texmf-dist/doc/fonts/burmese/">burmese</a></b><small>
 (<a href="https://ctan.org/pkg/burmese">CTAN</a>):
-Basic Support for Writing Burmese
+Basic Support for Writing Burmese. 
 <a href="texmf-dist/doc/fonts/burmese/burmguide.pdf">burmguide.pdf</a>.
 </small></li>
 
-<li id="businesscard-qrcode"><b><a href="texmf-dist/doc/xelatex/businesscard-qrcode/examples">businesscard-qrcode</a></b><small>
+<li id="businesscard-qrcode"><b><a href="texmf-dist/doc/xelatex/businesscard-qrcode/">businesscard-qrcode</a></b><small>
 (<a href="https://ctan.org/pkg/businesscard-qrcode">CTAN</a>):
-Business cards with QR-Code
+Business cards with QR-Code. 
 <a href="texmf-dist/doc/xelatex/businesscard-qrcode/examples/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/xelatex/businesscard-qrcode/examples/john-doe-hongkong.pdf">john-doe-hongkong.pdf</a>
 <a href="texmf-dist/doc/xelatex/businesscard-qrcode/examples/peter-muster-example-company-zuerich.pdf">peter-muster-example-company-zuerich.pdf</a>
@@ -3318,81 +3312,81 @@
 <a href="texmf-dist/doc/xelatex/businesscard-qrcode/examples/texstudio_d30266.pdf">texstudio_d30266.pdf</a>.
 </small></li>
 
-<li id="bussproofs"><b><a href="texmf-dist/doc/latex/bussproofs">bussproofs</a></b><small>
+<li id="bussproofs"><b><a href="texmf-dist/doc/latex/bussproofs/">bussproofs</a></b><small>
 (<a href="https://ctan.org/pkg/bussproofs">CTAN</a>):
-Proof trees in the style of the sequent calculus
+Proof trees in the style of the sequent calculus. 
 <a href="texmf-dist/doc/latex/bussproofs/BussGuide2.pdf">BussGuide2.pdf</a>
 <a href="texmf-dist/doc/latex/bussproofs/testbp2.pdf">testbp2.pdf</a>.
 </small></li>
 
-<li id="bussproofs-extra"><b><a href="texmf-dist/doc/latex/bussproofs-extra">bussproofs-extra</a></b><small>
+<li id="bussproofs-extra"><b><a href="texmf-dist/doc/latex/bussproofs-extra/">bussproofs-extra</a></b><small>
 (<a href="https://ctan.org/pkg/bussproofs-extra">CTAN</a>):
-Extra commands for bussproofs.sty
+Extra commands for bussproofs.sty. 
 <a href="texmf-dist/doc/latex/bussproofs-extra/bussproofs-extra.pdf">bussproofs-extra.pdf</a>.
 </small></li>
 
-<li id="bxbase"><b><a href="texmf-dist/doc/latex/bxbase">bxbase</a></b><small>
+<li id="bxbase"><b><a href="texmf-dist/doc/latex/bxbase/">bxbase</a></b><small>
 (<a href="https://ctan.org/pkg/bxbase">CTAN</a>):
-BX bundle base components
+BX bundle base components. 
 <a href="texmf-dist/doc/latex/bxbase/bxbase-ja.pdf">bxbase-ja.pdf</a> (ja).
 </small></li>
 
-<li id="bxcalc"><b><a href="texmf-dist/doc/latex/bxcalc">bxcalc</a></b><small>
+<li id="bxcalc"><b><a href="texmf-dist/doc/latex/bxcalc/">bxcalc</a></b><small>
 (<a href="https://ctan.org/pkg/bxcalc">CTAN</a>):
-Extend the functionality of the calc package
+Extend the functionality of the calc package. 
 <a href="texmf-dist/doc/latex/bxcalc/bxcalcize.pdf">bxcalcize.pdf</a>
 <a href="texmf-dist/doc/latex/bxcalc/bxcalcux.pdf">bxcalcux.pdf</a>
 <a href="texmf-dist/doc/latex/bxcalc/sample-bxcalc.pdf">sample-bxcalc.pdf</a>.
 </small></li>
 
-<li id="bxcjkjatype"><b><a href="texmf-dist/doc/latex/bxcjkjatype">bxcjkjatype</a></b><small>
+<li id="bxcjkjatype"><b><a href="texmf-dist/doc/latex/bxcjkjatype/">bxcjkjatype</a></b><small>
 (<a href="https://ctan.org/pkg/bxcjkjatype">CTAN</a>):
-Typeset Japanese with pdfLaTeX and CJK
+Typeset Japanese with pdfLaTeX and CJK. 
 <a href="texmf-dist/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.pdf">sample-bxcjkjatype-beamer.pdf</a>
 <a href="texmf-dist/doc/latex/bxcjkjatype/sample-bxcjkjatype.pdf">sample-bxcjkjatype.pdf</a> (ja).
 </small></li>
 
-<li id="bxeepic"><b><a href="texmf-dist/doc/latex/bxeepic">bxeepic</a></b><small>
+<li id="bxeepic"><b><a href="texmf-dist/doc/latex/bxeepic/">bxeepic</a></b><small>
 (<a href="https://ctan.org/pkg/bxeepic">CTAN</a>):
-Eepic facilities using pict2e
+Eepic facilities using pict2e. 
 <a href="texmf-dist/doc/latex/bxeepic/sample-bxeepic.pdf">sample-bxeepic.pdf</a>.
 </small></li>
 
-<li id="bxjaholiday"><b><a href="texmf-dist/doc/latex/bxjaholiday">bxjaholiday</a></b><small>
+<li id="bxjaholiday"><b><a href="texmf-dist/doc/latex/bxjaholiday/">bxjaholiday</a></b><small>
 (<a href="https://ctan.org/pkg/bxjaholiday">CTAN</a>):
-Support for Japanese holidays
+Support for Japanese holidays. 
 <a href="texmf-dist/doc/latex/bxjaholiday/bxjaholiday.pdf">bxjaholiday.pdf</a>.
 </small></li>
 
-<li id="bxjaprnind"><b><a href="texmf-dist/doc/latex/bxjaprnind">bxjaprnind</a></b><small>
+<li id="bxjaprnind"><b><a href="texmf-dist/doc/latex/bxjaprnind/">bxjaprnind</a></b><small>
 (<a href="https://ctan.org/pkg/bxjaprnind">CTAN</a>):
-Adjust the position of parentheses at paragraph head
+Adjust the position of parentheses at paragraph head. 
 <a href="texmf-dist/doc/latex/bxjaprnind/bxjaprnind.pdf">bxjaprnind.pdf</a> (ja) 
 <a href="texmf-dist/doc/latex/bxjaprnind/sample-bxjaprnind.pdf">sample-bxjaprnind.pdf</a>.
 </small></li>
 
-<li id="bxjscls"><b><a href="texmf-dist/doc/latex/bxjscls">bxjscls</a></b><small>
+<li id="bxjscls"><b><a href="texmf-dist/doc/latex/bxjscls/">bxjscls</a></b><small>
 (<a href="https://ctan.org/pkg/bxjscls">CTAN</a>):
-Japanese document class collection for all major engines
+Japanese document class collection for all major engines. 
 <a href="texmf-dist/doc/latex/bxjscls/bxjscls-manual.pdf">bxjscls-manual.pdf</a> (ja) 
 <a href="texmf-dist/doc/latex/bxjscls/bxjscls.pdf">bxjscls.pdf</a> (ja).
 </small></li>
 
-<li id="bxtexlogo"><b><a href="texmf-dist/doc/latex/bxtexlogo">bxtexlogo</a></b><small>
+<li id="bxtexlogo"><b><a href="texmf-dist/doc/latex/bxtexlogo/">bxtexlogo</a></b><small>
 (<a href="https://ctan.org/pkg/bxtexlogo">CTAN</a>):
-Additional TeX-family logos
+Additional TeX-family logos. 
 <a href="texmf-dist/doc/latex/bxtexlogo/bxtexlogo-sample.pdf">bxtexlogo-sample.pdf</a>.
 </small></li>
 
-<li id="bxwareki"><b><a href="texmf-dist/doc/latex/bxwareki">bxwareki</a></b><small>
+<li id="bxwareki"><b><a href="texmf-dist/doc/latex/bxwareki/">bxwareki</a></b><small>
 (<a href="https://ctan.org/pkg/bxwareki">CTAN</a>):
-Convert dates from Gregorian to Japanese calender
+Convert dates from Gregorian to Japanese calender. 
 <a href="texmf-dist/doc/latex/bxwareki/bxwareki.pdf">bxwareki.pdf</a>.
 </small></li>
 
-<li id="bytefield"><b><a href="texmf-dist/doc/latex/bytefield">bytefield</a></b><small>
+<li id="bytefield"><b><a href="texmf-dist/doc/latex/bytefield/">bytefield</a></b><small>
 (<a href="https://ctan.org/pkg/bytefield">CTAN</a>):
-Create illustrations for network protocol specifications
+Create illustrations for network protocol specifications. 
 <a href="texmf-dist/doc/latex/bytefield/bf-example.pdf">bf-example.pdf</a>
 <a href="texmf-dist/doc/latex/bytefield/bytefield.pdf">bytefield.pdf</a>.
 </small></li>
@@ -3401,78 +3395,77 @@
 
 <h2 id="letter-C">C</h2>
 
-<ol start="445">
+<ol start="446">
 
-<li id="c90"><b><a href="texmf-dist/doc/fonts/enc/c90">c90</a></b><small>
-(<a href="https://ctan.org/pkg/c90">CTAN</a>):
-c90 font encoding for Thai
+<li id="c90"><b><a href="texmf-dist/doc/fonts/enc/c90/">c90</a></b><small>
+c90 font encoding for Thai. 
 <a href="texmf-dist/doc/fonts/enc/c90/c90.pdf">c90.pdf</a>.
 </small></li>
 
-<li id="cabin"><b><a href="texmf-dist/doc/fonts/cabin">cabin</a></b><small>
+<li id="cabin"><b><a href="texmf-dist/doc/fonts/cabin/">cabin</a></b><small>
 (<a href="https://ctan.org/pkg/cabin">CTAN</a>):
-A humanist Sans Serif font, with LaTeX support
+A humanist Sans Serif font, with LaTeX support. 
 <a href="texmf-dist/doc/fonts/cabin/cabin-samples.pdf">cabin-samples.pdf</a>.
 </small></li>
 
-<li id="cachepic"><b><a href="texmf-dist/doc/latex/cachepic">cachepic</a></b><small>
+<li id="cachepic"><b><a href="texmf-dist/doc/latex/cachepic/">cachepic</a></b><small>
 (<a href="https://ctan.org/pkg/cachepic">CTAN</a>):
-Convert document fragments into graphics
+Convert document fragments into graphics. 
 <a href="texmf-dist/doc/latex/cachepic/cachepic.pdf">cachepic.pdf</a>.
 </small></li>
 
-<li id="caladea"><b><a href="texmf-dist/doc/fonts/caladea">caladea</a></b><small>
+<li id="caladea"><b><a href="texmf-dist/doc/fonts/caladea/">caladea</a></b><small>
 (<a href="https://ctan.org/pkg/caladea">CTAN</a>):
-Support for the Caladea family of fonts
+Support for the Caladea family of fonts. 
 <a href="texmf-dist/doc/fonts/caladea/Caladea-Regular.pdf">Caladea-Regular.pdf</a>
 <a href="texmf-dist/doc/fonts/caladea/samples.pdf">samples.pdf</a>.
 </small></li>
 
-<li id="calcage"><b><a href="texmf-dist/doc/latex/calcage">calcage</a></b><small>
+<li id="calcage"><b><a href="texmf-dist/doc/latex/calcage/">calcage</a></b><small>
 (<a href="https://ctan.org/pkg/calcage">CTAN</a>):
-Calculate the age of something, in years
+Calculate the age of something, in years. 
 <a href="texmf-dist/doc/latex/calcage/calcage.pdf">calcage.pdf</a>.
 </small></li>
 
-<li id="calctab"><b><a href="texmf-dist/doc/latex/calctab">calctab</a></b><small>
+<li id="calctab"><b><a href="texmf-dist/doc/latex/calctab/">calctab</a></b><small>
 (<a href="https://ctan.org/pkg/calctab">CTAN</a>):
-Language for numeric tables
+Language for numeric tables. 
 <a href="texmf-dist/doc/latex/calctab/calctab_manual.pdf">calctab_manual.pdf</a>.
 </small></li>
 
-<li id="calculation"><b><a href="texmf-dist/doc/latex/calculation">calculation</a></b><small>
+<li id="calculation"><b><a href="texmf-dist/doc/latex/calculation/">calculation</a></b><small>
 (<a href="https://ctan.org/pkg/calculation">CTAN</a>):
-Typesetting reasoned calculations, also called calculational proofs
+Typesetting reasoned calculations, also called calculational proofs. 
 <a href="texmf-dist/doc/latex/calculation/calculation.pdf">calculation.pdf</a>.
 </small></li>
 
-<li id="calculator"><b><a href="texmf-dist/doc/latex/calculator">calculator</a></b><small>
+<li id="calculator"><b><a href="texmf-dist/doc/latex/calculator/">calculator</a></b><small>
 (<a href="https://ctan.org/pkg/calculator">CTAN</a>):
-Use LaTeX as a scientific calculator
+Use LaTeX as a scientific calculator. 
 <a href="texmf-dist/doc/latex/calculator/calculator.pdf">calculator.pdf</a>.
 </small></li>
 
-<li id="calligra"><b><a href="texmf-dist/doc/latex/calligra">calligra</a></b><small>
+<li id="calligra"><b><a href="texmf-dist/doc/latex/calligra/">calligra</a></b><small>
 (<a href="https://ctan.org/pkg/calligra">CTAN</a>):
-Calligraphic font
+Calligraphic font. 
 <a href="texmf-dist/doc/latex/calligra/testfont.pdf">testfont.pdf</a>.
 </small></li>
 
-<li id="callouts"><b><a href="texmf-dist/doc/latex/callouts">callouts</a></b><small>
+<li id="callouts"><b><a href="texmf-dist/doc/latex/callouts/">callouts</a></b><small>
 (<a href="https://ctan.org/pkg/callouts">CTAN</a>):
-Put simple annotations and notes inside a picture
+Put simple annotations and notes inside a picture. 
 <a href="texmf-dist/doc/latex/callouts/callouts.pdf">callouts.pdf</a>.
 </small></li>
 
-<li id="calrsfs"><b><a href="texmf-dist/doc/latex/calrsfs">calrsfs</a></b><small>
+<li id="calrsfs"><b><a href="texmf-dist/doc/latex/calrsfs/">calrsfs</a></b><small>
 (<a href="https://ctan.org/pkg/calrsfs">CTAN</a>):
-Copperplate calligraphic letters in LaTeX
+Copperplate calligraphic letters in LaTeX. 
 <a href="texmf-dist/doc/latex/calrsfs/calrsfs.pdf">calrsfs.pdf</a>.
 </small></li>
 
-<li id="cals"><b><a href="texmf-dist/doc/latex/cals">cals</a></b><small>
+<li id="cals"><b><a href="texmf-dist/doc/latex/cals/">cals</a></b><small>
 (<a href="https://ctan.org/pkg/cals">CTAN</a>):
-Multipage tables with wide range of features
+Multipage tables with wide range of features. 
 <a href="texmf-dist/doc/latex/cals/cals.pdf">cals.pdf</a>
 <a href="texmf-dist/doc/latex/cals/examples/bididemo.pdf">bididemo.pdf</a>
 <a href="texmf-dist/doc/latex/cals/examples/demo.pdf">demo.pdf</a>
@@ -3480,9 +3473,9 @@
 <a href="texmf-dist/doc/latex/cals/tb101parashchenko.pdf">tb101parashchenko.pdf</a>.
 </small></li>
 
-<li id="calxxxx-yyyy"><b><a href="texmf-dist/doc/latex/calxxxx-yyyy">calxxxx-yyyy</a></b><small>
+<li id="calxxxx-yyyy"><b><a href="texmf-dist/doc/latex/calxxxx-yyyy/">calxxxx-yyyy</a></b><small>
 (<a href="https://ctan.org/pkg/calxxxx-yyyy">CTAN</a>):
-Print a calendar for a group of years
+Print a calendar for a group of years. 
 <a href="texmf-dist/doc/latex/calxxxx-yyyy/cal2020-2037_DE.pdf">cal2020-2037_DE.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/calxxxx-yyyy/cal2020-2037_DK.pdf">cal2020-2037_DK.pdf</a> (da) 
 <a href="texmf-dist/doc/latex/calxxxx-yyyy/cal2020-2037_EN.pdf">cal2020-2037_EN.pdf</a>
@@ -3489,46 +3482,46 @@
 <a href="texmf-dist/doc/latex/calxxxx-yyyy/calxxxx-yyyy-doc.pdf">calxxxx-yyyy-doc.pdf</a>.
 </small></li>
 
-<li id="cancel"><b><a href="texmf-dist/doc/latex/cancel">cancel</a></b><small>
+<li id="cancel"><b><a href="texmf-dist/doc/latex/cancel/">cancel</a></b><small>
 (<a href="https://ctan.org/pkg/cancel">CTAN</a>):
-Place lines through maths formulae
+Place lines through maths formulae. 
 <a href="texmf-dist/doc/latex/cancel/cancel.pdf">cancel.pdf</a>.
 </small></li>
 
-<li id="canoniclayout"><b><a href="texmf-dist/doc/latex/canoniclayout">canoniclayout</a></b><small>
+<li id="canoniclayout"><b><a href="texmf-dist/doc/latex/canoniclayout/">canoniclayout</a></b><small>
 (<a href="https://ctan.org/pkg/canoniclayout">CTAN</a>):
-Create canonical page layouts with memoir
+Create canonical page layouts with memoir. 
 <a href="texmf-dist/doc/latex/canoniclayout/canoniclayout.pdf">canoniclayout.pdf</a>.
 </small></li>
 
-<li id="cantarell"><b><a href="texmf-dist/doc/fonts/cantarell">cantarell</a></b><small>
+<li id="cantarell"><b><a href="texmf-dist/doc/fonts/cantarell/">cantarell</a></b><small>
 (<a href="https://ctan.org/pkg/cantarell">CTAN</a>):
-LaTeX support for the Cantarell font family
+LaTeX support for the Cantarell font family. 
 <a href="texmf-dist/doc/fonts/cantarell/cantarell-samples.pdf">cantarell-samples.pdf</a>
 <a href="texmf-dist/doc/fonts/cantarell/cantarell.pdf">cantarell.pdf</a>.
 </small></li>
 
-<li id="capt-of"><b><a href="texmf-dist/doc/latex/capt-of">capt-of</a></b><small>
+<li id="capt-of"><b><a href="texmf-dist/doc/latex/capt-of/">capt-of</a></b><small>
 (<a href="https://ctan.org/pkg/capt-of">CTAN</a>):
-Captions on more than floats
+Captions on more than floats. 
 <a href="texmf-dist/doc/latex/capt-of/capt-of.pdf">capt-of.pdf</a>.
 </small></li>
 
-<li id="captcont"><b><a href="texmf-dist/doc/latex/captcont">captcont</a></b><small>
+<li id="captcont"><b><a href="texmf-dist/doc/latex/captcont/">captcont</a></b><small>
 (<a href="https://ctan.org/pkg/captcont">CTAN</a>):
-Retain float number across several floats
+Retain float number across several floats. 
 <a href="texmf-dist/doc/latex/captcont/captcont.pdf">captcont.pdf</a>.
 </small></li>
 
-<li id="captdef"><b><a href="texmf-dist/doc/latex/captdef">captdef</a></b><small>
+<li id="captdef"><b><a href="texmf-dist/doc/latex/captdef/">captdef</a></b><small>
 (<a href="https://ctan.org/pkg/captdef">CTAN</a>):
-Declare free-standing \caption commands
+Declare free-standing \caption commands. 
 <a href="texmf-dist/doc/latex/captdef/captdef.pdf">captdef.pdf</a>.
 </small></li>
 
-<li id="caption"><b><a href="texmf-dist/doc/latex/caption">caption</a></b><small>
+<li id="caption"><b><a href="texmf-dist/doc/latex/caption/">caption</a></b><small>
 (<a href="https://ctan.org/pkg/caption">CTAN</a>):
-Customising captions in floating environments
+Customising captions in floating environments. 
 <a href="texmf-dist/doc/latex/caption/bicaption.pdf">bicaption.pdf</a>
 <a href="texmf-dist/doc/latex/caption/caption-deu.pdf">caption-deu.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/caption/caption-eng.pdf">caption-eng.pdf</a>
@@ -3538,190 +3531,188 @@
 <a href="texmf-dist/doc/latex/caption/totalcount.pdf">totalcount.pdf</a>.
 </small></li>
 
-<li id="carbohydrates"><b><a href="texmf-dist/doc/latex/carbohydrates">carbohydrates</a></b><small>
+<li id="carbohydrates"><b><a href="texmf-dist/doc/latex/carbohydrates/">carbohydrates</a></b><small>
 (<a href="https://ctan.org/pkg/carbohydrates">CTAN</a>):
-Carbohydrate molecules with chemfig
+Carbohydrate molecules with chemfig. 
 <a href="texmf-dist/doc/latex/carbohydrates/carbohydrates_en.pdf">carbohydrates_en.pdf</a>.
 </small></li>
 
-<li id="carlisle"><b><a href="texmf-dist/doc/latex/carlisle">carlisle</a></b><small>
+<li id="carlisle"><b><a href="texmf-dist/doc/latex/carlisle/">carlisle</a></b><small>
 (<a href="https://ctan.org/pkg/carlisle">CTAN</a>):
-David Carlisle's small packages
+David Carlisle's small packages. 
 <a href="texmf-dist/doc/latex/carlisle/ltxtable.pdf">ltxtable.pdf</a>.
 </small></li>
 
-<li id="carlito"><b><a href="texmf-dist/doc/fonts/carlito">carlito</a></b><small>
+<li id="carlito"><b><a href="texmf-dist/doc/fonts/carlito/">carlito</a></b><small>
 (<a href="https://ctan.org/pkg/carlito">CTAN</a>):
-Support for Carlito sans-serif fonts
+Support for Carlito sans-serif fonts. 
 <a href="texmf-dist/doc/fonts/carlito/Carlito-Regular.pdf">Carlito-Regular.pdf</a>
 <a href="texmf-dist/doc/fonts/carlito/samples.pdf">samples.pdf</a>.
 </small></li>
 
-<li id="cascade"><b><a href="texmf-dist/doc/latex/cascade">cascade</a></b><small>
+<li id="cascade"><b><a href="texmf-dist/doc/latex/cascade/">cascade</a></b><small>
 (<a href="https://ctan.org/pkg/cascade">CTAN</a>):
-Constructions with braces to present mathematical demonstrations
+Constructions with braces to present mathematical demonstrations. 
 <a href="texmf-dist/doc/latex/cascade/cascade.pdf">cascade.pdf</a>.
 </small></li>
 
-<li id="cascadilla"><b><a href="texmf-dist/doc/latex/cascadilla">cascadilla</a></b><small>
+<li id="cascadilla"><b><a href="texmf-dist/doc/latex/cascadilla/">cascadilla</a></b><small>
 (<a href="https://ctan.org/pkg/cascadilla">CTAN</a>):
-Typeset papers conforming to the stylesheet of the Cascadilla Proceedings Project
+Typeset papers conforming to the stylesheet of the Cascadilla Proceedings Project. 
 <a href="texmf-dist/doc/latex/cascadilla/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="cases"><b><a href="texmf-dist/doc/latex/cases">cases</a></b><small>
+<li id="cases"><b><a href="texmf-dist/doc/latex/cases/">cases</a></b><small>
 (<a href="https://ctan.org/pkg/cases">CTAN</a>):
-Numbered cases environment
+Numbered cases environment. 
 <a href="texmf-dist/doc/latex/cases/cases.pdf">cases.pdf</a>.
 </small></li>
 
-<li id="casyl"><b><a href="texmf-dist/doc/latex/casyl">casyl</a></b><small>
+<li id="casyl"><b><a href="texmf-dist/doc/latex/casyl/">casyl</a></b><small>
 (<a href="https://ctan.org/pkg/casyl">CTAN</a>):
-Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics
+Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics. 
 <a href="texmf-dist/doc/latex/casyl/casyldoc.pdf">casyldoc.pdf</a>.
 </small></li>
 
-<li id="catchfile"><b><a href="texmf-dist/doc/latex/catchfile">catchfile</a></b><small>
+<li id="catchfile"><b><a href="texmf-dist/doc/latex/catchfile/">catchfile</a></b><small>
 (<a href="https://ctan.org/pkg/catchfile">CTAN</a>):
-Catch an external file into a macro
+Catch an external file into a macro. 
 <a href="texmf-dist/doc/latex/catchfile/catchfile.pdf">catchfile.pdf</a>.
 </small></li>
 
-<li id="catchfilebetweentags"><b><a href="texmf-dist/doc/latex/catchfilebetweentags">catchfilebetweentags</a></b><small>
+<li id="catchfilebetweentags"><b><a href="texmf-dist/doc/latex/catchfilebetweentags/">catchfilebetweentags</a></b><small>
 (<a href="https://ctan.org/pkg/catchfilebetweentags">CTAN</a>):
-Catch text delimited by docstrip tags
+Catch text delimited by docstrip tags. 
 <a href="texmf-dist/doc/latex/catchfilebetweentags/catchfilebetweentags.pdf">catchfilebetweentags.pdf</a>.
 </small></li>
 
-<li id="catcodes"><b><a href="texmf-dist/doc/generic/catcodes">catcodes</a></b><small>
+<li id="catcodes"><b><a href="texmf-dist/doc/generic/catcodes/">catcodes</a></b><small>
 (<a href="https://ctan.org/pkg/catcodes">CTAN</a>):
-Generic handling of TeX category codes
+Generic handling of TeX category codes. 
 <a href="texmf-dist/doc/generic/catcodes/catcodes.pdf">catcodes.pdf</a>.
 </small></li>
 
-<li id="catechis"><b><a href="texmf-dist/doc/latex/catechis">catechis</a></b><small>
+<li id="catechis"><b><a href="texmf-dist/doc/latex/catechis/">catechis</a></b><small>
 (<a href="https://ctan.org/pkg/catechis">CTAN</a>):
-Macros for typesetting catechisms
+Macros for typesetting catechisms. 
 <a href="texmf-dist/doc/latex/catechis/catechis.pdf">catechis.pdf</a>.
 </small></li>
 
-<li id="cbcoptic"><b><a href="texmf-dist/doc/latex/cbcoptic">cbcoptic</a></b><small>
+<li id="cbcoptic"><b><a href="texmf-dist/doc/latex/cbcoptic/">cbcoptic</a></b><small>
 (<a href="https://ctan.org/pkg/cbcoptic">CTAN</a>):
-Coptic fonts and LaTeX macros for general usage and for philology
+Coptic fonts and LaTeX macros for general usage and for philology. 
 <a href="texmf-dist/doc/latex/cbcoptic/coptfont.pdf">coptfont.pdf</a>
 <a href="texmf-dist/doc/latex/cbcoptic/testcopOK.pdf">testcopOK.pdf</a>.
 </small></li>
 
-<li id="cbfonts"><b><a href="texmf-dist/doc/fonts/cbfonts">cbfonts</a></b><small>
-(<a href="https://ctan.org/pkg/cbfonts">CTAN</a>):
-Complete set of Greek fonts
+<li id="cbfonts"><b><a href="texmf-dist/doc/fonts/cbfonts/">cbfonts</a></b><small>
+Complete set of Greek fonts. 
 <a href="texmf-dist/doc/fonts/cbfonts/cbgreek.pdf">cbgreek.pdf</a>
 <a href="texmf-dist/doc/fonts/cbfonts/grmn1000table.pdf">grmn1000table.pdf</a>.
 </small></li>
 
-<li id="cbfonts-fd"><b><a href="texmf-dist/doc/fonts/cbfonts-fd">cbfonts-fd</a></b><small>
+<li id="cbfonts-fd"><b><a href="texmf-dist/doc/fonts/cbfonts-fd/">cbfonts-fd</a></b><small>
 (<a href="https://ctan.org/pkg/cbfonts-fd">CTAN</a>):
-LaTeX font description files for the CB Greek fonts
+LaTeX font description files for the CB Greek fonts. 
 <a href="texmf-dist/doc/fonts/cbfonts-fd/cbfonts-fd.pdf">cbfonts-fd.pdf</a>.
 </small></li>
 
-<li id="ccaption"><b><a href="texmf-dist/doc/latex/ccaption">ccaption</a></b><small>
+<li id="ccaption"><b><a href="texmf-dist/doc/latex/ccaption/">ccaption</a></b><small>
 (<a href="https://ctan.org/pkg/ccaption">CTAN</a>):
-Continuation headings and legends for floats
+Continuation headings and legends for floats. 
 <a href="texmf-dist/doc/latex/ccaption/ccaption.pdf">ccaption.pdf</a>.
 </small></li>
 
-<li id="ccfonts"><b><a href="texmf-dist/doc/latex/ccfonts">ccfonts</a></b><small>
+<li id="ccfonts"><b><a href="texmf-dist/doc/latex/ccfonts/">ccfonts</a></b><small>
 (<a href="https://ctan.org/pkg/ccfonts">CTAN</a>):
-Support for Concrete text and math fonts in LaTeX
+Support for Concrete text and math fonts in LaTeX. 
 <a href="texmf-dist/doc/latex/ccfonts/ccfonts.pdf">ccfonts.pdf</a>.
 </small></li>
 
-<li id="ccicons"><b><a href="texmf-dist/doc/latex/ccicons">ccicons</a></b><small>
+<li id="ccicons"><b><a href="texmf-dist/doc/latex/ccicons/">ccicons</a></b><small>
 (<a href="https://ctan.org/pkg/ccicons">CTAN</a>):
-LaTeX support for Creative Commons icons
+LaTeX support for Creative Commons icons. 
 <a href="texmf-dist/doc/latex/ccicons/ccicons.pdf">ccicons.pdf</a>.
 </small></li>
 
-<li id="cclicenses"><b><a href="texmf-dist/doc/latex/cclicenses">cclicenses</a></b><small>
+<li id="cclicenses"><b><a href="texmf-dist/doc/latex/cclicenses/">cclicenses</a></b><small>
 (<a href="https://ctan.org/pkg/cclicenses">CTAN</a>):
-Typeset Creative Commons licence logos
+Typeset Creative Commons licence logos. 
 <a href="texmf-dist/doc/latex/cclicenses/cclicenses_short.pdf">cclicenses_short.pdf</a>.
 </small></li>
 
-<li id="ccool"><b><a href="texmf-dist/doc/latex/ccool">ccool</a></b><small>
+<li id="ccool"><b><a href="texmf-dist/doc/latex/ccool/">ccool</a></b><small>
 (<a href="https://ctan.org/pkg/ccool">CTAN</a>):
-Encoding notational conventions
+Encoding notational conventions. 
 <a href="texmf-dist/doc/latex/ccool/ccool.pdf">ccool.pdf</a>.
 </small></li>
 
-<li id="cd"><b><a href="texmf-dist/doc/latex/cd">cd</a></b><small>
+<li id="cd"><b><a href="texmf-dist/doc/latex/cd/">cd</a></b><small>
 (<a href="https://ctan.org/pkg/cd">CTAN</a>):
-Typeset CD covers
+Typeset CD covers. 
 <a href="texmf-dist/doc/latex/cd/cd.pdf">cd.pdf</a>.
 </small></li>
 
-<li id="cd-cover"><b><a href="texmf-dist/doc/latex/cd-cover">cd-cover</a></b><small>
-(<a href="https://ctan.org/pkg/cd-cover">CTAN</a>):
-Typeset CD covers
+<li id="cd-cover"><b><a href="texmf-dist/doc/latex/cd-cover/">cd-cover</a></b><small>
+Typeset CD covers. 
 <a href="texmf-dist/doc/latex/cd-cover/cd-cover.pdf">cd-cover.pdf</a>.
 </small></li>
 
-<li id="cdpbundl"><b><a href="texmf-dist/doc/latex/cdpbundl">cdpbundl</a></b><small>
+<li id="cdpbundl"><b><a href="texmf-dist/doc/latex/cdpbundl/">cdpbundl</a></b><small>
 (<a href="https://ctan.org/pkg/cdpbundl">CTAN</a>):
-Business letters in the Italian style
+Business letters in the Italian style. 
 <a href="texmf-dist/doc/latex/cdpbundl/cdp-ver-0-36.pdf">cdp-ver-0-36.pdf</a>
 <a href="texmf-dist/doc/latex/cdpbundl/cdpbundl-doc.pdf">cdpbundl-doc.pdf</a>.
 </small></li>
 
-<li id="cellprops"><b><a href="texmf-dist/doc/latex/cellprops">cellprops</a></b><small>
+<li id="cellprops"><b><a href="texmf-dist/doc/latex/cellprops/">cellprops</a></b><small>
 (<a href="https://ctan.org/pkg/cellprops">CTAN</a>):
-Accept CSS-like selectors in tabular, array, ...
+Accept CSS-like selectors in tabular, array, ... 
 <a href="texmf-dist/doc/latex/cellprops/cellprops.pdf">cellprops.pdf</a>.
 </small></li>
 
-<li id="cellspace"><b><a href="texmf-dist/doc/latex/cellspace">cellspace</a></b><small>
+<li id="cellspace"><b><a href="texmf-dist/doc/latex/cellspace/">cellspace</a></b><small>
 (<a href="https://ctan.org/pkg/cellspace">CTAN</a>):
-Ensure minimal spacing of table cells
+Ensure minimal spacing of table cells. 
 <a href="texmf-dist/doc/latex/cellspace/cellspace.pdf">cellspace.pdf</a>.
 </small></li>
 
-<li id="celtic"><b><a href="texmf-dist/doc/latex/celtic">celtic</a></b><small>
+<li id="celtic"><b><a href="texmf-dist/doc/latex/celtic/">celtic</a></b><small>
 (<a href="https://ctan.org/pkg/celtic">CTAN</a>):
-A TikZ library for drawing celtic knots
+A TikZ library for drawing celtic knots. 
 <a href="texmf-dist/doc/latex/celtic/celtic.pdf">celtic.pdf</a>
 <a href="texmf-dist/doc/latex/celtic/celtic_code.pdf">celtic_code.pdf</a>.
 </small></li>
 
-<li id="censor"><b><a href="texmf-dist/doc/latex/censor">censor</a></b><small>
+<li id="censor"><b><a href="texmf-dist/doc/latex/censor/">censor</a></b><small>
 (<a href="https://ctan.org/pkg/censor">CTAN</a>):
-Tools for producing redacted documents
+Tools for producing redacted documents. 
 <a href="texmf-dist/doc/latex/censor/censor.pdf">censor.pdf</a>.
 </small></li>
 
-<li id="cesenaexam"><b><a href="texmf-dist/doc/latex/cesenaexam">cesenaexam</a></b><small>
+<li id="cesenaexam"><b><a href="texmf-dist/doc/latex/cesenaexam/">cesenaexam</a></b><small>
 (<a href="https://ctan.org/pkg/cesenaexam">CTAN</a>):
-A class file to typeset exams
+A class file to typeset exams. 
 <a href="texmf-dist/doc/latex/cesenaexam/cesenaexam.pdf">cesenaexam.pdf</a>
 <a href="texmf-dist/doc/latex/cesenaexam/cesenaexam_example.pdf">cesenaexam_example.pdf</a>.
 </small></li>
 
-<li id="cfr-initials"><b><a href="texmf-dist/doc/latex/cfr-initials">cfr-initials</a></b><small>
+<li id="cfr-initials"><b><a href="texmf-dist/doc/latex/cfr-initials/">cfr-initials</a></b><small>
 (<a href="https://ctan.org/pkg/cfr-initials">CTAN</a>):
-LaTeX packages for use of initials
+LaTeX packages for use of initials. 
 <a href="texmf-dist/doc/latex/cfr-initials/cfr-initials.pdf">cfr-initials.pdf</a>.
 </small></li>
 
-<li id="cfr-lm"><b><a href="texmf-dist/doc/fonts/cfr-lm">cfr-lm</a></b><small>
+<li id="cfr-lm"><b><a href="texmf-dist/doc/fonts/cfr-lm/">cfr-lm</a></b><small>
 (<a href="https://ctan.org/pkg/cfr-lm">CTAN</a>):
-Enhanced support for the Latin Modern fonts
+Enhanced support for the Latin Modern fonts. 
 <a href="texmf-dist/doc/fonts/cfr-lm/cfr-lm.pdf">cfr-lm.pdf</a>
 <a href="texmf-dist/doc/fonts/cfr-lm/clm-test.pdf">clm-test.pdf</a>.
 </small></li>
 
-<li id="changebar"><b><a href="texmf-dist/doc/latex/changebar">changebar</a></b><small>
+<li id="changebar"><b><a href="texmf-dist/doc/latex/changebar/">changebar</a></b><small>
 (<a href="https://ctan.org/pkg/changebar">CTAN</a>):
-Generate changebars in LaTeX documents
+Generate changebars in LaTeX documents. 
 <a href="texmf-dist/doc/latex/changebar/cbtest1-ltx.pdf">cbtest1-ltx.pdf</a>
 <a href="texmf-dist/doc/latex/changebar/cbtest1-pdf.pdf">cbtest1-pdf.pdf</a>
 <a href="texmf-dist/doc/latex/changebar/cbtest1good.pdf">cbtest1good.pdf</a>
@@ -3731,144 +3722,144 @@
 <a href="texmf-dist/doc/latex/changebar/changebar.pdf">changebar.pdf</a>.
 </small></li>
 
-<li id="changelayout"><b><a href="texmf-dist/doc/latex/changelayout">changelayout</a></b><small>
+<li id="changelayout"><b><a href="texmf-dist/doc/latex/changelayout/">changelayout</a></b><small>
 (<a href="https://ctan.org/pkg/changelayout">CTAN</a>):
-Change the layout of individual pages and their text
+Change the layout of individual pages and their text. 
 <a href="texmf-dist/doc/latex/changelayout/changelayout-guide.pdf">changelayout-guide.pdf</a>.
 </small></li>
 
-<li id="changelog"><b><a href="texmf-dist/doc/latex/changelog">changelog</a></b><small>
+<li id="changelog"><b><a href="texmf-dist/doc/latex/changelog/">changelog</a></b><small>
 (<a href="https://ctan.org/pkg/changelog">CTAN</a>):
-Provides a changelog environment
+Provides a changelog environment. 
 <a href="texmf-dist/doc/latex/changelog/changelog.pdf">changelog.pdf</a>
 <a href="texmf-dist/doc/latex/changelog/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="changepage"><b><a href="texmf-dist/doc/latex/changepage">changepage</a></b><small>
+<li id="changepage"><b><a href="texmf-dist/doc/latex/changepage/">changepage</a></b><small>
 (<a href="https://ctan.org/pkg/changepage">CTAN</a>):
-Margin adjustment and detection of odd/even pages
+Margin adjustment and detection of odd/even pages. 
 <a href="texmf-dist/doc/latex/changepage/changepage.pdf">changepage.pdf</a>.
 </small></li>
 
-<li id="changes"><b><a href="texmf-dist/doc/latex/changes">changes</a></b><small>
+<li id="changes"><b><a href="texmf-dist/doc/latex/changes/">changes</a></b><small>
 (<a href="https://ctan.org/pkg/changes">CTAN</a>):
-Manual change markup
+Manual change markup. 
 <a href="texmf-dist/doc/latex/changes/changes.english.pdf">changes.english.pdf</a>
 <a href="texmf-dist/doc/latex/changes/changes.english.withcode.pdf">changes.english.withcode.pdf</a>
 <a href="texmf-dist/doc/latex/changes/changes.ngerman.pdf">changes.ngerman.pdf</a> (de).
 </small></li>
 
-<li id="chappg"><b><a href="texmf-dist/doc/latex/chappg">chappg</a></b><small>
+<li id="chappg"><b><a href="texmf-dist/doc/latex/chappg/">chappg</a></b><small>
 (<a href="https://ctan.org/pkg/chappg">CTAN</a>):
-Page numbering by chapter
+Page numbering by chapter. 
 <a href="texmf-dist/doc/latex/chappg/chappg.pdf">chappg.pdf</a>.
 </small></li>
 
-<li id="chapterfolder"><b><a href="texmf-dist/doc/latex/chapterfolder">chapterfolder</a></b><small>
+<li id="chapterfolder"><b><a href="texmf-dist/doc/latex/chapterfolder/">chapterfolder</a></b><small>
 (<a href="https://ctan.org/pkg/chapterfolder">CTAN</a>):
-Package for working with complicated folder structures
+Package for working with complicated folder structures. 
 <a href="texmf-dist/doc/latex/chapterfolder/chapterfolder.pdf">chapterfolder.pdf</a>.
 </small></li>
 
-<li id="chbibref"><b><a href="texmf-dist/doc/latex/chbibref">chbibref</a></b><small>
+<li id="chbibref"><b><a href="texmf-dist/doc/latex/chbibref/">chbibref</a></b><small>
 (<a href="https://ctan.org/pkg/chbibref">CTAN</a>):
-Change the Bibliography/References title
+Change the Bibliography/References title. 
 <a href="texmf-dist/doc/latex/chbibref/chbibref.pdf">chbibref.pdf</a>.
 </small></li>
 
-<li id="cheatsheet"><b><a href="texmf-dist/doc/latex/cheatsheet">cheatsheet</a></b><small>
+<li id="cheatsheet"><b><a href="texmf-dist/doc/latex/cheatsheet/">cheatsheet</a></b><small>
 (<a href="https://ctan.org/pkg/cheatsheet">CTAN</a>):
-A simple cheatsheet class
+A simple cheatsheet class. 
 <a href="texmf-dist/doc/latex/cheatsheet/cheatsheet.pdf">cheatsheet.pdf</a>.
 </small></li>
 
-<li id="checkcites"><b><a href="texmf-dist/doc/support/checkcites">checkcites</a></b><small>
+<li id="checkcites"><b><a href="texmf-dist/doc/support/checkcites/">checkcites</a></b><small>
 (<a href="https://ctan.org/pkg/checkcites">CTAN</a>):
-Check citation commands in a document
+Check citation commands in a document. 
 <a href="texmf-dist/doc/support/checkcites/checkcites-doc.pdf">checkcites-doc.pdf</a>.
 </small></li>
 
-<li id="checklistings"><b><a href="texmf-dist/doc/latex/checklistings">checklistings</a></b><small>
+<li id="checklistings"><b><a href="texmf-dist/doc/latex/checklistings/">checklistings</a></b><small>
 (<a href="https://ctan.org/pkg/checklistings">CTAN</a>):
-Pass verbatim contents through a compiler and reincorporate the resulting output
+Pass verbatim contents through a compiler and reincorporate the resulting output. 
 <a href="texmf-dist/doc/latex/checklistings/checklistings.pdf">checklistings.pdf</a>
 <a href="texmf-dist/doc/latex/checklistings/example.html">example.html</a>
 <a href="texmf-dist/doc/latex/checklistings/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="chemarrow"><b><a href="texmf-dist/doc/fonts/chemarrow">chemarrow</a></b><small>
+<li id="chemarrow"><b><a href="texmf-dist/doc/fonts/chemarrow/">chemarrow</a></b><small>
 (<a href="https://ctan.org/pkg/chemarrow">CTAN</a>):
-Arrows for use in chemistry
+Arrows for use in chemistry. 
 <a href="texmf-dist/doc/fonts/chemarrow/chemarrow-de.pdf">chemarrow-de.pdf</a> (de) 
 <a href="texmf-dist/doc/fonts/chemarrow/chemarrow.pdf">chemarrow.pdf</a>.
 </small></li>
 
-<li id="chembst"><b><a href="texmf-dist/doc/latex/chembst">chembst</a></b><small>
+<li id="chembst"><b><a href="texmf-dist/doc/latex/chembst/">chembst</a></b><small>
 (<a href="https://ctan.org/pkg/chembst">CTAN</a>):
-A collection of BibTeX files for chemistry journals
+A collection of BibTeX files for chemistry journals. 
 <a href="texmf-dist/doc/latex/chembst/chembst.pdf">chembst.pdf</a>.
 </small></li>
 
-<li id="chemcompounds"><b><a href="texmf-dist/doc/latex/chemcompounds">chemcompounds</a></b><small>
+<li id="chemcompounds"><b><a href="texmf-dist/doc/latex/chemcompounds/">chemcompounds</a></b><small>
 (<a href="https://ctan.org/pkg/chemcompounds">CTAN</a>):
-Simple consecutive numbering of chemical compounds
+Simple consecutive numbering of chemical compounds. 
 <a href="texmf-dist/doc/latex/chemcompounds/chemcompounds.pdf">chemcompounds.pdf</a>.
 </small></li>
 
-<li id="chemcono"><b><a href="texmf-dist/doc/latex/chemcono">chemcono</a></b><small>
+<li id="chemcono"><b><a href="texmf-dist/doc/latex/chemcono/">chemcono</a></b><small>
 (<a href="https://ctan.org/pkg/chemcono">CTAN</a>):
-Support for compound numbers in chemistry documents
+Support for compound numbers in chemistry documents. 
 <a href="texmf-dist/doc/latex/chemcono/chemcono.pdf">chemcono.pdf</a>.
 </small></li>
 
-<li id="chemexec"><b><a href="texmf-dist/doc/latex/chemexec">chemexec</a></b><small>
+<li id="chemexec"><b><a href="texmf-dist/doc/latex/chemexec/">chemexec</a></b><small>
 (<a href="https://ctan.org/pkg/chemexec">CTAN</a>):
-Creating (chemical) exercise sheets
+Creating (chemical) exercise sheets. 
 <a href="texmf-dist/doc/latex/chemexec/chemexec_de.pdf">chemexec_de.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/chemexec/chemexec_en.pdf">chemexec_en.pdf</a>.
 </small></li>
 
-<li id="chemfig"><b><a href="texmf-dist/doc/generic/chemfig">chemfig</a></b><small>
+<li id="chemfig"><b><a href="texmf-dist/doc/generic/chemfig/">chemfig</a></b><small>
 (<a href="https://ctan.org/pkg/chemfig">CTAN</a>):
-Draw molecules with easy syntax
+Draw molecules with easy syntax. 
 <a href="texmf-dist/doc/generic/chemfig/chemfig-en.pdf">chemfig-en.pdf</a>
 <a href="texmf-dist/doc/generic/chemfig/chemfig-fr.pdf">chemfig-fr.pdf</a> (fr).
 </small></li>
 
-<li id="chemformula"><b><a href="texmf-dist/doc/latex/chemformula">chemformula</a></b><small>
+<li id="chemformula"><b><a href="texmf-dist/doc/latex/chemformula/">chemformula</a></b><small>
 (<a href="https://ctan.org/pkg/chemformula">CTAN</a>):
-Command for typesetting chemical formulas and reactions
+Command for typesetting chemical formulas and reactions. 
 <a href="texmf-dist/doc/latex/chemformula/chemformula-manual.pdf">chemformula-manual.pdf</a>.
 </small></li>
 
-<li id="chemgreek"><b><a href="texmf-dist/doc/latex/chemgreek">chemgreek</a></b><small>
+<li id="chemgreek"><b><a href="texmf-dist/doc/latex/chemgreek/">chemgreek</a></b><small>
 (<a href="https://ctan.org/pkg/chemgreek">CTAN</a>):
-Upright Greek letters in chemistry
+Upright Greek letters in chemistry. 
 <a href="texmf-dist/doc/latex/chemgreek/chemgreek_en.pdf">chemgreek_en.pdf</a>.
 </small></li>
 
-<li id="chemmacros"><b><a href="texmf-dist/doc/latex/chemmacros">chemmacros</a></b><small>
+<li id="chemmacros"><b><a href="texmf-dist/doc/latex/chemmacros/">chemmacros</a></b><small>
 (<a href="https://ctan.org/pkg/chemmacros">CTAN</a>):
-A collection of macros to support typesetting chemistry documents
+A collection of macros to support typesetting chemistry documents. 
 <a href="texmf-dist/doc/latex/chemmacros/chemmacros-manual.pdf">chemmacros-manual.pdf</a>.
 </small></li>
 
-<li id="chemnum"><b><a href="texmf-dist/doc/latex/chemnum">chemnum</a></b><small>
+<li id="chemnum"><b><a href="texmf-dist/doc/latex/chemnum/">chemnum</a></b><small>
 (<a href="https://ctan.org/pkg/chemnum">CTAN</a>):
-A method of numbering chemical compounds
+A method of numbering chemical compounds. 
 <a href="texmf-dist/doc/latex/chemnum/chemnum_en.pdf">chemnum_en.pdf</a>.
 </small></li>
 
-<li id="chemplants"><b><a href="texmf-dist/doc/latex/chemplants">chemplants</a></b><small>
+<li id="chemplants"><b><a href="texmf-dist/doc/latex/chemplants/">chemplants</a></b><small>
 (<a href="https://ctan.org/pkg/chemplants">CTAN</a>):
-Symbology to draw chemical plants with TikZ
+Symbology to draw chemical plants with TikZ. 
 <a href="texmf-dist/doc/latex/chemplants/chemplants-changes.pdf">chemplants-changes.pdf</a>
 <a href="texmf-dist/doc/latex/chemplants/chemplants-doc.pdf">chemplants-doc.pdf</a>.
 </small></li>
 
-<li id="chemschemex"><b><a href="texmf-dist/doc/latex/chemschemex">chemschemex</a></b><small>
+<li id="chemschemex"><b><a href="texmf-dist/doc/latex/chemschemex/">chemschemex</a></b><small>
 (<a href="https://ctan.org/pkg/chemschemex">CTAN</a>):
-Typeset and cross-reference chemical schemes based on TikZ code
+Typeset and cross-reference chemical schemes based on TikZ code. 
 <a href="texmf-dist/doc/latex/chemschemex/C2H4.pdf">C2H4.pdf</a>
 <a href="texmf-dist/doc/latex/chemschemex/CH2CH-R2.pdf">CH2CH-R2.pdf</a>
 <a href="texmf-dist/doc/latex/chemschemex/R1-CHCH2.pdf">R1-CHCH2.pdf</a>
@@ -3882,78 +3873,78 @@
 <a href="texmf-dist/doc/latex/chemschemex/product_num.pdf">product_num.pdf</a>.
 </small></li>
 
-<li id="chemsec"><b><a href="texmf-dist/doc/latex/chemsec">chemsec</a></b><small>
+<li id="chemsec"><b><a href="texmf-dist/doc/latex/chemsec/">chemsec</a></b><small>
 (<a href="https://ctan.org/pkg/chemsec">CTAN</a>):
-Automated creation of numeric entity labels
+Automated creation of numeric entity labels. 
 <a href="texmf-dist/doc/latex/chemsec/chemsec.pdf">chemsec.pdf</a>.
 </small></li>
 
-<li id="chemstyle"><b><a href="texmf-dist/doc/latex/chemstyle">chemstyle</a></b><small>
+<li id="chemstyle"><b><a href="texmf-dist/doc/latex/chemstyle/">chemstyle</a></b><small>
 (<a href="https://ctan.org/pkg/chemstyle">CTAN</a>):
-Writing chemistry with style
+Writing chemistry with style. 
 <a href="texmf-dist/doc/latex/chemstyle/chemstyle.pdf">chemstyle.pdf</a>.
 </small></li>
 
-<li id="chess-problem-diagrams"><b><a href="texmf-dist/doc/latex/chess-problem-diagrams">chess-problem-diagrams</a></b><small>
+<li id="chess-problem-diagrams"><b><a href="texmf-dist/doc/latex/chess-problem-diagrams/">chess-problem-diagrams</a></b><small>
 (<a href="https://ctan.org/pkg/chess-problem-diagrams">CTAN</a>):
-A package for typesetting chess problem diagrams
+A package for typesetting chess problem diagrams. 
 <a href="texmf-dist/doc/latex/chess-problem-diagrams/diagram.pdf">diagram.pdf</a>.
 </small></li>
 
-<li id="chessboard"><b><a href="texmf-dist/doc/latex/chessboard">chessboard</a></b><small>
+<li id="chessboard"><b><a href="texmf-dist/doc/latex/chessboard/">chessboard</a></b><small>
 (<a href="https://ctan.org/pkg/chessboard">CTAN</a>):
-Print chess boards
+Print chess boards. 
 <a href="texmf-dist/doc/latex/chessboard/chessboard-skakps.pdf">chessboard-skakps.pdf</a>
 <a href="texmf-dist/doc/latex/chessboard/chessboard.pdf">chessboard.pdf</a>
 <a href="texmf-dist/doc/latex/chessboard/chessboard_and_beamer.pdf">chessboard_and_beamer.pdf</a>.
 </small></li>
 
-<li id="chet"><b><a href="texmf-dist/doc/latex/chet">chet</a></b><small>
+<li id="chet"><b><a href="texmf-dist/doc/latex/chet/">chet</a></b><small>
 (<a href="https://ctan.org/pkg/chet">CTAN</a>):
-LaTeX layout inspired by harvmac
+LaTeX layout inspired by harvmac. 
 <a href="texmf-dist/doc/latex/chet/chetdoc.pdf">chetdoc.pdf</a>.
 </small></li>
 
-<li id="chextras"><b><a href="texmf-dist/doc/latex/chextras">chextras</a></b><small>
+<li id="chextras"><b><a href="texmf-dist/doc/latex/chextras/">chextras</a></b><small>
 (<a href="https://ctan.org/pkg/chextras">CTAN</a>):
-A companion package for the Swiss typesetter
+A companion package for the Swiss typesetter. 
 <a href="texmf-dist/doc/latex/chextras/chextras.pdf">chextras.pdf</a>.
 </small></li>
 
-<li id="chickenize"><b><a href="texmf-dist/doc/luatex/chickenize">chickenize</a></b><small>
+<li id="chickenize"><b><a href="texmf-dist/doc/luatex/chickenize/">chickenize</a></b><small>
 (<a href="https://ctan.org/pkg/chickenize">CTAN</a>):
-Use lua callbacks for "interesting" textual effects
+Use lua callbacks for "interesting" textual effects. 
 <a href="texmf-dist/doc/luatex/chickenize/chickenize.pdf">chickenize.pdf</a>.
 </small></li>
 
-<li id="childdoc"><b><a href="texmf-dist/doc/latex/childdoc">childdoc</a></b><small>
+<li id="childdoc"><b><a href="texmf-dist/doc/latex/childdoc/">childdoc</a></b><small>
 (<a href="https://ctan.org/pkg/childdoc">CTAN</a>):
-Directly compile \include'd child documents
+Directly compile \include'd child documents. 
 <a href="texmf-dist/doc/latex/childdoc/childdoc.pdf">childdoc.pdf</a>.
 </small></li>
 
-<li id="chivo"><b><a href="texmf-dist/doc/fonts/chivo">chivo</a></b><small>
+<li id="chivo"><b><a href="texmf-dist/doc/fonts/chivo/">chivo</a></b><small>
 (<a href="https://ctan.org/pkg/chivo">CTAN</a>):
-Using the free Chivo fonts with LaTeX
+Using the free Chivo fonts with LaTeX. 
 <a href="texmf-dist/doc/fonts/chivo/Chivo.pdf">Chivo.pdf</a>.
 </small></li>
 
-<li id="chkfloat"><b><a href="texmf-dist/doc/latex/chkfloat">chkfloat</a></b><small>
+<li id="chkfloat"><b><a href="texmf-dist/doc/latex/chkfloat/">chkfloat</a></b><small>
 (<a href="https://ctan.org/pkg/chkfloat">CTAN</a>):
-Warn whenever a float is placed "to far away"
+Warn whenever a float is placed "to far away". 
 <a href="texmf-dist/doc/latex/chkfloat/chkfloat.pdf">chkfloat.pdf</a>.
 </small></li>
 
-<li id="chklref"><b><a href="texmf-dist/doc/man/man1">chklref</a></b><small>
+<li id="chklref"><b><a href="texmf-dist/doc/support/chklref/">chklref</a></b><small>
 (<a href="https://ctan.org/pkg/chklref">CTAN</a>):
-Check for problems with labels in LaTeX
+Check for problems with labels in LaTeX. 
 <a href="texmf-dist/doc/man/man1/chklref.man1.pdf">chklref.man1.pdf</a>
 <a href="texmf-dist/doc/support/chklref/chklref.pdf">chklref.pdf</a>.
 </small></li>
 
-<li id="chktex"><b><a href="texmf-dist/doc/chktex">chktex</a></b><small>
+<li id="chktex"><b><a href="texmf-dist/doc/chktex/">chktex</a></b><small>
 (<a href="https://ctan.org/pkg/chktex">CTAN</a>):
-Check for errors in LaTeX documents
+Check for errors in LaTeX documents. 
 <a href="texmf-dist/doc/chktex/ChkTeX.pdf">ChkTeX.pdf</a>
 <a href="texmf-dist/doc/man/man1/chktex.man1.pdf">chktex.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/chkweb.man1.pdf">chkweb.man1.pdf</a>
@@ -3960,130 +3951,130 @@
 <a href="texmf-dist/doc/man/man1/deweb.man1.pdf">deweb.man1.pdf</a>.
 </small></li>
 
-<li id="chletter"><b><a href="texmf-dist/doc/latex/chletter">chletter</a></b><small>
+<li id="chletter"><b><a href="texmf-dist/doc/latex/chletter/">chletter</a></b><small>
 (<a href="https://ctan.org/pkg/chletter">CTAN</a>):
-Class for typesetting letters to Swiss rules
+Class for typesetting letters to Swiss rules. 
 <a href="texmf-dist/doc/latex/chletter/chletter.pdf">chletter.pdf</a>.
 </small></li>
 
-<li id="chngcntr"><b><a href="texmf-dist/doc/latex/chngcntr">chngcntr</a></b><small>
+<li id="chngcntr"><b><a href="texmf-dist/doc/latex/chngcntr/">chngcntr</a></b><small>
 (<a href="https://ctan.org/pkg/chngcntr">CTAN</a>):
-Change the resetting of counters
+Change the resetting of counters. 
 <a href="texmf-dist/doc/latex/chngcntr/chngcntr.pdf">chngcntr.pdf</a>.
 </small></li>
 
-<li id="chordbars"><b><a href="texmf-dist/doc/latex/chordbars">chordbars</a></b><small>
+<li id="chordbars"><b><a href="texmf-dist/doc/latex/chordbars/">chordbars</a></b><small>
 (<a href="https://ctan.org/pkg/chordbars">CTAN</a>):
-Print chord grids for pop/jazz tunes
+Print chord grids for pop/jazz tunes. 
 <a href="texmf-dist/doc/latex/chordbars/chordbars_manual.pdf">chordbars_manual.pdf</a>.
 </small></li>
 
-<li id="chordbox"><b><a href="texmf-dist/doc/latex/chordbox">chordbox</a></b><small>
+<li id="chordbox"><b><a href="texmf-dist/doc/latex/chordbox/">chordbox</a></b><small>
 (<a href="https://ctan.org/pkg/chordbox">CTAN</a>):
-Draw chord diagrams
+Draw chord diagrams. 
 <a href="texmf-dist/doc/latex/chordbox/chordbox.pdf">chordbox.pdf</a>.
 </small></li>
 
-<li id="chronology"><b><a href="texmf-dist/doc/latex/chronology">chronology</a></b><small>
+<li id="chronology"><b><a href="texmf-dist/doc/latex/chronology/">chronology</a></b><small>
 (<a href="https://ctan.org/pkg/chronology">CTAN</a>):
-Provides a horizontal timeline
+Provides a horizontal timeline. 
 <a href="texmf-dist/doc/latex/chronology/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="chronosys"><b><a href="texmf-dist/doc/generic/chronosys">chronosys</a></b><small>
+<li id="chronosys"><b><a href="texmf-dist/doc/generic/chronosys/">chronosys</a></b><small>
 (<a href="https://ctan.org/pkg/chronosys">CTAN</a>):
-Drawing time-line diagrams
+Drawing time-line diagrams. 
 <a href="texmf-dist/doc/generic/chronosys/docchronosys_en.pdf">docchronosys_en.pdf</a>
 <a href="texmf-dist/doc/generic/chronosys/docchronosys_fr.pdf">docchronosys_fr.pdf</a> (fr).
 </small></li>
 
-<li id="chs-physics-report"><b><a href="texmf-dist/doc/latex/chs-physics-report">chs-physics-report</a></b><small>
+<li id="chs-physics-report"><b><a href="texmf-dist/doc/latex/chs-physics-report/">chs-physics-report</a></b><small>
 (<a href="https://ctan.org/pkg/chs-physics-report">CTAN</a>):
-Physics lab reports for Carmel High School
+Physics lab reports for Carmel High School. 
 <a href="texmf-dist/doc/latex/chs-physics-report/chs-physics-report.pdf">chs-physics-report.pdf</a>.
 </small></li>
 
-<li id="chscite"><b><a href="texmf-dist/doc/latex/chscite">chscite</a></b><small>
+<li id="chscite"><b><a href="texmf-dist/doc/latex/chscite/">chscite</a></b><small>
 (<a href="https://ctan.org/pkg/chscite">CTAN</a>):
-Bibliography style for Chalmers University of Technology
+Bibliography style for Chalmers University of Technology. 
 <a href="texmf-dist/doc/latex/chscite/chscite.pdf">chscite.pdf</a>.
 </small></li>
 
-<li id="churchslavonic"><b><a href="texmf-dist/doc/latex/churchslavonic">churchslavonic</a></b><small>
+<li id="churchslavonic"><b><a href="texmf-dist/doc/latex/churchslavonic/">churchslavonic</a></b><small>
 (<a href="https://ctan.org/pkg/churchslavonic">CTAN</a>):
-Typeset documents in Church Slavonic language using Unicode
+Typeset documents in Church Slavonic language using Unicode. 
 <a href="texmf-dist/doc/latex/churchslavonic/churchslavonic-en.pdf">churchslavonic-en.pdf</a>
 <a href="texmf-dist/doc/latex/churchslavonic/churchslavonic-ru.pdf">churchslavonic-ru.pdf</a> (ru).
 </small></li>
 
-<li id="cinzel"><b><a href="texmf-dist/doc/fonts/cinzel">cinzel</a></b><small>
+<li id="cinzel"><b><a href="texmf-dist/doc/fonts/cinzel/">cinzel</a></b><small>
 (<a href="https://ctan.org/pkg/cinzel">CTAN</a>):
-LaTeX support for Cinzel and Cinzel Decorative fonts
+LaTeX support for Cinzel and Cinzel Decorative fonts. 
 <a href="texmf-dist/doc/fonts/cinzel/cinzel-samples.pdf">cinzel-samples.pdf</a>.
 </small></li>
 
-<li id="circ"><b><a href="texmf-dist/doc/latex/circ">circ</a></b><small>
+<li id="circ"><b><a href="texmf-dist/doc/latex/circ/">circ</a></b><small>
 (<a href="https://ctan.org/pkg/circ">CTAN</a>):
-Macros for typesetting circuit diagrams
+Macros for typesetting circuit diagrams. 
 <a href="texmf-dist/doc/latex/circ/circ.pdf">circ.pdf</a>.
 </small></li>
 
-<li id="circledsteps"><b><a href="texmf-dist/doc/latex/circledsteps">circledsteps</a></b><small>
+<li id="circledsteps"><b><a href="texmf-dist/doc/latex/circledsteps/">circledsteps</a></b><small>
 (<a href="https://ctan.org/pkg/circledsteps">CTAN</a>):
-Typeset circled numbers
+Typeset circled numbers. 
 <a href="texmf-dist/doc/latex/circledsteps/circledsteps-manual.pdf">circledsteps-manual.pdf</a>.
 </small></li>
 
-<li id="circuit-macros"><b><a href="texmf-dist/doc/latex/circuit-macros/doc">circuit-macros</a></b><small>
+<li id="circuit-macros"><b><a href="texmf-dist/doc/latex/circuit-macros/">circuit-macros</a></b><small>
 (<a href="https://ctan.org/pkg/circuit-macros">CTAN</a>):
-M4 macros for electric circuit diagrams
+M4 macros for electric circuit diagrams. 
 <a href="texmf-dist/doc/latex/circuit-macros/doc/Circuit_macros.pdf">Circuit_macros.pdf</a>
 <a href="texmf-dist/doc/latex/circuit-macros/examples/Incl.pdf">Incl.pdf</a>
 <a href="texmf-dist/doc/latex/circuit-macros/examples/examples.pdf">examples.pdf</a>.
 </small></li>
 
-<li id="circuitikz"><b><a href="texmf-dist/doc/context/third/circuitikz">circuitikz</a></b><small>
+<li id="circuitikz"><b><a href="texmf-dist/doc/context/third/circuitikz/">circuitikz</a></b><small>
 (<a href="https://ctan.org/pkg/circuitikz">CTAN</a>):
-Draw electrical networks with TikZ
+Draw electrical networks with TikZ. 
 <a href="texmf-dist/doc/context/third/circuitikz/circuitikz-context.pdf">circuitikz-context.pdf</a>
 <a href="texmf-dist/doc/latex/circuitikz/circuitikzmanual.pdf">circuitikzmanual.pdf</a>.
 </small></li>
 
-<li id="cite"><b><a href="texmf-dist/doc/latex/cite">cite</a></b><small>
+<li id="cite"><b><a href="texmf-dist/doc/latex/cite/">cite</a></b><small>
 (<a href="https://ctan.org/pkg/cite">CTAN</a>):
-Improved citation handling in LaTeX
+Improved citation handling in LaTeX. 
 <a href="texmf-dist/doc/latex/cite/chapterbib.pdf">chapterbib.pdf</a>
 <a href="texmf-dist/doc/latex/cite/cite.pdf">cite.pdf</a>.
 </small></li>
 
-<li id="citeall"><b><a href="texmf-dist/doc/latex/citeall">citeall</a></b><small>
+<li id="citeall"><b><a href="texmf-dist/doc/latex/citeall/">citeall</a></b><small>
 (<a href="https://ctan.org/pkg/citeall">CTAN</a>):
-Cite all entries of a bbl created with BibLaTeX
+Cite all entries of a bbl created with BibLaTeX. 
 <a href="texmf-dist/doc/latex/citeall/citeall.pdf">citeall.pdf</a>.
 </small></li>
 
-<li id="citeref"><b><a href="texmf-dist/doc/latex/citeref">citeref</a></b><small>
+<li id="citeref"><b><a href="texmf-dist/doc/latex/citeref/">citeref</a></b><small>
 (<a href="https://ctan.org/pkg/citeref">CTAN</a>):
-Add reference-page-list to bibliography-items
+Add reference-page-list to bibliography-items. 
 <a href="texmf-dist/doc/latex/citeref/README.pdf">README.pdf</a>.
 </small></li>
 
-<li id="cje"><b><a href="texmf-dist/doc/latex/cje">cje</a></b><small>
+<li id="cje"><b><a href="texmf-dist/doc/latex/cje/">cje</a></b><small>
 (<a href="https://ctan.org/pkg/cje">CTAN</a>):
-LaTeX document class for CJE articles
+LaTeX document class for CJE articles. 
 <a href="texmf-dist/doc/latex/cje/canadian-flag.pdf">canadian-flag.pdf</a>
 <a href="texmf-dist/doc/latex/cje/cjeguide.pdf">cjeguide.pdf</a>.
 </small></li>
 
-<li id="cjhebrew"><b><a href="texmf-dist/doc/latex/cjhebrew">cjhebrew</a></b><small>
+<li id="cjhebrew"><b><a href="texmf-dist/doc/latex/cjhebrew/">cjhebrew</a></b><small>
 (<a href="https://ctan.org/pkg/cjhebrew">CTAN</a>):
-Typeset Hebrew with LaTeX
+Typeset Hebrew with LaTeX. 
 <a href="texmf-dist/doc/latex/cjhebrew/cjhebrew.pdf">cjhebrew.pdf</a>.
 </small></li>
 
-<li id="cjk"><b><a href="texmf-dist/doc/latex/cjk/doc/pdf">cjk</a></b><small>
+<li id="cjk"><b><a href="texmf-dist/doc/latex/cjk/doc/pdf/">cjk</a></b><small>
 (<a href="https://ctan.org/pkg/cjk">CTAN</a>):
-CJK language support
+CJK language support. 
 <a href="texmf-dist/doc/latex/cjk/doc/pdf/READMEb5.pdf">READMEb5.pdf</a>
 <a href="texmf-dist/doc/latex/cjk/doc/pdf/READMEgb.pdf">READMEgb.pdf</a>
 <a href="texmf-dist/doc/latex/cjk/examples/pdf/Big5.pdf">Big5.pdf</a>
@@ -4107,21 +4098,20 @@
 <a href="texmf-dist/doc/latex/cjk/examples/pdf/thai_utf8.pdf">thai_utf8.pdf</a>.
 </small></li>
 
-<li id="cjk-ko"><b><a href="texmf-dist/doc/latex/cjk-ko">cjk-ko</a></b><small>
+<li id="cjk-ko"><b><a href="texmf-dist/doc/latex/cjk-ko/">cjk-ko</a></b><small>
 (<a href="https://ctan.org/pkg/cjk-ko">CTAN</a>):
-Extension of the CJK package for Korean typesetting
+Extension of the CJK package for Korean typesetting. 
 <a href="texmf-dist/doc/latex/cjk-ko/cjk-ko-doc.pdf">cjk-ko-doc.pdf</a> (ko).
 </small></li>
 
-<li id="cjkpunct"><b><a href="texmf-dist/doc/latex/cjkpunct">cjkpunct</a></b><small>
+<li id="cjkpunct"><b><a href="texmf-dist/doc/latex/cjkpunct/">cjkpunct</a></b><small>
 (<a href="https://ctan.org/pkg/cjkpunct">CTAN</a>):
-Adjust locations and kerning of CJK punctuation marks
+Adjust locations and kerning of CJK punctuation marks. 
 <a href="texmf-dist/doc/latex/cjkpunct/CJKpunct.pdf">CJKpunct.pdf</a>.
 </small></li>
 
-<li id="cjkutils"><b><a href="texmf-dist/doc/man/man1">cjkutils</a></b><small>
-(<a href="https://ctan.org/pkg/cjkutils">CTAN</a>):
-CJK language support
+<li id="cjkutils"><b><a href="texmf-dist/doc/man/man1/">cjkutils</a></b><small>
+CJK language support. 
 <a href="texmf-dist/doc/man/man1/bg5conv.man1.pdf">bg5conv.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/cef5conv.man1.pdf">cef5conv.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/cefconv.man1.pdf">cefconv.man1.pdf</a>
@@ -4131,22 +4121,22 @@
 <a href="texmf-dist/doc/man/man1/sjisconv.man1.pdf">sjisconv.man1.pdf</a>.
 </small></li>
 
-<li id="clara"><b><a href="texmf-dist/doc/fonts/clara">clara</a></b><small>
+<li id="clara"><b><a href="texmf-dist/doc/fonts/clara/">clara</a></b><small>
 (<a href="https://ctan.org/pkg/clara">CTAN</a>):
-A serif font family
+A serif font family. 
 <a href="texmf-dist/doc/fonts/clara/clara-doc.pdf">clara-doc.pdf</a>
 <a href="texmf-dist/doc/fonts/clara/clara-sample.pdf">clara-sample.pdf</a>.
 </small></li>
 
-<li id="classics"><b><a href="texmf-dist/doc/latex/classics">classics</a></b><small>
+<li id="classics"><b><a href="texmf-dist/doc/latex/classics/">classics</a></b><small>
 (<a href="https://ctan.org/pkg/classics">CTAN</a>):
-Cite classic works
+Cite classic works. 
 <a href="texmf-dist/doc/latex/classics/classics.pdf">classics.pdf</a>.
 </small></li>
 
-<li id="classicthesis"><b><a href="texmf-dist/doc/latex/classicthesis">classicthesis</a></b><small>
+<li id="classicthesis"><b><a href="texmf-dist/doc/latex/classicthesis/">classicthesis</a></b><small>
 (<a href="https://ctan.org/pkg/classicthesis">CTAN</a>):
-A "classically styled" thesis package
+A "classically styled" thesis package. 
 <a href="texmf-dist/doc/latex/classicthesis/ClassicThesis.pdf">ClassicThesis.pdf</a>
 <a href="texmf-dist/doc/latex/classicthesis/Examples/classicthesis-arsclassica-book.pdf">classicthesis-arsclassica-book.pdf</a>
 <a href="texmf-dist/doc/latex/classicthesis/Examples/classicthesis-article.pdf">classicthesis-article.pdf</a>
@@ -4156,15 +4146,15 @@
 <a href="texmf-dist/doc/latex/classicthesis/gfx/TFZsuperellipse_bw.pdf">TFZsuperellipse_bw.pdf</a>.
 </small></li>
 
-<li id="classpack"><b><a href="texmf-dist/doc/support/classpack">classpack</a></b><small>
+<li id="classpack"><b><a href="texmf-dist/doc/support/classpack/">classpack</a></b><small>
 (<a href="https://ctan.org/pkg/classpack">CTAN</a>):
-XML mastering for LaTeX classes and packages
+XML mastering for LaTeX classes and packages. 
 <a href="texmf-dist/doc/support/classpack/classpack.pdf">classpack.pdf</a>.
 </small></li>
 
-<li id="cleanthesis"><b><a href="texmf-dist/doc/latex/cleanthesis/doc">cleanthesis</a></b><small>
+<li id="cleanthesis"><b><a href="texmf-dist/doc/latex/cleanthesis/">cleanthesis</a></b><small>
 (<a href="https://ctan.org/pkg/cleanthesis">CTAN</a>):
-A clean LaTeX style for thesis documents
+A clean LaTeX style for thesis documents. 
 <a href="texmf-dist/doc/latex/cleanthesis/doc/cleanthesis-doc.pdf">cleanthesis-doc.pdf</a>
 <a href="texmf-dist/doc/latex/cleanthesis/gfx/Clean-Thesis-Figure.pdf">Clean-Thesis-Figure.pdf</a>
 <a href="texmf-dist/doc/latex/cleanthesis/gfx/Clean-Thesis-Logo.pdf">Clean-Thesis-Logo.pdf</a>
@@ -4171,148 +4161,148 @@
 <a href="texmf-dist/doc/latex/cleanthesis/my-thesis.pdf">my-thesis.pdf</a>.
 </small></li>
 
-<li id="clearsans"><b><a href="texmf-dist/doc/fonts/clearsans">clearsans</a></b><small>
+<li id="clearsans"><b><a href="texmf-dist/doc/fonts/clearsans/">clearsans</a></b><small>
 (<a href="https://ctan.org/pkg/clearsans">CTAN</a>):
-Clear Sans fonts with LaTeX support
+Clear Sans fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/clearsans/clear-samples.pdf">clear-samples.pdf</a>.
 </small></li>
 
-<li id="clefval"><b><a href="texmf-dist/doc/latex/clefval">clefval</a></b><small>
+<li id="clefval"><b><a href="texmf-dist/doc/latex/clefval/">clefval</a></b><small>
 (<a href="https://ctan.org/pkg/clefval">CTAN</a>):
-Key/value support with a hash
+Key/value support with a hash. 
 <a href="texmf-dist/doc/latex/clefval/clefval.pdf">clefval.pdf</a>
 <a href="texmf-dist/doc/latex/clefval/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/latex/clefval/exemple.pdf">exemple.pdf</a> (fr).
 </small></li>
 
-<li id="cleveref"><b><a href="texmf-dist/doc/latex/cleveref">cleveref</a></b><small>
+<li id="cleveref"><b><a href="texmf-dist/doc/latex/cleveref/">cleveref</a></b><small>
 (<a href="https://ctan.org/pkg/cleveref">CTAN</a>):
-Intelligent cross-referencing
+Intelligent cross-referencing. 
 <a href="texmf-dist/doc/latex/cleveref/cleveref.pdf">cleveref.pdf</a>.
 </small></li>
 
-<li id="clipboard"><b><a href="texmf-dist/doc/latex/clipboard">clipboard</a></b><small>
+<li id="clipboard"><b><a href="texmf-dist/doc/latex/clipboard/">clipboard</a></b><small>
 (<a href="https://ctan.org/pkg/clipboard">CTAN</a>):
-Copy and paste into and across documents
+Copy and paste into and across documents. 
 <a href="texmf-dist/doc/latex/clipboard/clipboard.pdf">clipboard.pdf</a>.
 </small></li>
 
-<li id="clock"><b><a href="texmf-dist/doc/latex/clock">clock</a></b><small>
+<li id="clock"><b><a href="texmf-dist/doc/latex/clock/">clock</a></b><small>
 (<a href="https://ctan.org/pkg/clock">CTAN</a>):
-Graphical and textual clocks for TeX and LaTeX
+Graphical and textual clocks for TeX and LaTeX. 
 <a href="texmf-dist/doc/latex/clock/clockdoc.pdf">clockdoc.pdf</a>.
 </small></li>
 
-<li id="clojure-pamphlet"><b><a href="texmf-dist/doc/support/clojure-pamphlet">clojure-pamphlet</a></b><small>
+<li id="clojure-pamphlet"><b><a href="texmf-dist/doc/support/clojure-pamphlet/">clojure-pamphlet</a></b><small>
 (<a href="https://ctan.org/pkg/clojure-pamphlet">CTAN</a>):
-A simple literate programming tool based on clojure's pamphlet system
+A simple literate programming tool based on clojure's pamphlet system. 
 <a href="texmf-dist/doc/support/clojure-pamphlet/clojure-pamphlet_guide.pdf">clojure-pamphlet_guide.pdf</a>.
 </small></li>
 
-<li id="cloze"><b><a href="texmf-dist/doc/lualatex/cloze">cloze</a></b><small>
+<li id="cloze"><b><a href="texmf-dist/doc/lualatex/cloze/">cloze</a></b><small>
 (<a href="https://ctan.org/pkg/cloze">CTAN</a>):
-A LuaLaTeX package for creating cloze texts
+A LuaLaTeX package for creating cloze texts. 
 <a href="texmf-dist/doc/lualatex/cloze/cloze.pdf">cloze.pdf</a>.
 </small></li>
 
-<li id="clrdblpg"><b><a href="texmf-dist/doc/latex/clrdblpg">clrdblpg</a></b><small>
+<li id="clrdblpg"><b><a href="texmf-dist/doc/latex/clrdblpg/">clrdblpg</a></b><small>
 (<a href="https://ctan.org/pkg/clrdblpg">CTAN</a>):
-Control pagestyle of pages left blank by \cleardoublepage
+Control pagestyle of pages left blank by \cleardoublepage. 
 <a href="texmf-dist/doc/latex/clrdblpg/clrdblpg.pdf">clrdblpg.pdf</a>.
 </small></li>
 
-<li id="clrscode"><b><a href="texmf-dist/doc/latex/clrscode">clrscode</a></b><small>
+<li id="clrscode"><b><a href="texmf-dist/doc/latex/clrscode/">clrscode</a></b><small>
 (<a href="https://ctan.org/pkg/clrscode">CTAN</a>):
-Typesets pseudocode as in Introduction to Algorithms
+Typesets pseudocode as in Introduction to Algorithms. 
 <a href="texmf-dist/doc/latex/clrscode/clrscode.pdf">clrscode.pdf</a>.
 </small></li>
 
-<li id="clrscode3e"><b><a href="texmf-dist/doc/latex/clrscode3e">clrscode3e</a></b><small>
+<li id="clrscode3e"><b><a href="texmf-dist/doc/latex/clrscode3e/">clrscode3e</a></b><small>
 (<a href="https://ctan.org/pkg/clrscode3e">CTAN</a>):
-Typesets pseudocode as in Introduction to Algorithms
+Typesets pseudocode as in Introduction to Algorithms. 
 <a href="texmf-dist/doc/latex/clrscode3e/clrscode3e.pdf">clrscode3e.pdf</a>.
 </small></li>
 
-<li id="clrstrip"><b><a href="texmf-dist/doc/latex/clrstrip">clrstrip</a></b><small>
+<li id="clrstrip"><b><a href="texmf-dist/doc/latex/clrstrip/">clrstrip</a></b><small>
 (<a href="https://ctan.org/pkg/clrstrip">CTAN</a>):
-Place contents into a full width colour strip
+Place contents into a full width colour strip. 
 <a href="texmf-dist/doc/latex/clrstrip/clrstrip.pdf">clrstrip.pdf</a>.
 </small></li>
 
-<li id="cluttex"><b><a href="texmf-dist/doc/support/cluttex/doc">cluttex</a></b><small>
+<li id="cluttex"><b><a href="texmf-dist/doc/support/cluttex/">cluttex</a></b><small>
 (<a href="https://ctan.org/pkg/cluttex">CTAN</a>):
-An automation tool for running LaTeX
+An automation tool for running LaTeX. 
 <a href="texmf-dist/doc/support/cluttex/doc/cluttex-ja.pdf">cluttex-ja.pdf</a> (ja) 
 <a href="texmf-dist/doc/support/cluttex/doc/cluttex.pdf">cluttex.pdf</a>.
 </small></li>
 
-<li id="cm-unicode"><b><a href="texmf-dist/doc/fonts/cm-unicode">cm-unicode</a></b><small>
+<li id="cm-unicode"><b><a href="texmf-dist/doc/fonts/cm-unicode/">cm-unicode</a></b><small>
 (<a href="https://ctan.org/pkg/cm-unicode">CTAN</a>):
-Computer Modern Unicode font family
+Computer Modern Unicode font family. 
 <a href="texmf-dist/doc/fonts/cm-unicode/cmunrm.pdf">cmunrm.pdf</a>
 <a href="texmf-dist/doc/fonts/cm-unicode/cmunti.pdf">cmunti.pdf</a>.
 </small></li>
 
-<li id="cmarrows"><b><a href="texmf-dist/doc/metapost/cmarrows">cmarrows</a></b><small>
+<li id="cmarrows"><b><a href="texmf-dist/doc/metapost/cmarrows/">cmarrows</a></b><small>
 (<a href="https://ctan.org/pkg/cmarrows">CTAN</a>):
-MetaPost arrows and braces in the Computer Modern style
+MetaPost arrows and braces in the Computer Modern style. 
 <a href="texmf-dist/doc/metapost/cmarrows/cmarrows.pdf">cmarrows.pdf</a>.
 </small></li>
 
-<li id="cmbright"><b><a href="texmf-dist/doc/latex/cmbright">cmbright</a></b><small>
+<li id="cmbright"><b><a href="texmf-dist/doc/latex/cmbright/">cmbright</a></b><small>
 (<a href="https://ctan.org/pkg/cmbright">CTAN</a>):
-Computer Modern Bright fonts
+Computer Modern Bright fonts. 
 <a href="texmf-dist/doc/latex/cmbright/cmbright.pdf">cmbright.pdf</a>.
 </small></li>
 
-<li id="cmdstring"><b><a href="texmf-dist/doc/latex/cmdstring">cmdstring</a></b><small>
+<li id="cmdstring"><b><a href="texmf-dist/doc/latex/cmdstring/">cmdstring</a></b><small>
 (<a href="https://ctan.org/pkg/cmdstring">CTAN</a>):
-Get command name reliably
+Get command name reliably. 
 <a href="texmf-dist/doc/latex/cmdstring/cmdstring.pdf">cmdstring.pdf</a>.
 </small></li>
 
-<li id="cmdtrack"><b><a href="texmf-dist/doc/latex/cmdtrack">cmdtrack</a></b><small>
+<li id="cmdtrack"><b><a href="texmf-dist/doc/latex/cmdtrack/">cmdtrack</a></b><small>
 (<a href="https://ctan.org/pkg/cmdtrack">CTAN</a>):
-Check used commands
+Check used commands. 
 <a href="texmf-dist/doc/latex/cmdtrack/cmdtrack.pdf">cmdtrack.pdf</a>.
 </small></li>
 
-<li id="cmll"><b><a href="texmf-dist/doc/fonts/cmll">cmll</a></b><small>
+<li id="cmll"><b><a href="texmf-dist/doc/fonts/cmll/">cmll</a></b><small>
 (<a href="https://ctan.org/pkg/cmll">CTAN</a>):
-Symbols for linear logic
+Symbols for linear logic. 
 <a href="texmf-dist/doc/fonts/cmll/cmll.pdf">cmll.pdf</a>.
 </small></li>
 
-<li id="cmpj"><b><a href="texmf-dist/doc/latex/cmpj">cmpj</a></b><small>
+<li id="cmpj"><b><a href="texmf-dist/doc/latex/cmpj/">cmpj</a></b><small>
 (<a href="https://ctan.org/pkg/cmpj">CTAN</a>):
-Style for the journal Condensed Matter Physics
+Style for the journal Condensed Matter Physics. 
 <a href="texmf-dist/doc/latex/cmpj/eps_demo.pdf">eps_demo.pdf</a>
 <a href="texmf-dist/doc/latex/cmpj/icmphome.pdf">icmphome.pdf</a>
 <a href="texmf-dist/doc/latex/cmpj/template.pdf">template.pdf</a>.
 </small></li>
 
-<li id="cmsrb"><b><a href="texmf-dist/doc/fonts/cmsrb">cmsrb</a></b><small>
+<li id="cmsrb"><b><a href="texmf-dist/doc/fonts/cmsrb/">cmsrb</a></b><small>
 (<a href="https://ctan.org/pkg/cmsrb">CTAN</a>):
-Computer Modern for Serbian and Macedonian
+Computer Modern for Serbian and Macedonian. 
 <a href="texmf-dist/doc/fonts/cmsrb/cmsrb-SR.pdf">cmsrb-SR.pdf</a> (sr) 
 <a href="texmf-dist/doc/fonts/cmsrb/cmsrb.pdf">cmsrb.pdf</a>.
 </small></li>
 
-<li id="cmtiup"><b><a href="texmf-dist/doc/latex/cmtiup">cmtiup</a></b><small>
+<li id="cmtiup"><b><a href="texmf-dist/doc/latex/cmtiup/">cmtiup</a></b><small>
 (<a href="https://ctan.org/pkg/cmtiup">CTAN</a>):
-Upright punctuation with CM italic
+Upright punctuation with CM italic. 
 <a href="texmf-dist/doc/latex/cmtiup/cmtiup.pdf">cmtiup.pdf</a>.
 </small></li>
 
-<li id="cmupint"><b><a href="texmf-dist/doc/fonts/cmupint">cmupint</a></b><small>
+<li id="cmupint"><b><a href="texmf-dist/doc/fonts/cmupint/">cmupint</a></b><small>
 (<a href="https://ctan.org/pkg/cmupint">CTAN</a>):
-Upright integral symbols for Computer Modern
+Upright integral symbols for Computer Modern. 
 <a href="texmf-dist/doc/fonts/cmupint/cmupint.pdf">cmupint.pdf</a>.
 </small></li>
 
-<li id="cnbwp"><b><a href="texmf-dist/doc/latex/cnbwp">cnbwp</a></b><small>
+<li id="cnbwp"><b><a href="texmf-dist/doc/latex/cnbwp/">cnbwp</a></b><small>
 (<a href="https://ctan.org/pkg/cnbwp">CTAN</a>):
-Typeset working papers of the Czech National Bank
+Typeset working papers of the Czech National Bank. 
 <a href="texmf-dist/doc/latex/cnbwp/cnbpaper.pdf">cnbpaper.pdf</a>
 <a href="texmf-dist/doc/latex/cnbwp/cnbwp-manual-cs.pdf">cnbwp-manual-cs.pdf</a>
 <a href="texmf-dist/doc/latex/cnbwp/cnbwp-manual-en.pdf">cnbwp-manual-en.pdf</a>
@@ -4319,162 +4309,162 @@
 <a href="texmf-dist/doc/latex/cnbwp/graph18.pdf">graph18.pdf</a>.
 </small></li>
 
-<li id="cnltx"><b><a href="texmf-dist/doc/latex/cnltx">cnltx</a></b><small>
+<li id="cnltx"><b><a href="texmf-dist/doc/latex/cnltx/">cnltx</a></b><small>
 (<a href="https://ctan.org/pkg/cnltx">CTAN</a>):
-LaTeX tools and documenting facilities
+LaTeX tools and documenting facilities. 
 <a href="texmf-dist/doc/latex/cnltx/cnltx_en.pdf">cnltx_en.pdf</a>.
 </small></li>
 
-<li id="cntformats"><b><a href="texmf-dist/doc/latex/cntformats">cntformats</a></b><small>
+<li id="cntformats"><b><a href="texmf-dist/doc/latex/cntformats/">cntformats</a></b><small>
 (<a href="https://ctan.org/pkg/cntformats">CTAN</a>):
-A different way to read counters
+A different way to read counters. 
 <a href="texmf-dist/doc/latex/cntformats/cntformats_en.pdf">cntformats_en.pdf</a>.
 </small></li>
 
-<li id="cntperchap"><b><a href="texmf-dist/doc/latex/cntperchap">cntperchap</a></b><small>
+<li id="cntperchap"><b><a href="texmf-dist/doc/latex/cntperchap/">cntperchap</a></b><small>
 (<a href="https://ctan.org/pkg/cntperchap">CTAN</a>):
-Store counter values per chapter
+Store counter values per chapter. 
 <a href="texmf-dist/doc/latex/cntperchap/cntperchap_doc.pdf">cntperchap_doc.pdf</a>
 <a href="texmf-dist/doc/latex/cntperchap/cntperchap_example.pdf">cntperchap_example.pdf</a>.
 </small></li>
 
-<li id="cochineal"><b><a href="texmf-dist/doc/fonts/cochineal">cochineal</a></b><small>
+<li id="cochineal"><b><a href="texmf-dist/doc/fonts/cochineal/">cochineal</a></b><small>
 (<a href="https://ctan.org/pkg/cochineal">CTAN</a>):
-Cochineal fonts with LaTeX support
+Cochineal fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/cochineal/cochineal-doc.pdf">cochineal-doc.pdf</a>
 <a href="texmf-dist/doc/fonts/cochineal/newgermanglyphs-crop.pdf">newgermanglyphs-crop.pdf</a>
 <a href="texmf-dist/doc/fonts/cochineal/newgermanglyphs.pdf">newgermanglyphs.pdf</a>.
 </small></li>
 
-<li id="codeanatomy"><b><a href="texmf-dist/doc/latex/codeanatomy">codeanatomy</a></b><small>
+<li id="codeanatomy"><b><a href="texmf-dist/doc/latex/codeanatomy/">codeanatomy</a></b><small>
 (<a href="https://ctan.org/pkg/codeanatomy">CTAN</a>):
-Typeset code with annotations
+Typeset code with annotations. 
 <a href="texmf-dist/doc/latex/codeanatomy/codeanatomy.lstlisting.pdf">codeanatomy.lstlisting.pdf</a>
 <a href="texmf-dist/doc/latex/codeanatomy/codeanatomy.pdf">codeanatomy.pdf</a>
 <a href="texmf-dist/doc/latex/codeanatomy/codeanatomy.usage.pdf">codeanatomy.usage.pdf</a>.
 </small></li>
 
-<li id="codedoc"><b><a href="texmf-dist/doc/latex/codedoc">codedoc</a></b><small>
+<li id="codedoc"><b><a href="texmf-dist/doc/latex/codedoc/">codedoc</a></b><small>
 (<a href="https://ctan.org/pkg/codedoc">CTAN</a>):
-LaTeX code and documentation in LaTeX-format file
+LaTeX code and documentation in LaTeX-format file. 
 <a href="texmf-dist/doc/latex/codedoc/CodeDoc-manual.pdf">CodeDoc-manual.pdf</a>.
 </small></li>
 
-<li id="codepage"><b><a href="texmf-dist/doc/latex/codepage">codepage</a></b><small>
+<li id="codepage"><b><a href="texmf-dist/doc/latex/codepage/">codepage</a></b><small>
 (<a href="https://ctan.org/pkg/codepage">CTAN</a>):
-Support for variant code pages
+Support for variant code pages. 
 <a href="texmf-dist/doc/latex/codepage/codepage.pdf">codepage.pdf</a>
 <a href="texmf-dist/doc/latex/codepage/frintro.pdf">frintro.pdf</a> (fr).
 </small></li>
 
-<li id="codesection"><b><a href="texmf-dist/doc/latex/codesection">codesection</a></b><small>
+<li id="codesection"><b><a href="texmf-dist/doc/latex/codesection/">codesection</a></b><small>
 (<a href="https://ctan.org/pkg/codesection">CTAN</a>):
-Provides an environment that may be conditionally included
+Provides an environment that may be conditionally included. 
 <a href="texmf-dist/doc/latex/codesection/codesection.pdf">codesection.pdf</a>.
 </small></li>
 
-<li id="codicefiscaleitaliano"><b><a href="texmf-dist/doc/latex/codicefiscaleitaliano">codicefiscaleitaliano</a></b><small>
+<li id="codicefiscaleitaliano"><b><a href="texmf-dist/doc/latex/codicefiscaleitaliano/">codicefiscaleitaliano</a></b><small>
 (<a href="https://ctan.org/pkg/codicefiscaleitaliano">CTAN</a>):
-Test the consistency of the Italian personal Fiscal Code
+Test the consistency of the Italian personal Fiscal Code. 
 <a href="texmf-dist/doc/latex/codicefiscaleitaliano/codicefiscaleitaliano.pdf">codicefiscaleitaliano.pdf</a> (it).
 </small></li>
 
-<li id="coelacanth"><b><a href="texmf-dist/doc/fonts/coelacanth">coelacanth</a></b><small>
+<li id="coelacanth"><b><a href="texmf-dist/doc/fonts/coelacanth/">coelacanth</a></b><small>
 (<a href="https://ctan.org/pkg/coelacanth">CTAN</a>):
-Coelacanth fonts with LaTeX support
+Coelacanth fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/coelacanth/coelacanth-samples.pdf">coelacanth-samples.pdf</a>.
 </small></li>
 
-<li id="collcell"><b><a href="texmf-dist/doc/latex/collcell">collcell</a></b><small>
+<li id="collcell"><b><a href="texmf-dist/doc/latex/collcell/">collcell</a></b><small>
 (<a href="https://ctan.org/pkg/collcell">CTAN</a>):
-Collect contents of a tabular cell as argument to a macro
+Collect contents of a tabular cell as argument to a macro. 
 <a href="texmf-dist/doc/latex/collcell/collcell.pdf">collcell.pdf</a>.
 </small></li>
 
-<li id="collectbox"><b><a href="texmf-dist/doc/latex/collectbox">collectbox</a></b><small>
+<li id="collectbox"><b><a href="texmf-dist/doc/latex/collectbox/">collectbox</a></b><small>
 (<a href="https://ctan.org/pkg/collectbox">CTAN</a>):
-Collect and process macro arguments as boxes
+Collect and process macro arguments as boxes. 
 <a href="texmf-dist/doc/latex/collectbox/collectbox.pdf">collectbox.pdf</a>.
 </small></li>
 
-<li id="collref"><b><a href="texmf-dist/doc/latex/collref">collref</a></b><small>
+<li id="collref"><b><a href="texmf-dist/doc/latex/collref/">collref</a></b><small>
 (<a href="https://ctan.org/pkg/collref">CTAN</a>):
-Collect blocks of references into a single reference
+Collect blocks of references into a single reference. 
 <a href="texmf-dist/doc/latex/collref/collref.pdf">collref.pdf</a>.
 </small></li>
 
-<li id="colophon"><b><a href="texmf-dist/doc/latex/colophon">colophon</a></b><small>
+<li id="colophon"><b><a href="texmf-dist/doc/latex/colophon/">colophon</a></b><small>
 (<a href="https://ctan.org/pkg/colophon">CTAN</a>):
-Provides commands for producing a colophon
+Provides commands for producing a colophon. 
 <a href="texmf-dist/doc/latex/colophon/colophon.pdf">colophon.pdf</a>.
 </small></li>
 
-<li id="colordoc"><b><a href="texmf-dist/doc/latex/colordoc">colordoc</a></b><small>
+<li id="colordoc"><b><a href="texmf-dist/doc/latex/colordoc/">colordoc</a></b><small>
 (<a href="https://ctan.org/pkg/colordoc">CTAN</a>):
-Coloured syntax highlights in documentation
+Coloured syntax highlights in documentation. 
 <a href="texmf-dist/doc/latex/colordoc/colordoc.pdf">colordoc.pdf</a>.
 </small></li>
 
-<li id="coloring"><b><a href="texmf-dist/doc/latex/coloring">coloring</a></b><small>
+<li id="coloring"><b><a href="texmf-dist/doc/latex/coloring/">coloring</a></b><small>
 (<a href="https://ctan.org/pkg/coloring">CTAN</a>):
-Define missing colors by their names
+Define missing colors by their names. 
 <a href="texmf-dist/doc/latex/coloring/coloring-doc.pdf">coloring-doc.pdf</a>.
 </small></li>
 
-<li id="colorspace"><b><a href="texmf-dist/doc/latex/colorspace">colorspace</a></b><small>
+<li id="colorspace"><b><a href="texmf-dist/doc/latex/colorspace/">colorspace</a></b><small>
 (<a href="https://ctan.org/pkg/colorspace">CTAN</a>):
-Provides PDF color spaces
+Provides PDF color spaces. 
 <a href="texmf-dist/doc/latex/colorspace/colorspace.pdf">colorspace.pdf</a>.
 </small></li>
 
-<li id="colortab"><b><a href="texmf-dist/doc/generic/colortab">colortab</a></b><small>
+<li id="colortab"><b><a href="texmf-dist/doc/generic/colortab/">colortab</a></b><small>
 (<a href="https://ctan.org/pkg/colortab">CTAN</a>):
-Shade cells of tables and halign
+Shade cells of tables and halign. 
 <a href="texmf-dist/doc/generic/colortab/colortab-doc.pdf">colortab-doc.pdf</a>.
 </small></li>
 
-<li id="colortbl"><b><a href="texmf-dist/doc/latex/colortbl">colortbl</a></b><small>
+<li id="colortbl"><b><a href="texmf-dist/doc/latex/colortbl/">colortbl</a></b><small>
 (<a href="https://ctan.org/pkg/colortbl">CTAN</a>):
-Add colour to LaTeX tables
+Add colour to LaTeX tables. 
 <a href="texmf-dist/doc/latex/colortbl/colortbl-DE.pdf">colortbl-DE.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/colortbl/colortbl.pdf">colortbl.pdf</a>.
 </small></li>
 
-<li id="colorwav"><b><a href="texmf-dist/doc/latex/colorwav">colorwav</a></b><small>
+<li id="colorwav"><b><a href="texmf-dist/doc/latex/colorwav/">colorwav</a></b><small>
 (<a href="https://ctan.org/pkg/colorwav">CTAN</a>):
-Colours by wavelength of visible light
+Colours by wavelength of visible light. 
 <a href="texmf-dist/doc/latex/colorwav/colorwav.pdf">colorwav.pdf</a>.
 </small></li>
 
-<li id="colorweb"><b><a href="texmf-dist/doc/latex/colorweb">colorweb</a></b><small>
+<li id="colorweb"><b><a href="texmf-dist/doc/latex/colorweb/">colorweb</a></b><small>
 (<a href="https://ctan.org/pkg/colorweb">CTAN</a>):
-Extend the color package colour space
+Extend the color package colour space. 
 <a href="texmf-dist/doc/latex/colorweb/colorweb.pdf">colorweb.pdf</a>
 <a href="texmf-dist/doc/latex/colorweb/colorwebfull.pdf">colorwebfull.pdf</a>
 <a href="texmf-dist/doc/latex/colorweb/colorwebuser.pdf">colorwebuser.pdf</a>.
 </small></li>
 
-<li id="colourchange"><b><a href="texmf-dist/doc/latex/colourchange">colourchange</a></b><small>
+<li id="colourchange"><b><a href="texmf-dist/doc/latex/colourchange/">colourchange</a></b><small>
 (<a href="https://ctan.org/pkg/colourchange">CTAN</a>):
-Colourchange
+Colourchange. 
 <a href="texmf-dist/doc/latex/colourchange/colourchangedoc.pdf">colourchangedoc.pdf</a>.
 </small></li>
 
-<li id="combelow"><b><a href="texmf-dist/doc/latex/combelow">combelow</a></b><small>
+<li id="combelow"><b><a href="texmf-dist/doc/latex/combelow/">combelow</a></b><small>
 (<a href="https://ctan.org/pkg/combelow">CTAN</a>):
-Typeset "comma-below" letters, as in Romanian
+Typeset "comma-below" letters, as in Romanian. 
 <a href="texmf-dist/doc/latex/combelow/combelow.pdf">combelow.pdf</a>.
 </small></li>
 
-<li id="combine"><b><a href="texmf-dist/doc/latex/combine">combine</a></b><small>
+<li id="combine"><b><a href="texmf-dist/doc/latex/combine/">combine</a></b><small>
 (<a href="https://ctan.org/pkg/combine">CTAN</a>):
-Bundle individual documents into a single document
+Bundle individual documents into a single document. 
 <a href="texmf-dist/doc/latex/combine/combine.pdf">combine.pdf</a>.
 </small></li>
 
-<li id="combinedgraphics"><b><a href="texmf-dist/doc/latex/combinedgraphics">combinedgraphics</a></b><small>
+<li id="combinedgraphics"><b><a href="texmf-dist/doc/latex/combinedgraphics/">combinedgraphics</a></b><small>
 (<a href="https://ctan.org/pkg/combinedgraphics">CTAN</a>):
-Include graphic (EPS or PDF)/LaTeX combinations
+Include graphic (EPS or PDF)/LaTeX combinations. 
 <a href="texmf-dist/doc/latex/combinedgraphics/combinedgraphics.pdf">combinedgraphics.pdf</a>
 <a href="texmf-dist/doc/latex/combinedgraphics/test/combinedgraphics_test.pdf">combinedgraphics_test.pdf</a>
 <a href="texmf-dist/doc/latex/combinedgraphics/test/gnuplot42.pdf">gnuplot42.pdf</a>
@@ -4481,57 +4471,57 @@
 <a href="texmf-dist/doc/latex/combinedgraphics/test/xfig325.pdf">xfig325.pdf</a>.
 </small></li>
 
-<li id="combofont"><b><a href="texmf-dist/doc/lualatex/combofont">combofont</a></b><small>
+<li id="combofont"><b><a href="texmf-dist/doc/lualatex/combofont/">combofont</a></b><small>
 (<a href="https://ctan.org/pkg/combofont">CTAN</a>):
-Add NFSS-declarations of combo fonts to LuaLaTeX documents
+Add NFSS-declarations of combo fonts to LuaLaTeX documents. 
 <a href="texmf-dist/doc/lualatex/combofont/combofont-test-fira-math.pdf">combofont-test-fira-math.pdf</a>
 <a href="texmf-dist/doc/lualatex/combofont/combofont.pdf">combofont.pdf</a>.
 </small></li>
 
-<li id="comfortaa"><b><a href="texmf-dist/doc/fonts/comfortaa">comfortaa</a></b><small>
+<li id="comfortaa"><b><a href="texmf-dist/doc/fonts/comfortaa/">comfortaa</a></b><small>
 (<a href="https://ctan.org/pkg/comfortaa">CTAN</a>):
-Sans serif font, with LaTeX support
+Sans serif font, with LaTeX support. 
 <a href="texmf-dist/doc/fonts/comfortaa/comfortaa-samples.pdf">comfortaa-samples.pdf</a>
 <a href="texmf-dist/doc/fonts/comfortaa/comfortaa.pdf">comfortaa.pdf</a>.
 </small></li>
 
-<li id="comicneue"><b><a href="texmf-dist/doc/latex/comicneue">comicneue</a></b><small>
+<li id="comicneue"><b><a href="texmf-dist/doc/latex/comicneue/">comicneue</a></b><small>
 (<a href="https://ctan.org/pkg/comicneue">CTAN</a>):
-Use Comic Neue with TeX(-alike) systems
+Use Comic Neue with TeX(-alike) systems. 
 <a href="texmf-dist/doc/latex/comicneue/comicneue-otf-specimen.pdf">comicneue-otf-specimen.pdf</a>
 <a href="texmf-dist/doc/latex/comicneue/comicneue-type1-specimen.pdf">comicneue-type1-specimen.pdf</a>
 <a href="texmf-dist/doc/latex/comicneue/comicneue.pdf">comicneue.pdf</a>.
 </small></li>
 
-<li id="comma"><b><a href="texmf-dist/doc/latex/comma">comma</a></b><small>
+<li id="comma"><b><a href="texmf-dist/doc/latex/comma/">comma</a></b><small>
 (<a href="https://ctan.org/pkg/comma">CTAN</a>):
-Formats a number by inserting commas
+Formats a number by inserting commas. 
 <a href="texmf-dist/doc/latex/comma/comma.pdf">comma.pdf</a>.
 </small></li>
 
-<li id="commado"><b><a href="texmf-dist/doc/generic/commado">commado</a></b><small>
+<li id="commado"><b><a href="texmf-dist/doc/generic/commado/">commado</a></b><small>
 (<a href="https://ctan.org/pkg/commado">CTAN</a>):
-Expandable iteration on comma-separated and filename lists
+Expandable iteration on comma-separated and filename lists. 
 <a href="texmf-dist/doc/generic/commado/commado.pdf">commado.pdf</a>.
 </small></li>
 
-<li id="commath"><b><a href="texmf-dist/doc/latex/commath">commath</a></b><small>
+<li id="commath"><b><a href="texmf-dist/doc/latex/commath/">commath</a></b><small>
 (<a href="https://ctan.org/pkg/commath">CTAN</a>):
-Mathematics typesetting support
+Mathematics typesetting support. 
 <a href="texmf-dist/doc/latex/commath/commath.pdf">commath.pdf</a>.
 </small></li>
 
-<li id="commedit"><b><a href="texmf-dist/doc/latex/commedit">commedit</a></b><small>
+<li id="commedit"><b><a href="texmf-dist/doc/latex/commedit/">commedit</a></b><small>
 (<a href="https://ctan.org/pkg/commedit">CTAN</a>):
-Commented editions with LaTeX
+Commented editions with LaTeX. 
 <a href="texmf-dist/doc/latex/commedit/commedit.pdf">commedit.pdf</a>
 <a href="texmf-dist/doc/latex/commedit/commented.pdf">commented.pdf</a>
 <a href="texmf-dist/doc/latex/commedit/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="comment"><b><a href="texmf-dist/doc/latex/comment">comment</a></b><small>
+<li id="comment"><b><a href="texmf-dist/doc/latex/comment/">comment</a></b><small>
 (<a href="https://ctan.org/pkg/comment">CTAN</a>):
-Selectively include/exclude portions of text
+Selectively include/exclude portions of text. 
 <a href="texmf-dist/doc/latex/comment/comm_test.pdf">comm_test.pdf</a>
 <a href="texmf-dist/doc/latex/comment/comment.pdf">comment.pdf</a>
 <a href="texmf-dist/doc/latex/comment/t1test.pdf">t1test.pdf</a>
@@ -4538,40 +4528,40 @@
 <a href="texmf-dist/doc/latex/comment/writeup.pdf">writeup.pdf</a>.
 </small></li>
 
-<li id="complexity"><b><a href="texmf-dist/doc/latex/complexity">complexity</a></b><small>
+<li id="complexity"><b><a href="texmf-dist/doc/latex/complexity/">complexity</a></b><small>
 (<a href="https://ctan.org/pkg/complexity">CTAN</a>):
-Computational complexity class names
+Computational complexity class names. 
 <a href="texmf-dist/doc/latex/complexity/complexity.pdf">complexity.pdf</a>.
 </small></li>
 
-<li id="comprehensive"><b><a href="texmf-dist/doc/latex/comprehensive">comprehensive</a></b><small>
+<li id="comprehensive"><b><a href="texmf-dist/doc/latex/comprehensive/">comprehensive</a></b><small>
 (<a href="https://ctan.org/pkg/comprehensive">CTAN</a>):
-Symbols accessible from LaTeX
+Symbols accessible from LaTeX. 
 <a href="texmf-dist/doc/latex/comprehensive/rawtables-a4.pdf">rawtables-a4.pdf</a>
 <a href="texmf-dist/doc/latex/comprehensive/symbols-a4.pdf">symbols-a4.pdf</a>.
 </small></li>
 
-<li id="computational-complexity"><b><a href="texmf-dist/doc/latex/computational-complexity">computational-complexity</a></b><small>
+<li id="computational-complexity"><b><a href="texmf-dist/doc/latex/computational-complexity/">computational-complexity</a></b><small>
 (<a href="https://ctan.org/pkg/computational-complexity">CTAN</a>):
-Class for the journal Computational Complexity
+Class for the journal Computational Complexity. 
 <a href="texmf-dist/doc/latex/computational-complexity/cc.pdf">cc.pdf</a>.
 </small></li>
 
-<li id="concepts"><b><a href="texmf-dist/doc/latex/concepts">concepts</a></b><small>
+<li id="concepts"><b><a href="texmf-dist/doc/latex/concepts/">concepts</a></b><small>
 (<a href="https://ctan.org/pkg/concepts">CTAN</a>):
-Keeping track of formal 'concepts' for a particular field
+Keeping track of formal 'concepts' for a particular field. 
 <a href="texmf-dist/doc/latex/concepts/concepts.pdf">concepts.pdf</a>.
 </small></li>
 
-<li id="concmath"><b><a href="texmf-dist/doc/fonts/concmath">concmath</a></b><small>
+<li id="concmath"><b><a href="texmf-dist/doc/fonts/concmath/">concmath</a></b><small>
 (<a href="https://ctan.org/pkg/concmath">CTAN</a>):
-Concrete Math fonts
+Concrete Math fonts. 
 <a href="texmf-dist/doc/fonts/concmath/concmath.pdf">concmath.pdf</a>.
 </small></li>
 
-<li id="confproc"><b><a href="texmf-dist/doc/latex/confproc">confproc</a></b><small>
+<li id="confproc"><b><a href="texmf-dist/doc/latex/confproc/">confproc</a></b><small>
 (<a href="https://ctan.org/pkg/confproc">CTAN</a>):
-A set of tools for generating conference proceedings
+A set of tools for generating conference proceedings. 
 <a href="texmf-dist/doc/latex/confproc/confproc.pdf">confproc.pdf</a>
 <a href="texmf-dist/doc/latex/confproc/confproc_diag.pdf">confproc_diag.pdf</a>
 <a href="texmf-dist/doc/latex/confproc/example/papers/p_001.pdf">p_001.pdf</a>
@@ -4582,21 +4572,21 @@
 <a href="texmf-dist/doc/latex/confproc/example/pictures/ex_1stpage.pdf">ex_1stpage.pdf</a>.
 </small></li>
 
-<li id="constants"><b><a href="texmf-dist/doc/latex/constants">constants</a></b><small>
+<li id="constants"><b><a href="texmf-dist/doc/latex/constants/">constants</a></b><small>
 (<a href="https://ctan.org/pkg/constants">CTAN</a>):
-Automatic numbering of constants
+Automatic numbering of constants. 
 <a href="texmf-dist/doc/latex/constants/constants.pdf">constants.pdf</a>.
 </small></li>
 
-<li id="conteq"><b><a href="texmf-dist/doc/latex/conteq">conteq</a></b><small>
+<li id="conteq"><b><a href="texmf-dist/doc/latex/conteq/">conteq</a></b><small>
 (<a href="https://ctan.org/pkg/conteq">CTAN</a>):
-Typeset multiline continued equalities
+Typeset multiline continued equalities. 
 <a href="texmf-dist/doc/latex/conteq/conteq.pdf">conteq.pdf</a>.
 </small></li>
 
-<li id="context"><b><a href="texmf-dist/doc/context/documents/general/leaflets">context</a></b><small>
+<li id="context"><b><a href="texmf-dist/doc/context/">context</a></b><small>
 (<a href="https://ctan.org/pkg/context">CTAN</a>):
-The ConTeXt macro package
+The ConTeXt macro package. 
 <a href="texmf-dist/doc/context/documents/general/leaflets/leaflet-context.pdf">leaflet-context.pdf</a>
 <a href="texmf-dist/doc/context/documents/general/leaflets/leaflet-luametatex.pdf">leaflet-luametatex.pdf</a>
 <a href="texmf-dist/doc/context/documents/general/leaflets/leaflet-mixing.pdf">leaflet-mixing.pdf</a>
@@ -4853,139 +4843,139 @@
 <a href="texmf-dist/doc/man/man1/texmfstart.man1.pdf">texmfstart.man1.pdf</a>.
 </small></li>
 
-<li id="context-account"><b><a href="texmf-dist/doc/context/third/account">context-account</a></b><small>
+<li id="context-account"><b><a href="texmf-dist/doc/context/third/account/">context-account</a></b><small>
 (<a href="https://ctan.org/pkg/context-account">CTAN</a>):
-A simple accounting package
+A simple accounting package. 
 <a href="texmf-dist/doc/context/third/account/account-doc.pdf">account-doc.pdf</a>.
 </small></li>
 
-<li id="context-annotation"><b><a href="texmf-dist/doc/context/third/annotation">context-annotation</a></b><small>
+<li id="context-annotation"><b><a href="texmf-dist/doc/context/third/annotation/">context-annotation</a></b><small>
 (<a href="https://ctan.org/pkg/context-annotation">CTAN</a>):
-Annotate text blocks
+Annotate text blocks. 
 <a href="texmf-dist/doc/context/third/annotation/annotation-doc.pdf">annotation-doc.pdf</a>.
 </small></li>
 
-<li id="context-bnf"><b><a href="texmf-dist/doc/context/third/bnf">context-bnf</a></b><small>
+<li id="context-bnf"><b><a href="texmf-dist/doc/context/third/bnf/">context-bnf</a></b><small>
 (<a href="https://ctan.org/pkg/context-bnf">CTAN</a>):
-A BNF module for ConTeXt
+A BNF module for ConTeXt. 
 <a href="texmf-dist/doc/context/third/bnf/t-bnf.pdf">t-bnf.pdf</a>.
 </small></li>
 
-<li id="context-chromato"><b><a href="texmf-dist/doc/context/third/chromato">context-chromato</a></b><small>
+<li id="context-chromato"><b><a href="texmf-dist/doc/context/third/chromato/">context-chromato</a></b><small>
 (<a href="https://ctan.org/pkg/context-chromato">CTAN</a>):
-ConTeXt macros for chromatograms
+ConTeXt macros for chromatograms. 
 <a href="texmf-dist/doc/context/third/chromato/chromato-demo.pdf">chromato-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/chromato/chromato-doc.pdf">chromato-doc.pdf</a>.
 </small></li>
 
-<li id="context-cmscbf"><b><a href="texmf-dist/doc/context/third/cmscbf">context-cmscbf</a></b><small>
+<li id="context-cmscbf"><b><a href="texmf-dist/doc/context/third/cmscbf/">context-cmscbf</a></b><small>
 (<a href="https://ctan.org/pkg/context-cmscbf">CTAN</a>):
-Use Computer Modern bold Caps and Small-caps in ConTeXt
+Use Computer Modern bold Caps and Small-caps in ConTeXt. 
 <a href="texmf-dist/doc/context/third/cmscbf/cmscbf-demo.pdf">cmscbf-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/cmscbf/cmscbf-doc.pdf">cmscbf-doc.pdf</a>.
 </small></li>
 
-<li id="context-cmttbf"><b><a href="texmf-dist/doc/context/third/cmttbf">context-cmttbf</a></b><small>
+<li id="context-cmttbf"><b><a href="texmf-dist/doc/context/third/cmttbf/">context-cmttbf</a></b><small>
 (<a href="https://ctan.org/pkg/context-cmttbf">CTAN</a>):
-Use Computer Modern Typewriter bold font in ConTeXt
+Use Computer Modern Typewriter bold font in ConTeXt. 
 <a href="texmf-dist/doc/context/third/cmttbf/cmttbf-demo.pdf">cmttbf-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/cmttbf/cmttbf-doc.pdf">cmttbf-doc.pdf</a>.
 </small></li>
 
-<li id="context-construction-plan"><b><a href="texmf-dist/doc/context/third/construction-plan">context-construction-plan</a></b><small>
+<li id="context-construction-plan"><b><a href="texmf-dist/doc/context/third/construction-plan/">context-construction-plan</a></b><small>
 (<a href="https://ctan.org/pkg/context-construction-plan">CTAN</a>):
-Construction plans in ConTeXt
+Construction plans in ConTeXt. 
 <a href="texmf-dist/doc/context/third/construction-plan/construction-plan-demo.pdf">construction-plan-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/construction-plan/construction-plan-doc.pdf">construction-plan-doc.pdf</a>.
 </small></li>
 
-<li id="context-cyrillicnumbers"><b><a href="texmf-dist/doc/context/third/cyrillicnumbers">context-cyrillicnumbers</a></b><small>
+<li id="context-cyrillicnumbers"><b><a href="texmf-dist/doc/context/third/cyrillicnumbers/">context-cyrillicnumbers</a></b><small>
 (<a href="https://ctan.org/pkg/context-cyrillicnumbers">CTAN</a>):
-Write numbers as cyrillic glyphs
+Write numbers as cyrillic glyphs. 
 <a href="texmf-dist/doc/context/third/cyrillicnumbers/cyrillicnumbers.pdf">cyrillicnumbers.pdf</a>.
 </small></li>
 
-<li id="context-degrade"><b><a href="texmf-dist/doc/context/third/degrade">context-degrade</a></b><small>
+<li id="context-degrade"><b><a href="texmf-dist/doc/context/third/degrade/">context-degrade</a></b><small>
 (<a href="https://ctan.org/pkg/context-degrade">CTAN</a>):
-Degrading JPEG images in ConTeXt
+Degrading JPEG images in ConTeXt. 
 <a href="texmf-dist/doc/context/third/degrade/degrade-demo.pdf">degrade-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/degrade/degrade-doc.pdf">degrade-doc.pdf</a>.
 </small></li>
 
-<li id="context-fancybreak"><b><a href="texmf-dist/doc/context/third/fancybreak">context-fancybreak</a></b><small>
+<li id="context-fancybreak"><b><a href="texmf-dist/doc/context/third/fancybreak/">context-fancybreak</a></b><small>
 (<a href="https://ctan.org/pkg/context-fancybreak">CTAN</a>):
-Overfull pages with ConTeXt
+Overfull pages with ConTeXt. 
 <a href="texmf-dist/doc/context/third/fancybreak/fancybreak-doc.pdf">fancybreak-doc.pdf</a>.
 </small></li>
 
-<li id="context-french"><b><a href="texmf-dist/doc/context/third/french">context-french</a></b><small>
+<li id="context-french"><b><a href="texmf-dist/doc/context/third/french/">context-french</a></b><small>
 (<a href="https://ctan.org/pkg/context-french">CTAN</a>):
-Support for writing French in ConTeXt
+Support for writing French in ConTeXt. 
 <a href="texmf-dist/doc/context/third/french/french-demo.pdf">french-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/french/french-doc.pdf">french-doc.pdf</a>.
 </small></li>
 
-<li id="context-fullpage"><b><a href="texmf-dist/doc/context/third/fullpage">context-fullpage</a></b><small>
+<li id="context-fullpage"><b><a href="texmf-dist/doc/context/third/fullpage/">context-fullpage</a></b><small>
 (<a href="https://ctan.org/pkg/context-fullpage">CTAN</a>):
-Overfull pages with ConTeXt
+Overfull pages with ConTeXt. 
 <a href="texmf-dist/doc/context/third/fullpage/fullpage-doc.pdf">fullpage-doc.pdf</a>.
 </small></li>
 
-<li id="context-gnuplot"><b><a href="texmf-dist/doc/context/third/gnuplot">context-gnuplot</a></b><small>
+<li id="context-gnuplot"><b><a href="texmf-dist/doc/context/third/gnuplot/">context-gnuplot</a></b><small>
 (<a href="https://ctan.org/pkg/context-gnuplot">CTAN</a>):
-Inclusion of Gnuplot graphs in ConTeXt
+Inclusion of Gnuplot graphs in ConTeXt. 
 <a href="texmf-dist/doc/context/third/gnuplot/fullpage-example.pdf">fullpage-example.pdf</a>
 <a href="texmf-dist/doc/context/third/gnuplot/gnuplot-context-doc.pdf">gnuplot-context-doc.pdf</a>.
 </small></li>
 
-<li id="context-handlecsv"><b><a href="texmf-dist/doc/context/third/handlecsv">context-handlecsv</a></b><small>
+<li id="context-handlecsv"><b><a href="texmf-dist/doc/context/third/handlecsv/">context-handlecsv</a></b><small>
 (<a href="https://ctan.org/pkg/context-handlecsv">CTAN</a>):
-Data merging for automatic document creation
+Data merging for automatic document creation. 
 <a href="texmf-dist/doc/context/third/handlecsv/handlecsv.pdf">handlecsv.pdf</a>.
 </small></li>
 
-<li id="context-inifile"><b><a href="texmf-dist/doc/context/third/inifile">context-inifile</a></b><small>
+<li id="context-inifile"><b><a href="texmf-dist/doc/context/third/inifile/">context-inifile</a></b><small>
 (<a href="https://ctan.org/pkg/context-inifile">CTAN</a>):
-An ini-file pretty-printer, using ConTeXt
+An ini-file pretty-printer, using ConTeXt. 
 <a href="texmf-dist/doc/context/third/inifile/inifile-demo.pdf">inifile-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/inifile/inifile-doc.pdf">inifile-doc.pdf</a>.
 </small></li>
 
-<li id="context-layout"><b><a href="texmf-dist/doc/context/third/layout">context-layout</a></b><small>
+<li id="context-layout"><b><a href="texmf-dist/doc/context/third/layout/">context-layout</a></b><small>
 (<a href="https://ctan.org/pkg/context-layout">CTAN</a>):
-Show ConTeXt layouts
+Show ConTeXt layouts. 
 <a href="texmf-dist/doc/context/third/layout/t-layout.pdf">t-layout.pdf</a>.
 </small></li>
 
-<li id="context-lettrine"><b><a href="texmf-dist/doc/context/third/lettrine">context-lettrine</a></b><small>
+<li id="context-lettrine"><b><a href="texmf-dist/doc/context/third/lettrine/">context-lettrine</a></b><small>
 (<a href="https://ctan.org/pkg/context-lettrine">CTAN</a>):
-A ConTeXt implementation of lettrines
+A ConTeXt implementation of lettrines. 
 <a href="texmf-dist/doc/context/third/lettrine/W.pdf">W.pdf</a>
 <a href="texmf-dist/doc/context/third/lettrine/lettrine-doc.pdf">lettrine-doc.pdf</a>.
 </small></li>
 
-<li id="context-mathsets"><b><a href="texmf-dist/doc/context/third/mathsets">context-mathsets</a></b><small>
+<li id="context-mathsets"><b><a href="texmf-dist/doc/context/third/mathsets/">context-mathsets</a></b><small>
 (<a href="https://ctan.org/pkg/context-mathsets">CTAN</a>):
-Set notation in ConTeXt
+Set notation in ConTeXt. 
 <a href="texmf-dist/doc/context/third/mathsets/mathsets-doc.pdf">mathsets-doc.pdf</a>.
 </small></li>
 
-<li id="context-notes-zh-cn"><b><a href="texmf-dist/doc/context/third/context-notes-zh-cn">context-notes-zh-cn</a></b><small>
+<li id="context-notes-zh-cn"><b><a href="texmf-dist/doc/context/third/context-notes-zh-cn/">context-notes-zh-cn</a></b><small>
 (<a href="https://ctan.org/pkg/context-notes-zh-cn">CTAN</a>):
-Notes on using ConTeXt MkIV
+Notes on using ConTeXt MkIV. 
 <a href="texmf-dist/doc/context/third/context-notes-zh-cn/ctxnotes.pdf">ctxnotes.pdf</a>
 <a href="texmf-dist/doc/context/third/context-notes-zh-cn/src/figures/cow.pdf">cow.pdf</a>.
 </small></li>
 
-<li id="context-rst"><b><a href="texmf-dist/doc/context/third/rst">context-rst</a></b><small>
+<li id="context-rst"><b><a href="texmf-dist/doc/context/third/rst/">context-rst</a></b><small>
 (<a href="https://ctan.org/pkg/context-rst">CTAN</a>):
-Process reStructuredText with ConTeXt
+Process reStructuredText with ConTeXt. 
 <a href="texmf-dist/doc/context/third/rst/manual.pdf">manual.pdf</a>.
 </small></li>
 
-<li id="context-simpleslides"><b><a href="texmf-dist/doc/context/third/simpleslides">context-simpleslides</a></b><small>
+<li id="context-simpleslides"><b><a href="texmf-dist/doc/context/third/simpleslides/">context-simpleslides</a></b><small>
 (<a href="https://ctan.org/pkg/context-simpleslides">CTAN</a>):
-A module for preparing presentations
+A module for preparing presentations. 
 <a href="texmf-dist/doc/context/third/simpleslides/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/context/third/simpleslides/simpleslides.pdf">simpleslides.pdf</a>
 <a href="texmf-dist/doc/context/third/simpleslides/styles/BigNumber-blue.pdf">BigNumber-blue.pdf</a>
@@ -5016,238 +5006,238 @@
 <a href="texmf-dist/doc/context/third/simpleslides/styles/ThickStripes.pdf">ThickStripes.pdf</a>.
 </small></li>
 
-<li id="context-title"><b><a href="texmf-dist/doc/context/third/title">context-title</a></b><small>
+<li id="context-title"><b><a href="texmf-dist/doc/context/third/title/">context-title</a></b><small>
 (<a href="https://ctan.org/pkg/context-title">CTAN</a>):
-Place document titles
+Place document titles. 
 <a href="texmf-dist/doc/context/third/title/title-doc.pdf">title-doc.pdf</a>.
 </small></li>
 
-<li id="context-transliterator"><b><a href="texmf-dist/doc/context/third/transliterator">context-transliterator</a></b><small>
+<li id="context-transliterator"><b><a href="texmf-dist/doc/context/third/transliterator/">context-transliterator</a></b><small>
 (<a href="https://ctan.org/pkg/context-transliterator">CTAN</a>):
-Transliterate text from 'other' alphabets
+Transliterate text from 'other' alphabets. 
 <a href="texmf-dist/doc/context/third/transliterator/transliterator.pdf">transliterator.pdf</a>.
 </small></li>
 
-<li id="context-typearea"><b><a href="texmf-dist/doc/context/third/typearea">context-typearea</a></b><small>
+<li id="context-typearea"><b><a href="texmf-dist/doc/context/third/typearea/">context-typearea</a></b><small>
 (<a href="https://ctan.org/pkg/context-typearea">CTAN</a>):
-Something like Koma-Script typearea
+Something like Koma-Script typearea. 
 <a href="texmf-dist/doc/context/third/typearea/typearea-demo.pdf">typearea-demo.pdf</a>
 <a href="texmf-dist/doc/context/third/typearea/typearea-doc.pdf">typearea-doc.pdf</a>.
 </small></li>
 
-<li id="context-visualcounter"><b><a href="texmf-dist/doc/context/third/visualcounter">context-visualcounter</a></b><small>
+<li id="context-visualcounter"><b><a href="texmf-dist/doc/context/third/visualcounter/">context-visualcounter</a></b><small>
 (<a href="https://ctan.org/pkg/context-visualcounter">CTAN</a>):
-Visual display of ConTeXt counters
+Visual display of ConTeXt counters. 
 <a href="texmf-dist/doc/context/third/visualcounter/visualcounter.pdf">visualcounter.pdf</a>.
 </small></li>
 
-<li id="continue"><b><a href="texmf-dist/doc/latex/continue">continue</a></b><small>
+<li id="continue"><b><a href="texmf-dist/doc/latex/continue/">continue</a></b><small>
 (<a href="https://ctan.org/pkg/continue">CTAN</a>):
-Prints 'continuation' marks on pages of multipage documents
+Prints 'continuation' marks on pages of multipage documents. 
 <a href="texmf-dist/doc/latex/continue/continue.pdf">continue.pdf</a>
 <a href="texmf-dist/doc/latex/continue/trycontinue.pdf">trycontinue.pdf</a>.
 </small></li>
 
-<li id="contour"><b><a href="texmf-dist/doc/latex/contour">contour</a></b><small>
+<li id="contour"><b><a href="texmf-dist/doc/latex/contour/">contour</a></b><small>
 (<a href="https://ctan.org/pkg/contour">CTAN</a>):
-Print a coloured contour around text
+Print a coloured contour around text. 
 <a href="texmf-dist/doc/latex/contour/contour.pdf">contour.pdf</a>.
 </small></li>
 
-<li id="contracard"><b><a href="texmf-dist/doc/latex/contracard">contracard</a></b><small>
+<li id="contracard"><b><a href="texmf-dist/doc/latex/contracard/">contracard</a></b><small>
 (<a href="https://ctan.org/pkg/contracard">CTAN</a>):
-Generate calling cards for dances
+Generate calling cards for dances. 
 <a href="texmf-dist/doc/latex/contracard/contracard.pdf">contracard.pdf</a>.
 </small></li>
 
-<li id="conv-xkv"><b><a href="texmf-dist/doc/latex/conv-xkv/doc">conv-xkv</a></b><small>
+<li id="conv-xkv"><b><a href="texmf-dist/doc/latex/conv-xkv/">conv-xkv</a></b><small>
 (<a href="https://ctan.org/pkg/conv-xkv">CTAN</a>):
-Create new key-value syntax
+Create new key-value syntax. 
 <a href="texmf-dist/doc/latex/conv-xkv/doc/conv-xkv.pdf">conv-xkv.pdf</a>.
 </small></li>
 
-<li id="cooking"><b><a href="texmf-dist/doc/latex/cooking">cooking</a></b><small>
+<li id="cooking"><b><a href="texmf-dist/doc/latex/cooking/">cooking</a></b><small>
 (<a href="https://ctan.org/pkg/cooking">CTAN</a>):
-Typeset recipes
+Typeset recipes. 
 <a href="texmf-dist/doc/latex/cooking/cooking.pdf">cooking.pdf</a>.
 </small></li>
 
-<li id="cooking-units"><b><a href="texmf-dist/doc/latex/cooking-units">cooking-units</a></b><small>
+<li id="cooking-units"><b><a href="texmf-dist/doc/latex/cooking-units/">cooking-units</a></b><small>
 (<a href="https://ctan.org/pkg/cooking-units">CTAN</a>):
-Typeset and convert units for cookery books and recipes
+Typeset and convert units for cookery books and recipes. 
 <a href="texmf-dist/doc/latex/cooking-units/cooking-units.pdf">cooking-units.pdf</a>.
 </small></li>
 
-<li id="cookingsymbols"><b><a href="texmf-dist/doc/latex/cookingsymbols">cookingsymbols</a></b><small>
+<li id="cookingsymbols"><b><a href="texmf-dist/doc/latex/cookingsymbols/">cookingsymbols</a></b><small>
 (<a href="https://ctan.org/pkg/cookingsymbols">CTAN</a>):
-Symbols for recipes
+Symbols for recipes. 
 <a href="texmf-dist/doc/latex/cookingsymbols/cookingsymbols.pdf">cookingsymbols.pdf</a>.
 </small></li>
 
-<li id="cool"><b><a href="texmf-dist/doc/latex/cool">cool</a></b><small>
+<li id="cool"><b><a href="texmf-dist/doc/latex/cool/">cool</a></b><small>
 (<a href="https://ctan.org/pkg/cool">CTAN</a>):
-COntent-Oriented LaTeX
+COntent-Oriented LaTeX. 
 <a href="texmf-dist/doc/latex/cool/Content_LaTeX_Package_Demo.pdf">Content_LaTeX_Package_Demo.pdf</a>
 <a href="texmf-dist/doc/latex/cool/cool.pdf">cool.pdf</a>.
 </small></li>
 
-<li id="coollist"><b><a href="texmf-dist/doc/latex/coollist">coollist</a></b><small>
+<li id="coollist"><b><a href="texmf-dist/doc/latex/coollist/">coollist</a></b><small>
 (<a href="https://ctan.org/pkg/coollist">CTAN</a>):
-Manipulate COntent Oriented LaTeX Lists
+Manipulate COntent Oriented LaTeX Lists. 
 <a href="texmf-dist/doc/latex/coollist/coollist.pdf">coollist.pdf</a>.
 </small></li>
 
-<li id="coolstr"><b><a href="texmf-dist/doc/latex/coolstr">coolstr</a></b><small>
+<li id="coolstr"><b><a href="texmf-dist/doc/latex/coolstr/">coolstr</a></b><small>
 (<a href="https://ctan.org/pkg/coolstr">CTAN</a>):
-String manipulation in LaTeX
+String manipulation in LaTeX. 
 <a href="texmf-dist/doc/latex/coolstr/coolstr.pdf">coolstr.pdf</a>.
 </small></li>
 
-<li id="coolthms"><b><a href="texmf-dist/doc/latex/coolthms">coolthms</a></b><small>
+<li id="coolthms"><b><a href="texmf-dist/doc/latex/coolthms/">coolthms</a></b><small>
 (<a href="https://ctan.org/pkg/coolthms">CTAN</a>):
-Reference items in a theorem environment
+Reference items in a theorem environment. 
 <a href="texmf-dist/doc/latex/coolthms/coolthms.pdf">coolthms.pdf</a>.
 </small></li>
 
-<li id="cooltooltips"><b><a href="texmf-dist/doc/latex/cooltooltips">cooltooltips</a></b><small>
+<li id="cooltooltips"><b><a href="texmf-dist/doc/latex/cooltooltips/">cooltooltips</a></b><small>
 (<a href="https://ctan.org/pkg/cooltooltips">CTAN</a>):
-Associate a pop-up window and tooltip with PDF hyperlinks
+Associate a pop-up window and tooltip with PDF hyperlinks. 
 <a href="texmf-dist/doc/latex/cooltooltips/cooltooltips.pdf">cooltooltips.pdf</a>.
 </small></li>
 
-<li id="coordsys"><b><a href="texmf-dist/doc/latex/coordsys">coordsys</a></b><small>
+<li id="coordsys"><b><a href="texmf-dist/doc/latex/coordsys/">coordsys</a></b><small>
 (<a href="https://ctan.org/pkg/coordsys">CTAN</a>):
-Draw cartesian coordinate systems
+Draw cartesian coordinate systems. 
 <a href="texmf-dist/doc/latex/coordsys/coordsys.pdf">coordsys.pdf</a>.
 </small></li>
 
-<li id="copyedit"><b><a href="texmf-dist/doc/latex/copyedit">copyedit</a></b><small>
+<li id="copyedit"><b><a href="texmf-dist/doc/latex/copyedit/">copyedit</a></b><small>
 (<a href="https://ctan.org/pkg/copyedit">CTAN</a>):
-Copyediting support for LaTeX documents
+Copyediting support for LaTeX documents. 
 <a href="texmf-dist/doc/latex/copyedit/copyedit.pdf">copyedit.pdf</a>
 <a href="texmf-dist/doc/latex/copyedit/example/test-copy.pdf">test-copy.pdf</a>.
 </small></li>
 
-<li id="copyrightbox"><b><a href="texmf-dist/doc/latex/copyrightbox">copyrightbox</a></b><small>
+<li id="copyrightbox"><b><a href="texmf-dist/doc/latex/copyrightbox/">copyrightbox</a></b><small>
 (<a href="https://ctan.org/pkg/copyrightbox">CTAN</a>):
-Provide copyright notices for images in a document
+Provide copyright notices for images in a document. 
 <a href="texmf-dist/doc/latex/copyrightbox/copyrightbox.pdf">copyrightbox.pdf</a>.
 </small></li>
 
-<li id="cormorantgaramond"><b><a href="texmf-dist/doc/fonts/cormorantgaramond">cormorantgaramond</a></b><small>
+<li id="cormorantgaramond"><b><a href="texmf-dist/doc/fonts/cormorantgaramond/">cormorantgaramond</a></b><small>
 (<a href="https://ctan.org/pkg/cormorantgaramond">CTAN</a>):
-Cormorant Garamond family of fonts
+Cormorant Garamond family of fonts. 
 <a href="texmf-dist/doc/fonts/cormorantgaramond/cormorantgaramond.pdf">cormorantgaramond.pdf</a>.
 </small></li>
 
-<li id="correctmathalign"><b><a href="texmf-dist/doc/latex/correctmathalign">correctmathalign</a></b><small>
+<li id="correctmathalign"><b><a href="texmf-dist/doc/latex/correctmathalign/">correctmathalign</a></b><small>
 (<a href="https://ctan.org/pkg/correctmathalign">CTAN</a>):
-Correct spacing of the alignment in expressions
+Correct spacing of the alignment in expressions. 
 <a href="texmf-dist/doc/latex/correctmathalign/aligned-org.pdf">aligned-org.pdf</a>
 <a href="texmf-dist/doc/latex/correctmathalign/correctmathalign.pdf">correctmathalign.pdf</a>
 <a href="texmf-dist/doc/latex/correctmathalign/eqnarray-org.pdf">eqnarray-org.pdf</a>.
 </small></li>
 
-<li id="coseoul"><b><a href="texmf-dist/doc/latex/coseoul">coseoul</a></b><small>
+<li id="coseoul"><b><a href="texmf-dist/doc/latex/coseoul/">coseoul</a></b><small>
 (<a href="https://ctan.org/pkg/coseoul">CTAN</a>):
-Context sensitive outline elements
+Context sensitive outline elements. 
 <a href="texmf-dist/doc/latex/coseoul/coseoul.pdf">coseoul.pdf</a>
 <a href="texmf-dist/doc/latex/coseoul/cosexamp.pdf">cosexamp.pdf</a>.
 </small></li>
 
-<li id="countriesofeurope"><b><a href="texmf-dist/doc/fonts/countriesofeurope">countriesofeurope</a></b><small>
+<li id="countriesofeurope"><b><a href="texmf-dist/doc/fonts/countriesofeurope/">countriesofeurope</a></b><small>
 (<a href="https://ctan.org/pkg/countriesofeurope">CTAN</a>):
-A font with the images of the countries of Europe
+A font with the images of the countries of Europe. 
 <a href="texmf-dist/doc/fonts/countriesofeurope/countriesofeurope.pdf">countriesofeurope.pdf</a>.
 </small></li>
 
-<li id="counttexruns"><b><a href="texmf-dist/doc/latex/counttexruns">counttexruns</a></b><small>
+<li id="counttexruns"><b><a href="texmf-dist/doc/latex/counttexruns/">counttexruns</a></b><small>
 (<a href="https://ctan.org/pkg/counttexruns">CTAN</a>):
-Count compilations of a document
+Count compilations of a document. 
 <a href="texmf-dist/doc/latex/counttexruns/counttexruns.pdf">counttexruns.pdf</a>.
 </small></li>
 
-<li id="courier-scaled"><b><a href="texmf-dist/doc/fonts/courier-scaled">courier-scaled</a></b><small>
+<li id="courier-scaled"><b><a href="texmf-dist/doc/fonts/courier-scaled/">courier-scaled</a></b><small>
 (<a href="https://ctan.org/pkg/courier-scaled">CTAN</a>):
-Provides a scaled Courier font
+Provides a scaled Courier font. 
 <a href="texmf-dist/doc/fonts/courier-scaled/Couriers.pdf">Couriers.pdf</a>.
 </small></li>
 
-<li id="coverpage"><b><a href="texmf-dist/doc/latex/coverpage">coverpage</a></b><small>
+<li id="coverpage"><b><a href="texmf-dist/doc/latex/coverpage/">coverpage</a></b><small>
 (<a href="https://ctan.org/pkg/coverpage">CTAN</a>):
-Automatic cover page creation for scientific papers
+Automatic cover page creation for scientific papers. 
 <a href="texmf-dist/doc/latex/coverpage/CoverPage.pdf">CoverPage.pdf</a>
 <a href="texmf-dist/doc/latex/coverpage/ECCV06Sample.pdf">ECCV06Sample.pdf</a>
 <a href="texmf-dist/doc/latex/coverpage/SimpleSample.pdf">SimpleSample.pdf</a>.
 </small></li>
 
-<li id="covington"><b><a href="texmf-dist/doc/latex/covington">covington</a></b><small>
+<li id="covington"><b><a href="texmf-dist/doc/latex/covington/">covington</a></b><small>
 (<a href="https://ctan.org/pkg/covington">CTAN</a>):
-Linguistic support
+Linguistic support. 
 <a href="texmf-dist/doc/latex/covington/covington.pdf">covington.pdf</a>.
 </small></li>
 
-<li id="cprotect"><b><a href="texmf-dist/doc/latex/cprotect">cprotect</a></b><small>
+<li id="cprotect"><b><a href="texmf-dist/doc/latex/cprotect/">cprotect</a></b><small>
 (<a href="https://ctan.org/pkg/cprotect">CTAN</a>):
-Allow verbatim, etc., in macro arguments
+Allow verbatim, etc., in macro arguments. 
 <a href="texmf-dist/doc/latex/cprotect/cprotect.pdf">cprotect.pdf</a>.
 </small></li>
 
-<li id="cqubeamer"><b><a href="texmf-dist/doc/xelatex/cqubeamer">cqubeamer</a></b><small>
+<li id="cqubeamer"><b><a href="texmf-dist/doc/xelatex/cqubeamer/">cqubeamer</a></b><small>
 (<a href="https://ctan.org/pkg/cqubeamer">CTAN</a>):
-LaTeX Beamer Template for Chongqing University
+LaTeX Beamer Template for Chongqing University. 
 <a href="texmf-dist/doc/xelatex/cqubeamer/cqubeamer.pdf">cqubeamer.pdf</a> (zh) 
 <a href="texmf-dist/doc/xelatex/cqubeamer/logo/cqulogo.pdf">cqulogo.pdf</a>
 <a href="texmf-dist/doc/xelatex/cqubeamer/logo/cquname.pdf">cquname.pdf</a>.
 </small></li>
 
-<li id="cquthesis"><b><a href="texmf-dist/doc/latex/cquthesis">cquthesis</a></b><small>
+<li id="cquthesis"><b><a href="texmf-dist/doc/latex/cquthesis/">cquthesis</a></b><small>
 (<a href="https://ctan.org/pkg/cquthesis">CTAN</a>):
-LaTeX Thesis Template for Chongqing University
+LaTeX Thesis Template for Chongqing University. 
 <a href="texmf-dist/doc/latex/cquthesis/cquthesis.pdf">cquthesis.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/cquthesis/figures/CQUbadge.pdf">CQUbadge.pdf</a>.
 </small></li>
 
-<li id="crbox"><b><a href="texmf-dist/doc/latex/crbox">crbox</a></b><small>
+<li id="crbox"><b><a href="texmf-dist/doc/latex/crbox/">crbox</a></b><small>
 (<a href="https://ctan.org/pkg/crbox">CTAN</a>):
-Boxes with crossed corners
+Boxes with crossed corners. 
 <a href="texmf-dist/doc/latex/crbox/crbox-doc.pdf">crbox-doc.pdf</a>.
 </small></li>
 
-<li id="crimson"><b><a href="texmf-dist/doc/fonts/crimson">crimson</a></b><small>
+<li id="crimson"><b><a href="texmf-dist/doc/fonts/crimson/">crimson</a></b><small>
 (<a href="https://ctan.org/pkg/crimson">CTAN</a>):
-Crimson fonts with LaTeX support
+Crimson fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/crimson/crimson-samples.pdf">crimson-samples.pdf</a>.
 </small></li>
 
-<li id="crimsonpro"><b><a href="texmf-dist/doc/fonts/crimsonpro">crimsonpro</a></b><small>
+<li id="crimsonpro"><b><a href="texmf-dist/doc/fonts/crimsonpro/">crimsonpro</a></b><small>
 (<a href="https://ctan.org/pkg/crimsonpro">CTAN</a>):
-CrimsonPro fonts with LaTeX support
+CrimsonPro fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/crimsonpro/crimsonpro-samples.pdf">crimsonpro-samples.pdf</a>.
 </small></li>
 
-<li id="crop"><b><a href="texmf-dist/doc/latex/crop">crop</a></b><small>
+<li id="crop"><b><a href="texmf-dist/doc/latex/crop/">crop</a></b><small>
 (<a href="https://ctan.org/pkg/crop">CTAN</a>):
-Support for cropmarks
+Support for cropmarks. 
 <a href="texmf-dist/doc/latex/crop/crop.pdf">crop.pdf</a>.
 </small></li>
 
-<li id="crossreference"><b><a href="texmf-dist/doc/latex/crossreference">crossreference</a></b><small>
+<li id="crossreference"><b><a href="texmf-dist/doc/latex/crossreference/">crossreference</a></b><small>
 (<a href="https://ctan.org/pkg/crossreference">CTAN</a>):
-Crossreferences within documents
+Crossreferences within documents. 
 <a href="texmf-dist/doc/latex/crossreference/crossreference.pdf">crossreference.pdf</a>.
 </small></li>
 
-<li id="crossreftools"><b><a href="texmf-dist/doc/latex/crossreftools">crossreftools</a></b><small>
+<li id="crossreftools"><b><a href="texmf-dist/doc/latex/crossreftools/">crossreftools</a></b><small>
 (<a href="https://ctan.org/pkg/crossreftools">CTAN</a>):
-Expandable extraction of cleveref data
+Expandable extraction of cleveref data. 
 <a href="texmf-dist/doc/latex/crossreftools/crossreftools_doc.pdf">crossreftools_doc.pdf</a>
 <a href="texmf-dist/doc/latex/crossreftools/crossreftools_driver.pdf">crossreftools_driver.pdf</a>.
 </small></li>
 
-<li id="crossrefware"><b><a href="texmf-dist/doc/man/man1">crossrefware</a></b><small>
+<li id="crossrefware"><b><a href="texmf-dist/doc/support/crossrefware/">crossrefware</a></b><small>
 (<a href="https://ctan.org/pkg/crossrefware">CTAN</a>):
-Scripts for working with crossref.org
+Scripts for working with crossref.org. 
 <a href="texmf-dist/doc/man/man1/bbl2bib.man1.pdf">bbl2bib.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/bibdoiadd.man1.pdf">bibdoiadd.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/bibmradd.man1.pdf">bibmradd.man1.pdf</a>
@@ -5257,64 +5247,64 @@
 <a href="texmf-dist/doc/support/crossrefware/crossrefware.pdf">crossrefware.pdf</a>.
 </small></li>
 
-<li id="crossword"><b><a href="texmf-dist/doc/latex/crossword">crossword</a></b><small>
+<li id="crossword"><b><a href="texmf-dist/doc/latex/crossword/">crossword</a></b><small>
 (<a href="https://ctan.org/pkg/crossword">CTAN</a>):
-Typeset crossword puzzles
+Typeset crossword puzzles. 
 <a href="texmf-dist/doc/latex/crossword/cwpuzzle.pdf">cwpuzzle.pdf</a>.
 </small></li>
 
-<li id="crosswrd"><b><a href="texmf-dist/doc/latex/crosswrd">crosswrd</a></b><small>
+<li id="crosswrd"><b><a href="texmf-dist/doc/latex/crosswrd/">crosswrd</a></b><small>
 (<a href="https://ctan.org/pkg/crosswrd">CTAN</a>):
-Macros for typesetting crossword puzzles
+Macros for typesetting crossword puzzles. 
 <a href="texmf-dist/doc/latex/crosswrd/crosswrd.pdf">crosswrd.pdf</a>.
 </small></li>
 
-<li id="cryptocode"><b><a href="texmf-dist/doc/latex/cryptocode">cryptocode</a></b><small>
+<li id="cryptocode"><b><a href="texmf-dist/doc/latex/cryptocode/">cryptocode</a></b><small>
 (<a href="https://ctan.org/pkg/cryptocode">CTAN</a>):
-Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography
+Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography. 
 <a href="texmf-dist/doc/latex/cryptocode/cryptocode.pdf">cryptocode.pdf</a>.
 </small></li>
 
-<li id="cryst"><b><a href="texmf-dist/doc/latex/cryst">cryst</a></b><small>
+<li id="cryst"><b><a href="texmf-dist/doc/latex/cryst/">cryst</a></b><small>
 (<a href="https://ctan.org/pkg/cryst">CTAN</a>):
-Font for graphical symbols used in crystallography
+Font for graphical symbols used in crystallography. 
 <a href="texmf-dist/doc/latex/cryst/cryst1.pdf">cryst1.pdf</a> (de).
 </small></li>
 
-<li id="csbulletin"><b><a href="texmf-dist/doc/latex/csbulletin">csbulletin</a></b><small>
+<li id="csbulletin"><b><a href="texmf-dist/doc/latex/csbulletin/">csbulletin</a></b><small>
 (<a href="https://ctan.org/pkg/csbulletin">CTAN</a>):
-LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj)
+LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj). 
 <a href="texmf-dist/doc/latex/csbulletin/csbulletin.pdf">csbulletin.pdf</a>.
 </small></li>
 
-<li id="cslatex"><b><a href="texmf-dist/doc/man/man1">cslatex</a></b><small>
+<li id="cslatex"><b><a href="texmf-dist/doc/man/man1/">cslatex</a></b><small>
 (<a href="https://ctan.org/pkg/cslatex">CTAN</a>):
-LaTeX support for Czech/Slovak typesetting
+LaTeX support for Czech/Slovak typesetting. 
 <a href="texmf-dist/doc/man/man1/cslatex.man1.pdf">cslatex.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/pdfcslatex.man1.pdf">pdfcslatex.man1.pdf</a>.
 </small></li>
 
-<li id="csquotes"><b><a href="texmf-dist/doc/latex/csquotes">csquotes</a></b><small>
+<li id="csquotes"><b><a href="texmf-dist/doc/latex/csquotes/">csquotes</a></b><small>
 (<a href="https://ctan.org/pkg/csquotes">CTAN</a>):
-Context sensitive quotation facilities
+Context sensitive quotation facilities. 
 <a href="texmf-dist/doc/latex/csquotes/csquotes.pdf">csquotes.pdf</a>.
 </small></li>
 
-<li id="csquotes-de"><b><a href="texmf-dist/doc/latex/csquotes-de">csquotes-de</a></b><small>
+<li id="csquotes-de"><b><a href="texmf-dist/doc/latex/csquotes-de/">csquotes-de</a></b><small>
 (<a href="https://ctan.org/pkg/csquotes-de">CTAN</a>):
-German translation of csquotes documentation
+German translation of csquotes documentation. 
 <a href="texmf-dist/doc/latex/csquotes-de/csquotes-DE.pdf">csquotes-DE.pdf</a>.
 </small></li>
 
-<li id="css-colors"><b><a href="texmf-dist/doc/latex/css-colors">css-colors</a></b><small>
+<li id="css-colors"><b><a href="texmf-dist/doc/latex/css-colors/">css-colors</a></b><small>
 (<a href="https://ctan.org/pkg/css-colors">CTAN</a>):
-Named colors for web-safe design
+Named colors for web-safe design. 
 <a href="texmf-dist/doc/latex/css-colors/css-colors.pdf">css-colors.pdf</a>.
 </small></li>
 
-<li id="cstex"><b><a href="texmf-dist/doc/cstex">cstex</a></b><small>
+<li id="cstex"><b><a href="texmf-dist/doc/cstex/">cstex</a></b><small>
 (<a href="https://ctan.org/pkg/cstex">CTAN</a>):
-Support for Czech/Slovak languages
+Support for Czech/Slovak languages. 
 <a href="texmf-dist/doc/cstex/cstexman.pdf">cstexman.pdf</a> (cs) 
 <a href="texmf-dist/doc/cstex/jemny.pdf">jemny.pdf</a>
 <a href="texmf-dist/doc/cstex/opmac-u-en.pdf">opmac-u-en.pdf</a>
@@ -5325,129 +5315,128 @@
 <a href="texmf-dist/doc/cstex/testgyre8z.pdf">testgyre8z.pdf</a>.
 </small></li>
 
-<li id="cstypo"><b><a href="texmf-dist/doc/lualatex/cstypo">cstypo</a></b><small>
+<li id="cstypo"><b><a href="texmf-dist/doc/lualatex/cstypo/">cstypo</a></b><small>
 (<a href="https://ctan.org/pkg/cstypo">CTAN</a>):
-Czech typography rules enforced through LuaTeX hooks
+Czech typography rules enforced through LuaTeX hooks. 
 <a href="texmf-dist/doc/lualatex/cstypo/cstypo.pdf">cstypo.pdf</a>
 <a href="texmf-dist/doc/lualatex/cstypo/cstypotest.pdf">cstypotest.pdf</a>.
 </small></li>
 
-<li id="csvmerge"><b><a href="texmf-dist/doc/latex/csvmerge">csvmerge</a></b><small>
+<li id="csvmerge"><b><a href="texmf-dist/doc/latex/csvmerge/">csvmerge</a></b><small>
 (<a href="https://ctan.org/pkg/csvmerge">CTAN</a>):
-Merge TeX code with csv data
+Merge TeX code with csv data. 
 <a href="texmf-dist/doc/latex/csvmerge/csvmerge.pdf">csvmerge.pdf</a>.
 </small></li>
 
-<li id="csvsimple"><b><a href="texmf-dist/doc/latex/csvsimple">csvsimple</a></b><small>
+<li id="csvsimple"><b><a href="texmf-dist/doc/latex/csvsimple/">csvsimple</a></b><small>
 (<a href="https://ctan.org/pkg/csvsimple">CTAN</a>):
-Simple CSV file processing
+Simple CSV file processing. 
 <a href="texmf-dist/doc/latex/csvsimple/csvsimple-example.pdf">csvsimple-example.pdf</a>
 <a href="texmf-dist/doc/latex/csvsimple/csvsimple.pdf">csvsimple.pdf</a>.
 </small></li>
 
-<li id="ctable"><b><a href="texmf-dist/doc/latex/ctable">ctable</a></b><small>
+<li id="ctable"><b><a href="texmf-dist/doc/latex/ctable/">ctable</a></b><small>
 (<a href="https://ctan.org/pkg/ctable">CTAN</a>):
-Flexible typesetting of table and figure floats using key/value directives
+Flexible typesetting of table and figure floats using key/value directives. 
 <a href="texmf-dist/doc/latex/ctable/ctable.pdf">ctable.pdf</a>.
 </small></li>
 
-<li id="ctablestack"><b><a href="texmf-dist/doc/luatex/ctablestack">ctablestack</a></b><small>
+<li id="ctablestack"><b><a href="texmf-dist/doc/luatex/ctablestack/">ctablestack</a></b><small>
 (<a href="https://ctan.org/pkg/ctablestack">CTAN</a>):
-Catcode table stable support
+Catcode table stable support. 
 <a href="texmf-dist/doc/luatex/ctablestack/ctablestack.pdf">ctablestack.pdf</a>.
 </small></li>
 
-<li id="ctan-o-mat"><b><a href="texmf-dist/doc/man/man1">ctan-o-mat</a></b><small>
+<li id="ctan-o-mat"><b><a href="texmf-dist/doc/support/ctan-o-mat/">ctan-o-mat</a></b><small>
 (<a href="https://ctan.org/pkg/ctan-o-mat">CTAN</a>):
-Upload or validate a package for CTAN
+Upload or validate a package for CTAN. 
 <a href="texmf-dist/doc/man/man1/ctan-o-mat.man1.pdf">ctan-o-mat.man1.pdf</a>
 <a href="texmf-dist/doc/support/ctan-o-mat/ctan-o-mat.pdf">ctan-o-mat.pdf</a>.
 </small></li>
 
-<li id="ctan_chk"><b><a href="texmf-dist/doc/support/ctan_chk">ctan_chk</a></b><small>
+<li id="ctan_chk"><b><a href="texmf-dist/doc/support/ctan_chk/">ctan_chk</a></b><small>
 (<a href="https://ctan.org/pkg/ctan_chk">CTAN</a>):
-CTAN guidelines verifier and corrector for uploading projects
+CTAN guidelines verifier and corrector for uploading projects. 
 <a href="texmf-dist/doc/support/ctan_chk/ctan_chk.pdf">ctan_chk.pdf</a>.
 </small></li>
 
-<li id="ctanbib"><b><a href="texmf-dist/doc/man/man1">ctanbib</a></b><small>
+<li id="ctanbib"><b><a href="texmf-dist/doc/support/ctanbib/">ctanbib</a></b><small>
 (<a href="https://ctan.org/pkg/ctanbib">CTAN</a>):
-Export CTAN entries to bib format
+Export CTAN entries to bib format. 
 <a href="texmf-dist/doc/man/man1/ctanbib.man1.pdf">ctanbib.man1.pdf</a>
 <a href="texmf-dist/doc/support/ctanbib/ctanbib-doc.pdf">ctanbib-doc.pdf</a>.
 </small></li>
 
-<li id="ctanify"><b><a href="texmf-dist/doc/latex/ctanify">ctanify</a></b><small>
+<li id="ctanify"><b><a href="texmf-dist/doc/latex/ctanify/">ctanify</a></b><small>
 (<a href="https://ctan.org/pkg/ctanify">CTAN</a>):
-Prepare a package for upload to CTAN
+Prepare a package for upload to CTAN. 
 <a href="texmf-dist/doc/latex/ctanify/ctanify.pdf">ctanify.pdf</a>
 <a href="texmf-dist/doc/man/man1/ctanify.man1.pdf">ctanify.man1.pdf</a>.
 </small></li>
 
-<li id="ctanupload"><b><a href="texmf-dist/doc/support/ctanupload">ctanupload</a></b><small>
+<li id="ctanupload"><b><a href="texmf-dist/doc/support/ctanupload/">ctanupload</a></b><small>
 (<a href="https://ctan.org/pkg/ctanupload">CTAN</a>):
-Support for users uploading to CTAN
+Support for users uploading to CTAN. 
 <a href="texmf-dist/doc/support/ctanupload/ctanupload.pdf">ctanupload.pdf</a>.
 </small></li>
 
-<li id="ctex"><b><a href="texmf-dist/doc/latex/ctex">ctex</a></b><small>
+<li id="ctex"><b><a href="texmf-dist/doc/latex/ctex/">ctex</a></b><small>
 (<a href="https://ctan.org/pkg/ctex">CTAN</a>):
-LaTeX classes and packages for Chinese typesetting
+LaTeX classes and packages for Chinese typesetting. 
 <a href="texmf-dist/doc/latex/ctex/ctex.pdf">ctex.pdf</a> (zh).
 </small></li>
 
-<li id="ctex-faq"><b><a href="texmf-dist/doc/latex/ctex-faq">ctex-faq</a></b><small>
+<li id="ctex-faq"><b><a href="texmf-dist/doc/latex/ctex-faq/">ctex-faq</a></b><small>
 (<a href="https://ctan.org/pkg/ctex-faq">CTAN</a>):
-LaTeX FAQ by the Chinese TeX Society (ctex.org)
+LaTeX FAQ by the Chinese TeX Society (ctex.org). 
 <a href="texmf-dist/doc/latex/ctex-faq/ctex-faq.pdf">ctex-faq.pdf</a> (zh).
 </small></li>
 
-<li id="ctib"><b><a href="texmf-dist/doc/latex/ctib">ctib</a></b><small>
-(<a href="https://ctan.org/pkg/ctib">CTAN</a>):
-Tibetan for TeX and LaTeX2e
+<li id="ctib"><b><a href="texmf-dist/doc/latex/ctib/">ctib</a></b><small>
+Tibetan for TeX and LaTeX2e. 
 <a href="texmf-dist/doc/latex/ctib/ctib4tex.pdf">ctib4tex.pdf</a>.
 </small></li>
 
-<li id="ctie"><b><a href="texmf-dist/doc/man/man1">ctie</a></b><small>
+<li id="ctie"><b><a href="texmf-dist/doc/man/man1/">ctie</a></b><small>
 (<a href="https://ctan.org/pkg/ctie">CTAN</a>):
-C version of tie (merging Web change files)
+C version of tie (merging Web change files). 
 <a href="texmf-dist/doc/man/man1/ctie.man1.pdf">ctie.man1.pdf</a>.
 </small></li>
 
-<li id="cuisine"><b><a href="texmf-dist/doc/latex/cuisine">cuisine</a></b><small>
+<li id="cuisine"><b><a href="texmf-dist/doc/latex/cuisine/">cuisine</a></b><small>
 (<a href="https://ctan.org/pkg/cuisine">CTAN</a>):
-Typeset recipes
+Typeset recipes. 
 <a href="texmf-dist/doc/latex/cuisine/cuisine.pdf">cuisine.pdf</a>.
 </small></li>
 
-<li id="cuprum"><b><a href="texmf-dist/doc/fonts/cuprum">cuprum</a></b><small>
+<li id="cuprum"><b><a href="texmf-dist/doc/fonts/cuprum/">cuprum</a></b><small>
 (<a href="https://ctan.org/pkg/cuprum">CTAN</a>):
-Cuprum font family support for LaTeX
+Cuprum font family support for LaTeX. 
 <a href="texmf-dist/doc/fonts/cuprum/cuprum.pdf">cuprum.pdf</a>.
 </small></li>
 
-<li id="currency"><b><a href="texmf-dist/doc/latex/currency">currency</a></b><small>
+<li id="currency"><b><a href="texmf-dist/doc/latex/currency/">currency</a></b><small>
 (<a href="https://ctan.org/pkg/currency">CTAN</a>):
-Format currencies in a consistent way
+Format currencies in a consistent way. 
 <a href="texmf-dist/doc/latex/currency/currency.pdf">currency.pdf</a>
 <a href="texmf-dist/doc/latex/currency/currency_doc.pdf">currency_doc.pdf</a>.
 </small></li>
 
-<li id="currfile"><b><a href="texmf-dist/doc/latex/currfile">currfile</a></b><small>
+<li id="currfile"><b><a href="texmf-dist/doc/latex/currfile/">currfile</a></b><small>
 (<a href="https://ctan.org/pkg/currfile">CTAN</a>):
-Provide file name and path of input files
+Provide file name and path of input files. 
 <a href="texmf-dist/doc/latex/currfile/currfile.pdf">currfile.pdf</a>.
 </small></li>
 
-<li id="currvita"><b><a href="texmf-dist/doc/latex/currvita">currvita</a></b><small>
+<li id="currvita"><b><a href="texmf-dist/doc/latex/currvita/">currvita</a></b><small>
 (<a href="https://ctan.org/pkg/currvita">CTAN</a>):
-Typeset a curriculum vitae
+Typeset a curriculum vitae. 
 <a href="texmf-dist/doc/latex/currvita/currvita.pdf">currvita.pdf</a>.
 </small></li>
 
-<li id="cursolatex"><b><a href="texmf-dist/doc/latex/cursolatex">cursolatex</a></b><small>
+<li id="cursolatex"><b><a href="texmf-dist/doc/latex/cursolatex/">cursolatex</a></b><small>
 (<a href="https://ctan.org/pkg/cursolatex">CTAN</a>):
-A LaTeX tutorial
+A LaTeX tutorial. 
 <a href="texmf-dist/doc/latex/cursolatex/Musica.pdf">Musica.pdf</a>
 <a href="texmf-dist/doc/latex/cursolatex/TeXworksPDF.pdf">TeXworksPDF.pdf</a>
 <a href="texmf-dist/doc/latex/cursolatex/WinEdt.pdf">WinEdt.pdf</a>
@@ -5462,56 +5451,56 @@
 <a href="texmf-dist/doc/latex/cursolatex/ubuntu.pdf">ubuntu.pdf</a>.
 </small></li>
 
-<li id="curve"><b><a href="texmf-dist/doc/latex/curve">curve</a></b><small>
+<li id="curve"><b><a href="texmf-dist/doc/latex/curve/">curve</a></b><small>
 (<a href="https://ctan.org/pkg/curve">CTAN</a>):
-A class for making curriculum vitae
+A class for making curriculum vitae. 
 <a href="texmf-dist/doc/latex/curve/curve.pdf">curve.pdf</a>.
 </small></li>
 
-<li id="curve2e"><b><a href="texmf-dist/doc/latex/curve2e">curve2e</a></b><small>
+<li id="curve2e"><b><a href="texmf-dist/doc/latex/curve2e/">curve2e</a></b><small>
 (<a href="https://ctan.org/pkg/curve2e">CTAN</a>):
-Extensions for package pict2e
+Extensions for package pict2e. 
 <a href="texmf-dist/doc/latex/curve2e/curve2e-manual.pdf">curve2e-manual.pdf</a>
 <a href="texmf-dist/doc/latex/curve2e/curve2e.pdf">curve2e.pdf</a>.
 </small></li>
 
-<li id="curves"><b><a href="texmf-dist/doc/latex/curves">curves</a></b><small>
+<li id="curves"><b><a href="texmf-dist/doc/latex/curves/">curves</a></b><small>
 (<a href="https://ctan.org/pkg/curves">CTAN</a>):
-Curves for LaTeX picture environment
+Curves for LaTeX picture environment. 
 <a href="texmf-dist/doc/latex/curves/curves.pdf">curves.pdf</a>.
 </small></li>
 
-<li id="custom-bib"><b><a href="texmf-dist/doc/latex/custom-bib">custom-bib</a></b><small>
+<li id="custom-bib"><b><a href="texmf-dist/doc/latex/custom-bib/">custom-bib</a></b><small>
 (<a href="https://ctan.org/pkg/custom-bib">CTAN</a>):
-Customised BibTeX styles
+Customised BibTeX styles. 
 <a href="texmf-dist/doc/latex/custom-bib/makebst.pdf">makebst.pdf</a>
 <a href="texmf-dist/doc/latex/custom-bib/merlin.pdf">merlin.pdf</a>.
 </small></li>
 
-<li id="cutwin"><b><a href="texmf-dist/doc/latex/cutwin">cutwin</a></b><small>
+<li id="cutwin"><b><a href="texmf-dist/doc/latex/cutwin/">cutwin</a></b><small>
 (<a href="https://ctan.org/pkg/cutwin">CTAN</a>):
-Cut a window in a paragraph, typeset material in it
+Cut a window in a paragraph, typeset material in it. 
 <a href="texmf-dist/doc/latex/cutwin/cutwin.pdf">cutwin.pdf</a>.
 </small></li>
 
-<li id="cv"><b><a href="texmf-dist/doc/latex/cv">cv</a></b><small>
+<li id="cv"><b><a href="texmf-dist/doc/latex/cv/">cv</a></b><small>
 (<a href="https://ctan.org/pkg/cv">CTAN</a>):
-A package for creating a curriculum vitae
+A package for creating a curriculum vitae. 
 <a href="texmf-dist/doc/latex/cv/ApplicationLetter.pdf">ApplicationLetter.pdf</a>
 <a href="texmf-dist/doc/latex/cv/CVCTAN.pdf">CVCTAN.pdf</a>.
 </small></li>
 
-<li id="cv4tw"><b><a href="texmf-dist/doc/latex/cv4tw">cv4tw</a></b><small>
+<li id="cv4tw"><b><a href="texmf-dist/doc/latex/cv4tw/">cv4tw</a></b><small>
 (<a href="https://ctan.org/pkg/cv4tw">CTAN</a>):
-LaTeX CV class, with extended details
+LaTeX CV class, with extended details. 
 <a href="texmf-dist/doc/latex/cv4tw/sample-jules-verne-compact.pdf">sample-jules-verne-compact.pdf</a>
 <a href="texmf-dist/doc/latex/cv4tw/sample-jules-verne-sharp.pdf">sample-jules-verne-sharp.pdf</a>
 <a href="texmf-dist/doc/latex/cv4tw/sample-jules-verne-simple.pdf">sample-jules-verne-simple.pdf</a>.
 </small></li>
 
-<li id="cweb"><b><a href="texmf-dist/doc/man/man1">cweb</a></b><small>
+<li id="cweb"><b><a href="texmf-dist/doc/plain/cweb/">cweb</a></b><small>
 (<a href="https://ctan.org/pkg/cweb">CTAN</a>):
-CWEB for ANSI-C/C++ compilers
+CWEB for ANSI-C/C++ compilers. 
 <a href="texmf-dist/doc/man/man1/ctangle.man1.pdf">ctangle.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/ctwill-refsort.man1.pdf">ctwill-refsort.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/ctwill-twinx.man1.pdf">ctwill-twinx.man1.pdf</a>
@@ -5521,34 +5510,33 @@
 <a href="texmf-dist/doc/plain/cweb/cwebman.pdf">cwebman.pdf</a>.
 </small></li>
 
-<li id="cweb-latex"><b><a href="texmf-dist/doc/latex/cweb-latex">cweb-latex</a></b><small>
+<li id="cweb-latex"><b><a href="texmf-dist/doc/latex/cweb-latex/">cweb-latex</a></b><small>
 (<a href="https://ctan.org/pkg/cweb-latex">CTAN</a>):
-A LaTeX version of CWEB
+A LaTeX version of CWEB. 
 <a href="texmf-dist/doc/latex/cweb-latex/cweb-conf.pdf">cweb-conf.pdf</a>
 <a href="texmf-dist/doc/latex/cweb-latex/cweb-user.pdf">cweb-user.pdf</a>.
 </small></li>
 
-<li id="cyber"><b><a href="texmf-dist/doc/latex/cyber">cyber</a></b><small>
+<li id="cyber"><b><a href="texmf-dist/doc/latex/cyber/">cyber</a></b><small>
 (<a href="https://ctan.org/pkg/cyber">CTAN</a>):
-Annotate compliance with cybersecurity requirements
+Annotate compliance with cybersecurity requirements. 
 <a href="texmf-dist/doc/latex/cyber/cyber.pdf">cyber.pdf</a>.
 </small></li>
 
-<li id="cybercic"><b><a href="texmf-dist/doc/latex/cybercic">cybercic</a></b><small>
+<li id="cybercic"><b><a href="texmf-dist/doc/latex/cybercic/">cybercic</a></b><small>
 (<a href="https://ctan.org/pkg/cybercic">CTAN</a>):
-"Controls in Contents" for the cyber package
+"Controls in Contents" for the cyber package. 
 <a href="texmf-dist/doc/latex/cybercic/cybercic.pdf">cybercic.pdf</a>.
 </small></li>
 
-<li id="cyklop"><b><a href="texmf-dist/doc/fonts/cyklop">cyklop</a></b><small>
+<li id="cyklop"><b><a href="texmf-dist/doc/fonts/cyklop/">cyklop</a></b><small>
 (<a href="https://ctan.org/pkg/cyklop">CTAN</a>):
-The Cyclop typeface
+The Cyclop typeface. 
 <a href="texmf-dist/doc/fonts/cyklop/cyklop-info.pdf">cyklop-info.pdf</a>.
 </small></li>
 
-<li id="cyrillic"><b><a href="texmf-dist/doc/latex/cyrillic">cyrillic</a></b><small>
-(<a href="https://ctan.org/pkg/cyrillic">CTAN</a>):
-Support for Cyrillic fonts in LaTeX
+<li id="cyrillic"><b><a href="texmf-dist/doc/latex/cyrillic/">cyrillic</a></b><small>
+Support for Cyrillic fonts in LaTeX. 
 <a href="texmf-dist/doc/latex/cyrillic/cyinpenc.pdf">cyinpenc.pdf</a>
 <a href="texmf-dist/doc/latex/cyrillic/cyoutenc.pdf">cyoutenc.pdf</a>
 <a href="texmf-dist/doc/latex/cyrillic/lcy.pdf">lcy.pdf</a>
@@ -5559,9 +5547,8 @@
 <a href="texmf-dist/doc/latex/cyrillic/t2lhfnt.pdf">t2lhfnt.pdf</a>.
 </small></li>
 
-<li id="cyrillic-bin"><b><a href="texmf-dist/doc/man/man1">cyrillic-bin</a></b><small>
-(<a href="https://ctan.org/pkg/cyrillic-bin">CTAN</a>):
-Cyrillic bibtex and makeindex
+<li id="cyrillic-bin"><b><a href="texmf-dist/doc/man/man1/">cyrillic-bin</a></b><small>
+Cyrillic bibtex and makeindex. 
 <a href="texmf-dist/doc/man/man1/rubibtex.man1.pdf">rubibtex.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/rumakeindex.man1.pdf">rumakeindex.man1.pdf</a>.
 </small></li>
@@ -5570,48 +5557,48 @@
 
 <h2 id="letter-D">D</h2>
 
-<ol start="724">
+<ol start="725">
 
-<li id="dad"><b><a href="texmf-dist/doc/fonts/dad">dad</a></b><small>
+<li id="dad"><b><a href="texmf-dist/doc/fonts/dad/">dad</a></b><small>
 (<a href="https://ctan.org/pkg/dad">CTAN</a>):
-Simple typesetting system for mixed Arabic/Latin documents
+Simple typesetting system for mixed Arabic/Latin documents. 
 <a href="texmf-dist/doc/fonts/dad/dad-user-guide.pdf">dad-user-guide.pdf</a>.
 </small></li>
 
-<li id="dantelogo"><b><a href="texmf-dist/doc/fonts/dantelogo">dantelogo</a></b><small>
+<li id="dantelogo"><b><a href="texmf-dist/doc/fonts/dantelogo/">dantelogo</a></b><small>
 (<a href="https://ctan.org/pkg/dantelogo">CTAN</a>):
-A font for DANTE's logo
+A font for DANTE's logo. 
 <a href="texmf-dist/doc/fonts/dantelogo/dantelogo-doc.pdf">dantelogo-doc.pdf</a>.
 </small></li>
 
-<li id="dashbox"><b><a href="texmf-dist/doc/latex/dashbox">dashbox</a></b><small>
+<li id="dashbox"><b><a href="texmf-dist/doc/latex/dashbox/">dashbox</a></b><small>
 (<a href="https://ctan.org/pkg/dashbox">CTAN</a>):
-Draw dashed boxes
+Draw dashed boxes. 
 <a href="texmf-dist/doc/latex/dashbox/dashbox.pdf">dashbox.pdf</a>.
 </small></li>
 
-<li id="dashrule"><b><a href="texmf-dist/doc/latex/dashrule">dashrule</a></b><small>
+<li id="dashrule"><b><a href="texmf-dist/doc/latex/dashrule/">dashrule</a></b><small>
 (<a href="https://ctan.org/pkg/dashrule">CTAN</a>):
-Draw dashed rules
+Draw dashed rules. 
 <a href="texmf-dist/doc/latex/dashrule/dashrule.pdf">dashrule.pdf</a>.
 </small></li>
 
-<li id="dashundergaps"><b><a href="texmf-dist/doc/latex/dashundergaps">dashundergaps</a></b><small>
+<li id="dashundergaps"><b><a href="texmf-dist/doc/latex/dashundergaps/">dashundergaps</a></b><small>
 (<a href="https://ctan.org/pkg/dashundergaps">CTAN</a>):
-Produce gaps that are underlined, dotted or dashed
+Produce gaps that are underlined, dotted or dashed. 
 <a href="texmf-dist/doc/latex/dashundergaps/dashundergaps-code.pdf">dashundergaps-code.pdf</a>
 <a href="texmf-dist/doc/latex/dashundergaps/dashundergaps-doc.pdf">dashundergaps-doc.pdf</a>.
 </small></li>
 
-<li id="dataref"><b><a href="texmf-dist/doc/latex/dataref">dataref</a></b><small>
+<li id="dataref"><b><a href="texmf-dist/doc/latex/dataref/">dataref</a></b><small>
 (<a href="https://ctan.org/pkg/dataref">CTAN</a>):
-Manage references to experimental data
+Manage references to experimental data. 
 <a href="texmf-dist/doc/latex/dataref/dataref-doc.pdf">dataref-doc.pdf</a>.
 </small></li>
 
-<li id="datatool"><b><a href="texmf-dist/doc/latex/datatool">datatool</a></b><small>
+<li id="datatool"><b><a href="texmf-dist/doc/latex/datatool/">datatool</a></b><small>
 (<a href="https://ctan.org/pkg/datatool">CTAN</a>):
-Tools to load and manipulate data
+Tools to load and manipulate data. 
 <a href="texmf-dist/doc/latex/datatool/datatool-code.pdf">datatool-code.pdf</a>
 <a href="texmf-dist/doc/latex/datatool/datatool-user.pdf">datatool-user.pdf</a>
 <a href="texmf-dist/doc/latex/datatool/samples/sample-autokeys.pdf">sample-autokeys.pdf</a>
@@ -5629,22 +5616,22 @@
 <a href="texmf-dist/doc/latex/datatool/samples/sample-two-per-row.pdf">sample-two-per-row.pdf</a>.
 </small></li>
 
-<li id="dateiliste"><b><a href="texmf-dist/doc/latex/dateiliste">dateiliste</a></b><small>
+<li id="dateiliste"><b><a href="texmf-dist/doc/latex/dateiliste/">dateiliste</a></b><small>
 (<a href="https://ctan.org/pkg/dateiliste">CTAN</a>):
-Extensions of the \listfiles concept
+Extensions of the \listfiles concept. 
 <a href="texmf-dist/doc/latex/dateiliste/dateiliste.pdf">dateiliste.pdf</a> (de).
 </small></li>
 
-<li id="datenumber"><b><a href="texmf-dist/doc/latex/datenumber">datenumber</a></b><small>
+<li id="datenumber"><b><a href="texmf-dist/doc/latex/datenumber/">datenumber</a></b><small>
 (<a href="https://ctan.org/pkg/datenumber">CTAN</a>):
-Convert a date into a number and vice versa
+Convert a date into a number and vice versa. 
 <a href="texmf-dist/doc/latex/datenumber/doc.pdf">doc.pdf</a>
 <a href="texmf-dist/doc/latex/datenumber/docgerman.pdf">docgerman.pdf</a> (de).
 </small></li>
 
-<li id="datetime"><b><a href="texmf-dist/doc/latex/datetime">datetime</a></b><small>
+<li id="datetime"><b><a href="texmf-dist/doc/latex/datetime/">datetime</a></b><small>
 (<a href="https://ctan.org/pkg/datetime">CTAN</a>):
-Change format of \today with commands for current time
+Change format of \today with commands for current time. 
 <a href="texmf-dist/doc/latex/datetime/datetime-manual.html">datetime-manual.html</a>
 <a href="texmf-dist/doc/latex/datetime/datetime.pdf">datetime.pdf</a>
 <a href="texmf-dist/doc/latex/datetime/samples/dt-lang.pdf">dt-lang.pdf</a>
@@ -5651,9 +5638,9 @@
 <a href="texmf-dist/doc/latex/datetime/samples/dt-sampl.pdf">dt-sampl.pdf</a>.
 </small></li>
 
-<li id="datetime2"><b><a href="texmf-dist/doc/latex/datetime2">datetime2</a></b><small>
+<li id="datetime2"><b><a href="texmf-dist/doc/latex/datetime2/">datetime2</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2">CTAN</a>):
-Formats for dates, times and time zones
+Formats for dates, times and time zones. 
 <a href="texmf-dist/doc/latex/datetime2/datetime2.pdf">datetime2.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2/samples/datetime2-sample-babel.pdf">datetime2-sample-babel.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2/samples/datetime2-sample-calc.pdf">datetime2-sample-calc.pdf</a>
@@ -5664,89 +5651,89 @@
 <a href="texmf-dist/doc/latex/datetime2/samples/datetime2-sample-xe.pdf">datetime2-sample-xe.pdf</a>.
 </small></li>
 
-<li id="datetime2-bahasai"><b><a href="texmf-dist/doc/latex/datetime2-bahasai">datetime2-bahasai</a></b><small>
+<li id="datetime2-bahasai"><b><a href="texmf-dist/doc/latex/datetime2-bahasai/">datetime2-bahasai</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-bahasai">CTAN</a>):
-Bahasai language module for the datetime2 package
+Bahasai language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-bahasai/datetime2-bahasai.pdf">datetime2-bahasai.pdf</a>.
 </small></li>
 
-<li id="datetime2-breton"><b><a href="texmf-dist/doc/latex/datetime2-breton">datetime2-breton</a></b><small>
+<li id="datetime2-breton"><b><a href="texmf-dist/doc/latex/datetime2-breton/">datetime2-breton</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-breton">CTAN</a>):
-Breton language module for the datetime2 package
+Breton language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-breton/datetime2-breton.pdf">datetime2-breton.pdf</a>.
 </small></li>
 
-<li id="datetime2-bulgarian"><b><a href="texmf-dist/doc/latex/datetime2-bulgarian">datetime2-bulgarian</a></b><small>
+<li id="datetime2-bulgarian"><b><a href="texmf-dist/doc/latex/datetime2-bulgarian/">datetime2-bulgarian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-bulgarian">CTAN</a>):
-Bulgarian language module for the datetime2 package
+Bulgarian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-bulgarian/datetime2-bulgarian.pdf">datetime2-bulgarian.pdf</a>.
 </small></li>
 
-<li id="datetime2-catalan"><b><a href="texmf-dist/doc/latex/datetime2-catalan">datetime2-catalan</a></b><small>
+<li id="datetime2-catalan"><b><a href="texmf-dist/doc/latex/datetime2-catalan/">datetime2-catalan</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-catalan">CTAN</a>):
-Catalan language module for the datetime2 package
+Catalan language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-catalan/datetime2-catalan.pdf">datetime2-catalan.pdf</a>.
 </small></li>
 
-<li id="datetime2-croatian"><b><a href="texmf-dist/doc/latex/datetime2-croatian">datetime2-croatian</a></b><small>
+<li id="datetime2-croatian"><b><a href="texmf-dist/doc/latex/datetime2-croatian/">datetime2-croatian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-croatian">CTAN</a>):
-Croatian language module for the datetime2 package
+Croatian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-croatian/datetime2-croatian.pdf">datetime2-croatian.pdf</a>.
 </small></li>
 
-<li id="datetime2-czech"><b><a href="texmf-dist/doc/latex/datetime2-czech">datetime2-czech</a></b><small>
+<li id="datetime2-czech"><b><a href="texmf-dist/doc/latex/datetime2-czech/">datetime2-czech</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-czech">CTAN</a>):
-Czech language module for the datetime2 package
+Czech language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-czech/datetime2-czech.pdf">datetime2-czech.pdf</a>.
 </small></li>
 
-<li id="datetime2-danish"><b><a href="texmf-dist/doc/latex/datetime2-danish">datetime2-danish</a></b><small>
+<li id="datetime2-danish"><b><a href="texmf-dist/doc/latex/datetime2-danish/">datetime2-danish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-danish">CTAN</a>):
-Danish language module for the datetime2 package
+Danish language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-danish/datetime2-danish.pdf">datetime2-danish.pdf</a>.
 </small></li>
 
-<li id="datetime2-dutch"><b><a href="texmf-dist/doc/latex/datetime2-dutch">datetime2-dutch</a></b><small>
+<li id="datetime2-dutch"><b><a href="texmf-dist/doc/latex/datetime2-dutch/">datetime2-dutch</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-dutch">CTAN</a>):
-Dutch language module for the datetime2 package
+Dutch language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-dutch/datetime2-dutch.pdf">datetime2-dutch.pdf</a>.
 </small></li>
 
-<li id="datetime2-en-fulltext"><b><a href="texmf-dist/doc/latex/datetime2-en-fulltext">datetime2-en-fulltext</a></b><small>
+<li id="datetime2-en-fulltext"><b><a href="texmf-dist/doc/latex/datetime2-en-fulltext/">datetime2-en-fulltext</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-en-fulltext">CTAN</a>):
-English Full Text styles for the datetime2 package
+English Full Text styles for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-en-fulltext/datetime2-en-fulltext.pdf">datetime2-en-fulltext.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2-en-fulltext/sample-en-fulltext.pdf">sample-en-fulltext.pdf</a>.
 </small></li>
 
-<li id="datetime2-english"><b><a href="texmf-dist/doc/latex/datetime2-english">datetime2-english</a></b><small>
+<li id="datetime2-english"><b><a href="texmf-dist/doc/latex/datetime2-english/">datetime2-english</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-english">CTAN</a>):
-English language module for the datetime2 package
+English language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-english/datetime2-english-sample.pdf">datetime2-english-sample.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2-english/datetime2-english.pdf">datetime2-english.pdf</a>.
 </small></li>
 
-<li id="datetime2-esperanto"><b><a href="texmf-dist/doc/latex/datetime2-esperanto">datetime2-esperanto</a></b><small>
+<li id="datetime2-esperanto"><b><a href="texmf-dist/doc/latex/datetime2-esperanto/">datetime2-esperanto</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-esperanto">CTAN</a>):
-Esperanto language module for the datetime2 package
+Esperanto language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-esperanto/datetime2-esperanto.pdf">datetime2-esperanto.pdf</a>.
 </small></li>
 
-<li id="datetime2-estonian"><b><a href="texmf-dist/doc/latex/datetime2-estonian">datetime2-estonian</a></b><small>
+<li id="datetime2-estonian"><b><a href="texmf-dist/doc/latex/datetime2-estonian/">datetime2-estonian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-estonian">CTAN</a>):
-Estonian language module for the datetime2 package
+Estonian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-estonian/datetime2-estonian.pdf">datetime2-estonian.pdf</a>.
 </small></li>
 
-<li id="datetime2-finnish"><b><a href="texmf-dist/doc/latex/datetime2-finnish">datetime2-finnish</a></b><small>
+<li id="datetime2-finnish"><b><a href="texmf-dist/doc/latex/datetime2-finnish/">datetime2-finnish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-finnish">CTAN</a>):
-Finnish language module for the datetime2 package
+Finnish language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-finnish/datetime2-finnish.pdf">datetime2-finnish.pdf</a>.
 </small></li>
 
-<li id="datetime2-french"><b><a href="texmf-dist/doc/latex/datetime2-french">datetime2-french</a></b><small>
+<li id="datetime2-french"><b><a href="texmf-dist/doc/latex/datetime2-french/">datetime2-french</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-french">CTAN</a>):
-French language module for the datetime2 package
+French language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-french/datetime2-french-test-luatex.pdf">datetime2-french-test-luatex.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2-french/datetime2-french-test-pdftex.pdf">datetime2-french-test-pdftex.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2-french/datetime2-french-test-xetex.pdf">datetime2-french-test-xetex.pdf</a>
@@ -5753,87 +5740,87 @@
 <a href="texmf-dist/doc/latex/datetime2-french/datetime2-french.pdf">datetime2-french.pdf</a>.
 </small></li>
 
-<li id="datetime2-galician"><b><a href="texmf-dist/doc/latex/datetime2-galician">datetime2-galician</a></b><small>
+<li id="datetime2-galician"><b><a href="texmf-dist/doc/latex/datetime2-galician/">datetime2-galician</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-galician">CTAN</a>):
-Galician language module for the datetime2 package
+Galician language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-galician/datetime2-galician.pdf">datetime2-galician.pdf</a>.
 </small></li>
 
-<li id="datetime2-german"><b><a href="texmf-dist/doc/latex/datetime2-german">datetime2-german</a></b><small>
+<li id="datetime2-german"><b><a href="texmf-dist/doc/latex/datetime2-german/">datetime2-german</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-german">CTAN</a>):
-German language module for the datetime2 package
+German language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-german/datetime2-german-doc.pdf">datetime2-german-doc.pdf</a>.
 </small></li>
 
-<li id="datetime2-greek"><b><a href="texmf-dist/doc/latex/datetime2-greek">datetime2-greek</a></b><small>
+<li id="datetime2-greek"><b><a href="texmf-dist/doc/latex/datetime2-greek/">datetime2-greek</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-greek">CTAN</a>):
-Greek language module for the datetime2 package
+Greek language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-greek/datetime2-greek.pdf">datetime2-greek.pdf</a>.
 </small></li>
 
-<li id="datetime2-hebrew"><b><a href="texmf-dist/doc/latex/datetime2-hebrew">datetime2-hebrew</a></b><small>
+<li id="datetime2-hebrew"><b><a href="texmf-dist/doc/latex/datetime2-hebrew/">datetime2-hebrew</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-hebrew">CTAN</a>):
-Hebrew language module for the datetime2 package
+Hebrew language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-hebrew/datetime2-hebrew.pdf">datetime2-hebrew.pdf</a>.
 </small></li>
 
-<li id="datetime2-icelandic"><b><a href="texmf-dist/doc/latex/datetime2-icelandic">datetime2-icelandic</a></b><small>
+<li id="datetime2-icelandic"><b><a href="texmf-dist/doc/latex/datetime2-icelandic/">datetime2-icelandic</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-icelandic">CTAN</a>):
-Icelandic language module for the datetime2 package
+Icelandic language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-icelandic/datetime2-icelandic.pdf">datetime2-icelandic.pdf</a>.
 </small></li>
 
-<li id="datetime2-irish"><b><a href="texmf-dist/doc/latex/datetime2-irish">datetime2-irish</a></b><small>
+<li id="datetime2-irish"><b><a href="texmf-dist/doc/latex/datetime2-irish/">datetime2-irish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-irish">CTAN</a>):
-Irish Gaelic Language Module for the datetime2 Package
+Irish Gaelic Language Module for the datetime2 Package. 
 <a href="texmf-dist/doc/latex/datetime2-irish/datetime2-irish.pdf">datetime2-irish.pdf</a>.
 </small></li>
 
-<li id="datetime2-it-fulltext"><b><a href="texmf-dist/doc/latex/datetime2-it-fulltext">datetime2-it-fulltext</a></b><small>
+<li id="datetime2-it-fulltext"><b><a href="texmf-dist/doc/latex/datetime2-it-fulltext/">datetime2-it-fulltext</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-it-fulltext">CTAN</a>):
-Italian full text styles for the datetime2 package
+Italian full text styles for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-it-fulltext/datetime2-it-fulltext.pdf">datetime2-it-fulltext.pdf</a>.
 </small></li>
 
-<li id="datetime2-latin"><b><a href="texmf-dist/doc/latex/datetime2-latin">datetime2-latin</a></b><small>
+<li id="datetime2-latin"><b><a href="texmf-dist/doc/latex/datetime2-latin/">datetime2-latin</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-latin">CTAN</a>):
-Latin language module for the datetime2 package
+Latin language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-latin/datetime2-latin.pdf">datetime2-latin.pdf</a>.
 </small></li>
 
-<li id="datetime2-lsorbian"><b><a href="texmf-dist/doc/latex/datetime2-lsorbian">datetime2-lsorbian</a></b><small>
+<li id="datetime2-lsorbian"><b><a href="texmf-dist/doc/latex/datetime2-lsorbian/">datetime2-lsorbian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-lsorbian">CTAN</a>):
-Lower Sorbian language module for the datetime2 package
+Lower Sorbian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-lsorbian/datetime2-lsorbian.pdf">datetime2-lsorbian.pdf</a>.
 </small></li>
 
-<li id="datetime2-magyar"><b><a href="texmf-dist/doc/latex/datetime2-magyar">datetime2-magyar</a></b><small>
+<li id="datetime2-magyar"><b><a href="texmf-dist/doc/latex/datetime2-magyar/">datetime2-magyar</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-magyar">CTAN</a>):
-Magyar language module for the datetime2 package
+Magyar language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-magyar/datetime2-magyar.pdf">datetime2-magyar.pdf</a>.
 </small></li>
 
-<li id="datetime2-norsk"><b><a href="texmf-dist/doc/latex/datetime2-norsk">datetime2-norsk</a></b><small>
+<li id="datetime2-norsk"><b><a href="texmf-dist/doc/latex/datetime2-norsk/">datetime2-norsk</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-norsk">CTAN</a>):
-Norsk language module for the datetime2 package
+Norsk language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-norsk/datetime2-norsk.pdf">datetime2-norsk.pdf</a>.
 </small></li>
 
-<li id="datetime2-polish"><b><a href="texmf-dist/doc/latex/datetime2-polish">datetime2-polish</a></b><small>
+<li id="datetime2-polish"><b><a href="texmf-dist/doc/latex/datetime2-polish/">datetime2-polish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-polish">CTAN</a>):
-Polish language module for the datetime2 package
+Polish language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-polish/datetime2-polish.pdf">datetime2-polish.pdf</a>.
 </small></li>
 
-<li id="datetime2-portuges"><b><a href="texmf-dist/doc/latex/datetime2-portuges">datetime2-portuges</a></b><small>
+<li id="datetime2-portuges"><b><a href="texmf-dist/doc/latex/datetime2-portuges/">datetime2-portuges</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-portuges">CTAN</a>):
-Portuguese language module for the datetime2 package
+Portuguese language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-portuges/datetime2-portuges.pdf">datetime2-portuges.pdf</a>.
 </small></li>
 
-<li id="datetime2-romanian"><b><a href="texmf-dist/doc/latex/datetime2-romanian">datetime2-romanian</a></b><small>
+<li id="datetime2-romanian"><b><a href="texmf-dist/doc/latex/datetime2-romanian/">datetime2-romanian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-romanian">CTAN</a>):
-Romanian language module for the datetime2 package
+Romanian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-romanian/datetime2-romanian-test-luatex.pdf">datetime2-romanian-test-luatex.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2-romanian/datetime2-romanian-test-pdftex.pdf">datetime2-romanian-test-pdftex.pdf</a>
 <a href="texmf-dist/doc/latex/datetime2-romanian/datetime2-romanian-test-xetex.pdf">datetime2-romanian-test-xetex.pdf</a>
@@ -5840,93 +5827,93 @@
 <a href="texmf-dist/doc/latex/datetime2-romanian/datetime2-romanian.pdf">datetime2-romanian.pdf</a>.
 </small></li>
 
-<li id="datetime2-russian"><b><a href="texmf-dist/doc/latex/datetime2-russian">datetime2-russian</a></b><small>
+<li id="datetime2-russian"><b><a href="texmf-dist/doc/latex/datetime2-russian/">datetime2-russian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-russian">CTAN</a>):
-Russian language module for the datetime2 package
+Russian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-russian/datetime2-russian.pdf">datetime2-russian.pdf</a>.
 </small></li>
 
-<li id="datetime2-samin"><b><a href="texmf-dist/doc/latex/datetime2-samin">datetime2-samin</a></b><small>
+<li id="datetime2-samin"><b><a href="texmf-dist/doc/latex/datetime2-samin/">datetime2-samin</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-samin">CTAN</a>):
-Northern Sami language module for the datetime2 package
+Northern Sami language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-samin/datetime2-samin.pdf">datetime2-samin.pdf</a>.
 </small></li>
 
-<li id="datetime2-scottish"><b><a href="texmf-dist/doc/latex/datetime2-scottish">datetime2-scottish</a></b><small>
+<li id="datetime2-scottish"><b><a href="texmf-dist/doc/latex/datetime2-scottish/">datetime2-scottish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-scottish">CTAN</a>):
-Scottish Gaelic Language Module for the datetime2 Package
+Scottish Gaelic Language Module for the datetime2 Package. 
 <a href="texmf-dist/doc/latex/datetime2-scottish/datetime2-scottish.pdf">datetime2-scottish.pdf</a>.
 </small></li>
 
-<li id="datetime2-serbian"><b><a href="texmf-dist/doc/latex/datetime2-serbian">datetime2-serbian</a></b><small>
+<li id="datetime2-serbian"><b><a href="texmf-dist/doc/latex/datetime2-serbian/">datetime2-serbian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-serbian">CTAN</a>):
-Serbian language module for the datetime2 package
+Serbian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-serbian/datetime2-serbian.pdf">datetime2-serbian.pdf</a>.
 </small></li>
 
-<li id="datetime2-slovak"><b><a href="texmf-dist/doc/latex/datetime2-slovak">datetime2-slovak</a></b><small>
+<li id="datetime2-slovak"><b><a href="texmf-dist/doc/latex/datetime2-slovak/">datetime2-slovak</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-slovak">CTAN</a>):
-Slovak language module for the datetime2 package
+Slovak language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-slovak/datetime2-slovak.pdf">datetime2-slovak.pdf</a>.
 </small></li>
 
-<li id="datetime2-slovene"><b><a href="texmf-dist/doc/latex/datetime2-slovene">datetime2-slovene</a></b><small>
+<li id="datetime2-slovene"><b><a href="texmf-dist/doc/latex/datetime2-slovene/">datetime2-slovene</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-slovene">CTAN</a>):
-Slovene language module for the datetime2 package
+Slovene language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-slovene/datetime2-slovene.pdf">datetime2-slovene.pdf</a>.
 </small></li>
 
-<li id="datetime2-spanish"><b><a href="texmf-dist/doc/latex/datetime2-spanish">datetime2-spanish</a></b><small>
+<li id="datetime2-spanish"><b><a href="texmf-dist/doc/latex/datetime2-spanish/">datetime2-spanish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-spanish">CTAN</a>):
-Spanish language module for the datetime2 package
+Spanish language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-spanish/datetime2-spanish.pdf">datetime2-spanish.pdf</a>.
 </small></li>
 
-<li id="datetime2-swedish"><b><a href="texmf-dist/doc/latex/datetime2-swedish">datetime2-swedish</a></b><small>
+<li id="datetime2-swedish"><b><a href="texmf-dist/doc/latex/datetime2-swedish/">datetime2-swedish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-swedish">CTAN</a>):
-Swedish language module for the datetime2 package
+Swedish language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-swedish/datetime2-swedish.pdf">datetime2-swedish.pdf</a>.
 </small></li>
 
-<li id="datetime2-turkish"><b><a href="texmf-dist/doc/latex/datetime2-turkish">datetime2-turkish</a></b><small>
+<li id="datetime2-turkish"><b><a href="texmf-dist/doc/latex/datetime2-turkish/">datetime2-turkish</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-turkish">CTAN</a>):
-Turkish language module for the datetime2 package
+Turkish language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-turkish/datetime2-turkish.pdf">datetime2-turkish.pdf</a>.
 </small></li>
 
-<li id="datetime2-ukrainian"><b><a href="texmf-dist/doc/latex/datetime2-ukrainian">datetime2-ukrainian</a></b><small>
+<li id="datetime2-ukrainian"><b><a href="texmf-dist/doc/latex/datetime2-ukrainian/">datetime2-ukrainian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-ukrainian">CTAN</a>):
-Ukrainian language module for the datetime2 package
+Ukrainian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-ukrainian/datetime2-ukrainian.pdf">datetime2-ukrainian.pdf</a>.
 </small></li>
 
-<li id="datetime2-usorbian"><b><a href="texmf-dist/doc/latex/datetime2-usorbian">datetime2-usorbian</a></b><small>
+<li id="datetime2-usorbian"><b><a href="texmf-dist/doc/latex/datetime2-usorbian/">datetime2-usorbian</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-usorbian">CTAN</a>):
-Upper Sorbian language module for the datetime2 package
+Upper Sorbian language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-usorbian/datetime2-usorbian.pdf">datetime2-usorbian.pdf</a>.
 </small></li>
 
-<li id="datetime2-welsh"><b><a href="texmf-dist/doc/latex/datetime2-welsh">datetime2-welsh</a></b><small>
+<li id="datetime2-welsh"><b><a href="texmf-dist/doc/latex/datetime2-welsh/">datetime2-welsh</a></b><small>
 (<a href="https://ctan.org/pkg/datetime2-welsh">CTAN</a>):
-Welsh language module for the datetime2 package
+Welsh language module for the datetime2 package. 
 <a href="texmf-dist/doc/latex/datetime2-welsh/datetime2-welsh.pdf">datetime2-welsh.pdf</a>.
 </small></li>
 
-<li id="dblfloatfix"><b><a href="texmf-dist/doc/latex/dblfloatfix">dblfloatfix</a></b><small>
+<li id="dblfloatfix"><b><a href="texmf-dist/doc/latex/dblfloatfix/">dblfloatfix</a></b><small>
 (<a href="https://ctan.org/pkg/dblfloatfix">CTAN</a>):
-Fixes for twocolumn floats
+Fixes for twocolumn floats. 
 <a href="texmf-dist/doc/latex/dblfloatfix/dblfloatfix.pdf">dblfloatfix.pdf</a>.
 </small></li>
 
-<li id="dccpaper"><b><a href="texmf-dist/doc/latex/dccpaper">dccpaper</a></b><small>
+<li id="dccpaper"><b><a href="texmf-dist/doc/latex/dccpaper/">dccpaper</a></b><small>
 (<a href="https://ctan.org/pkg/dccpaper">CTAN</a>):
-Typeset papers for the International Journal of Digital Curation
+Typeset papers for the International Journal of Digital Curation. 
 <a href="texmf-dist/doc/latex/dccpaper/dccpaper.pdf">dccpaper.pdf</a>.
 </small></li>
 
-<li id="dcpic"><b><a href="texmf-dist/doc/generic/dcpic">dcpic</a></b><small>
+<li id="dcpic"><b><a href="texmf-dist/doc/generic/dcpic/">dcpic</a></b><small>
 (<a href="https://ctan.org/pkg/dcpic">CTAN</a>):
-Commutative diagrams in a LaTeX and TeX documents
+Commutative diagrams in a LaTeX and TeX documents. 
 <a href="texmf-dist/doc/generic/dcpic/eurotex2001.pdf">eurotex2001.pdf</a>
 <a href="texmf-dist/doc/generic/dcpic/examples.pdf">examples.pdf</a>
 <a href="texmf-dist/doc/generic/dcpic/manDCPiC.pdf">manDCPiC.pdf</a>
@@ -5933,142 +5920,142 @@
 <a href="texmf-dist/doc/generic/dcpic/manDCPiCpt.pdf">manDCPiCpt.pdf</a> (pt).
 </small></li>
 
-<li id="ddphonism"><b><a href="texmf-dist/doc/latex/ddphonism">ddphonism</a></b><small>
+<li id="ddphonism"><b><a href="texmf-dist/doc/latex/ddphonism/">ddphonism</a></b><small>
 (<a href="https://ctan.org/pkg/ddphonism">CTAN</a>):
-Dodecaphonic diagrams: twelve-tone matrices, clock diagrams, etc.
+Dodecaphonic diagrams: twelve-tone matrices, clock diagrams, etc. 
 <a href="texmf-dist/doc/latex/ddphonism/ddphonism.pdf">ddphonism.pdf</a>.
 </small></li>
 
-<li id="de-macro"><b><a href="texmf-dist/doc/support/de-macro">de-macro</a></b><small>
+<li id="de-macro"><b><a href="texmf-dist/doc/support/de-macro/">de-macro</a></b><small>
 (<a href="https://ctan.org/pkg/de-macro">CTAN</a>):
-Expand private macros in a document
+Expand private macros in a document. 
 <a href="texmf-dist/doc/support/de-macro/user-guide.pdf">user-guide.pdf</a>.
 </small></li>
 
-<li id="decimal"><b><a href="texmf-dist/doc/latex/decimal">decimal</a></b><small>
+<li id="decimal"><b><a href="texmf-dist/doc/latex/decimal/">decimal</a></b><small>
 (<a href="https://ctan.org/pkg/decimal">CTAN</a>):
-LaTeX package for the English raised decimal point
+LaTeX package for the English raised decimal point. 
 <a href="texmf-dist/doc/latex/decimal/decimal.pdf">decimal.pdf</a>.
 </small></li>
 
-<li id="decorule"><b><a href="texmf-dist/doc/latex/decorule">decorule</a></b><small>
+<li id="decorule"><b><a href="texmf-dist/doc/latex/decorule/">decorule</a></b><small>
 (<a href="https://ctan.org/pkg/decorule">CTAN</a>):
-Decorative swelled rule using font character
+Decorative swelled rule using font character. 
 <a href="texmf-dist/doc/latex/decorule/decorule.pdf">decorule.pdf</a>.
 </small></li>
 
-<li id="dehyph-exptl"><b><a href="texmf-dist/doc/generic/dehyph-exptl">dehyph-exptl</a></b><small>
+<li id="dehyph-exptl"><b><a href="texmf-dist/doc/generic/dehyph-exptl/">dehyph-exptl</a></b><small>
 (<a href="https://ctan.org/pkg/dehyph-exptl">CTAN</a>):
-Experimental hyphenation patterns for the German language
+Experimental hyphenation patterns for the German language. 
 <a href="texmf-dist/doc/generic/dehyph-exptl/dehyph-exptl.pdf">dehyph-exptl.pdf</a> (de).
 </small></li>
 
-<li id="dejavu"><b><a href="texmf-dist/doc/fonts/dejavu">dejavu</a></b><small>
+<li id="dejavu"><b><a href="texmf-dist/doc/fonts/dejavu/">dejavu</a></b><small>
 (<a href="https://ctan.org/pkg/dejavu">CTAN</a>):
-LaTeX support for the DejaVu fonts
+LaTeX support for the DejaVu fonts. 
 <a href="texmf-dist/doc/fonts/dejavu/dejavu-sample.pdf">dejavu-sample.pdf</a>
 <a href="texmf-dist/doc/fonts/dejavu/dejavu.pdf">dejavu.pdf</a>.
 </small></li>
 
-<li id="dejavu-otf"><b><a href="texmf-dist/doc/fonts/dejavu-otf">dejavu-otf</a></b><small>
+<li id="dejavu-otf"><b><a href="texmf-dist/doc/fonts/dejavu-otf/">dejavu-otf</a></b><small>
 (<a href="https://ctan.org/pkg/dejavu-otf">CTAN</a>):
-Support for the ttf and otf DejaVu fonts
+Support for the ttf and otf DejaVu fonts. 
 <a href="texmf-dist/doc/fonts/dejavu-otf/dejavu-otf-doc.pdf">dejavu-otf-doc.pdf</a>.
 </small></li>
 
-<li id="delim"><b><a href="texmf-dist/doc/latex/delim">delim</a></b><small>
+<li id="delim"><b><a href="texmf-dist/doc/latex/delim/">delim</a></b><small>
 (<a href="https://ctan.org/pkg/delim">CTAN</a>):
-Simplify typesetting mathematical delimiters
+Simplify typesetting mathematical delimiters. 
 <a href="texmf-dist/doc/latex/delim/delim.pdf">delim.pdf</a>.
 </small></li>
 
-<li id="delimseasy"><b><a href="texmf-dist/doc/latex/delimseasy">delimseasy</a></b><small>
+<li id="delimseasy"><b><a href="texmf-dist/doc/latex/delimseasy/">delimseasy</a></b><small>
 (<a href="https://ctan.org/pkg/delimseasy">CTAN</a>):
-Delimiter commands that are easy to use and resize
+Delimiter commands that are easy to use and resize. 
 <a href="texmf-dist/doc/latex/delimseasy/delimseasyMan.pdf">delimseasyMan.pdf</a>.
 </small></li>
 
-<li id="delimset"><b><a href="texmf-dist/doc/latex/delimset">delimset</a></b><small>
+<li id="delimset"><b><a href="texmf-dist/doc/latex/delimset/">delimset</a></b><small>
 (<a href="https://ctan.org/pkg/delimset">CTAN</a>):
-Typeset and declare sets of delimiters with convenient size control
+Typeset and declare sets of delimiters with convenient size control. 
 <a href="texmf-dist/doc/latex/delimset/delimset.pdf">delimset.pdf</a>.
 </small></li>
 
-<li id="delimtxt"><b><a href="texmf-dist/doc/latex/delimtxt">delimtxt</a></b><small>
+<li id="delimtxt"><b><a href="texmf-dist/doc/latex/delimtxt/">delimtxt</a></b><small>
 (<a href="https://ctan.org/pkg/delimtxt">CTAN</a>):
-Read and parse text tables
+Read and parse text tables. 
 <a href="texmf-dist/doc/latex/delimtxt/delimtxt.pdf">delimtxt.pdf</a>.
 </small></li>
 
-<li id="derivative"><b><a href="texmf-dist/doc/latex/derivative">derivative</a></b><small>
+<li id="derivative"><b><a href="texmf-dist/doc/latex/derivative/">derivative</a></b><small>
 (<a href="https://ctan.org/pkg/derivative">CTAN</a>):
-Nice and easy derivatives
+Nice and easy derivatives. 
 <a href="texmf-dist/doc/latex/derivative/derivative.pdf">derivative.pdf</a>.
 </small></li>
 
-<li id="detex"><b><a href="texmf-dist/doc/man/man1">detex</a></b><small>
+<li id="detex"><b><a href="texmf-dist/doc/man/man1/">detex</a></b><small>
 (<a href="https://ctan.org/pkg/detex">CTAN</a>):
-Strip TeX from a source file
+Strip TeX from a source file. 
 <a href="texmf-dist/doc/man/man1/detex.man1.pdf">detex.man1.pdf</a>.
 </small></li>
 
-<li id="dhua"><b><a href="texmf-dist/doc/latex/dhua">dhua</a></b><small>
+<li id="dhua"><b><a href="texmf-dist/doc/latex/dhua/">dhua</a></b><small>
 (<a href="https://ctan.org/pkg/dhua">CTAN</a>):
-German abbreviations using thin space
+German abbreviations using thin space. 
 <a href="texmf-dist/doc/latex/dhua/README.pdf">README.pdf</a>
 <a href="texmf-dist/doc/latex/dhua/dhua.pdf">dhua.pdf</a>.
 </small></li>
 
-<li id="diabetes-logbook"><b><a href="texmf-dist/doc/latex/diabetes-logbook">diabetes-logbook</a></b><small>
+<li id="diabetes-logbook"><b><a href="texmf-dist/doc/latex/diabetes-logbook/">diabetes-logbook</a></b><small>
 (<a href="https://ctan.org/pkg/diabetes-logbook">CTAN</a>):
-A logbook for people with type one diabetes
+A logbook for people with type one diabetes. 
 <a href="texmf-dist/doc/latex/diabetes-logbook/dmlb-template.pdf">dmlb-template.pdf</a>
 <a href="texmf-dist/doc/latex/diabetes-logbook/dmlb-templateGRAY.pdf">dmlb-templateGRAY.pdf</a>.
 </small></li>
 
-<li id="diadia"><b><a href="texmf-dist/doc/latex/diadia">diadia</a></b><small>
+<li id="diadia"><b><a href="texmf-dist/doc/latex/diadia/">diadia</a></b><small>
 (<a href="https://ctan.org/pkg/diadia">CTAN</a>):
-Package to keep a diabetes diary
+Package to keep a diabetes diary. 
 <a href="texmf-dist/doc/latex/diadia/diadia-example.pdf">diadia-example.pdf</a>
 <a href="texmf-dist/doc/latex/diadia/diadia.pdf">diadia.pdf</a>.
 </small></li>
 
-<li id="diagbox"><b><a href="texmf-dist/doc/latex/diagbox">diagbox</a></b><small>
+<li id="diagbox"><b><a href="texmf-dist/doc/latex/diagbox/">diagbox</a></b><small>
 (<a href="https://ctan.org/pkg/diagbox">CTAN</a>):
-Table heads with diagonal lines
+Table heads with diagonal lines. 
 <a href="texmf-dist/doc/latex/diagbox/diagbox.pdf">diagbox.pdf</a>.
 </small></li>
 
-<li id="diagmac2"><b><a href="texmf-dist/doc/latex/diagmac2/doc">diagmac2</a></b><small>
+<li id="diagmac2"><b><a href="texmf-dist/doc/latex/diagmac2/">diagmac2</a></b><small>
 (<a href="https://ctan.org/pkg/diagmac2">CTAN</a>):
-Diagram macros, using pict2e
+Diagram macros, using pict2e. 
 <a href="texmf-dist/doc/latex/diagmac2/doc/diagmac2.pdf">diagmac2.pdf</a>
 <a href="texmf-dist/doc/latex/diagmac2/doc/diagmactest.pdf">diagmactest.pdf</a>.
 </small></li>
 
-<li id="diagnose"><b><a href="texmf-dist/doc/latex/diagnose">diagnose</a></b><small>
+<li id="diagnose"><b><a href="texmf-dist/doc/latex/diagnose/">diagnose</a></b><small>
 (<a href="https://ctan.org/pkg/diagnose">CTAN</a>):
-A diagnostic tool for a TeX installation
+A diagnostic tool for a TeX installation. 
 <a href="texmf-dist/doc/latex/diagnose/diagnose.pdf">diagnose.pdf</a>.
 </small></li>
 
-<li id="dialogl"><b><a href="texmf-dist/doc/latex/dialogl">dialogl</a></b><small>
+<li id="dialogl"><b><a href="texmf-dist/doc/latex/dialogl/">dialogl</a></b><small>
 (<a href="https://ctan.org/pkg/dialogl">CTAN</a>):
-Macros for constructing interactive LaTeX scripts
+Macros for constructing interactive LaTeX scripts. 
 <a href="texmf-dist/doc/latex/dialogl/codialog.pdf">codialog.pdf</a>
 <a href="texmf-dist/doc/latex/dialogl/dia-driv.pdf">dia-driv.pdf</a>.
 </small></li>
 
-<li id="dichokey"><b><a href="texmf-dist/doc/latex/dichokey">dichokey</a></b><small>
+<li id="dichokey"><b><a href="texmf-dist/doc/latex/dichokey/">dichokey</a></b><small>
 (<a href="https://ctan.org/pkg/dichokey">CTAN</a>):
-Construct dichotomous identification keys
+Construct dichotomous identification keys. 
 <a href="texmf-dist/doc/latex/dichokey/dichokey.pdf">dichokey.pdf</a>
 <a href="texmf-dist/doc/latex/dichokey/rhodocyb.pdf">rhodocyb.pdf</a>.
 </small></li>
 
-<li id="dickimaw"><b><a href="texmf-dist/doc/latex/dickimaw">dickimaw</a></b><small>
+<li id="dickimaw"><b><a href="texmf-dist/doc/latex/dickimaw/">dickimaw</a></b><small>
 (<a href="https://ctan.org/pkg/dickimaw">CTAN</a>):
-Books and tutorials from the "Dickimaw LaTeX Series"
+Books and tutorials from the "Dickimaw LaTeX Series". 
 <a href="texmf-dist/doc/latex/dickimaw/dickimaw-minexample.pdf">dickimaw-minexample.pdf</a>
 <a href="texmf-dist/doc/latex/dickimaw/dickimaw-novices.pdf">dickimaw-novices.pdf</a>
 <a href="texmf-dist/doc/latex/dickimaw/dickimaw-thesis.pdf">dickimaw-thesis.pdf</a>
@@ -6078,89 +6065,89 @@
 <a href="texmf-dist/doc/latex/dickimaw/src/thesis/pictures/titlepage.pdf">titlepage.pdf</a>.
 </small></li>
 
-<li id="dictsym"><b><a href="texmf-dist/doc/fonts/dictsym">dictsym</a></b><small>
+<li id="dictsym"><b><a href="texmf-dist/doc/fonts/dictsym/">dictsym</a></b><small>
 (<a href="https://ctan.org/pkg/dictsym">CTAN</a>):
-DictSym font and macro package
+DictSym font and macro package. 
 <a href="texmf-dist/doc/fonts/dictsym/dictsym.pdf">dictsym.pdf</a>.
 </small></li>
 
-<li id="diffcoeff"><b><a href="texmf-dist/doc/latex/diffcoeff">diffcoeff</a></b><small>
+<li id="diffcoeff"><b><a href="texmf-dist/doc/latex/diffcoeff/">diffcoeff</a></b><small>
 (<a href="https://ctan.org/pkg/diffcoeff">CTAN</a>):
-Write differential coefficients easily and consistently
+Write differential coefficients easily and consistently. 
 <a href="texmf-dist/doc/latex/diffcoeff/diffcoeff.pdf">diffcoeff.pdf</a>.
 </small></li>
 
-<li id="digiconfigs"><b><a href="texmf-dist/doc/latex/digiconfigs">digiconfigs</a></b><small>
+<li id="digiconfigs"><b><a href="texmf-dist/doc/latex/digiconfigs/">digiconfigs</a></b><small>
 (<a href="https://ctan.org/pkg/digiconfigs">CTAN</a>):
-Writing "configurations"
+Writing "configurations". 
 <a href="texmf-dist/doc/latex/digiconfigs/digiconfigs.pdf">digiconfigs.pdf</a>.
 </small></li>
 
-<li id="dijkstra"><b><a href="texmf-dist/doc/latex/dijkstra">dijkstra</a></b><small>
+<li id="dijkstra"><b><a href="texmf-dist/doc/latex/dijkstra/">dijkstra</a></b><small>
 (<a href="https://ctan.org/pkg/dijkstra">CTAN</a>):
-Dijkstra algorithm for LaTeX
+Dijkstra algorithm for LaTeX. 
 <a href="texmf-dist/doc/latex/dijkstra/dijkstra-fr.pdf">dijkstra-fr.pdf</a> (fr).
 </small></li>
 
-<li id="dinat"><b><a href="texmf-dist/doc/bibtex/dinat">dinat</a></b><small>
+<li id="dinat"><b><a href="texmf-dist/doc/bibtex/dinat/">dinat</a></b><small>
 (<a href="https://ctan.org/pkg/dinat">CTAN</a>):
-Bibliography style for German texts
+Bibliography style for German texts. 
 <a href="texmf-dist/doc/bibtex/dinat/dinat-index.html">dinat-index.html</a> (de) 
 <a href="texmf-dist/doc/bibtex/dinat/history.html">history.html</a>.
 </small></li>
 
-<li id="dinbrief"><b><a href="texmf-dist/doc/latex/dinbrief">dinbrief</a></b><small>
+<li id="dinbrief"><b><a href="texmf-dist/doc/latex/dinbrief/">dinbrief</a></b><small>
 (<a href="https://ctan.org/pkg/dinbrief">CTAN</a>):
-German letter DIN style
+German letter DIN style. 
 <a href="texmf-dist/doc/latex/dinbrief/dinbrief.pdf">dinbrief.pdf</a>.
 </small></li>
 
-<li id="dingbat"><b><a href="texmf-dist/doc/fonts/dingbat">dingbat</a></b><small>
+<li id="dingbat"><b><a href="texmf-dist/doc/fonts/dingbat/">dingbat</a></b><small>
 (<a href="https://ctan.org/pkg/dingbat">CTAN</a>):
-Two dingbat symbol fonts
+Two dingbat symbol fonts. 
 <a href="texmf-dist/doc/fonts/dingbat/dingbat.pdf">dingbat.pdf</a>.
 </small></li>
 
-<li id="directory"><b><a href="texmf-dist/doc/latex/directory">directory</a></b><small>
+<li id="directory"><b><a href="texmf-dist/doc/latex/directory/">directory</a></b><small>
 (<a href="https://ctan.org/pkg/directory">CTAN</a>):
-An address book using BibTeX
+An address book using BibTeX. 
 <a href="texmf-dist/doc/latex/directory/directory.pdf">directory.pdf</a>.
 </small></li>
 
-<li id="dirtree"><b><a href="texmf-dist/doc/generic/dirtree">dirtree</a></b><small>
+<li id="dirtree"><b><a href="texmf-dist/doc/generic/dirtree/">dirtree</a></b><small>
 (<a href="https://ctan.org/pkg/dirtree">CTAN</a>):
-Display trees in the style of windows explorer
+Display trees in the style of windows explorer. 
 <a href="texmf-dist/doc/generic/dirtree/dirtree.pdf">dirtree.pdf</a>.
 </small></li>
 
-<li id="dirtytalk"><b><a href="texmf-dist/doc/latex/dirtytalk">dirtytalk</a></b><small>
+<li id="dirtytalk"><b><a href="texmf-dist/doc/latex/dirtytalk/">dirtytalk</a></b><small>
 (<a href="https://ctan.org/pkg/dirtytalk">CTAN</a>):
-A package to typeset quotations easier
+A package to typeset quotations easier. 
 <a href="texmf-dist/doc/latex/dirtytalk/dirtytalk.pdf">dirtytalk.pdf</a>.
 </small></li>
 
-<li id="ditaa"><b><a href="texmf-dist/doc/latex/ditaa">ditaa</a></b><small>
+<li id="ditaa"><b><a href="texmf-dist/doc/latex/ditaa/">ditaa</a></b><small>
 (<a href="https://ctan.org/pkg/ditaa">CTAN</a>):
-Use ditaa diagrams within LaTeX documents
+Use ditaa diagrams within LaTeX documents. 
 <a href="texmf-dist/doc/latex/ditaa/ditaa.pdf">ditaa.pdf</a>.
 </small></li>
 
-<li id="dithesis"><b><a href="texmf-dist/doc/latex/dithesis">dithesis</a></b><small>
+<li id="dithesis"><b><a href="texmf-dist/doc/latex/dithesis/">dithesis</a></b><small>
 (<a href="https://ctan.org/pkg/dithesis">CTAN</a>):
-A class for undergraduate theses at the University of Athens
+A class for undergraduate theses at the University of Athens. 
 <a href="texmf-dist/doc/latex/dithesis/sample.pdf">sample.pdf</a>
 <a href="texmf-dist/doc/latex/dithesis/sampleNoArial.pdf">sampleNoArial.pdf</a>.
 </small></li>
 
-<li id="dk-bib"><b><a href="texmf-dist/doc/latex/dk-bib">dk-bib</a></b><small>
+<li id="dk-bib"><b><a href="texmf-dist/doc/latex/dk-bib/">dk-bib</a></b><small>
 (<a href="https://ctan.org/pkg/dk-bib">CTAN</a>):
-Danish variants of standard BibTeX styles
+Danish variants of standard BibTeX styles. 
 <a href="texmf-dist/doc/latex/dk-bib/dk-bib.pdf">dk-bib.pdf</a>.
 </small></li>
 
-<li id="dlfltxb"><b><a href="texmf-dist/doc/latex/dlfltxb">dlfltxb</a></b><small>
+<li id="dlfltxb"><b><a href="texmf-dist/doc/latex/dlfltxb/">dlfltxb</a></b><small>
 (<a href="https://ctan.org/pkg/dlfltxb">CTAN</a>):
-Macros related to "Introdktion til LaTeX"
+Macros related to "Introdktion til LaTeX". 
 <a href="texmf-dist/doc/latex/dlfltxb/dlfltxbcodetips.pdf">dlfltxbcodetips.pdf</a>
 <a href="texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.pdf">dlfltxbmarkup-showkeys.pdf</a>
 <a href="texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup.pdf">dlfltxbmarkup.pdf</a>
@@ -6168,80 +6155,80 @@
 <a href="texmf-dist/doc/latex/dlfltxb/dlfltxbtocconfig.pdf">dlfltxbtocconfig.pdf</a>.
 </small></li>
 
-<li id="dnaseq"><b><a href="texmf-dist/doc/latex/dnaseq">dnaseq</a></b><small>
+<li id="dnaseq"><b><a href="texmf-dist/doc/latex/dnaseq/">dnaseq</a></b><small>
 (<a href="https://ctan.org/pkg/dnaseq">CTAN</a>):
-Format DNA base sequences
+Format DNA base sequences. 
 <a href="texmf-dist/doc/latex/dnaseq/dnaseq.pdf">dnaseq.pdf</a>.
 </small></li>
 
-<li id="docbytex"><b><a href="texmf-dist/doc/generic/docbytex">docbytex</a></b><small>
+<li id="docbytex"><b><a href="texmf-dist/doc/generic/docbytex/">docbytex</a></b><small>
 (<a href="https://ctan.org/pkg/docbytex">CTAN</a>):
-Creating documentation from source code
+Creating documentation from source code. 
 <a href="texmf-dist/doc/generic/docbytex/docby-e.pdf">docby-e.pdf</a>
 <a href="texmf-dist/doc/generic/docbytex/docby.pdf">docby.pdf</a> (cs) 
 <a href="texmf-dist/doc/generic/docbytex/lup.pdf">lup.pdf</a>.
 </small></li>
 
-<li id="doclicense"><b><a href="texmf-dist/doc/latex/doclicense">doclicense</a></b><small>
+<li id="doclicense"><b><a href="texmf-dist/doc/latex/doclicense/">doclicense</a></b><small>
 (<a href="https://ctan.org/pkg/doclicense">CTAN</a>):
-Support for putting documents under a license
+Support for putting documents under a license. 
 <a href="texmf-dist/doc/latex/doclicense/doclicense.pdf">doclicense.pdf</a>.
 </small></li>
 
-<li id="docmfp"><b><a href="texmf-dist/doc/latex/docmfp">docmfp</a></b><small>
+<li id="docmfp"><b><a href="texmf-dist/doc/latex/docmfp/">docmfp</a></b><small>
 (<a href="https://ctan.org/pkg/docmfp">CTAN</a>):
-Document non-LaTeX code
+Document non-LaTeX code. 
 <a href="texmf-dist/doc/latex/docmfp/docmfp.pdf">docmfp.pdf</a>.
 </small></li>
 
-<li id="docmute"><b><a href="texmf-dist/doc/latex/docmute">docmute</a></b><small>
+<li id="docmute"><b><a href="texmf-dist/doc/latex/docmute/">docmute</a></b><small>
 (<a href="https://ctan.org/pkg/docmute">CTAN</a>):
-Input files ignoring LaTeX preamble, etc
+Input files ignoring LaTeX preamble, etc. 
 <a href="texmf-dist/doc/latex/docmute/docmute.pdf">docmute.pdf</a>.
 </small></li>
 
-<li id="docsurvey"><b><a href="texmf-dist/doc/latex/docsurvey">docsurvey</a></b><small>
+<li id="docsurvey"><b><a href="texmf-dist/doc/latex/docsurvey/">docsurvey</a></b><small>
 (<a href="https://ctan.org/pkg/docsurvey">CTAN</a>):
-A survey of LaTeX documentation
+A survey of LaTeX documentation. 
 <a href="texmf-dist/doc/latex/docsurvey/docsurvey.pdf">docsurvey.pdf</a>.
 </small></li>
 
-<li id="doctools"><b><a href="texmf-dist/doc/latex/doctools">doctools</a></b><small>
+<li id="doctools"><b><a href="texmf-dist/doc/latex/doctools/">doctools</a></b><small>
 (<a href="https://ctan.org/pkg/doctools">CTAN</a>):
-Tools for the documentation of LaTeX code
+Tools for the documentation of LaTeX code. 
 <a href="texmf-dist/doc/latex/doctools/doctools.pdf">doctools.pdf</a>.
 </small></li>
 
-<li id="documentation"><b><a href="texmf-dist/doc/latex/documentation">documentation</a></b><small>
+<li id="documentation"><b><a href="texmf-dist/doc/latex/documentation/">documentation</a></b><small>
 (<a href="https://ctan.org/pkg/documentation">CTAN</a>):
-Documentation support for C, Java and assembler code
+Documentation support for C, Java and assembler code. 
 <a href="texmf-dist/doc/latex/documentation/documentation.pdf">documentation.pdf</a>.
 </small></li>
 
-<li id="doipubmed"><b><a href="texmf-dist/doc/latex/doipubmed">doipubmed</a></b><small>
+<li id="doipubmed"><b><a href="texmf-dist/doc/latex/doipubmed/">doipubmed</a></b><small>
 (<a href="https://ctan.org/pkg/doipubmed">CTAN</a>):
-Special commands for use in bibliographies
+Special commands for use in bibliographies. 
 <a href="texmf-dist/doc/latex/doipubmed/doipubmed-manual.html">doipubmed-manual.html</a>
 <a href="texmf-dist/doc/latex/doipubmed/doipubmed.pdf">doipubmed.pdf</a>.
 </small></li>
 
-<li id="domitian"><b><a href="texmf-dist/doc/fonts/domitian">domitian</a></b><small>
+<li id="domitian"><b><a href="texmf-dist/doc/fonts/domitian/">domitian</a></b><small>
 (<a href="https://ctan.org/pkg/domitian">CTAN</a>):
-Drop-in replacement for Palatino
+Drop-in replacement for Palatino. 
 <a href="texmf-dist/doc/fonts/domitian/domitian-doc.pdf">domitian-doc.pdf</a>.
 </small></li>
 
-<li id="dosepsbin"><b><a href="texmf-dist/doc/man/man1">dosepsbin</a></b><small>
+<li id="dosepsbin"><b><a href="texmf-dist/doc/support/dosepsbin/">dosepsbin</a></b><small>
 (<a href="https://ctan.org/pkg/dosepsbin">CTAN</a>):
-Deal with DOS binary EPS files
+Deal with DOS binary EPS files. 
 <a href="texmf-dist/doc/man/man1/dosepsbin.man1.pdf">dosepsbin.man1.pdf</a>
 <a href="texmf-dist/doc/support/dosepsbin/dosepsbin.html">dosepsbin.html</a>
 <a href="texmf-dist/doc/support/dosepsbin/dosepsbin.pdf">dosepsbin.pdf</a>.
 </small></li>
 
-<li id="dot2texi"><b><a href="texmf-dist/doc/latex/dot2texi">dot2texi</a></b><small>
+<li id="dot2texi"><b><a href="texmf-dist/doc/latex/dot2texi/">dot2texi</a></b><small>
 (<a href="https://ctan.org/pkg/dot2texi">CTAN</a>):
-Create graphs within LaTeX using the dot2tex tool
+Create graphs within LaTeX using the dot2tex tool. 
 <a href="texmf-dist/doc/latex/dot2texi/dot2texi.pdf">dot2texi.pdf</a>
 <a href="texmf-dist/doc/latex/dot2texi/examples/d2tpstexamples.pdf">d2tpstexamples.pdf</a>
 <a href="texmf-dist/doc/latex/dot2texi/examples/d2ttikzexamples.pdf">d2ttikzexamples.pdf</a>
@@ -6249,119 +6236,119 @@
 <a href="texmf-dist/doc/latex/dot2texi/examples/docgraphsorig.pdf">docgraphsorig.pdf</a>.
 </small></li>
 
-<li id="dotarrow"><b><a href="texmf-dist/doc/latex/dotarrow">dotarrow</a></b><small>
+<li id="dotarrow"><b><a href="texmf-dist/doc/latex/dotarrow/">dotarrow</a></b><small>
 (<a href="https://ctan.org/pkg/dotarrow">CTAN</a>):
-Extendable dotted arrows
+Extendable dotted arrows. 
 <a href="texmf-dist/doc/latex/dotarrow/DotArrow.pdf">DotArrow.pdf</a>.
 </small></li>
 
-<li id="dotseqn"><b><a href="texmf-dist/doc/latex/dotseqn">dotseqn</a></b><small>
+<li id="dotseqn"><b><a href="texmf-dist/doc/latex/dotseqn/">dotseqn</a></b><small>
 (<a href="https://ctan.org/pkg/dotseqn">CTAN</a>):
-Flush left equations with dotted leaders to the numbers
+Flush left equations with dotted leaders to the numbers. 
 <a href="texmf-dist/doc/latex/dotseqn/dotseqn.pdf">dotseqn.pdf</a>.
 </small></li>
 
-<li id="dottex"><b><a href="texmf-dist/doc/latex/dottex">dottex</a></b><small>
+<li id="dottex"><b><a href="texmf-dist/doc/latex/dottex/">dottex</a></b><small>
 (<a href="https://ctan.org/pkg/dottex">CTAN</a>):
-Use dot code in LaTeX
+Use dot code in LaTeX. 
 <a href="texmf-dist/doc/latex/dottex/dottex.pdf">dottex.pdf</a>.
 </small></li>
 
-<li id="doublestroke"><b><a href="texmf-dist/doc/fonts/doublestroke">doublestroke</a></b><small>
+<li id="doublestroke"><b><a href="texmf-dist/doc/fonts/doublestroke/">doublestroke</a></b><small>
 (<a href="https://ctan.org/pkg/doublestroke">CTAN</a>):
-Typeset mathematical double stroke symbols
+Typeset mathematical double stroke symbols. 
 <a href="texmf-dist/doc/fonts/doublestroke/dsdoc.pdf">dsdoc.pdf</a>.
 </small></li>
 
-<li id="dowith"><b><a href="texmf-dist/doc/generic/dowith">dowith</a></b><small>
+<li id="dowith"><b><a href="texmf-dist/doc/generic/dowith/">dowith</a></b><small>
 (<a href="https://ctan.org/pkg/dowith">CTAN</a>):
-Apply a command to a list of items
+Apply a command to a list of items. 
 <a href="texmf-dist/doc/generic/dowith/domore.pdf">domore.pdf</a>
 <a href="texmf-dist/doc/generic/dowith/dowith.pdf">dowith.pdf</a>.
 </small></li>
 
-<li id="download"><b><a href="texmf-dist/doc/latex/download">download</a></b><small>
+<li id="download"><b><a href="texmf-dist/doc/latex/download/">download</a></b><small>
 (<a href="https://ctan.org/pkg/download">CTAN</a>):
-Allow LaTeX to download files using an external process
+Allow LaTeX to download files using an external process. 
 <a href="texmf-dist/doc/latex/download/download.pdf">download.pdf</a>.
 </small></li>
 
-<li id="dox"><b><a href="texmf-dist/doc/latex/dox">dox</a></b><small>
+<li id="dox"><b><a href="texmf-dist/doc/latex/dox/">dox</a></b><small>
 (<a href="https://ctan.org/pkg/dox">CTAN</a>):
-Extend the doc package
+Extend the doc package. 
 <a href="texmf-dist/doc/latex/dox/dox.pdf">dox.pdf</a>.
 </small></li>
 
-<li id="dozenal"><b><a href="texmf-dist/doc/fonts/dozenal">dozenal</a></b><small>
+<li id="dozenal"><b><a href="texmf-dist/doc/fonts/dozenal/">dozenal</a></b><small>
 (<a href="https://ctan.org/pkg/dozenal">CTAN</a>):
-Typeset documents using base twelve numbering (also called "dozenal")
+Typeset documents using base twelve numbering (also called "dozenal"). 
 <a href="texmf-dist/doc/fonts/dozenal/dozenal.pdf">dozenal.pdf</a>.
 </small></li>
 
-<li id="dpcircling"><b><a href="texmf-dist/doc/latex/dpcircling">dpcircling</a></b><small>
+<li id="dpcircling"><b><a href="texmf-dist/doc/latex/dpcircling/">dpcircling</a></b><small>
 (<a href="https://ctan.org/pkg/dpcircling">CTAN</a>):
-Decorated text boxes using TikZ
+Decorated text boxes using TikZ. 
 <a href="texmf-dist/doc/latex/dpcircling/DPcircling.pdf">DPcircling.pdf</a>.
 </small></li>
 
-<li id="dpfloat"><b><a href="texmf-dist/doc/latex/dpfloat">dpfloat</a></b><small>
+<li id="dpfloat"><b><a href="texmf-dist/doc/latex/dpfloat/">dpfloat</a></b><small>
 (<a href="https://ctan.org/pkg/dpfloat">CTAN</a>):
-Support for double-page floats
+Support for double-page floats. 
 <a href="texmf-dist/doc/latex/dpfloat/dpfloat.pdf">dpfloat.pdf</a>.
 </small></li>
 
-<li id="dprogress"><b><a href="texmf-dist/doc/latex/dprogress">dprogress</a></b><small>
+<li id="dprogress"><b><a href="texmf-dist/doc/latex/dprogress/">dprogress</a></b><small>
 (<a href="https://ctan.org/pkg/dprogress">CTAN</a>):
-LaTeX-relevant log information for debugging
+LaTeX-relevant log information for debugging. 
 <a href="texmf-dist/doc/latex/dprogress/dprogress.pdf">dprogress.pdf</a>.
 </small></li>
 
-<li id="drac"><b><a href="texmf-dist/doc/latex/drac">drac</a></b><small>
+<li id="drac"><b><a href="texmf-dist/doc/latex/drac/">drac</a></b><small>
 (<a href="https://ctan.org/pkg/drac">CTAN</a>):
-Declare active character substitution, robustly
+Declare active character substitution, robustly. 
 <a href="texmf-dist/doc/latex/drac/drac-fr.pdf">drac-fr.pdf</a> (fr) 
 <a href="texmf-dist/doc/latex/drac/drac.pdf">drac.pdf</a>.
 </small></li>
 
-<li id="draftcopy"><b><a href="texmf-dist/doc/latex/draftcopy">draftcopy</a></b><small>
+<li id="draftcopy"><b><a href="texmf-dist/doc/latex/draftcopy/">draftcopy</a></b><small>
 (<a href="https://ctan.org/pkg/draftcopy">CTAN</a>):
-Identify draft copies
+Identify draft copies. 
 <a href="texmf-dist/doc/latex/draftcopy/draftcopy.pdf">draftcopy.pdf</a>.
 </small></li>
 
-<li id="draftfigure"><b><a href="texmf-dist/doc/latex/draftfigure">draftfigure</a></b><small>
+<li id="draftfigure"><b><a href="texmf-dist/doc/latex/draftfigure/">draftfigure</a></b><small>
 (<a href="https://ctan.org/pkg/draftfigure">CTAN</a>):
-Replace figures with a white box and additional features
+Replace figures with a white box and additional features. 
 <a href="texmf-dist/doc/latex/draftfigure/draftfigure.pdf">draftfigure.pdf</a>.
 </small></li>
 
-<li id="draftwatermark"><b><a href="texmf-dist/doc/latex/draftwatermark">draftwatermark</a></b><small>
+<li id="draftwatermark"><b><a href="texmf-dist/doc/latex/draftwatermark/">draftwatermark</a></b><small>
 (<a href="https://ctan.org/pkg/draftwatermark">CTAN</a>):
-Put a grey textual watermark on document pages
+Put a grey textual watermark on document pages. 
 <a href="texmf-dist/doc/latex/draftwatermark/draftwatermark.pdf">draftwatermark.pdf</a>.
 </small></li>
 
-<li id="dramatist"><b><a href="texmf-dist/doc/latex/dramatist">dramatist</a></b><small>
+<li id="dramatist"><b><a href="texmf-dist/doc/latex/dramatist/">dramatist</a></b><small>
 (<a href="https://ctan.org/pkg/dramatist">CTAN</a>):
-Typeset dramas, both in verse and in prose
+Typeset dramas, both in verse and in prose. 
 <a href="texmf-dist/doc/latex/dramatist/dramatist.pdf">dramatist.pdf</a>.
 </small></li>
 
-<li id="drawmatrix"><b><a href="texmf-dist/doc/latex/drawmatrix">drawmatrix</a></b><small>
+<li id="drawmatrix"><b><a href="texmf-dist/doc/latex/drawmatrix/">drawmatrix</a></b><small>
 (<a href="https://ctan.org/pkg/drawmatrix">CTAN</a>):
-Draw visual representations of matrices in LaTeX
+Draw visual representations of matrices in LaTeX. 
 <a href="texmf-dist/doc/latex/drawmatrix/drawmatrix.pdf">drawmatrix.pdf</a>.
 </small></li>
 
-<li id="drawstack"><b><a href="texmf-dist/doc/latex/drawstack">drawstack</a></b><small>
+<li id="drawstack"><b><a href="texmf-dist/doc/latex/drawstack/">drawstack</a></b><small>
 (<a href="https://ctan.org/pkg/drawstack">CTAN</a>):
-Draw execution stacks
+Draw execution stacks. 
 <a href="texmf-dist/doc/latex/drawstack/stack-example.pdf">stack-example.pdf</a>.
 </small></li>
 
-<li id="drm"><b><a href="texmf-dist/doc/fonts/drm">drm</a></b><small>
+<li id="drm"><b><a href="texmf-dist/doc/fonts/drm/">drm</a></b><small>
 (<a href="https://ctan.org/pkg/drm">CTAN</a>):
-A complete family of fonts written in Metafont
+A complete family of fonts written in Metafont. 
 <a href="texmf-dist/doc/fonts/drm/drm.pdf">drm.pdf</a>
 <a href="texmf-dist/doc/fonts/drm/drm_font_tables.pdf">drm_font_tables.pdf</a>
 <a href="texmf-dist/doc/fonts/drm/small_specimen.pdf">small_specimen.pdf</a>
@@ -6368,65 +6355,65 @@
 <a href="texmf-dist/doc/fonts/drm/specimen.pdf">specimen.pdf</a>.
 </small></li>
 
-<li id="droid"><b><a href="texmf-dist/doc/fonts/droid">droid</a></b><small>
+<li id="droid"><b><a href="texmf-dist/doc/fonts/droid/">droid</a></b><small>
 (<a href="https://ctan.org/pkg/droid">CTAN</a>):
-LaTeX support for the Droid font families
+LaTeX support for the Droid font families. 
 <a href="texmf-dist/doc/fonts/droid/droid-samples.pdf">droid-samples.pdf</a>
 <a href="texmf-dist/doc/fonts/droid/droid.pdf">droid.pdf</a>.
 </small></li>
 
-<li id="droit-fr"><b><a href="texmf-dist/doc/latex/droit-fr">droit-fr</a></b><small>
+<li id="droit-fr"><b><a href="texmf-dist/doc/latex/droit-fr/">droit-fr</a></b><small>
 (<a href="https://ctan.org/pkg/droit-fr">CTAN</a>):
-Document class and bibliographic style for French law
+Document class and bibliographic style for French law. 
 <a href="texmf-dist/doc/latex/droit-fr/droit-fr.pdf">droit-fr.pdf</a> (fr).
 </small></li>
 
-<li id="drs"><b><a href="texmf-dist/doc/latex/drs">drs</a></b><small>
+<li id="drs"><b><a href="texmf-dist/doc/latex/drs/">drs</a></b><small>
 (<a href="https://ctan.org/pkg/drs">CTAN</a>):
-Typeset Discourse Representation Structures (DRS)
+Typeset Discourse Representation Structures (DRS). 
 <a href="texmf-dist/doc/latex/drs/drsdoc.pdf">drsdoc.pdf</a>.
 </small></li>
 
-<li id="drv"><b><a href="texmf-dist/doc/metapost/drv">drv</a></b><small>
+<li id="drv"><b><a href="texmf-dist/doc/metapost/drv/">drv</a></b><small>
 (<a href="https://ctan.org/pkg/drv">CTAN</a>):
-Derivation trees with MetaPost
+Derivation trees with MetaPost. 
 <a href="texmf-dist/doc/metapost/drv/drv-guide.pdf">drv-guide.pdf</a>.
 </small></li>
 
-<li id="dsptricks"><b><a href="texmf-dist/doc/latex/dsptricks">dsptricks</a></b><small>
+<li id="dsptricks"><b><a href="texmf-dist/doc/latex/dsptricks/">dsptricks</a></b><small>
 (<a href="https://ctan.org/pkg/dsptricks">CTAN</a>):
-Macros for Digital Signal Processing plots
+Macros for Digital Signal Processing plots. 
 <a href="texmf-dist/doc/latex/dsptricks/dspTricksManual.pdf">dspTricksManual.pdf</a>.
 </small></li>
 
-<li id="dsserif"><b><a href="texmf-dist/doc/fonts/dsserif">dsserif</a></b><small>
+<li id="dsserif"><b><a href="texmf-dist/doc/fonts/dsserif/">dsserif</a></b><small>
 (<a href="https://ctan.org/pkg/dsserif">CTAN</a>):
-A double-struck serifed font for mathematical use
+A double-struck serifed font for mathematical use. 
 <a href="texmf-dist/doc/fonts/dsserif/dsserif-doc.pdf">dsserif-doc.pdf</a>.
 </small></li>
 
-<li id="dtk"><b><a href="texmf-dist/doc/latex/dtk/doc">dtk</a></b><small>
+<li id="dtk"><b><a href="texmf-dist/doc/latex/dtk/">dtk</a></b><small>
 (<a href="https://ctan.org/pkg/dtk">CTAN</a>):
-Document class for the journal of DANTE
+Document class for the journal of DANTE. 
 <a href="texmf-dist/doc/latex/dtk/doc/beispiel.pdf">beispiel.pdf</a> (de).
 </small></li>
 
-<li id="dtl"><b><a href="texmf-dist/doc/man/man1">dtl</a></b><small>
+<li id="dtl"><b><a href="texmf-dist/doc/man/man1/">dtl</a></b><small>
 (<a href="https://ctan.org/pkg/dtl">CTAN</a>):
-Tools to dis-assemble and re-assemble DVI files
+Tools to dis-assemble and re-assemble DVI files. 
 <a href="texmf-dist/doc/man/man1/dt2dv.man1.pdf">dt2dv.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/dv2dt.man1.pdf">dv2dt.man1.pdf</a>.
 </small></li>
 
-<li id="dtxdescribe"><b><a href="texmf-dist/doc/latex/dtxdescribe">dtxdescribe</a></b><small>
+<li id="dtxdescribe"><b><a href="texmf-dist/doc/latex/dtxdescribe/">dtxdescribe</a></b><small>
 (<a href="https://ctan.org/pkg/dtxdescribe">CTAN</a>):
-Describe additional object types in dtx source files
+Describe additional object types in dtx source files. 
 <a href="texmf-dist/doc/latex/dtxdescribe/dtxdescribe.pdf">dtxdescribe.pdf</a>.
 </small></li>
 
-<li id="dtxgallery"><b><a href="texmf-dist/doc/latex/dtxgallery">dtxgallery</a></b><small>
+<li id="dtxgallery"><b><a href="texmf-dist/doc/latex/dtxgallery/">dtxgallery</a></b><small>
 (<a href="https://ctan.org/pkg/dtxgallery">CTAN</a>):
-A small collection of minimal DTX examples
+A small collection of minimal DTX examples. 
 <a href="texmf-dist/doc/latex/dtxgallery/conditional-code.pdf">conditional-code.pdf</a>
 <a href="texmf-dist/doc/latex/dtxgallery/dtxgallery.pdf">dtxgallery.pdf</a>
 <a href="texmf-dist/doc/latex/dtxgallery/rearrange.pdf">rearrange.pdf</a>
@@ -6433,78 +6420,78 @@
 <a href="texmf-dist/doc/latex/dtxgallery/single-source.pdf">single-source.pdf</a>.
 </small></li>
 
-<li id="dtxgen"><b><a href="texmf-dist/doc/support/dtxgen">dtxgen</a></b><small>
+<li id="dtxgen"><b><a href="texmf-dist/doc/support/dtxgen/">dtxgen</a></b><small>
 (<a href="https://ctan.org/pkg/dtxgen">CTAN</a>):
-Creates a template for a self-extracting .dtx file
+Creates a template for a self-extracting .dtx file. 
 <a href="texmf-dist/doc/support/dtxgen/dtxgen.pdf">dtxgen.pdf</a>.
 </small></li>
 
-<li id="dtxtut"><b><a href="texmf-dist/doc/latex/dtxtut">dtxtut</a></b><small>
+<li id="dtxtut"><b><a href="texmf-dist/doc/latex/dtxtut/">dtxtut</a></b><small>
 (<a href="https://ctan.org/pkg/dtxtut">CTAN</a>):
-Tutorial on writing .dtx and .ins files
+Tutorial on writing .dtx and .ins files. 
 <a href="texmf-dist/doc/latex/dtxtut/dtxtut.pdf">dtxtut.pdf</a>.
 </small></li>
 
-<li id="ducksay"><b><a href="texmf-dist/doc/latex/ducksay">ducksay</a></b><small>
+<li id="ducksay"><b><a href="texmf-dist/doc/latex/ducksay/">ducksay</a></b><small>
 (<a href="https://ctan.org/pkg/ducksay">CTAN</a>):
-Draw ASCII art of animals saying a specified message
+Draw ASCII art of animals saying a specified message. 
 <a href="texmf-dist/doc/latex/ducksay/ducksay.pdf">ducksay.pdf</a>.
 </small></li>
 
-<li id="duckuments"><b><a href="texmf-dist/doc/latex/duckuments">duckuments</a></b><small>
+<li id="duckuments"><b><a href="texmf-dist/doc/latex/duckuments/">duckuments</a></b><small>
 (<a href="https://ctan.org/pkg/duckuments">CTAN</a>):
-Create duckified dummy content
+Create duckified dummy content. 
 <a href="texmf-dist/doc/latex/duckuments/duckuments.pdf">duckuments.pdf</a>.
 </small></li>
 
-<li id="duerer-latex"><b><a href="texmf-dist/doc/latex/duerer-latex">duerer-latex</a></b><small>
+<li id="duerer-latex"><b><a href="texmf-dist/doc/latex/duerer-latex/">duerer-latex</a></b><small>
 (<a href="https://ctan.org/pkg/duerer-latex">CTAN</a>):
-LaTeX support for the Duerer fonts
+LaTeX support for the Duerer fonts. 
 <a href="texmf-dist/doc/latex/duerer-latex/duerer.pdf">duerer.pdf</a>.
 </small></li>
 
-<li id="duotenzor"><b><a href="texmf-dist/doc/latex/duotenzor">duotenzor</a></b><small>
+<li id="duotenzor"><b><a href="texmf-dist/doc/latex/duotenzor/">duotenzor</a></b><small>
 (<a href="https://ctan.org/pkg/duotenzor">CTAN</a>):
-Drawing package for circuit and duotensor diagrams
+Drawing package for circuit and duotensor diagrams. 
 <a href="texmf-dist/doc/latex/duotenzor/duotenzormanual.pdf">duotenzormanual.pdf</a>.
 </small></li>
 
-<li id="dvdcoll"><b><a href="texmf-dist/doc/latex/dvdcoll">dvdcoll</a></b><small>
+<li id="dvdcoll"><b><a href="texmf-dist/doc/latex/dvdcoll/">dvdcoll</a></b><small>
 (<a href="https://ctan.org/pkg/dvdcoll">CTAN</a>):
-A class for typesetting DVD archives
+A class for typesetting DVD archives. 
 <a href="texmf-dist/doc/latex/dvdcoll/dcexample.pdf">dcexample.pdf</a>
 <a href="texmf-dist/doc/latex/dvdcoll/dvdcoll.pdf">dvdcoll.pdf</a>
 <a href="texmf-dist/doc/latex/dvdcoll/dvdcoll_de.pdf">dvdcoll_de.pdf</a> (de).
 </small></li>
 
-<li id="dvgloss"><b><a href="texmf-dist/doc/latex/dvgloss">dvgloss</a></b><small>
+<li id="dvgloss"><b><a href="texmf-dist/doc/latex/dvgloss/">dvgloss</a></b><small>
 (<a href="https://ctan.org/pkg/dvgloss">CTAN</a>):
-Facilities for setting interlinear glossed text
+Facilities for setting interlinear glossed text. 
 <a href="texmf-dist/doc/latex/dvgloss/dvgloss.pdf">dvgloss.pdf</a>.
 </small></li>
 
-<li id="dvi2tty"><b><a href="texmf-dist/doc/man/man1">dvi2tty</a></b><small>
+<li id="dvi2tty"><b><a href="texmf-dist/doc/man/man1/">dvi2tty</a></b><small>
 (<a href="https://ctan.org/pkg/dvi2tty">CTAN</a>):
-Produce ASCII from DVI
+Produce ASCII from DVI. 
 <a href="texmf-dist/doc/man/man1/disdvi.man1.pdf">disdvi.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/dvi2tty.man1.pdf">dvi2tty.man1.pdf</a>.
 </small></li>
 
-<li id="dvicopy"><b><a href="texmf-dist/doc/man/man1">dvicopy</a></b><small>
+<li id="dvicopy"><b><a href="texmf-dist/doc/man/man1/">dvicopy</a></b><small>
 (<a href="https://ctan.org/pkg/dvicopy">CTAN</a>):
-Copy DVI files, flattening VFs
+Copy DVI files, flattening VFs. 
 <a href="texmf-dist/doc/man/man1/dvicopy.man1.pdf">dvicopy.man1.pdf</a>.
 </small></li>
 
-<li id="dvidvi"><b><a href="texmf-dist/doc/man/man1">dvidvi</a></b><small>
+<li id="dvidvi"><b><a href="texmf-dist/doc/man/man1/">dvidvi</a></b><small>
 (<a href="https://ctan.org/pkg/dvidvi">CTAN</a>):
-Convert one DVI file into another
+Convert one DVI file into another. 
 <a href="texmf-dist/doc/man/man1/dvidvi.man1.pdf">dvidvi.man1.pdf</a>.
 </small></li>
 
-<li id="dviljk"><b><a href="texmf-dist/doc/man/man1">dviljk</a></b><small>
+<li id="dviljk"><b><a href="texmf-dist/doc/man/man1/">dviljk</a></b><small>
 (<a href="https://ctan.org/pkg/dviljk">CTAN</a>):
-DVI to Laserjet output
+DVI to Laserjet output. 
 <a href="texmf-dist/doc/man/man1/dvihp.man1.pdf">dvihp.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/dvilj.man1.pdf">dvilj.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/dvilj2p.man1.pdf">dvilj2p.man1.pdf</a>
@@ -6513,15 +6500,14 @@
 <a href="texmf-dist/doc/man/man1/dvilj6.man1.pdf">dvilj6.man1.pdf</a>.
 </small></li>
 
-<li id="dviout-util"><b><a href="texmf-dist/doc/man/man1">dviout-util</a></b><small>
-(<a href="https://ctan.org/pkg/dviout-util">CTAN</a>):
+<li id="dviout-util"><b><a href="texmf-dist/doc/man/man1/">dviout-util</a></b><small>
 <a href="texmf-dist/doc/man/man1/chkdvifont.man1.pdf">chkdvifont.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/dvispc.man1.pdf">dvispc.man1.pdf</a>.
 </small></li>
 
-<li id="dvipdfmx"><b><a href="texmf-dist/doc/dvipdfm">dvipdfmx</a></b><small>
+<li id="dvipdfmx"><b><a href="texmf-dist/doc/dvipdfmx/">dvipdfmx</a></b><small>
 (<a href="https://ctan.org/pkg/dvipdfmx">CTAN</a>):
-An extended version of dvipdfm
+An extended version of dvipdfm. 
 <a href="texmf-dist/doc/dvipdfm/dvipdfm.pdf">dvipdfm.pdf</a>
 <a href="texmf-dist/doc/dvipdfm/something.pdf">something.pdf</a>
 <a href="texmf-dist/doc/dvipdfm/transistor.pdf">transistor.pdf</a>
@@ -6537,9 +6523,9 @@
 <a href="texmf-dist/doc/man/man1/xdvipdfmx.man1.pdf">xdvipdfmx.man1.pdf</a>.
 </small></li>
 
-<li id="dvipng"><b><a href="texmf-dist/doc/dvipng">dvipng</a></b><small>
+<li id="dvipng"><b><a href="texmf-dist/doc/dvipng/">dvipng</a></b><small>
 (<a href="https://ctan.org/pkg/dvipng">CTAN</a>):
-A fast DVI to PNG/GIF converter
+A fast DVI to PNG/GIF converter. 
 <a href="texmf-dist/doc/dvipng/dvipng.html">dvipng.html</a>
 <a href="texmf-dist/doc/dvipng/dvipng.pdf">dvipng.pdf</a>
 <a href="texmf-dist/doc/man/man1/dvigif.man1.pdf">dvigif.man1.pdf</a>
@@ -6546,15 +6532,14 @@
 <a href="texmf-dist/doc/man/man1/dvipng.man1.pdf">dvipng.man1.pdf</a>.
 </small></li>
 
-<li id="dvipos"><b><a href="texmf-dist/doc/man/man1">dvipos</a></b><small>
-(<a href="https://ctan.org/pkg/dvipos">CTAN</a>):
-support DVI pos: specials used by ConTeXt DVI output
+<li id="dvipos"><b><a href="texmf-dist/doc/man/man1/">dvipos</a></b><small>
+support DVI pos: specials used by ConTeXt DVI output. 
 <a href="texmf-dist/doc/man/man1/dvipos.man1.pdf">dvipos.man1.pdf</a>.
 </small></li>
 
-<li id="dvips"><b><a href="texmf-dist/doc/dvips">dvips</a></b><small>
+<li id="dvips"><b><a href="texmf-dist/doc/dvips/">dvips</a></b><small>
 (<a href="https://ctan.org/pkg/dvips">CTAN</a>):
-A DVI to PostScript driver
+A DVI to PostScript driver. 
 <a href="texmf-dist/doc/dvips/dvips.html">dvips.html</a>
 <a href="texmf-dist/doc/dvips/dvips.pdf">dvips.pdf</a>
 <a href="texmf-dist/doc/man/man1/afm2tfm.man1.pdf">afm2tfm.man1.pdf</a>
@@ -6561,21 +6546,21 @@
 <a href="texmf-dist/doc/man/man1/dvips.man1.pdf">dvips.man1.pdf</a>.
 </small></li>
 
-<li id="dvisvgm"><b><a href="texmf-dist/doc/man/man1">dvisvgm</a></b><small>
+<li id="dvisvgm"><b><a href="texmf-dist/doc/man/man1/">dvisvgm</a></b><small>
 (<a href="https://ctan.org/pkg/dvisvgm">CTAN</a>):
-Convert DVI, EPS, and PDF files to Scalable Vector Graphics format (SVG)
+Convert DVI, EPS, and PDF files to Scalable Vector Graphics format (SVG). 
 <a href="texmf-dist/doc/man/man1/dvisvgm.man1.pdf">dvisvgm.man1.pdf</a>.
 </small></li>
 
-<li id="dynamicnumber"><b><a href="texmf-dist/doc/latex/dynamicnumber">dynamicnumber</a></b><small>
+<li id="dynamicnumber"><b><a href="texmf-dist/doc/latex/dynamicnumber/">dynamicnumber</a></b><small>
 (<a href="https://ctan.org/pkg/dynamicnumber">CTAN</a>):
-Dynamically typeset numbers and values in LaTeX through "symbolic links"
+Dynamically typeset numbers and values in LaTeX through "symbolic links". 
 <a href="texmf-dist/doc/latex/dynamicnumber/dynamicnumber.pdf">dynamicnumber.pdf</a>.
 </small></li>
 
-<li id="dynblocks"><b><a href="texmf-dist/doc/latex/dynblocks">dynblocks</a></b><small>
+<li id="dynblocks"><b><a href="texmf-dist/doc/latex/dynblocks/">dynblocks</a></b><small>
 (<a href="https://ctan.org/pkg/dynblocks">CTAN</a>):
-A simple way to create dynamic blocks for Beamer
+A simple way to create dynamic blocks for Beamer. 
 <a href="texmf-dist/doc/latex/dynblocks/dynblocks.pdf">dynblocks.pdf</a>
 <a href="texmf-dist/doc/latex/dynblocks/images/alert_1.pdf">alert_1.pdf</a>
 <a href="texmf-dist/doc/latex/dynblocks/images/alert_2.pdf">alert_2.pdf</a>
@@ -6597,15 +6582,15 @@
 <a href="texmf-dist/doc/latex/dynblocks/images/szeg_2.pdf">szeg_2.pdf</a>.
 </small></li>
 
-<li id="dynkin-diagrams"><b><a href="texmf-dist/doc/latex/dynkin-diagrams">dynkin-diagrams</a></b><small>
+<li id="dynkin-diagrams"><b><a href="texmf-dist/doc/latex/dynkin-diagrams/">dynkin-diagrams</a></b><small>
 (<a href="https://ctan.org/pkg/dynkin-diagrams">CTAN</a>):
-Draw Dynkin, Coxeter, and Satake diagrams using TikZ
+Draw Dynkin, Coxeter, and Satake diagrams using TikZ. 
 <a href="texmf-dist/doc/latex/dynkin-diagrams/dynkin-diagrams.pdf">dynkin-diagrams.pdf</a>.
 </small></li>
 
-<li id="dyntree"><b><a href="texmf-dist/doc/latex/dyntree">dyntree</a></b><small>
+<li id="dyntree"><b><a href="texmf-dist/doc/latex/dyntree/">dyntree</a></b><small>
 (<a href="https://ctan.org/pkg/dyntree">CTAN</a>):
-Construct Dynkin tree diagrams
+Construct Dynkin tree diagrams. 
 <a href="texmf-dist/doc/latex/dyntree/dyntree.pdf">dyntree.pdf</a>.
 </small></li>
 
@@ -6613,11 +6598,11 @@
 
 <h2 id="letter-E">E</h2>
 
-<ol start="877">
+<ol start="878">
 
-<li id="e-french"><b><a href="texmf-dist/doc/generic/e-french">e-french</a></b><small>
+<li id="e-french"><b><a href="texmf-dist/doc/generic/e-french/">e-french</a></b><small>
 (<a href="https://ctan.org/pkg/e-french">CTAN</a>):
-Comprehensive LaTeX support for French-language typesetting
+Comprehensive LaTeX support for French-language typesetting. 
 <a href="texmf-dist/doc/generic/e-french/Probl_Msg.pdf">Probl_Msg.pdf</a>
 <a href="texmf-dist/doc/generic/e-french/changements.html">changements.html</a>
 <a href="texmf-dist/doc/generic/e-french/histoire.html">histoire.html</a>
@@ -6637,108 +6622,108 @@
 <a href="texmf-dist/doc/generic/e-french/test/frenchrf.pdf">frenchrf.pdf</a>.
 </small></li>
 
-<li id="ean13isbn"><b><a href="texmf-dist/doc/latex/ean13isbn">ean13isbn</a></b><small>
+<li id="ean13isbn"><b><a href="texmf-dist/doc/latex/ean13isbn/">ean13isbn</a></b><small>
 (<a href="https://ctan.org/pkg/ean13isbn">CTAN</a>):
-Print EAN13 for ISBN
+Print EAN13 for ISBN. 
 <a href="texmf-dist/doc/latex/ean13isbn/ean13isbn.pdf">ean13isbn.pdf</a>.
 </small></li>
 
-<li id="easy-todo"><b><a href="texmf-dist/doc/latex/easy-todo">easy-todo</a></b><small>
+<li id="easy-todo"><b><a href="texmf-dist/doc/latex/easy-todo/">easy-todo</a></b><small>
 (<a href="https://ctan.org/pkg/easy-todo">CTAN</a>):
-To-do notes in a document
+To-do notes in a document. 
 <a href="texmf-dist/doc/latex/easy-todo/easy-todo.pdf">easy-todo.pdf</a>.
 </small></li>
 
-<li id="easyfig"><b><a href="texmf-dist/doc/latex/easyfig">easyfig</a></b><small>
+<li id="easyfig"><b><a href="texmf-dist/doc/latex/easyfig/">easyfig</a></b><small>
 (<a href="https://ctan.org/pkg/easyfig">CTAN</a>):
-Simplifying the use of common figures
+Simplifying the use of common figures. 
 <a href="texmf-dist/doc/latex/easyfig/easyfig.pdf">easyfig.pdf</a>.
 </small></li>
 
-<li id="easyformat"><b><a href="texmf-dist/doc/latex/easyformat">easyformat</a></b><small>
+<li id="easyformat"><b><a href="texmf-dist/doc/latex/easyformat/">easyformat</a></b><small>
 (<a href="https://ctan.org/pkg/easyformat">CTAN</a>):
-Easily add boldface, italics and smallcaps
+Easily add boldface, italics and smallcaps. 
 <a href="texmf-dist/doc/latex/easyformat/easyformat.pdf">easyformat.pdf</a>.
 </small></li>
 
-<li id="easylist"><b><a href="texmf-dist/doc/latex/easylist">easylist</a></b><small>
+<li id="easylist"><b><a href="texmf-dist/doc/latex/easylist/">easylist</a></b><small>
 (<a href="https://ctan.org/pkg/easylist">CTAN</a>):
-Lists using a single active character
+Lists using a single active character. 
 <a href="texmf-dist/doc/latex/easylist/easylist-doc.pdf">easylist-doc.pdf</a>.
 </small></li>
 
-<li id="easyreview"><b><a href="texmf-dist/doc/latex/easyreview/doc">easyreview</a></b><small>
+<li id="easyreview"><b><a href="texmf-dist/doc/latex/easyreview/">easyreview</a></b><small>
 (<a href="https://ctan.org/pkg/easyreview">CTAN</a>):
-Package to provide a way to review (or perform editorial process) in LaTeX
+Package to provide a way to review (or perform editorial process) in LaTeX. 
 <a href="texmf-dist/doc/latex/easyreview/doc/easyReview.pdf">easyReview.pdf</a>.
 </small></li>
 
-<li id="ebezier"><b><a href="texmf-dist/doc/latex/ebezier">ebezier</a></b><small>
+<li id="ebezier"><b><a href="texmf-dist/doc/latex/ebezier/">ebezier</a></b><small>
 (<a href="https://ctan.org/pkg/ebezier">CTAN</a>):
-Device independent picture environment enhancement
+Device independent picture environment enhancement. 
 <a href="texmf-dist/doc/latex/ebezier/ebezier.pdf">ebezier.pdf</a>.
 </small></li>
 
-<li id="ebgaramond"><b><a href="texmf-dist/doc/fonts/ebgaramond">ebgaramond</a></b><small>
+<li id="ebgaramond"><b><a href="texmf-dist/doc/fonts/ebgaramond/">ebgaramond</a></b><small>
 (<a href="https://ctan.org/pkg/ebgaramond">CTAN</a>):
-LaTeX support for EBGaramond fonts
+LaTeX support for EBGaramond fonts. 
 <a href="texmf-dist/doc/fonts/ebgaramond/EBGaramond-Initials-Glyphs.pdf">EBGaramond-Initials-Glyphs.pdf</a>
 <a href="texmf-dist/doc/fonts/ebgaramond/EBGaramond-Regular-Glyphs.pdf">EBGaramond-Regular-Glyphs.pdf</a>
 <a href="texmf-dist/doc/fonts/ebgaramond/ebgaramond-samples.pdf">ebgaramond-samples.pdf</a>.
 </small></li>
 
-<li id="ebgaramond-maths"><b><a href="texmf-dist/doc/fonts/ebgaramond-maths">ebgaramond-maths</a></b><small>
+<li id="ebgaramond-maths"><b><a href="texmf-dist/doc/fonts/ebgaramond-maths/">ebgaramond-maths</a></b><small>
 (<a href="https://ctan.org/pkg/ebgaramond-maths">CTAN</a>):
-LaTeX support for EBGaramond fonts in mathematics
+LaTeX support for EBGaramond fonts in mathematics. 
 <a href="texmf-dist/doc/fonts/ebgaramond-maths/ebgaramond-maths.pdf">ebgaramond-maths.pdf</a>.
 </small></li>
 
-<li id="ebong"><b><a href="texmf-dist/doc/latex/ebong">ebong</a></b><small>
+<li id="ebong"><b><a href="texmf-dist/doc/latex/ebong/">ebong</a></b><small>
 (<a href="https://ctan.org/pkg/ebong">CTAN</a>):
-Utility for writing Bengali in Rapid Roman Format
+Utility for writing Bengali in Rapid Roman Format. 
 <a href="texmf-dist/doc/latex/ebong/eb.pdf">eb.pdf</a> (bn).
 </small></li>
 
-<li id="ebproof"><b><a href="texmf-dist/doc/latex/ebproof">ebproof</a></b><small>
+<li id="ebproof"><b><a href="texmf-dist/doc/latex/ebproof/">ebproof</a></b><small>
 (<a href="https://ctan.org/pkg/ebproof">CTAN</a>):
-Formal proofs in the style of sequent calculus
+Formal proofs in the style of sequent calculus. 
 <a href="texmf-dist/doc/latex/ebproof/ebproof.pdf">ebproof.pdf</a>.
 </small></li>
 
-<li id="ebsthesis"><b><a href="texmf-dist/doc/latex/ebsthesis">ebsthesis</a></b><small>
+<li id="ebsthesis"><b><a href="texmf-dist/doc/latex/ebsthesis/">ebsthesis</a></b><small>
 (<a href="https://ctan.org/pkg/ebsthesis">CTAN</a>):
-Typesetting theses for economics
+Typesetting theses for economics. 
 <a href="texmf-dist/doc/latex/ebsthesis/ebsthesis.pdf">ebsthesis.pdf</a>.
 </small></li>
 
-<li id="ecclesiastic"><b><a href="texmf-dist/doc/latex/ecclesiastic">ecclesiastic</a></b><small>
+<li id="ecclesiastic"><b><a href="texmf-dist/doc/latex/ecclesiastic/">ecclesiastic</a></b><small>
 (<a href="https://ctan.org/pkg/ecclesiastic">CTAN</a>):
-Typesetting Ecclesiastic Latin
+Typesetting Ecclesiastic Latin. 
 <a href="texmf-dist/doc/latex/ecclesiastic/ecclesiastic.pdf">ecclesiastic.pdf</a>.
 </small></li>
 
-<li id="ecgdraw"><b><a href="texmf-dist/doc/latex/ecgdraw">ecgdraw</a></b><small>
+<li id="ecgdraw"><b><a href="texmf-dist/doc/latex/ecgdraw/">ecgdraw</a></b><small>
 (<a href="https://ctan.org/pkg/ecgdraw">CTAN</a>):
-Draws electrocardiograms (ECG)
+Draws electrocardiograms (ECG). 
 <a href="texmf-dist/doc/latex/ecgdraw/ecgdraw.pdf">ecgdraw.pdf</a>
 <a href="texmf-dist/doc/latex/ecgdraw/ecgdraw_ita.pdf">ecgdraw_ita.pdf</a> (it).
 </small></li>
 
-<li id="ecltree"><b><a href="texmf-dist/doc/latex/ecltree">ecltree</a></b><small>
+<li id="ecltree"><b><a href="texmf-dist/doc/latex/ecltree/">ecltree</a></b><small>
 (<a href="https://ctan.org/pkg/ecltree">CTAN</a>):
-Trees using epic and eepic macros
+Trees using epic and eepic macros. 
 <a href="texmf-dist/doc/latex/ecltree/ecltreesample.pdf">ecltreesample.pdf</a>.
 </small></li>
 
-<li id="ecobiblatex"><b><a href="texmf-dist/doc/latex/ecobiblatex">ecobiblatex</a></b><small>
+<li id="ecobiblatex"><b><a href="texmf-dist/doc/latex/ecobiblatex/">ecobiblatex</a></b><small>
 (<a href="https://ctan.org/pkg/ecobiblatex">CTAN</a>):
-Global Ecology and Biogeography BibLaTeX styles for the Biber backend
+Global Ecology and Biogeography BibLaTeX styles for the Biber backend. 
 <a href="texmf-dist/doc/latex/ecobiblatex/ecobiblatex.pdf">ecobiblatex.pdf</a>.
 </small></li>
 
-<li id="econ-bst"><b><a href="texmf-dist/doc/bibtex/econ-bst/customization">econ-bst</a></b><small>
+<li id="econ-bst"><b><a href="texmf-dist/doc/bibtex/econ-bst/">econ-bst</a></b><small>
 (<a href="https://ctan.org/pkg/econ-bst">CTAN</a>):
-BibTeX style for economics papers
+BibTeX style for economics papers. 
 <a href="texmf-dist/doc/bibtex/econ-bst/customization/econ-a.pdf">econ-a.pdf</a>
 <a href="texmf-dist/doc/bibtex/econ-bst/customization/econ-abbr.pdf">econ-abbr.pdf</a>
 <a href="texmf-dist/doc/bibtex/econ-bst/customization/econ-aea.pdf">econ-aea.pdf</a>
@@ -6753,15 +6738,15 @@
 <a href="texmf-dist/doc/bibtex/econ-bst/econ-example.pdf">econ-example.pdf</a>.
 </small></li>
 
-<li id="econometrics"><b><a href="texmf-dist/doc/latex/econometrics">econometrics</a></b><small>
+<li id="econometrics"><b><a href="texmf-dist/doc/latex/econometrics/">econometrics</a></b><small>
 (<a href="https://ctan.org/pkg/econometrics">CTAN</a>):
-Defines some commands that simplify mathematic notation in economic and econometric writing
+Defines some commands that simplify mathematic notation in economic and econometric writing. 
 <a href="texmf-dist/doc/latex/econometrics/econometrics.pdf">econometrics.pdf</a>.
 </small></li>
 
-<li id="economic"><b><a href="texmf-dist/doc/bibtex/economic">economic</a></b><small>
+<li id="economic"><b><a href="texmf-dist/doc/bibtex/economic/">economic</a></b><small>
 (<a href="https://ctan.org/pkg/economic">CTAN</a>):
-BibTeX support for submitting to Economics journals
+BibTeX support for submitting to Economics journals. 
 <a href="texmf-dist/doc/bibtex/economic/ajae-ex.pdf">ajae-ex.pdf</a>
 <a href="texmf-dist/doc/bibtex/economic/apecon-ex.pdf">apecon-ex.pdf</a>
 <a href="texmf-dist/doc/bibtex/economic/ecca-ex.pdf">ecca-ex.pdf</a>
@@ -6772,9 +6757,9 @@
 <a href="texmf-dist/doc/bibtex/economic/oegatb-ex.pdf">oegatb-ex.pdf</a>.
 </small></li>
 
-<li id="ecothesis"><b><a href="texmf-dist/doc/latex/ecothesis/capitulos/cap01">ecothesis</a></b><small>
+<li id="ecothesis"><b><a href="texmf-dist/doc/latex/ecothesis/">ecothesis</a></b><small>
 (<a href="https://ctan.org/pkg/ecothesis">CTAN</a>):
-LaTeX thesis template for the Universidade Federal de Vicosa (UFV), Brazil
+LaTeX thesis template for the Universidade Federal de Vicosa (UFV), Brazil. 
 <a href="texmf-dist/doc/latex/ecothesis/capitulos/cap01/introduction.pdf">introduction.pdf</a>
 <a href="texmf-dist/doc/latex/ecothesis/capitulos/cap02/cap02.pdf">cap02.pdf</a>
 <a href="texmf-dist/doc/latex/ecothesis/capitulos/cap03/cap03.pdf">cap03.pdf</a>
@@ -6782,126 +6767,125 @@
 <a href="texmf-dist/doc/latex/ecothesis/main.pdf">main.pdf</a>.
 </small></li>
 
-<li id="ecv"><b><a href="texmf-dist/doc/latex/ecv">ecv</a></b><small>
+<li id="ecv"><b><a href="texmf-dist/doc/latex/ecv/">ecv</a></b><small>
 (<a href="https://ctan.org/pkg/ecv">CTAN</a>):
-A fancy Curriculum Vitae class
+A fancy Curriculum Vitae class. 
 <a href="texmf-dist/doc/latex/ecv/ecv.pdf">ecv.pdf</a>
 <a href="texmf-dist/doc/latex/ecv/template/CV-template_de.pdf">CV-template_de.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/ecv/template/CV-template_en.pdf">CV-template_en.pdf</a>.
 </small></li>
 
-<li id="ed"><b><a href="texmf-dist/doc/latex/ed">ed</a></b><small>
+<li id="ed"><b><a href="texmf-dist/doc/latex/ed/">ed</a></b><small>
 (<a href="https://ctan.org/pkg/ed">CTAN</a>):
-Editorial Notes for LaTeX documents
+Editorial Notes for LaTeX documents. 
 <a href="texmf-dist/doc/latex/ed/ed.pdf">ed.pdf</a>.
 </small></li>
 
-<li id="edfnotes"><b><a href="texmf-dist/doc/latex/edfnotes">edfnotes</a></b><small>
+<li id="edfnotes"><b><a href="texmf-dist/doc/latex/edfnotes/">edfnotes</a></b><small>
 (<a href="https://ctan.org/pkg/edfnotes">CTAN</a>):
-Critical annotations to footnotes with ednotes
+Critical annotations to footnotes with ednotes. 
 <a href="texmf-dist/doc/latex/edfnotes/PdUsample.pdf">PdUsample.pdf</a>
 <a href="texmf-dist/doc/latex/edfnotes/README.pdf">README.pdf</a>
 <a href="texmf-dist/doc/latex/edfnotes/edfnotes.pdf">edfnotes.pdf</a>.
 </small></li>
 
-<li id="edmargin"><b><a href="texmf-dist/doc/latex/edmargin">edmargin</a></b><small>
+<li id="edmargin"><b><a href="texmf-dist/doc/latex/edmargin/">edmargin</a></b><small>
 (<a href="https://ctan.org/pkg/edmargin">CTAN</a>):
-Multiple series of endnotes for critical editions
+Multiple series of endnotes for critical editions. 
 <a href="texmf-dist/doc/latex/edmargin/edmargin.pdf">edmargin.pdf</a>.
 </small></li>
 
-<li id="ednotes"><b><a href="texmf-dist/doc/latex/ednotes">ednotes</a></b><small>
+<li id="ednotes"><b><a href="texmf-dist/doc/latex/ednotes/">ednotes</a></b><small>
 (<a href="https://ctan.org/pkg/ednotes">CTAN</a>):
-Typeset scholarly editions
+Typeset scholarly editions. 
 <a href="texmf-dist/doc/latex/ednotes/ednotes.pdf">ednotes.pdf</a>
 <a href="texmf-dist/doc/latex/ednotes/ednotugb.pdf">ednotugb.pdf</a>.
 </small></li>
 
-<li id="eemeir"><b><a href="texmf-dist/doc/latex/eemeir">eemeir</a></b><small>
+<li id="eemeir"><b><a href="texmf-dist/doc/latex/eemeir/">eemeir</a></b><small>
 (<a href="https://ctan.org/pkg/eemeir">CTAN</a>):
-Adjust the gender of words in a document
+Adjust the gender of words in a document. 
 <a href="texmf-dist/doc/latex/eemeir/eemeir.pdf">eemeir.pdf</a>.
 </small></li>
 
-<li id="eepic"><b><a href="texmf-dist/doc/latex/eepic">eepic</a></b><small>
+<li id="eepic"><b><a href="texmf-dist/doc/latex/eepic/">eepic</a></b><small>
 (<a href="https://ctan.org/pkg/eepic">CTAN</a>):
-Extensions to epic and the LaTeX drawing tools
+Extensions to epic and the LaTeX drawing tools. 
 <a href="texmf-dist/doc/latex/eepic/eepic.pdf">eepic.pdf</a>.
 </small></li>
 
-<li id="efbox"><b><a href="texmf-dist/doc/latex/efbox">efbox</a></b><small>
+<li id="efbox"><b><a href="texmf-dist/doc/latex/efbox/">efbox</a></b><small>
 (<a href="https://ctan.org/pkg/efbox">CTAN</a>):
-Extension of \fbox, with controllable frames and colours
+Extension of \fbox, with controllable frames and colours. 
 <a href="texmf-dist/doc/latex/efbox/efbox.pdf">efbox.pdf</a>.
 </small></li>
 
-<li id="egameps"><b><a href="texmf-dist/doc/latex/egameps">egameps</a></b><small>
+<li id="egameps"><b><a href="texmf-dist/doc/latex/egameps/">egameps</a></b><small>
 (<a href="https://ctan.org/pkg/egameps">CTAN</a>):
-LaTeX package for typesetting extensive games
+LaTeX package for typesetting extensive games. 
 <a href="texmf-dist/doc/latex/egameps/egameps.pdf">egameps.pdf</a>.
 </small></li>
 
-<li id="egplot"><b><a href="texmf-dist/doc/latex/egplot">egplot</a></b><small>
+<li id="egplot"><b><a href="texmf-dist/doc/latex/egplot/">egplot</a></b><small>
 (<a href="https://ctan.org/pkg/egplot">CTAN</a>):
-Encapsulate Gnuplot sources in LaTeX documents
+Encapsulate Gnuplot sources in LaTeX documents. 
 <a href="texmf-dist/doc/latex/egplot/egplot.pdf">egplot.pdf</a>.
 </small></li>
 
-<li id="ehhline"><b><a href="texmf-dist/doc/latex/ehhline">ehhline</a></b><small>
+<li id="ehhline"><b><a href="texmf-dist/doc/latex/ehhline/">ehhline</a></b><small>
 (<a href="https://ctan.org/pkg/ehhline">CTAN</a>):
-Extend the \hhline command
+Extend the \hhline command. 
 <a href="texmf-dist/doc/latex/ehhline/ehhline.pdf">ehhline.pdf</a>.
 </small></li>
 
-<li id="eiad"><b><a href="texmf-dist/doc/fonts/eiad">eiad</a></b><small>
+<li id="eiad"><b><a href="texmf-dist/doc/fonts/eiad/">eiad</a></b><small>
 (<a href="https://ctan.org/pkg/eiad">CTAN</a>):
-Traditional style Irish fonts
+Traditional style Irish fonts. 
 <a href="texmf-dist/doc/fonts/eiad/amhrawn.pdf">amhrawn.pdf</a>
 <a href="texmf-dist/doc/fonts/eiad/evening.pdf">evening.pdf</a>
 <a href="texmf-dist/doc/fonts/eiad/recreat.pdf">recreat.pdf</a>.
 </small></li>
 
-<li id="einfuehrung"><b><a href="texmf-dist/doc/latex/einfuehrung">einfuehrung</a></b><small>
+<li id="einfuehrung"><b><a href="texmf-dist/doc/latex/einfuehrung/">einfuehrung</a></b><small>
 (<a href="https://ctan.org/pkg/einfuehrung">CTAN</a>):
-Examples from the book Einfuhrung in LaTeX
+Examples from the book Einfuhrung in LaTeX. 
 <a href="texmf-dist/doc/latex/einfuehrung/B.pdf">B.pdf</a>.
 </small></li>
 
-<li id="ejpecp"><b><a href="texmf-dist/doc/latex/ejpecp">ejpecp</a></b><small>
+<li id="ejpecp"><b><a href="texmf-dist/doc/latex/ejpecp/">ejpecp</a></b><small>
 (<a href="https://ctan.org/pkg/ejpecp">CTAN</a>):
-Class for EJP and ECP
+Class for EJP and ECP. 
 <a href="texmf-dist/doc/latex/ejpecp/ejpecp.pdf">ejpecp.pdf</a>
 <a href="texmf-dist/doc/latex/ejpecp/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="ekaia"><b><a href="texmf-dist/doc/latex/ekaia">ekaia</a></b><small>
+<li id="ekaia"><b><a href="texmf-dist/doc/latex/ekaia/">ekaia</a></b><small>
 (<a href="https://ctan.org/pkg/ekaia">CTAN</a>):
-Article format for publishing the Basque Country Science and Technology Journal "Ekaia"
+Article format for publishing the Basque Country Science and Technology Journal "Ekaia". 
 <a href="texmf-dist/doc/latex/ekaia/ekaia.pdf">ekaia.pdf</a>.
 </small></li>
 
-<li id="elbioimp"><b><a href="texmf-dist/doc/latex/elbioimp">elbioimp</a></b><small>
+<li id="elbioimp"><b><a href="texmf-dist/doc/latex/elbioimp/">elbioimp</a></b><small>
 (<a href="https://ctan.org/pkg/elbioimp">CTAN</a>):
-A LaTeX document class for the Journal of Electrical Bioimpedance
+A LaTeX document class for the Journal of Electrical Bioimpedance. 
 <a href="texmf-dist/doc/latex/elbioimp/elbioimp.pdf">elbioimp.pdf</a>.
 </small></li>
 
-<li id="electrum"><b><a href="texmf-dist/doc/fonts/electrum">electrum</a></b><small>
-(<a href="https://ctan.org/pkg/electrum">CTAN</a>):
-Electrum ADF fonts collection
+<li id="electrum"><b><a href="texmf-dist/doc/fonts/electrum/">electrum</a></b><small>
+Electrum ADF fonts collection. 
 <a href="texmf-dist/doc/fonts/electrum/electrumadf.pdf">electrumadf.pdf</a>.
 </small></li>
 
-<li id="eledform"><b><a href="texmf-dist/doc/latex/eledform">eledform</a></b><small>
+<li id="eledform"><b><a href="texmf-dist/doc/latex/eledform/">eledform</a></b><small>
 (<a href="https://ctan.org/pkg/eledform">CTAN</a>):
-Define textual variants
+Define textual variants. 
 <a href="texmf-dist/doc/latex/eledform/eledform.pdf">eledform.pdf</a>
 <a href="texmf-dist/doc/latex/eledform/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="eledmac"><b><a href="texmf-dist/doc/latex/eledmac">eledmac</a></b><small>
+<li id="eledmac"><b><a href="texmf-dist/doc/latex/eledmac/">eledmac</a></b><small>
 (<a href="https://ctan.org/pkg/eledmac">CTAN</a>):
-Typeset scholarly editions
+Typeset scholarly editions. 
 <a href="texmf-dist/doc/latex/eledmac/eledmac.pdf">eledmac.pdf</a>
 <a href="texmf-dist/doc/latex/eledmac/eledpar.pdf">eledpar.pdf</a>
 <a href="texmf-dist/doc/latex/eledmac/examples/1-criticalnotes.pdf">1-criticalnotes.pdf</a>
@@ -6932,9 +6916,9 @@
 <a href="texmf-dist/doc/latex/eledmac/examples/4-eledpar_verse_text_between.pdf">4-eledpar_verse_text_between.pdf</a>.
 </small></li>
 
-<li id="elegantbook"><b><a href="texmf-dist/doc/latex/elegantbook">elegantbook</a></b><small>
+<li id="elegantbook"><b><a href="texmf-dist/doc/latex/elegantbook/">elegantbook</a></b><small>
 (<a href="https://ctan.org/pkg/elegantbook">CTAN</a>):
-An Elegant LaTeX Template for Books
+An Elegant LaTeX Template for Books. 
 <a href="texmf-dist/doc/latex/elegantbook/elegantbook-cn.pdf">elegantbook-cn.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/elegantbook/elegantbook-en.pdf">elegantbook-en.pdf</a>
 <a href="texmf-dist/doc/latex/elegantbook/image/cert.pdf">cert.pdf</a>
@@ -6941,60 +6925,60 @@
 <a href="texmf-dist/doc/latex/elegantbook/image/scatter.pdf">scatter.pdf</a>.
 </small></li>
 
-<li id="elegantnote"><b><a href="texmf-dist/doc/latex/elegantnote">elegantnote</a></b><small>
+<li id="elegantnote"><b><a href="texmf-dist/doc/latex/elegantnote/">elegantnote</a></b><small>
 (<a href="https://ctan.org/pkg/elegantnote">CTAN</a>):
-Elegant LaTeX Template for Notes
+Elegant LaTeX Template for Notes. 
 <a href="texmf-dist/doc/latex/elegantnote/elegantnote-cn.pdf">elegantnote-cn.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/elegantnote/elegantnote-en.pdf">elegantnote-en.pdf</a>
 <a href="texmf-dist/doc/latex/elegantnote/image/scatter.pdf">scatter.pdf</a>.
 </small></li>
 
-<li id="elegantpaper"><b><a href="texmf-dist/doc/latex/elegantpaper">elegantpaper</a></b><small>
+<li id="elegantpaper"><b><a href="texmf-dist/doc/latex/elegantpaper/">elegantpaper</a></b><small>
 (<a href="https://ctan.org/pkg/elegantpaper">CTAN</a>):
-An Elegant LaTeX Template for Working Papers
+An Elegant LaTeX Template for Working Papers. 
 <a href="texmf-dist/doc/latex/elegantpaper/elegantpaper-cn.pdf">elegantpaper-cn.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/elegantpaper/elegantpaper-en.pdf">elegantpaper-en.pdf</a>.
 </small></li>
 
-<li id="elements"><b><a href="texmf-dist/doc/latex/elements">elements</a></b><small>
+<li id="elements"><b><a href="texmf-dist/doc/latex/elements/">elements</a></b><small>
 (<a href="https://ctan.org/pkg/elements">CTAN</a>):
-Provides properties of chemical elements
+Provides properties of chemical elements. 
 <a href="texmf-dist/doc/latex/elements/elements_en.pdf">elements_en.pdf</a>.
 </small></li>
 
-<li id="ellipse"><b><a href="texmf-dist/doc/latex/ellipse">ellipse</a></b><small>
+<li id="ellipse"><b><a href="texmf-dist/doc/latex/ellipse/">ellipse</a></b><small>
 (<a href="https://ctan.org/pkg/ellipse">CTAN</a>):
-Draw ellipses and elliptical arcs using the standard LaTeX2e picture environment
+Draw ellipses and elliptical arcs using the standard LaTeX2e picture environment. 
 <a href="texmf-dist/doc/latex/ellipse/ellipse.pdf">ellipse.pdf</a>.
 </small></li>
 
-<li id="ellipsis"><b><a href="texmf-dist/doc/latex/ellipsis">ellipsis</a></b><small>
+<li id="ellipsis"><b><a href="texmf-dist/doc/latex/ellipsis/">ellipsis</a></b><small>
 (<a href="https://ctan.org/pkg/ellipsis">CTAN</a>):
-Fix uneven spacing around ellipses in LaTeX text mode
+Fix uneven spacing around ellipses in LaTeX text mode. 
 <a href="texmf-dist/doc/latex/ellipsis/ellipsis.pdf">ellipsis.pdf</a>.
 </small></li>
 
-<li id="elmath"><b><a href="texmf-dist/doc/latex/elmath">elmath</a></b><small>
+<li id="elmath"><b><a href="texmf-dist/doc/latex/elmath/">elmath</a></b><small>
 (<a href="https://ctan.org/pkg/elmath">CTAN</a>):
-Mathematics in Greek texts
+Mathematics in Greek texts. 
 <a href="texmf-dist/doc/latex/elmath/elmath.pdf">elmath.pdf</a>.
 </small></li>
 
-<li id="elocalloc"><b><a href="texmf-dist/doc/latex/elocalloc">elocalloc</a></b><small>
+<li id="elocalloc"><b><a href="texmf-dist/doc/latex/elocalloc/">elocalloc</a></b><small>
 (<a href="https://ctan.org/pkg/elocalloc">CTAN</a>):
-Local allocation macros for LaTeX 2015
+Local allocation macros for LaTeX 2015. 
 <a href="texmf-dist/doc/latex/elocalloc/elocalloc.pdf">elocalloc.pdf</a>.
 </small></li>
 
-<li id="elpres"><b><a href="texmf-dist/doc/latex/elpres">elpres</a></b><small>
+<li id="elpres"><b><a href="texmf-dist/doc/latex/elpres/">elpres</a></b><small>
 (<a href="https://ctan.org/pkg/elpres">CTAN</a>):
-A simple class for electronic presentations
+A simple class for electronic presentations. 
 <a href="texmf-dist/doc/latex/elpres/elpres-manual.pdf">elpres-manual.pdf</a>.
 </small></li>
 
-<li id="els-cas-templates"><b><a href="texmf-dist/doc/latex/els-cas-templates">els-cas-templates</a></b><small>
+<li id="els-cas-templates"><b><a href="texmf-dist/doc/latex/els-cas-templates/">els-cas-templates</a></b><small>
 (<a href="https://ctan.org/pkg/els-cas-templates">CTAN</a>):
-Elsevier updated LaTeX templates
+Elsevier updated LaTeX templates. 
 <a href="texmf-dist/doc/latex/els-cas-templates/cas-dc-template.pdf">cas-dc-template.pdf</a>
 <a href="texmf-dist/doc/latex/els-cas-templates/cas-sc-template.pdf">cas-sc-template.pdf</a>
 <a href="texmf-dist/doc/latex/els-cas-templates/doc/dc-sample.pdf">dc-sample.pdf</a>
@@ -7007,9 +6991,9 @@
 <a href="texmf-dist/doc/latex/els-cas-templates/figs/pic1.pdf">pic1.pdf</a>.
 </small></li>
 
-<li id="elsarticle"><b><a href="texmf-dist/doc/latex/elsarticle">elsarticle</a></b><small>
+<li id="elsarticle"><b><a href="texmf-dist/doc/latex/elsarticle/">elsarticle</a></b><small>
 (<a href="https://ctan.org/pkg/elsarticle">CTAN</a>):
-Class for articles for submission to Elsevier journals
+Class for articles for submission to Elsevier journals. 
 <a href="texmf-dist/doc/latex/elsarticle/1pseperateaug.pdf">1pseperateaug.pdf</a>
 <a href="texmf-dist/doc/latex/elsarticle/1psingleauthorgroup.pdf">1psingleauthorgroup.pdf</a>
 <a href="texmf-dist/doc/latex/elsarticle/elsdoc.pdf">elsdoc.pdf</a>
@@ -7021,154 +7005,154 @@
 <a href="texmf-dist/doc/latex/elsarticle/jfigs.pdf">jfigs.pdf</a>.
 </small></li>
 
-<li id="elteikthesis"><b><a href="texmf-dist/doc/latex/elteikthesis">elteikthesis</a></b><small>
+<li id="elteikthesis"><b><a href="texmf-dist/doc/latex/elteikthesis/">elteikthesis</a></b><small>
 (<a href="https://ctan.org/pkg/elteikthesis">CTAN</a>):
-Thesis template for Eotvos Lorand University (Informatics)
+Thesis template for Eotvos Lorand University (Informatics). 
 <a href="texmf-dist/doc/latex/elteikthesis/README.pdf">README.pdf</a>
 <a href="texmf-dist/doc/latex/elteikthesis/README_hu.pdf">README_hu.pdf</a>
 <a href="texmf-dist/doc/latex/elteikthesis/thesis.pdf">thesis.pdf</a> (hu).
 </small></li>
 
-<li id="eltex"><b><a href="texmf-dist/doc/latex/eltex">eltex</a></b><small>
+<li id="eltex"><b><a href="texmf-dist/doc/latex/eltex/">eltex</a></b><small>
 (<a href="https://ctan.org/pkg/eltex">CTAN</a>):
-Simple circuit diagrams in LaTeX picture mode
+Simple circuit diagrams in LaTeX picture mode. 
 <a href="texmf-dist/doc/latex/eltex/man_en.pdf">man_en.pdf</a>
 <a href="texmf-dist/doc/latex/eltex/pri_cz.pdf">pri_cz.pdf</a> (cs).
 </small></li>
 
-<li id="elzcards"><b><a href="texmf-dist/doc/latex/elzcards">elzcards</a></b><small>
+<li id="elzcards"><b><a href="texmf-dist/doc/latex/elzcards/">elzcards</a></b><small>
 (<a href="https://ctan.org/pkg/elzcards">CTAN</a>):
-Typeset business cards, index cards and flash cards easily
+Typeset business cards, index cards and flash cards easily. 
 <a href="texmf-dist/doc/latex/elzcards/elzcards-examples.pdf">elzcards-examples.pdf</a>
 <a href="texmf-dist/doc/latex/elzcards/elzcards.pdf">elzcards.pdf</a>.
 </small></li>
 
-<li id="emarks"><b><a href="texmf-dist/doc/latex/emarks">emarks</a></b><small>
+<li id="emarks"><b><a href="texmf-dist/doc/latex/emarks/">emarks</a></b><small>
 (<a href="https://ctan.org/pkg/emarks">CTAN</a>):
-Named mark registers with e-TeX
+Named mark registers with e-TeX. 
 <a href="texmf-dist/doc/latex/emarks/emarks.pdf">emarks.pdf</a>.
 </small></li>
 
-<li id="embedall"><b><a href="texmf-dist/doc/latex/embedall">embedall</a></b><small>
+<li id="embedall"><b><a href="texmf-dist/doc/latex/embedall/">embedall</a></b><small>
 (<a href="https://ctan.org/pkg/embedall">CTAN</a>):
-Embed source files into the generated PDF
+Embed source files into the generated PDF. 
 <a href="texmf-dist/doc/latex/embedall/embedall.pdf">embedall.pdf</a>.
 </small></li>
 
-<li id="embedfile"><b><a href="texmf-dist/doc/latex/embedfile">embedfile</a></b><small>
+<li id="embedfile"><b><a href="texmf-dist/doc/latex/embedfile/">embedfile</a></b><small>
 (<a href="https://ctan.org/pkg/embedfile">CTAN</a>):
-Embed files into PDF
+Embed files into PDF. 
 <a href="texmf-dist/doc/latex/embedfile/embedfile.pdf">embedfile.pdf</a>.
 </small></li>
 
-<li id="embrac"><b><a href="texmf-dist/doc/latex/embrac">embrac</a></b><small>
+<li id="embrac"><b><a href="texmf-dist/doc/latex/embrac/">embrac</a></b><small>
 (<a href="https://ctan.org/pkg/embrac">CTAN</a>):
-Upright brackets in emphasised text
+Upright brackets in emphasised text. 
 <a href="texmf-dist/doc/latex/embrac/embrac_en.pdf">embrac_en.pdf</a>.
 </small></li>
 
-<li id="emf"><b><a href="texmf-dist/doc/latex/emf">emf</a></b><small>
+<li id="emf"><b><a href="texmf-dist/doc/latex/emf/">emf</a></b><small>
 (<a href="https://ctan.org/pkg/emf">CTAN</a>):
-Support for the EMF symbol
+Support for the EMF symbol. 
 <a href="texmf-dist/doc/latex/emf/emf.pdf">emf.pdf</a>.
 </small></li>
 
-<li id="emisa"><b><a href="texmf-dist/doc/latex/emisa">emisa</a></b><small>
+<li id="emisa"><b><a href="texmf-dist/doc/latex/emisa/">emisa</a></b><small>
 (<a href="https://ctan.org/pkg/emisa">CTAN</a>):
-A LaTeX package for preparing manuscripts for the journal EMISA
+A LaTeX package for preparing manuscripts for the journal EMISA. 
 <a href="texmf-dist/doc/latex/emisa/emisa.pdf">emisa.pdf</a>.
 </small></li>
 
-<li id="emoji"><b><a href="texmf-dist/doc/lualatex/emoji">emoji</a></b><small>
+<li id="emoji"><b><a href="texmf-dist/doc/lualatex/emoji/">emoji</a></b><small>
 (<a href="https://ctan.org/pkg/emoji">CTAN</a>):
-Emoji support in (Lua)LaTeX
+Emoji support in (Lua)LaTeX. 
 <a href="texmf-dist/doc/lualatex/emoji/emoji-doc.pdf">emoji-doc.pdf</a>.
 </small></li>
 
-<li id="emojicite"><b><a href="texmf-dist/doc/lualatex/emojicite">emojicite</a></b><small>
+<li id="emojicite"><b><a href="texmf-dist/doc/lualatex/emojicite/">emojicite</a></b><small>
 (<a href="https://ctan.org/pkg/emojicite">CTAN</a>):
-Add emojis to citations
+Add emojis to citations. 
 <a href="texmf-dist/doc/lualatex/emojicite/emojicite-doc.pdf">emojicite-doc.pdf</a>.
 </small></li>
 
-<li id="emp"><b><a href="texmf-dist/doc/latex/emp">emp</a></b><small>
+<li id="emp"><b><a href="texmf-dist/doc/latex/emp/">emp</a></b><small>
 (<a href="https://ctan.org/pkg/emp">CTAN</a>):
-"Encapsulate" MetaPost figures in a document
+"Encapsulate" MetaPost figures in a document. 
 <a href="texmf-dist/doc/latex/emp/emp.pdf">emp.pdf</a>
 <a href="texmf-dist/doc/latex/emp/empman.pdf">empman.pdf</a>.
 </small></li>
 
-<li id="emptypage"><b><a href="texmf-dist/doc/latex/emptypage">emptypage</a></b><small>
+<li id="emptypage"><b><a href="texmf-dist/doc/latex/emptypage/">emptypage</a></b><small>
 (<a href="https://ctan.org/pkg/emptypage">CTAN</a>):
-Make empty pages really empty
+Make empty pages really empty. 
 <a href="texmf-dist/doc/latex/emptypage/emptypage.pdf">emptypage.pdf</a>.
 </small></li>
 
-<li id="emulateapj"><b><a href="texmf-dist/doc/latex/emulateapj">emulateapj</a></b><small>
+<li id="emulateapj"><b><a href="texmf-dist/doc/latex/emulateapj/">emulateapj</a></b><small>
 (<a href="https://ctan.org/pkg/emulateapj">CTAN</a>):
-Produce output similar to that of APJ
+Produce output similar to that of APJ. 
 <a href="texmf-dist/doc/latex/emulateapj/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="enctex"><b><a href="texmf-dist/doc/generic/enctex">enctex</a></b><small>
+<li id="enctex"><b><a href="texmf-dist/doc/generic/enctex/">enctex</a></b><small>
 (<a href="https://ctan.org/pkg/enctex">CTAN</a>):
-A TeX extension that translates input on its way into TeX
+A TeX extension that translates input on its way into TeX. 
 <a href="texmf-dist/doc/generic/enctex/encdoc-e.pdf">encdoc-e.pdf</a>
 <a href="texmf-dist/doc/generic/enctex/encdoc.pdf">encdoc.pdf</a> (cs).
 </small></li>
 
-<li id="encxvlna"><b><a href="texmf-dist/doc/generic/encxvlna">encxvlna</a></b><small>
+<li id="encxvlna"><b><a href="texmf-dist/doc/generic/encxvlna/">encxvlna</a></b><small>
 (<a href="https://ctan.org/pkg/encxvlna">CTAN</a>):
-Insert nonbreakable spaces, using encTeX
+Insert nonbreakable spaces, using encTeX. 
 <a href="texmf-dist/doc/generic/encxvlna/encxvlna.pdf">encxvlna.pdf</a>.
 </small></li>
 
-<li id="endfloat"><b><a href="texmf-dist/doc/latex/endfloat">endfloat</a></b><small>
+<li id="endfloat"><b><a href="texmf-dist/doc/latex/endfloat/">endfloat</a></b><small>
 (<a href="https://ctan.org/pkg/endfloat">CTAN</a>):
-Move floats to the end, leaving markers where they belong
+Move floats to the end, leaving markers where they belong. 
 <a href="texmf-dist/doc/latex/endfloat/endfloat.pdf">endfloat.pdf</a>.
 </small></li>
 
-<li id="endheads"><b><a href="texmf-dist/doc/latex/endheads">endheads</a></b><small>
+<li id="endheads"><b><a href="texmf-dist/doc/latex/endheads/">endheads</a></b><small>
 (<a href="https://ctan.org/pkg/endheads">CTAN</a>):
-Running headers of the form "Notes to pp.xx-yy"
+Running headers of the form "Notes to pp.xx-yy". 
 <a href="texmf-dist/doc/latex/endheads/endheads.pdf">endheads.pdf</a>.
 </small></li>
 
-<li id="endiagram"><b><a href="texmf-dist/doc/latex/endiagram">endiagram</a></b><small>
+<li id="endiagram"><b><a href="texmf-dist/doc/latex/endiagram/">endiagram</a></b><small>
 (<a href="https://ctan.org/pkg/endiagram">CTAN</a>):
-Easy creation of potential energy curve diagrams
+Easy creation of potential energy curve diagrams. 
 <a href="texmf-dist/doc/latex/endiagram/endiagram_en.pdf">endiagram_en.pdf</a>.
 </small></li>
 
-<li id="endnotes"><b><a href="texmf-dist/doc/latex/endnotes">endnotes</a></b><small>
+<li id="endnotes"><b><a href="texmf-dist/doc/latex/endnotes/">endnotes</a></b><small>
 (<a href="https://ctan.org/pkg/endnotes">CTAN</a>):
-Place footnotes at the end
+Place footnotes at the end. 
 <a href="texmf-dist/doc/latex/endnotes/endnotes.pdf">endnotes.pdf</a>.
 </small></li>
 
-<li id="endnotes-hy"><b><a href="texmf-dist/doc/latex/endnotes-hy/docs">endnotes-hy</a></b><small>
+<li id="endnotes-hy"><b><a href="texmf-dist/doc/latex/endnotes-hy/">endnotes-hy</a></b><small>
 (<a href="https://ctan.org/pkg/endnotes-hy">CTAN</a>):
-Patches the endnotes package to create hypertext links to the correct anchors
+Patches the endnotes package to create hypertext links to the correct anchors. 
 <a href="texmf-dist/doc/latex/endnotes-hy/docs/endnotes-hy.pdf">endnotes-hy.pdf</a>
 <a href="texmf-dist/doc/latex/endnotes-hy/examples/exmpl-endnotes.pdf">exmpl-endnotes.pdf</a>.
 </small></li>
 
-<li id="endnotesj"><b><a href="texmf-dist/doc/latex/endnotesj">endnotesj</a></b><small>
+<li id="endnotesj"><b><a href="texmf-dist/doc/latex/endnotesj/">endnotesj</a></b><small>
 (<a href="https://ctan.org/pkg/endnotesj">CTAN</a>):
-Japanese-style endnotes
+Japanese-style endnotes. 
 <a href="texmf-dist/doc/latex/endnotesj/endnotesj-ja.pdf">endnotesj-ja.pdf</a> (ja).
 </small></li>
 
-<li id="endofproofwd"><b><a href="texmf-dist/doc/latex/endofproofwd">endofproofwd</a></b><small>
+<li id="endofproofwd"><b><a href="texmf-dist/doc/latex/endofproofwd/">endofproofwd</a></b><small>
 (<a href="https://ctan.org/pkg/endofproofwd">CTAN</a>):
-An "end of proof" sign
+An "end of proof" sign. 
 <a href="texmf-dist/doc/latex/endofproofwd/endofproofwd.pdf">endofproofwd.pdf</a>.
 </small></li>
 
-<li id="engpron"><b><a href="texmf-dist/doc/latex/engpron">engpron</a></b><small>
+<li id="engpron"><b><a href="texmf-dist/doc/latex/engpron/">engpron</a></b><small>
 (<a href="https://ctan.org/pkg/engpron">CTAN</a>):
-Helps to type the pronunciation of English words
+Helps to type the pronunciation of English words. 
 <a href="texmf-dist/doc/latex/engpron/engpron-en.pdf">engpron-en.pdf</a>
 <a href="texmf-dist/doc/latex/engpron/engpron-ex-en.pdf">engpron-ex-en.pdf</a>
 <a href="texmf-dist/doc/latex/engpron/engpron-ex-fr.pdf">engpron-ex-fr.pdf</a> (fr) 
@@ -7176,178 +7160,177 @@
 <a href="texmf-dist/doc/latex/engpron/engpron.pdf">engpron.pdf</a> (fr).
 </small></li>
 
-<li id="engrec"><b><a href="texmf-dist/doc/latex/engrec">engrec</a></b><small>
+<li id="engrec"><b><a href="texmf-dist/doc/latex/engrec/">engrec</a></b><small>
 (<a href="https://ctan.org/pkg/engrec">CTAN</a>):
-Enumerate with lower- or uppercase Greek letters
+Enumerate with lower- or uppercase Greek letters. 
 <a href="texmf-dist/doc/latex/engrec/engrec.pdf">engrec.pdf</a>.
 </small></li>
 
-<li id="engtlc"><b><a href="texmf-dist/doc/latex/engtlc">engtlc</a></b><small>
+<li id="engtlc"><b><a href="texmf-dist/doc/latex/engtlc/">engtlc</a></b><small>
 (<a href="https://ctan.org/pkg/engtlc">CTAN</a>):
-Support for users in Telecommunications Engineering
+Support for users in Telecommunications Engineering. 
 <a href="texmf-dist/doc/latex/engtlc/engtlc.pdf">engtlc.pdf</a>
 <a href="texmf-dist/doc/latex/engtlc/itengtlc.pdf">itengtlc.pdf</a> (it).
 </small></li>
 
-<li id="enigma"><b><a href="texmf-dist/doc/context/third/enigma/enigma">enigma</a></b><small>
+<li id="enigma"><b><a href="texmf-dist/doc/context/third/enigma/enigma/">enigma</a></b><small>
 (<a href="https://ctan.org/pkg/enigma">CTAN</a>):
-Encrypt documents with a three rotor Enigma
+Encrypt documents with a three rotor Enigma. 
 <a href="texmf-dist/doc/context/third/enigma/enigma/enigma-doc.pdf">enigma-doc.pdf</a>.
 </small></li>
 
-<li id="enotez"><b><a href="texmf-dist/doc/latex/enotez">enotez</a></b><small>
+<li id="enotez"><b><a href="texmf-dist/doc/latex/enotez/">enotez</a></b><small>
 (<a href="https://ctan.org/pkg/enotez">CTAN</a>):
-Support for end-notes
+Support for end-notes. 
 <a href="texmf-dist/doc/latex/enotez/enotez_en.pdf">enotez_en.pdf</a>.
 </small></li>
 
-<li id="enumitem"><b><a href="texmf-dist/doc/latex/enumitem">enumitem</a></b><small>
+<li id="enumitem"><b><a href="texmf-dist/doc/latex/enumitem/">enumitem</a></b><small>
 (<a href="https://ctan.org/pkg/enumitem">CTAN</a>):
-Control layout of itemize, enumerate, description
+Control layout of itemize, enumerate, description. 
 <a href="texmf-dist/doc/latex/enumitem/enumitem.pdf">enumitem.pdf</a>.
 </small></li>
 
-<li id="enumitem-zref"><b><a href="texmf-dist/doc/latex/enumitem-zref">enumitem-zref</a></b><small>
+<li id="enumitem-zref"><b><a href="texmf-dist/doc/latex/enumitem-zref/">enumitem-zref</a></b><small>
 (<a href="https://ctan.org/pkg/enumitem-zref">CTAN</a>):
-Extended references to items for enumitem package
+Extended references to items for enumitem package. 
 <a href="texmf-dist/doc/latex/enumitem-zref/enumitem-zref.pdf">enumitem-zref.pdf</a>.
 </small></li>
 
-<li id="environ"><b><a href="texmf-dist/doc/latex/environ">environ</a></b><small>
+<li id="environ"><b><a href="texmf-dist/doc/latex/environ/">environ</a></b><small>
 (<a href="https://ctan.org/pkg/environ">CTAN</a>):
-A new interface for environments in LaTeX
+A new interface for environments in LaTeX. 
 <a href="texmf-dist/doc/latex/environ/environ.pdf">environ.pdf</a>.
 </small></li>
 
-<li id="envlab"><b><a href="texmf-dist/doc/latex/envlab">envlab</a></b><small>
+<li id="envlab"><b><a href="texmf-dist/doc/latex/envlab/">envlab</a></b><small>
 (<a href="https://ctan.org/pkg/envlab">CTAN</a>):
-Addresses on envelopes or mailing labels
+Addresses on envelopes or mailing labels. 
 <a href="texmf-dist/doc/latex/envlab/elguide.pdf">elguide.pdf</a>
 <a href="texmf-dist/doc/latex/envlab/envlab.pdf">envlab.pdf</a>.
 </small></li>
 
-<li id="epigrafica"><b><a href="texmf-dist/doc/fonts/epigrafica">epigrafica</a></b><small>
+<li id="epigrafica"><b><a href="texmf-dist/doc/fonts/epigrafica/">epigrafica</a></b><small>
 (<a href="https://ctan.org/pkg/epigrafica">CTAN</a>):
-A Greek and Latin font
+A Greek and Latin font. 
 <a href="texmf-dist/doc/fonts/epigrafica/epigrafica.pdf">epigrafica.pdf</a>.
 </small></li>
 
-<li id="epigraph"><b><a href="texmf-dist/doc/latex/epigraph">epigraph</a></b><small>
+<li id="epigraph"><b><a href="texmf-dist/doc/latex/epigraph/">epigraph</a></b><small>
 (<a href="https://ctan.org/pkg/epigraph">CTAN</a>):
-A package for typesetting epigraphs
+A package for typesetting epigraphs. 
 <a href="texmf-dist/doc/latex/epigraph/epigraph.pdf">epigraph.pdf</a>.
 </small></li>
 
-<li id="epigraph-keys"><b><a href="texmf-dist/doc/latex/epigraph-keys">epigraph-keys</a></b><small>
+<li id="epigraph-keys"><b><a href="texmf-dist/doc/latex/epigraph-keys/">epigraph-keys</a></b><small>
 (<a href="https://ctan.org/pkg/epigraph-keys">CTAN</a>):
-Epigraphs using key values
+Epigraphs using key values. 
 <a href="texmf-dist/doc/latex/epigraph-keys/epigraph-keys.pdf">epigraph-keys.pdf</a>.
 </small></li>
 
-<li id="epiolmec"><b><a href="texmf-dist/doc/latex/epiolmec">epiolmec</a></b><small>
+<li id="epiolmec"><b><a href="texmf-dist/doc/latex/epiolmec/">epiolmec</a></b><small>
 (<a href="https://ctan.org/pkg/epiolmec">CTAN</a>):
-Typesetting the Epi-Olmec Language
+Typesetting the Epi-Olmec Language. 
 <a href="texmf-dist/doc/latex/epiolmec/GlyphAccessCommands.pdf">GlyphAccessCommands.pdf</a>.
 </small></li>
 
-<li id="eplain"><b><a href="texmf-dist/doc/eplain">eplain</a></b><small>
+<li id="eplain"><b><a href="texmf-dist/doc/eplain/">eplain</a></b><small>
 (<a href="https://ctan.org/pkg/eplain">CTAN</a>):
-Extended plain TeX macros
+Extended plain TeX macros. 
 <a href="texmf-dist/doc/eplain/eplain.html">eplain.html</a>
 <a href="texmf-dist/doc/eplain/eplain.pdf">eplain.pdf</a>
 <a href="texmf-dist/doc/man/man1/eplain.man1.pdf">eplain.man1.pdf</a>.
 </small></li>
 
-<li id="epsdice"><b><a href="texmf-dist/doc/latex/epsdice">epsdice</a></b><small>
+<li id="epsdice"><b><a href="texmf-dist/doc/latex/epsdice/">epsdice</a></b><small>
 (<a href="https://ctan.org/pkg/epsdice">CTAN</a>):
-A scalable dice "font"
+A scalable dice "font". 
 <a href="texmf-dist/doc/latex/epsdice/dice.pdf">dice.pdf</a>
 <a href="texmf-dist/doc/latex/epsdice/epsdice.pdf">epsdice.pdf</a>.
 </small></li>
 
-<li id="epsf"><b><a href="texmf-dist/doc/generic/epsf">epsf</a></b><small>
+<li id="epsf"><b><a href="texmf-dist/doc/generic/epsf/">epsf</a></b><small>
 (<a href="https://ctan.org/pkg/epsf">CTAN</a>):
-Simple macros for EPS inclusion
+Simple macros for EPS inclusion. 
 <a href="texmf-dist/doc/generic/epsf/epsf-doc.pdf">epsf-doc.pdf</a>.
 </small></li>
 
-<li id="epslatex-fr"><b><a href="texmf-dist/doc/latex/epslatex-fr">epslatex-fr</a></b><small>
-(<a href="https://ctan.org/pkg/epslatex-fr">CTAN</a>):
-French version of "graphics in LaTeX"
+<li id="epslatex-fr"><b><a href="texmf-dist/doc/latex/epslatex-fr/">epslatex-fr</a></b><small>
+French version of "graphics in LaTeX". 
 <a href="texmf-dist/doc/latex/epslatex-fr/fepslatex.pdf">fepslatex.pdf</a>.
 </small></li>
 
-<li id="epspdf"><b><a href="texmf-dist/doc/support/epspdf">epspdf</a></b><small>
+<li id="epspdf"><b><a href="texmf-dist/doc/support/epspdf/">epspdf</a></b><small>
 (<a href="https://ctan.org/pkg/epspdf">CTAN</a>):
-Converter for PostScript, EPS and PDF
+Converter for PostScript, EPS and PDF. 
 <a href="texmf-dist/doc/support/epspdf/epspdf.pdf">epspdf.pdf</a>
 <a href="texmf-dist/doc/support/epspdf/images/logo.pdf">logo.pdf</a>.
 </small></li>
 
-<li id="epspdfconversion"><b><a href="texmf-dist/doc/latex/epspdfconversion">epspdfconversion</a></b><small>
+<li id="epspdfconversion"><b><a href="texmf-dist/doc/latex/epspdfconversion/">epspdfconversion</a></b><small>
 (<a href="https://ctan.org/pkg/epspdfconversion">CTAN</a>):
-On-the-fly conversion of EPS to PDF
+On-the-fly conversion of EPS to PDF. 
 <a href="texmf-dist/doc/latex/epspdfconversion/epspdfconversion.pdf">epspdfconversion.pdf</a>.
 </small></li>
 
-<li id="epstopdf"><b><a href="texmf-dist/doc/man/man1">epstopdf</a></b><small>
+<li id="epstopdf"><b><a href="texmf-dist/doc/man/man1/">epstopdf</a></b><small>
 (<a href="https://ctan.org/pkg/epstopdf">CTAN</a>):
-Convert EPS to PDF using Ghostscript
+Convert EPS to PDF using Ghostscript. 
 <a href="texmf-dist/doc/man/man1/epstopdf.man1.pdf">epstopdf.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/repstopdf.man1.pdf">repstopdf.man1.pdf</a>.
 </small></li>
 
-<li id="epstopdf-pkg"><b><a href="texmf-dist/doc/latex/epstopdf-pkg">epstopdf-pkg</a></b><small>
+<li id="epstopdf-pkg"><b><a href="texmf-dist/doc/latex/epstopdf-pkg/">epstopdf-pkg</a></b><small>
 (<a href="https://ctan.org/pkg/epstopdf-pkg">CTAN</a>):
-Call epstopdf "on the fly"
+Call epstopdf "on the fly". 
 <a href="texmf-dist/doc/latex/epstopdf-pkg/epstopdf.pdf">epstopdf.pdf</a>.
 </small></li>
 
-<li id="eqell"><b><a href="texmf-dist/doc/latex/eqell">eqell</a></b><small>
+<li id="eqell"><b><a href="texmf-dist/doc/latex/eqell/">eqell</a></b><small>
 (<a href="https://ctan.org/pkg/eqell">CTAN</a>):
-Sympathetically spaced ellipsis after punctuation
+Sympathetically spaced ellipsis after punctuation. 
 <a href="texmf-dist/doc/latex/eqell/eqell.pdf">eqell.pdf</a>.
 </small></li>
 
-<li id="eqexpl"><b><a href="texmf-dist/doc/latex/eqexpl">eqexpl</a></b><small>
+<li id="eqexpl"><b><a href="texmf-dist/doc/latex/eqexpl/">eqexpl</a></b><small>
 (<a href="https://ctan.org/pkg/eqexpl">CTAN</a>):
-Align explanations for formulas
+Align explanations for formulas. 
 <a href="texmf-dist/doc/latex/eqexpl/eqexpl.pdf">eqexpl.pdf</a>.
 </small></li>
 
-<li id="eqlist"><b><a href="texmf-dist/doc/latex/eqlist">eqlist</a></b><small>
+<li id="eqlist"><b><a href="texmf-dist/doc/latex/eqlist/">eqlist</a></b><small>
 (<a href="https://ctan.org/pkg/eqlist">CTAN</a>):
-Description lists with equal indentation
+Description lists with equal indentation. 
 <a href="texmf-dist/doc/latex/eqlist/eqlist.pdf">eqlist.pdf</a>.
 </small></li>
 
-<li id="eqnalign"><b><a href="texmf-dist/doc/latex/eqnalign">eqnalign</a></b><small>
+<li id="eqnalign"><b><a href="texmf-dist/doc/latex/eqnalign/">eqnalign</a></b><small>
 (<a href="https://ctan.org/pkg/eqnalign">CTAN</a>):
-Make eqnarray behave like align
+Make eqnarray behave like align. 
 <a href="texmf-dist/doc/latex/eqnalign/eqnalign.pdf">eqnalign.pdf</a>.
 </small></li>
 
-<li id="eqnarray"><b><a href="texmf-dist/doc/latex/eqnarray">eqnarray</a></b><small>
+<li id="eqnarray"><b><a href="texmf-dist/doc/latex/eqnarray/">eqnarray</a></b><small>
 (<a href="https://ctan.org/pkg/eqnarray">CTAN</a>):
-More generalised equation arrays with numbering
+More generalised equation arrays with numbering. 
 <a href="texmf-dist/doc/latex/eqnarray/eqnarray.pdf">eqnarray.pdf</a>.
 </small></li>
 
-<li id="eqnnumwarn"><b><a href="texmf-dist/doc/latex/eqnnumwarn">eqnnumwarn</a></b><small>
+<li id="eqnnumwarn"><b><a href="texmf-dist/doc/latex/eqnnumwarn/">eqnnumwarn</a></b><small>
 (<a href="https://ctan.org/pkg/eqnnumwarn">CTAN</a>):
-Modifies the amsmath equation environments to warn for a displaced equation number
+Modifies the amsmath equation environments to warn for a displaced equation number. 
 <a href="texmf-dist/doc/latex/eqnnumwarn/eqnnumwarn.pdf">eqnnumwarn.pdf</a>.
 </small></li>
 
-<li id="eqparbox"><b><a href="texmf-dist/doc/latex/eqparbox">eqparbox</a></b><small>
+<li id="eqparbox"><b><a href="texmf-dist/doc/latex/eqparbox/">eqparbox</a></b><small>
 (<a href="https://ctan.org/pkg/eqparbox">CTAN</a>):
-Create equal-widthed parboxes
+Create equal-widthed parboxes. 
 <a href="texmf-dist/doc/latex/eqparbox/eqparbox.pdf">eqparbox.pdf</a>.
 </small></li>
 
-<li id="erdc"><b><a href="texmf-dist/doc/latex/erdc">erdc</a></b><small>
+<li id="erdc"><b><a href="texmf-dist/doc/latex/erdc/">erdc</a></b><small>
 (<a href="https://ctan.org/pkg/erdc">CTAN</a>):
-Style for Reports by US Army Corps of Engineers
+Style for Reports by US Army Corps of Engineers. 
 <a href="texmf-dist/doc/latex/erdc/erdc.pdf">erdc.pdf</a>
 <a href="texmf-dist/doc/latex/erdc/nola.pdf">nola.pdf</a>
 <a href="texmf-dist/doc/latex/erdc/red_corps_castle2.pdf">red_corps_castle2.pdf</a>
@@ -7354,41 +7337,40 @@
 <a href="texmf-dist/doc/latex/erdc/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="erewhon"><b><a href="texmf-dist/doc/fonts/erewhon">erewhon</a></b><small>
+<li id="erewhon"><b><a href="texmf-dist/doc/fonts/erewhon/">erewhon</a></b><small>
 (<a href="https://ctan.org/pkg/erewhon">CTAN</a>):
-Font package derived from Heuristica and Utopia
+Font package derived from Heuristica and Utopia. 
 <a href="texmf-dist/doc/fonts/erewhon/erewhon-doc.pdf">erewhon-doc.pdf</a>.
 </small></li>
 
-<li id="erewhon-math"><b><a href="texmf-dist/doc/fonts/erewhon-math">erewhon-math</a></b><small>
+<li id="erewhon-math"><b><a href="texmf-dist/doc/fonts/erewhon-math/">erewhon-math</a></b><small>
 (<a href="https://ctan.org/pkg/erewhon-math">CTAN</a>):
-Utopia based OpenType Math font
+Utopia based OpenType Math font. 
 <a href="texmf-dist/doc/fonts/erewhon-math/Erewhon-Math.pdf">Erewhon-Math.pdf</a>
 <a href="texmf-dist/doc/fonts/erewhon-math/unimath-erewhon.pdf">unimath-erewhon.pdf</a>.
 </small></li>
 
-<li id="errata"><b><a href="texmf-dist/doc/latex/errata">errata</a></b><small>
+<li id="errata"><b><a href="texmf-dist/doc/latex/errata/">errata</a></b><small>
 (<a href="https://ctan.org/pkg/errata">CTAN</a>):
-Error markup for LaTeX documents
+Error markup for LaTeX documents. 
 <a href="texmf-dist/doc/latex/errata/errata.pdf">errata.pdf</a>.
 </small></li>
 
-<li id="erw-l3"><b><a href="texmf-dist/doc/latex/erw-l3">erw-l3</a></b><small>
+<li id="erw-l3"><b><a href="texmf-dist/doc/latex/erw-l3/">erw-l3</a></b><small>
 (<a href="https://ctan.org/pkg/erw-l3">CTAN</a>):
-Utilities built around expl3
+Utilities built around expl3. 
 <a href="texmf-dist/doc/latex/erw-l3/erw-l3.pdf">erw-l3.pdf</a>.
 </small></li>
 
-<li id="es-tex-faq"><b><a href="texmf-dist/doc/generic/es-tex-faq">es-tex-faq</a></b><small>
-(<a href="https://ctan.org/pkg/es-tex-faq">CTAN</a>):
-CervanTeX (Spanish TeX Group) FAQ
+<li id="es-tex-faq"><b><a href="texmf-dist/doc/generic/es-tex-faq/">es-tex-faq</a></b><small>
+CervanTeX (Spanish TeX Group) FAQ. 
 <a href="texmf-dist/doc/generic/es-tex-faq/FAQ-CervanTeX.html">FAQ-CervanTeX.html</a> (es) 
 <a href="texmf-dist/doc/generic/es-tex-faq/FAQ-CervanTeX.pdf">FAQ-CervanTeX.pdf</a> (es).
 </small></li>
 
-<li id="esami"><b><a href="texmf-dist/doc/latex/esami/doc">esami</a></b><small>
+<li id="esami"><b><a href="texmf-dist/doc/latex/esami/">esami</a></b><small>
 (<a href="https://ctan.org/pkg/esami">CTAN</a>):
-Typeset exams with scrambled questions and answers
+Typeset exams with scrambled questions and answers. 
 <a href="texmf-dist/doc/latex/esami/doc/esami-doc-en.pdf">esami-doc-en.pdf</a>
 <a href="texmf-dist/doc/latex/esami/doc/esami-doc-it.pdf">esami-doc-it.pdf</a> (it) 
 <a href="texmf-dist/doc/latex/esami/doc/examples/testA-luatex-sol.pdf">testA-luatex-sol.pdf</a>
@@ -7399,77 +7381,76 @@
 <a href="texmf-dist/doc/latex/esami/doc/examples/testA.pdf">testA.pdf</a>.
 </small></li>
 
-<li id="esdiff"><b><a href="texmf-dist/doc/latex/esdiff">esdiff</a></b><small>
+<li id="esdiff"><b><a href="texmf-dist/doc/latex/esdiff/">esdiff</a></b><small>
 (<a href="https://ctan.org/pkg/esdiff">CTAN</a>):
-Simplify typesetting of derivatives
+Simplify typesetting of derivatives. 
 <a href="texmf-dist/doc/latex/esdiff/esdiff.pdf">esdiff.pdf</a>.
 </small></li>
 
-<li id="ESIEEcv"><b><a href="texmf-dist/doc/latex/ESIEEcv">ESIEEcv</a></b><small>
-(<a href="https://ctan.org/pkg/ESIEEcv">CTAN</a>):
-Curriculum vitae for French use
+<li id="ESIEEcv"><b><a href="texmf-dist/doc/latex/ESIEEcv/">ESIEEcv</a></b><small>
+Curriculum vitae for French use. 
 <a href="texmf-dist/doc/latex/ESIEEcv/ESIEEcv.pdf">ESIEEcv.pdf</a>
 <a href="texmf-dist/doc/latex/ESIEEcv/cvtest.pdf">cvtest.pdf</a>.
 </small></li>
 
-<li id="esindex"><b><a href="texmf-dist/doc/latex/esindex">esindex</a></b><small>
+<li id="esindex"><b><a href="texmf-dist/doc/latex/esindex/">esindex</a></b><small>
 (<a href="https://ctan.org/pkg/esindex">CTAN</a>):
-Typset index entries in Spanish documents
+Typset index entries in Spanish documents. 
 <a href="texmf-dist/doc/latex/esindex/esindex.pdf">esindex.pdf</a>.
 </small></li>
 
-<li id="esint"><b><a href="texmf-dist/doc/latex/esint">esint</a></b><small>
+<li id="esint"><b><a href="texmf-dist/doc/latex/esint/">esint</a></b><small>
 (<a href="https://ctan.org/pkg/esint">CTAN</a>):
-Extended set of integrals for Computer Modern
+Extended set of integrals for Computer Modern. 
 <a href="texmf-dist/doc/latex/esint/esint-doc.pdf">esint-doc.pdf</a>.
 </small></li>
 
-<li id="esint-type1"><b><a href="texmf-dist/doc/fonts/esint-type1">esint-type1</a></b><small>
+<li id="esint-type1"><b><a href="texmf-dist/doc/fonts/esint-type1/">esint-type1</a></b><small>
 (<a href="https://ctan.org/pkg/esint-type1">CTAN</a>):
-Font esint10 in Type 1 format
+Font esint10 in Type 1 format. 
 <a href="texmf-dist/doc/fonts/esint-type1/table.pdf">table.pdf</a>.
 </small></li>
 
-<li id="esk"><b><a href="texmf-dist/doc/latex/esk">esk</a></b><small>
+<li id="esk"><b><a href="texmf-dist/doc/latex/esk/">esk</a></b><small>
 (<a href="https://ctan.org/pkg/esk">CTAN</a>):
-Package to encapsulate Sketch files in LaTeX sources
+Package to encapsulate Sketch files in LaTeX sources. 
 <a href="texmf-dist/doc/latex/esk/esk.pdf">esk.pdf</a>
 <a href="texmf-dist/doc/latex/esk/eskman.pdf">eskman.pdf</a>.
 </small></li>
 
-<li id="eskd"><b><a href="texmf-dist/doc/latex/eskd">eskd</a></b><small>
+<li id="eskd"><b><a href="texmf-dist/doc/latex/eskd/">eskd</a></b><small>
 (<a href="https://ctan.org/pkg/eskd">CTAN</a>):
-Modern Russian typesetting
+Modern Russian typesetting. 
 <a href="texmf-dist/doc/latex/eskd/eskd.pdf">eskd.pdf</a>.
 </small></li>
 
-<li id="eskdx"><b><a href="texmf-dist/doc/latex/eskdx/manual">eskdx</a></b><small>
+<li id="eskdx"><b><a href="texmf-dist/doc/latex/eskdx/">eskdx</a></b><small>
 (<a href="https://ctan.org/pkg/eskdx">CTAN</a>):
-Modern Russian typesetting
+Modern Russian typesetting. 
 <a href="texmf-dist/doc/latex/eskdx/manual/eskdx.pdf">eskdx.pdf</a> (ru).
 </small></li>
 
-<li id="eso-pic"><b><a href="texmf-dist/doc/latex/eso-pic">eso-pic</a></b><small>
+<li id="eso-pic"><b><a href="texmf-dist/doc/latex/eso-pic/">eso-pic</a></b><small>
 (<a href="https://ctan.org/pkg/eso-pic">CTAN</a>):
-Add picture commands (or backgrounds) to every page
+Add picture commands (or backgrounds) to every page. 
 <a href="texmf-dist/doc/latex/eso-pic/eso-pic.pdf">eso-pic.pdf</a>.
 </small></li>
 
-<li id="esrelation"><b><a href="texmf-dist/doc/fonts/esrelation">esrelation</a></b><small>
+<li id="esrelation"><b><a href="texmf-dist/doc/fonts/esrelation/">esrelation</a></b><small>
 (<a href="https://ctan.org/pkg/esrelation">CTAN</a>):
-Provides a symbol set for describing relations between ordered pairs
+Provides a symbol set for describing relations between ordered pairs. 
 <a href="texmf-dist/doc/fonts/esrelation/esrelation.pdf">esrelation.pdf</a>.
 </small></li>
 
-<li id="esstix"><b><a href="texmf-dist/doc/fonts/esstix">esstix</a></b><small>
+<li id="esstix"><b><a href="texmf-dist/doc/fonts/esstix/">esstix</a></b><small>
 (<a href="https://ctan.org/pkg/esstix">CTAN</a>):
-PostScript versions of the ESSTIX, with macro support
+PostScript versions of the ESSTIX, with macro support. 
 <a href="texmf-dist/doc/fonts/esstix/Esstix.pdf">Esstix.pdf</a>.
 </small></li>
 
-<li id="estcpmm"><b><a href="texmf-dist/doc/latex/estcpmm">estcpmm</a></b><small>
+<li id="estcpmm"><b><a href="texmf-dist/doc/latex/estcpmm/">estcpmm</a></b><small>
 (<a href="https://ctan.org/pkg/estcpmm">CTAN</a>):
-Style for Munitions Management Project Reports
+Style for Munitions Management Project Reports. 
 <a href="texmf-dist/doc/latex/estcpmm/estcp.pdf">estcp.pdf</a>
 <a href="texmf-dist/doc/latex/estcpmm/estcpmm.pdf">estcpmm.pdf</a>
 <a href="texmf-dist/doc/latex/estcpmm/red_corps_castle2.pdf">red_corps_castle2.pdf</a>
@@ -7476,27 +7457,27 @@
 <a href="texmf-dist/doc/latex/estcpmm/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="esvect"><b><a href="texmf-dist/doc/latex/esvect">esvect</a></b><small>
+<li id="esvect"><b><a href="texmf-dist/doc/latex/esvect/">esvect</a></b><small>
 (<a href="https://ctan.org/pkg/esvect">CTAN</a>):
-Vector arrows
+Vector arrows. 
 <a href="texmf-dist/doc/latex/esvect/esvect.pdf">esvect.pdf</a>.
 </small></li>
 
-<li id="etaremune"><b><a href="texmf-dist/doc/latex/etaremune">etaremune</a></b><small>
+<li id="etaremune"><b><a href="texmf-dist/doc/latex/etaremune/">etaremune</a></b><small>
 (<a href="https://ctan.org/pkg/etaremune">CTAN</a>):
-Reverse-counting enumerate environment
+Reverse-counting enumerate environment. 
 <a href="texmf-dist/doc/latex/etaremune/etaremune.pdf">etaremune.pdf</a>.
 </small></li>
 
-<li id="etbb"><b><a href="texmf-dist/doc/fonts/etbb">etbb</a></b><small>
+<li id="etbb"><b><a href="texmf-dist/doc/fonts/etbb/">etbb</a></b><small>
 (<a href="https://ctan.org/pkg/etbb">CTAN</a>):
-An expansion of Edward Tufte's ET-Bembo family
+An expansion of Edward Tufte's ET-Bembo family. 
 <a href="texmf-dist/doc/fonts/etbb/ETbb-doc.pdf">ETbb-doc.pdf</a>.
 </small></li>
 
-<li id="etdipa"><b><a href="texmf-dist/doc/latex/etdipa/Help">etdipa</a></b><small>
+<li id="etdipa"><b><a href="texmf-dist/doc/latex/etdipa/">etdipa</a></b><small>
 (<a href="https://ctan.org/pkg/etdipa">CTAN</a>):
-Simple, lightweight template for scientific documents
+Simple, lightweight template for scientific documents. 
 <a href="texmf-dist/doc/latex/etdipa/Help/etdipa_doc_DE.pdf">etdipa_doc_DE.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/etdipa/Help/etdipa_doc_EN.pdf">etdipa_doc_EN.pdf</a>
 <a href="texmf-dist/doc/latex/etdipa/Images/Ordnerstruktur.pdf">Ordnerstruktur.pdf</a>
@@ -7506,9 +7487,9 @@
 <a href="texmf-dist/doc/latex/etdipa/Images/titlepic.pdf">titlepic.pdf</a>.
 </small></li>
 
-<li id="etex"><b><a href="texmf-dist/doc/etex/base">etex</a></b><small>
+<li id="etex"><b><a href="texmf-dist/doc/etex/base/">etex</a></b><small>
 (<a href="https://ctan.org/pkg/etex">CTAN</a>):
-An extended version of TeX, from the NTS project
+An extended version of TeX, from the NTS project. 
 <a href="texmf-dist/doc/etex/base/etex_man.pdf">etex_man.pdf</a>
 <a href="texmf-dist/doc/etex/base/etex_ref.html">etex_ref.html</a>
 <a href="texmf-dist/doc/etex/base/etex_src.html">etex_src.html</a>
@@ -7517,98 +7498,98 @@
 <a href="texmf-dist/doc/man/man1/etex.man1.pdf">etex.man1.pdf</a>.
 </small></li>
 
-<li id="etexcmds"><b><a href="texmf-dist/doc/latex/etexcmds">etexcmds</a></b><small>
+<li id="etexcmds"><b><a href="texmf-dist/doc/latex/etexcmds/">etexcmds</a></b><small>
 (<a href="https://ctan.org/pkg/etexcmds">CTAN</a>):
-Avoid name clashes with e-TeX commands
+Avoid name clashes with e-TeX commands. 
 <a href="texmf-dist/doc/latex/etexcmds/etexcmds.pdf">etexcmds.pdf</a>.
 </small></li>
 
-<li id="etextools"><b><a href="texmf-dist/doc/latex/etextools">etextools</a></b><small>
+<li id="etextools"><b><a href="texmf-dist/doc/latex/etextools/">etextools</a></b><small>
 (<a href="https://ctan.org/pkg/etextools">CTAN</a>):
-e-TeX tools for LaTeX users and package writers
+e-TeX tools for LaTeX users and package writers. 
 <a href="texmf-dist/doc/latex/etextools/etextools-examples.pdf">etextools-examples.pdf</a>
 <a href="texmf-dist/doc/latex/etextools/etextools.pdf">etextools.pdf</a>.
 </small></li>
 
-<li id="ethiop"><b><a href="texmf-dist/doc/latex/ethiop">ethiop</a></b><small>
+<li id="ethiop"><b><a href="texmf-dist/doc/latex/ethiop/">ethiop</a></b><small>
 (<a href="https://ctan.org/pkg/ethiop">CTAN</a>):
-LaTeX macros and fonts for typesetting Amharic
+LaTeX macros and fonts for typesetting Amharic. 
 <a href="texmf-dist/doc/latex/ethiop/ethiodoc.pdf">ethiodoc.pdf</a>.
 </small></li>
 
-<li id="etoc"><b><a href="texmf-dist/doc/latex/etoc">etoc</a></b><small>
+<li id="etoc"><b><a href="texmf-dist/doc/latex/etoc/">etoc</a></b><small>
 (<a href="https://ctan.org/pkg/etoc">CTAN</a>):
-Completely customisable TOCs
+Completely customisable TOCs. 
 <a href="texmf-dist/doc/latex/etoc/etoc-DE.pdf">etoc-DE.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/etoc/etoc.pdf">etoc.pdf</a>.
 </small></li>
 
-<li id="etoolbox"><b><a href="texmf-dist/doc/latex/etoolbox">etoolbox</a></b><small>
+<li id="etoolbox"><b><a href="texmf-dist/doc/latex/etoolbox/">etoolbox</a></b><small>
 (<a href="https://ctan.org/pkg/etoolbox">CTAN</a>):
-e-TeX tools for LaTeX
+e-TeX tools for LaTeX. 
 <a href="texmf-dist/doc/latex/etoolbox/etoolbox.pdf">etoolbox.pdf</a>.
 </small></li>
 
-<li id="etoolbox-de"><b><a href="texmf-dist/doc/latex/etoolbox-de">etoolbox-de</a></b><small>
+<li id="etoolbox-de"><b><a href="texmf-dist/doc/latex/etoolbox-de/">etoolbox-de</a></b><small>
 (<a href="https://ctan.org/pkg/etoolbox-de">CTAN</a>):
-German translation of documentation of etoolbox
+German translation of documentation of etoolbox. 
 <a href="texmf-dist/doc/latex/etoolbox-de/etoolbox-DE.pdf">etoolbox-DE.pdf</a>.
 </small></li>
 
-<li id="euclideangeometry"><b><a href="texmf-dist/doc/latex/euclideangeometry">euclideangeometry</a></b><small>
+<li id="euclideangeometry"><b><a href="texmf-dist/doc/latex/euclideangeometry/">euclideangeometry</a></b><small>
 (<a href="https://ctan.org/pkg/euclideangeometry">CTAN</a>):
-Draw geometrical constructions
+Draw geometrical constructions. 
 <a href="texmf-dist/doc/latex/euclideangeometry/euclideangeometry-man.pdf">euclideangeometry-man.pdf</a>
 <a href="texmf-dist/doc/latex/euclideangeometry/euclideangeometry.pdf">euclideangeometry.pdf</a>.
 </small></li>
 
-<li id="euenc"><b><a href="texmf-dist/doc/latex/euenc">euenc</a></b><small>
+<li id="euenc"><b><a href="texmf-dist/doc/latex/euenc/">euenc</a></b><small>
 (<a href="https://ctan.org/pkg/euenc">CTAN</a>):
-Unicode font encoding definitions for XeTeX
+Unicode font encoding definitions for XeTeX. 
 <a href="texmf-dist/doc/latex/euenc/euenc.pdf">euenc.pdf</a>.
 </small></li>
 
-<li id="euflag"><b><a href="texmf-dist/doc/latex/euflag">euflag</a></b><small>
+<li id="euflag"><b><a href="texmf-dist/doc/latex/euflag/">euflag</a></b><small>
 (<a href="https://ctan.org/pkg/euflag">CTAN</a>):
-A command to reproduce the flag of the European Union
+A command to reproduce the flag of the European Union. 
 <a href="texmf-dist/doc/latex/euflag/euflag.pdf">euflag.pdf</a>.
 </small></li>
 
-<li id="eukdate"><b><a href="texmf-dist/doc/latex/eukdate">eukdate</a></b><small>
+<li id="eukdate"><b><a href="texmf-dist/doc/latex/eukdate/">eukdate</a></b><small>
 (<a href="https://ctan.org/pkg/eukdate">CTAN</a>):
-UK format dates, with weekday
+UK format dates, with weekday. 
 <a href="texmf-dist/doc/latex/eukdate/eukdate.pdf">eukdate.pdf</a>.
 </small></li>
 
-<li id="euler"><b><a href="texmf-dist/doc/latex/euler">euler</a></b><small>
+<li id="euler"><b><a href="texmf-dist/doc/latex/euler/">euler</a></b><small>
 (<a href="https://ctan.org/pkg/euler">CTAN</a>):
-Use AMS Euler fonts for math
+Use AMS Euler fonts for math. 
 <a href="texmf-dist/doc/latex/euler/euler.pdf">euler.pdf</a>.
 </small></li>
 
-<li id="eulervm"><b><a href="texmf-dist/doc/latex/eulervm">eulervm</a></b><small>
+<li id="eulervm"><b><a href="texmf-dist/doc/latex/eulervm/">eulervm</a></b><small>
 (<a href="https://ctan.org/pkg/eulervm">CTAN</a>):
-Euler virtual math fonts
+Euler virtual math fonts. 
 <a href="texmf-dist/doc/latex/eulervm/eulervm.pdf">eulervm.pdf</a>.
 </small></li>
 
-<li id="euro"><b><a href="texmf-dist/doc/latex/euro">euro</a></b><small>
+<li id="euro"><b><a href="texmf-dist/doc/latex/euro/">euro</a></b><small>
 (<a href="https://ctan.org/pkg/euro">CTAN</a>):
-Provide Euro values for national currency amounts
+Provide Euro values for national currency amounts. 
 <a href="texmf-dist/doc/latex/euro/euro.pdf">euro.pdf</a>.
 </small></li>
 
-<li id="europasscv"><b><a href="texmf-dist/doc/latex/europasscv">europasscv</a></b><small>
+<li id="europasscv"><b><a href="texmf-dist/doc/latex/europasscv/">europasscv</a></b><small>
 (<a href="https://ctan.org/pkg/europasscv">CTAN</a>):
-Unofficial class for the new version of the Europass curriculum vitae
+Unofficial class for the new version of the Europass curriculum vitae. 
 <a href="texmf-dist/doc/latex/europasscv/europasscv.pdf">europasscv.pdf</a>
 <a href="texmf-dist/doc/latex/europasscv/example/europasscv_bib_en.pdf">europasscv_bib_en.pdf</a>
 <a href="texmf-dist/doc/latex/europasscv/example/europasscv_en.pdf">europasscv_en.pdf</a>.
 </small></li>
 
-<li id="europecv"><b><a href="texmf-dist/doc/latex/europecv">europecv</a></b><small>
+<li id="europecv"><b><a href="texmf-dist/doc/latex/europecv/">europecv</a></b><small>
 (<a href="https://ctan.org/pkg/europecv">CTAN</a>):
-Unofficial class for European curricula vitae
+Unofficial class for European curricula vitae. 
 <a href="texmf-dist/doc/latex/europecv/europecv.pdf">europecv.pdf</a>
 <a href="texmf-dist/doc/latex/europecv/examples/EuropeFlagCMYK-eps-converted-to.pdf">EuropeFlagCMYK-eps-converted-to.pdf</a>
 <a href="texmf-dist/doc/latex/europecv/examples/at.pdf">at.pdf</a>
@@ -7620,33 +7601,33 @@
 <a href="texmf-dist/doc/latex/europecv/templates/cv_template_en.pdf">cv_template_en.pdf</a>.
 </small></li>
 
-<li id="eurosym"><b><a href="texmf-dist/doc/fonts/eurosym">eurosym</a></b><small>
+<li id="eurosym"><b><a href="texmf-dist/doc/fonts/eurosym/">eurosym</a></b><small>
 (<a href="https://ctan.org/pkg/eurosym">CTAN</a>):
-Metafont and macros for Euro sign
+Metafont and macros for Euro sign. 
 <a href="texmf-dist/doc/fonts/eurosym/testeuro.pdf">testeuro.pdf</a>.
 </small></li>
 
-<li id="everyhook"><b><a href="texmf-dist/doc/latex/everyhook">everyhook</a></b><small>
+<li id="everyhook"><b><a href="texmf-dist/doc/latex/everyhook/">everyhook</a></b><small>
 (<a href="https://ctan.org/pkg/everyhook">CTAN</a>):
-Hooks for standard TeX token lists
+Hooks for standard TeX token lists. 
 <a href="texmf-dist/doc/latex/everyhook/everyhook.pdf">everyhook.pdf</a>.
 </small></li>
 
-<li id="everypage"><b><a href="texmf-dist/doc/latex/everypage">everypage</a></b><small>
+<li id="everypage"><b><a href="texmf-dist/doc/latex/everypage/">everypage</a></b><small>
 (<a href="https://ctan.org/pkg/everypage">CTAN</a>):
-Provide hooks to be run on every page of a document
+Provide hooks to be run on every page of a document. 
 <a href="texmf-dist/doc/latex/everypage/everypage.pdf">everypage.pdf</a>.
 </small></li>
 
-<li id="exam"><b><a href="texmf-dist/doc/latex/exam">exam</a></b><small>
+<li id="exam"><b><a href="texmf-dist/doc/latex/exam/">exam</a></b><small>
 (<a href="https://ctan.org/pkg/exam">CTAN</a>):
-Package for typesetting exam scripts
+Package for typesetting exam scripts. 
 <a href="texmf-dist/doc/latex/exam/examdoc.pdf">examdoc.pdf</a>.
 </small></li>
 
-<li id="exam-n"><b><a href="texmf-dist/doc/latex/exam-n">exam-n</a></b><small>
+<li id="exam-n"><b><a href="texmf-dist/doc/latex/exam-n/">exam-n</a></b><small>
 (<a href="https://ctan.org/pkg/exam-n">CTAN</a>):
-Exam class, focused on collaborative authoring
+Exam class, focused on collaborative authoring. 
 <a href="texmf-dist/doc/latex/exam-n/exam-n.html">exam-n.html</a>
 <a href="texmf-dist/doc/latex/exam-n/exam-n.pdf">exam-n.pdf</a>
 <a href="texmf-dist/doc/latex/exam-n/notes-for-authors.pdf">notes-for-authors.pdf</a>
@@ -7656,16 +7637,16 @@
 <a href="texmf-dist/doc/latex/exam-n/sample_exam_solution.pdf">sample_exam_solution.pdf</a>.
 </small></li>
 
-<li id="exam-randomizechoices"><b><a href="texmf-dist/doc/latex/exam-randomizechoices">exam-randomizechoices</a></b><small>
+<li id="exam-randomizechoices"><b><a href="texmf-dist/doc/latex/exam-randomizechoices/">exam-randomizechoices</a></b><small>
 (<a href="https://ctan.org/pkg/exam-randomizechoices">CTAN</a>):
-Randomize mc choices using the exam class
+Randomize mc choices using the exam class. 
 <a href="texmf-dist/doc/latex/exam-randomizechoices/exam-randomizechoices-doc.pdf">exam-randomizechoices-doc.pdf</a>
 <a href="texmf-dist/doc/latex/exam-randomizechoices/exam-randomizechoices.pdf">exam-randomizechoices.pdf</a>.
 </small></li>
 
-<li id="examdesign"><b><a href="texmf-dist/doc/latex/examdesign">examdesign</a></b><small>
+<li id="examdesign"><b><a href="texmf-dist/doc/latex/examdesign/">examdesign</a></b><small>
 (<a href="https://ctan.org/pkg/examdesign">CTAN</a>):
-LaTeX class for typesetting exams
+LaTeX class for typesetting exams. 
 <a href="texmf-dist/doc/latex/examdesign/examdesign.pdf">examdesign.pdf</a>
 <a href="texmf-dist/doc/latex/examdesign/examplea.pdf">examplea.pdf</a>
 <a href="texmf-dist/doc/latex/examdesign/exampleb.pdf">exampleb.pdf</a>
@@ -7672,9 +7653,9 @@
 <a href="texmf-dist/doc/latex/examdesign/examplec.pdf">examplec.pdf</a>.
 </small></li>
 
-<li id="examplep"><b><a href="texmf-dist/doc/latex/examplep">examplep</a></b><small>
+<li id="examplep"><b><a href="texmf-dist/doc/latex/examplep/">examplep</a></b><small>
 (<a href="https://ctan.org/pkg/examplep">CTAN</a>):
-Verbatim phrases and listings in LaTeX
+Verbatim phrases and listings in LaTeX. 
 <a href="texmf-dist/doc/latex/examplep/eurotex_2005_examplep.pdf">eurotex_2005_examplep.pdf</a>
 <a href="texmf-dist/doc/latex/examplep/houses.pdf">houses.pdf</a>
 <a href="texmf-dist/doc/latex/examplep/pexaminipage.pdf">pexaminipage.pdf</a>
@@ -7681,109 +7662,109 @@
 <a href="texmf-dist/doc/latex/examplep/shorthyp_t1xtts.pdf">shorthyp_t1xtts.pdf</a>.
 </small></li>
 
-<li id="excludeonly"><b><a href="texmf-dist/doc/latex/excludeonly">excludeonly</a></b><small>
+<li id="excludeonly"><b><a href="texmf-dist/doc/latex/excludeonly/">excludeonly</a></b><small>
 (<a href="https://ctan.org/pkg/excludeonly">CTAN</a>):
-Prevent files being \include-ed
+Prevent files being \include-ed. 
 <a href="texmf-dist/doc/latex/excludeonly/excludeonly.pdf">excludeonly.pdf</a>.
 </small></li>
 
-<li id="exercise"><b><a href="texmf-dist/doc/latex/exercise">exercise</a></b><small>
+<li id="exercise"><b><a href="texmf-dist/doc/latex/exercise/">exercise</a></b><small>
 (<a href="https://ctan.org/pkg/exercise">CTAN</a>):
-Typeset exercises, problems, etc. and their answers
+Typeset exercises, problems, etc. and their answers. 
 <a href="texmf-dist/doc/latex/exercise/exercise.pdf">exercise.pdf</a>.
 </small></li>
 
-<li id="exercisebank"><b><a href="texmf-dist/doc/latex/exercisebank">exercisebank</a></b><small>
+<li id="exercisebank"><b><a href="texmf-dist/doc/latex/exercisebank/">exercisebank</a></b><small>
 (<a href="https://ctan.org/pkg/exercisebank">CTAN</a>):
-Creating and managing exercises, and reusing them as composed sets
+Creating and managing exercises, and reusing them as composed sets. 
 <a href="texmf-dist/doc/latex/exercisebank/exercisebank-doc.pdf">exercisebank-doc.pdf</a>.
 </small></li>
 
-<li id="exercisepoints"><b><a href="texmf-dist/doc/latex/exercisepoints">exercisepoints</a></b><small>
+<li id="exercisepoints"><b><a href="texmf-dist/doc/latex/exercisepoints/">exercisepoints</a></b><small>
 (<a href="https://ctan.org/pkg/exercisepoints">CTAN</a>):
-A LaTeX package to count exercises and points
+A LaTeX package to count exercises and points. 
 <a href="texmf-dist/doc/latex/exercisepoints/exercisepoints.pdf">exercisepoints.pdf</a>.
 </small></li>
 
-<li id="exercises"><b><a href="texmf-dist/doc/latex/exercises">exercises</a></b><small>
+<li id="exercises"><b><a href="texmf-dist/doc/latex/exercises/">exercises</a></b><small>
 (<a href="https://ctan.org/pkg/exercises">CTAN</a>):
-Typeset exercises and solutions with automatic addition of points
+Typeset exercises and solutions with automatic addition of points. 
 <a href="texmf-dist/doc/latex/exercises/exercises.pdf">exercises.pdf</a>.
 </small></li>
 
-<li id="exframe"><b><a href="texmf-dist/doc/latex/exframe">exframe</a></b><small>
+<li id="exframe"><b><a href="texmf-dist/doc/latex/exframe/">exframe</a></b><small>
 (<a href="https://ctan.org/pkg/exframe">CTAN</a>):
-Framework for exercise problems
+Framework for exercise problems. 
 <a href="texmf-dist/doc/latex/exframe/exframe.pdf">exframe.pdf</a>.
 </small></li>
 
-<li id="exp-testopt"><b><a href="texmf-dist/doc/latex/exp-testopt">exp-testopt</a></b><small>
+<li id="exp-testopt"><b><a href="texmf-dist/doc/latex/exp-testopt/">exp-testopt</a></b><small>
 (<a href="https://ctan.org/pkg/exp-testopt">CTAN</a>):
-Expandable \@testopt (and related) macros
+Expandable \@testopt (and related) macros. 
 <a href="texmf-dist/doc/latex/exp-testopt/exp-testopt.pdf">exp-testopt.pdf</a> (eo).
 </small></li>
 
-<li id="expdlist"><b><a href="texmf-dist/doc/latex/expdlist">expdlist</a></b><small>
+<li id="expdlist"><b><a href="texmf-dist/doc/latex/expdlist/">expdlist</a></b><small>
 (<a href="https://ctan.org/pkg/expdlist">CTAN</a>):
-Expanded description environments
+Expanded description environments. 
 <a href="texmf-dist/doc/latex/expdlist/expdlisg.pdf">expdlisg.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/expdlist/expdlist.pdf">expdlist.pdf</a>.
 </small></li>
 
-<li id="expex"><b><a href="texmf-dist/doc/generic/expex">expex</a></b><small>
+<li id="expex"><b><a href="texmf-dist/doc/generic/expex/">expex</a></b><small>
 (<a href="https://ctan.org/pkg/expex">CTAN</a>):
-Linguistic examples and glosses, with reference capabilities
+Linguistic examples and glosses, with reference capabilities. 
 <a href="texmf-dist/doc/generic/expex/expex-doc.pdf">expex-doc.pdf</a>.
 </small></li>
 
-<li id="expkv"><b><a href="texmf-dist/doc/latex/expkv">expkv</a></b><small>
+<li id="expkv"><b><a href="texmf-dist/doc/latex/expkv/">expkv</a></b><small>
 (<a href="https://ctan.org/pkg/expkv">CTAN</a>):
-An expandable key=val implementation
+An expandable key=val implementation. 
 <a href="texmf-dist/doc/latex/expkv/expkv.pdf">expkv.pdf</a>.
 </small></li>
 
-<li id="expkv-cs"><b><a href="texmf-dist/doc/latex/expkv-cs">expkv-cs</a></b><small>
+<li id="expkv-cs"><b><a href="texmf-dist/doc/latex/expkv-cs/">expkv-cs</a></b><small>
 (<a href="https://ctan.org/pkg/expkv-cs">CTAN</a>):
-Define expandable key=val macros using expkv
+Define expandable key=val macros using expkv. 
 <a href="texmf-dist/doc/latex/expkv-cs/expkv-cs.pdf">expkv-cs.pdf</a>.
 </small></li>
 
-<li id="expkv-def"><b><a href="texmf-dist/doc/latex/expkv-def">expkv-def</a></b><small>
+<li id="expkv-def"><b><a href="texmf-dist/doc/latex/expkv-def/">expkv-def</a></b><small>
 (<a href="https://ctan.org/pkg/expkv-def">CTAN</a>):
-A key-defining frontend for expkv
+A key-defining frontend for expkv. 
 <a href="texmf-dist/doc/latex/expkv-def/expkv-def.pdf">expkv-def.pdf</a>.
 </small></li>
 
-<li id="export"><b><a href="texmf-dist/doc/latex/export">export</a></b><small>
+<li id="export"><b><a href="texmf-dist/doc/latex/export/">export</a></b><small>
 (<a href="https://ctan.org/pkg/export">CTAN</a>):
-Import and export values of LaTeX registers
+Import and export values of LaTeX registers. 
 <a href="texmf-dist/doc/latex/export/export.pdf">export.pdf</a>.
 </small></li>
 
-<li id="expose-expl3-dunkerque-2019"><b><a href="texmf-dist/doc/latex/expose-expl3-dunkerque-2019">expose-expl3-dunkerque-2019</a></b><small>
+<li id="expose-expl3-dunkerque-2019"><b><a href="texmf-dist/doc/latex/expose-expl3-dunkerque-2019/">expose-expl3-dunkerque-2019</a></b><small>
 (<a href="https://ctan.org/pkg/expose-expl3-dunkerque-2019">CTAN</a>):
-Using expl3 to implement some numerical algorithms
+Using expl3 to implement some numerical algorithms. 
 <a href="texmf-dist/doc/latex/expose-expl3-dunkerque-2019/dun19expl3.pdf">dun19expl3.pdf</a> (fr).
 </small></li>
 
-<li id="expressg"><b><a href="texmf-dist/doc/metapost/expressg">expressg</a></b><small>
+<li id="expressg"><b><a href="texmf-dist/doc/metapost/expressg/">expressg</a></b><small>
 (<a href="https://ctan.org/pkg/expressg">CTAN</a>):
-Diagrams consisting of boxes, lines, and annotations
+Diagrams consisting of boxes, lines, and annotations. 
 <a href="texmf-dist/doc/metapost/expressg/aamfigs.pdf">aamfigs.pdf</a>
 <a href="texmf-dist/doc/metapost/expressg/expeg.pdf">expeg.pdf</a>
 <a href="texmf-dist/doc/metapost/expressg/expressg.pdf">expressg.pdf</a>.
 </small></li>
 
-<li id="exsheets"><b><a href="texmf-dist/doc/latex/exsheets">exsheets</a></b><small>
+<li id="exsheets"><b><a href="texmf-dist/doc/latex/exsheets/">exsheets</a></b><small>
 (<a href="https://ctan.org/pkg/exsheets">CTAN</a>):
-Create exercise sheets and exams
+Create exercise sheets and exams. 
 <a href="texmf-dist/doc/latex/exsheets/exsheets_en.pdf">exsheets_en.pdf</a>
 <a href="texmf-dist/doc/latex/exsheets/grading-table.pdf">grading-table.pdf</a>.
 </small></li>
 
-<li id="exsol"><b><a href="texmf-dist/doc/latex/exsol">exsol</a></b><small>
+<li id="exsol"><b><a href="texmf-dist/doc/latex/exsol/">exsol</a></b><small>
 (<a href="https://ctan.org/pkg/exsol">CTAN</a>):
-Exercises and solutions from the same source, into a book
+Exercises and solutions from the same source, into a book. 
 <a href="texmf-dist/doc/latex/exsol/example-formulacollection.pdf">example-formulacollection.pdf</a>
 <a href="texmf-dist/doc/latex/exsol/example-local.pdf">example-local.pdf</a>
 <a href="texmf-dist/doc/latex/exsol/example-solutionbook.pdf">example-solutionbook.pdf</a>
@@ -7791,33 +7772,33 @@
 <a href="texmf-dist/doc/latex/exsol/exsol.pdf">exsol.pdf</a>.
 </small></li>
 
-<li id="extarrows"><b><a href="texmf-dist/doc/latex/extarrows">extarrows</a></b><small>
+<li id="extarrows"><b><a href="texmf-dist/doc/latex/extarrows/">extarrows</a></b><small>
 (<a href="https://ctan.org/pkg/extarrows">CTAN</a>):
-Extra Arrows beyond those provided in amsmath
+Extra Arrows beyond those provided in amsmath. 
 <a href="texmf-dist/doc/latex/extarrows/extarrows-test.pdf">extarrows-test.pdf</a>.
 </small></li>
 
-<li id="exteps"><b><a href="texmf-dist/doc/metapost/exteps">exteps</a></b><small>
+<li id="exteps"><b><a href="texmf-dist/doc/metapost/exteps/">exteps</a></b><small>
 (<a href="https://ctan.org/pkg/exteps">CTAN</a>):
-Include EPS figures in MetaPost
+Include EPS figures in MetaPost. 
 <a href="texmf-dist/doc/metapost/exteps/exteps.pdf">exteps.pdf</a>.
 </small></li>
 
-<li id="extpfeil"><b><a href="texmf-dist/doc/latex/extpfeil">extpfeil</a></b><small>
+<li id="extpfeil"><b><a href="texmf-dist/doc/latex/extpfeil/">extpfeil</a></b><small>
 (<a href="https://ctan.org/pkg/extpfeil">CTAN</a>):
-Extensible arrows in mathematics
+Extensible arrows in mathematics. 
 <a href="texmf-dist/doc/latex/extpfeil/extpfeil.pdf">extpfeil.pdf</a> (de).
 </small></li>
 
-<li id="extract"><b><a href="texmf-dist/doc/latex/extract">extract</a></b><small>
+<li id="extract"><b><a href="texmf-dist/doc/latex/extract/">extract</a></b><small>
 (<a href="https://ctan.org/pkg/extract">CTAN</a>):
-Extract parts of a document and write to another document
+Extract parts of a document and write to another document. 
 <a href="texmf-dist/doc/latex/extract/extract.pdf">extract.pdf</a>.
 </small></li>
 
-<li id="extsizes"><b><a href="texmf-dist/doc/latex/extsizes">extsizes</a></b><small>
+<li id="extsizes"><b><a href="texmf-dist/doc/latex/extsizes/">extsizes</a></b><small>
 (<a href="https://ctan.org/pkg/extsizes">CTAN</a>):
-Extend the standard classes' size options
+Extend the standard classes' size options. 
 <a href="texmf-dist/doc/latex/extsizes/extsizes.pdf">extsizes.pdf</a>.
 </small></li>
 
@@ -7825,24 +7806,24 @@
 
 <h2 id="letter-F">F</h2>
 
-<ol start="1048">
+<ol start="1049">
 
-<li id="facsimile"><b><a href="texmf-dist/doc/latex/facsimile">facsimile</a></b><small>
+<li id="facsimile"><b><a href="texmf-dist/doc/latex/facsimile/">facsimile</a></b><small>
 (<a href="https://ctan.org/pkg/facsimile">CTAN</a>):
-Document class for preparing faxes
+Document class for preparing faxes. 
 <a href="texmf-dist/doc/latex/facsimile/facsimile.pdf">facsimile.pdf</a>.
 </small></li>
 
-<li id="factura"><b><a href="texmf-dist/doc/latex/factura">factura</a></b><small>
+<li id="factura"><b><a href="texmf-dist/doc/latex/factura/">factura</a></b><small>
 (<a href="https://ctan.org/pkg/factura">CTAN</a>):
-Typeset and calculate invoices according to Venezuelan law
+Typeset and calculate invoices according to Venezuelan law. 
 <a href="texmf-dist/doc/latex/factura/factura-ejemplo-prefactura.pdf">factura-ejemplo-prefactura.pdf</a>
 <a href="texmf-dist/doc/latex/factura/factura.pdf">factura.pdf</a> (es-ve).
 </small></li>
 
-<li id="facture"><b><a href="texmf-dist/doc/xelatex/facture">facture</a></b><small>
+<li id="facture"><b><a href="texmf-dist/doc/xelatex/facture/">facture</a></b><small>
 (<a href="https://ctan.org/pkg/facture">CTAN</a>):
-Generate an invoice
+Generate an invoice. 
 <a href="texmf-dist/doc/xelatex/facture/exemple.pdf">exemple.pdf</a>
 <a href="texmf-dist/doc/xelatex/facture/exemplesansTVA.pdf">exemplesansTVA.pdf</a>
 <a href="texmf-dist/doc/xelatex/facture/exemplesansremise.pdf">exemplesansremise.pdf</a>
@@ -7849,85 +7830,85 @@
 <a href="texmf-dist/doc/xelatex/facture/facture.pdf">facture.pdf</a> (fr).
 </small></li>
 
-<li id="facture-belge-simple-sans-tva"><b><a href="texmf-dist/doc/xelatex/facture-belge-simple-sans-tva">facture-belge-simple-sans-tva</a></b><small>
+<li id="facture-belge-simple-sans-tva"><b><a href="texmf-dist/doc/xelatex/facture-belge-simple-sans-tva/">facture-belge-simple-sans-tva</a></b><small>
 (<a href="https://ctan.org/pkg/facture-belge-simple-sans-tva">CTAN</a>):
-Simple Belgian invoice without VAT
+Simple Belgian invoice without VAT. 
 <a href="texmf-dist/doc/xelatex/facture-belge-simple-sans-tva/article-facture.pdf">article-facture.pdf</a>
 <a href="texmf-dist/doc/xelatex/facture-belge-simple-sans-tva/article-note-de-frais.pdf">article-note-de-frais.pdf</a>
 <a href="texmf-dist/doc/xelatex/facture-belge-simple-sans-tva/facture-belge-simple-sans-tva-doc.pdf">facture-belge-simple-sans-tva-doc.pdf</a>.
 </small></li>
 
-<li id="faktor"><b><a href="texmf-dist/doc/latex/faktor">faktor</a></b><small>
+<li id="faktor"><b><a href="texmf-dist/doc/latex/faktor/">faktor</a></b><small>
 (<a href="https://ctan.org/pkg/faktor">CTAN</a>):
-Typeset quotient structures with LaTeX
+Typeset quotient structures with LaTeX. 
 <a href="texmf-dist/doc/latex/faktor/faktor.pdf">faktor.pdf</a> (de).
 </small></li>
 
-<li id="fancybox"><b><a href="texmf-dist/doc/latex/fancybox">fancybox</a></b><small>
+<li id="fancybox"><b><a href="texmf-dist/doc/latex/fancybox/">fancybox</a></b><small>
 (<a href="https://ctan.org/pkg/fancybox">CTAN</a>):
-Variants of \fbox and other games with boxes
+Variants of \fbox and other games with boxes. 
 <a href="texmf-dist/doc/latex/fancybox/fancybox-doc.pdf">fancybox-doc.pdf</a>.
 </small></li>
 
-<li id="fancyhandout"><b><a href="texmf-dist/doc/latex/fancyhandout">fancyhandout</a></b><small>
+<li id="fancyhandout"><b><a href="texmf-dist/doc/latex/fancyhandout/">fancyhandout</a></b><small>
 (<a href="https://ctan.org/pkg/fancyhandout">CTAN</a>):
-A LaTeX class for producing nice-looking handouts
+A LaTeX class for producing nice-looking handouts. 
 <a href="texmf-dist/doc/latex/fancyhandout/fancyhandout-doc.pdf">fancyhandout-doc.pdf</a>.
 </small></li>
 
-<li id="fancyhdr"><b><a href="texmf-dist/doc/latex/fancyhdr">fancyhdr</a></b><small>
+<li id="fancyhdr"><b><a href="texmf-dist/doc/latex/fancyhdr/">fancyhdr</a></b><small>
 (<a href="https://ctan.org/pkg/fancyhdr">CTAN</a>):
-Extensive control of page headers and footers in LaTeX2e
+Extensive control of page headers and footers in LaTeX2e. 
 <a href="texmf-dist/doc/latex/fancyhdr/fancyhdr.pdf">fancyhdr.pdf</a>.
 </small></li>
 
-<li id="fancyhdr-it"><b><a href="texmf-dist/doc/latex/fancyhdr-it">fancyhdr-it</a></b><small>
+<li id="fancyhdr-it"><b><a href="texmf-dist/doc/latex/fancyhdr-it/">fancyhdr-it</a></b><small>
 (<a href="https://ctan.org/pkg/fancyhdr-it">CTAN</a>):
-Italian translation of fancyhdr documentation
+Italian translation of fancyhdr documentation. 
 <a href="texmf-dist/doc/latex/fancyhdr-it/itfancyhdr.pdf">itfancyhdr.pdf</a>.
 </small></li>
 
-<li id="fancylabel"><b><a href="texmf-dist/doc/latex/fancylabel">fancylabel</a></b><small>
+<li id="fancylabel"><b><a href="texmf-dist/doc/latex/fancylabel/">fancylabel</a></b><small>
 (<a href="https://ctan.org/pkg/fancylabel">CTAN</a>):
-Complex labelling with LaTeX
+Complex labelling with LaTeX. 
 <a href="texmf-dist/doc/latex/fancylabel/fancylabel.pdf">fancylabel.pdf</a>.
 </small></li>
 
-<li id="fancynum"><b><a href="texmf-dist/doc/latex/fancynum">fancynum</a></b><small>
+<li id="fancynum"><b><a href="texmf-dist/doc/latex/fancynum/">fancynum</a></b><small>
 (<a href="https://ctan.org/pkg/fancynum">CTAN</a>):
-Typeset numbers
+Typeset numbers. 
 <a href="texmf-dist/doc/latex/fancynum/fancynum.pdf">fancynum.pdf</a>.
 </small></li>
 
-<li id="fancypar"><b><a href="texmf-dist/doc/latex/fancypar">fancypar</a></b><small>
+<li id="fancypar"><b><a href="texmf-dist/doc/latex/fancypar/">fancypar</a></b><small>
 (<a href="https://ctan.org/pkg/fancypar">CTAN</a>):
-Decoration of individual paragraphs
+Decoration of individual paragraphs. 
 <a href="texmf-dist/doc/latex/fancypar/fancypar.pdf">fancypar.pdf</a>.
 </small></li>
 
-<li id="fancyref"><b><a href="texmf-dist/doc/latex/fancyref">fancyref</a></b><small>
+<li id="fancyref"><b><a href="texmf-dist/doc/latex/fancyref/">fancyref</a></b><small>
 (<a href="https://ctan.org/pkg/fancyref">CTAN</a>):
-A LaTeX package for fancy cross-referencing
+A LaTeX package for fancy cross-referencing. 
 <a href="texmf-dist/doc/latex/fancyref/fancyref.pdf">fancyref.pdf</a>.
 </small></li>
 
-<li id="fancyslides"><b><a href="texmf-dist/doc/latex/fancyslides/doc">fancyslides</a></b><small>
+<li id="fancyslides"><b><a href="texmf-dist/doc/latex/fancyslides/">fancyslides</a></b><small>
 (<a href="https://ctan.org/pkg/fancyslides">CTAN</a>):
-Custom presentation class built upon LaTeX Beamer
+Custom presentation class built upon LaTeX Beamer. 
 <a href="texmf-dist/doc/latex/fancyslides/doc/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/latex/fancyslides/doc/fancyslides.pdf">fancyslides.pdf</a>
 <a href="texmf-dist/doc/latex/fancyslides/doc/fs.pdf">fs.pdf</a>.
 </small></li>
 
-<li id="fancytabs"><b><a href="texmf-dist/doc/latex/fancytabs">fancytabs</a></b><small>
+<li id="fancytabs"><b><a href="texmf-dist/doc/latex/fancytabs/">fancytabs</a></b><small>
 (<a href="https://ctan.org/pkg/fancytabs">CTAN</a>):
-Fancy page border tabs
+Fancy page border tabs. 
 <a href="texmf-dist/doc/latex/fancytabs/fancytabs.pdf">fancytabs.pdf</a>.
 </small></li>
 
-<li id="fancytooltips"><b><a href="texmf-dist/doc/latex/fancytooltips/examples">fancytooltips</a></b><small>
+<li id="fancytooltips"><b><a href="texmf-dist/doc/latex/fancytooltips/">fancytooltips</a></b><small>
 (<a href="https://ctan.org/pkg/fancytooltips">CTAN</a>):
-Include a wide range of material in PDF tooltips
+Include a wide range of material in PDF tooltips. 
 <a href="texmf-dist/doc/latex/fancytooltips/examples/fancy-preview-demo.pdf">fancy-preview-demo.pdf</a>
 <a href="texmf-dist/doc/latex/fancytooltips/examples/fancy-preview-demo2.pdf">fancy-preview-demo2.pdf</a>
 <a href="texmf-dist/doc/latex/fancytooltips/examples/fancytooltips-example.pdf">fancytooltips-example.pdf</a>
@@ -7941,80 +7922,80 @@
 <a href="texmf-dist/doc/latex/fancytooltips/tip.pdf">tip.pdf</a>.
 </small></li>
 
-<li id="fancyvrb"><b><a href="texmf-dist/doc/latex/fancyvrb">fancyvrb</a></b><small>
+<li id="fancyvrb"><b><a href="texmf-dist/doc/latex/fancyvrb/">fancyvrb</a></b><small>
 (<a href="https://ctan.org/pkg/fancyvrb">CTAN</a>):
-Sophisticated verbatim text
+Sophisticated verbatim text. 
 <a href="texmf-dist/doc/latex/fancyvrb/fancyvrb-doc.pdf">fancyvrb-doc.pdf</a>.
 </small></li>
 
-<li id="fascicules"><b><a href="texmf-dist/doc/latex/fascicules">fascicules</a></b><small>
+<li id="fascicules"><b><a href="texmf-dist/doc/latex/fascicules/">fascicules</a></b><small>
 (<a href="https://ctan.org/pkg/fascicules">CTAN</a>):
-Create mathematical manuals for schools
+Create mathematical manuals for schools. 
 <a href="texmf-dist/doc/latex/fascicules/fascicules.pdf">fascicules.pdf</a>
 <a href="texmf-dist/doc/latex/fascicules/guide/guide.pdf">guide.pdf</a> (fr).
 </small></li>
 
-<li id="fast-diagram"><b><a href="texmf-dist/doc/latex/fast-diagram">fast-diagram</a></b><small>
+<li id="fast-diagram"><b><a href="texmf-dist/doc/latex/fast-diagram/">fast-diagram</a></b><small>
 (<a href="https://ctan.org/pkg/fast-diagram">CTAN</a>):
-Easy generation of FAST diagrams
+Easy generation of FAST diagrams. 
 <a href="texmf-dist/doc/latex/fast-diagram/help.pdf">help.pdf</a> (fr).
 </small></li>
 
-<li id="fbb"><b><a href="texmf-dist/doc/fonts/fbb">fbb</a></b><small>
+<li id="fbb"><b><a href="texmf-dist/doc/fonts/fbb/">fbb</a></b><small>
 (<a href="https://ctan.org/pkg/fbb">CTAN</a>):
-A free Bembo-like font
+A free Bembo-like font. 
 <a href="texmf-dist/doc/fonts/fbb/fbb-doc.pdf">fbb-doc.pdf</a>.
 </small></li>
 
-<li id="fbithesis"><b><a href="texmf-dist/doc/latex/fbithesis">fbithesis</a></b><small>
+<li id="fbithesis"><b><a href="texmf-dist/doc/latex/fbithesis/">fbithesis</a></b><small>
 (<a href="https://ctan.org/pkg/fbithesis">CTAN</a>):
-Computer Science thesis class for University of Dortmund
+Computer Science thesis class for University of Dortmund. 
 <a href="texmf-dist/doc/latex/fbithesis/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/latex/fbithesis/fbithesis.pdf">fbithesis.pdf</a>.
 </small></li>
 
-<li id="fbox"><b><a href="texmf-dist/doc/latex/fbox">fbox</a></b><small>
+<li id="fbox"><b><a href="texmf-dist/doc/latex/fbox/">fbox</a></b><small>
 (<a href="https://ctan.org/pkg/fbox">CTAN</a>):
-Extended \fbox macro from standard LaTeX
+Extended \fbox macro from standard LaTeX. 
 <a href="texmf-dist/doc/latex/fbox/fbox.pdf">fbox.pdf</a>.
 </small></li>
 
-<li id="fcavtex"><b><a href="texmf-dist/doc/latex/fcavtex/examples">fcavtex</a></b><small>
+<li id="fcavtex"><b><a href="texmf-dist/doc/latex/fcavtex/">fcavtex</a></b><small>
 (<a href="https://ctan.org/pkg/fcavtex">CTAN</a>):
-A thesis class for the FCAV/UNESP (Brazil)
+A thesis class for the FCAV/UNESP (Brazil). 
 <a href="texmf-dist/doc/latex/fcavtex/examples/basico-principal.pdf">basico-principal.pdf</a>
 <a href="texmf-dist/doc/latex/fcavtex/manual/fcavtex.pdf">fcavtex.pdf</a> (pt).
 </small></li>
 
-<li id="fcltxdoc"><b><a href="texmf-dist/doc/latex/fcltxdoc">fcltxdoc</a></b><small>
+<li id="fcltxdoc"><b><a href="texmf-dist/doc/latex/fcltxdoc/">fcltxdoc</a></b><small>
 (<a href="https://ctan.org/pkg/fcltxdoc">CTAN</a>):
-Macros for use in the author's documentation
+Macros for use in the author's documentation. 
 <a href="texmf-dist/doc/latex/fcltxdoc/fcltxdoc.pdf">fcltxdoc.pdf</a>.
 </small></li>
 
-<li id="fcolumn"><b><a href="texmf-dist/doc/latex/fcolumn">fcolumn</a></b><small>
+<li id="fcolumn"><b><a href="texmf-dist/doc/latex/fcolumn/">fcolumn</a></b><small>
 (<a href="https://ctan.org/pkg/fcolumn">CTAN</a>):
-Typesetting financial tables
+Typesetting financial tables. 
 <a href="texmf-dist/doc/latex/fcolumn/fcolumn.pdf">fcolumn.pdf</a>.
 </small></li>
 
-<li id="fdsymbol"><b><a href="texmf-dist/doc/latex/fdsymbol">fdsymbol</a></b><small>
+<li id="fdsymbol"><b><a href="texmf-dist/doc/latex/fdsymbol/">fdsymbol</a></b><small>
 (<a href="https://ctan.org/pkg/fdsymbol">CTAN</a>):
-A maths symbol font
+A maths symbol font. 
 <a href="texmf-dist/doc/latex/fdsymbol/fdsymbol.pdf">fdsymbol.pdf</a>.
 </small></li>
 
-<li id="fduthesis"><b><a href="texmf-dist/doc/latex/fduthesis">fduthesis</a></b><small>
+<li id="fduthesis"><b><a href="texmf-dist/doc/latex/fduthesis/">fduthesis</a></b><small>
 (<a href="https://ctan.org/pkg/fduthesis">CTAN</a>):
-LaTeX thesis template for Fudan University
+LaTeX thesis template for Fudan University. 
 <a href="texmf-dist/doc/latex/fduthesis/fduthesis-code.pdf">fduthesis-code.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/fduthesis/fduthesis-en.pdf">fduthesis-en.pdf</a>
 <a href="texmf-dist/doc/latex/fduthesis/fduthesis.pdf">fduthesis.pdf</a> (zh).
 </small></li>
 
-<li id="featpost"><b><a href="texmf-dist/doc/metapost/featpost">featpost</a></b><small>
+<li id="featpost"><b><a href="texmf-dist/doc/metapost/featpost/">featpost</a></b><small>
 (<a href="https://ctan.org/pkg/featpost">CTAN</a>):
-MetaPost macros for 3D
+MetaPost macros for 3D. 
 <a href="texmf-dist/doc/metapost/featpost/MPexamples.html">MPexamples.html</a>
 <a href="texmf-dist/doc/metapost/featpost/doc/Exemplifier.pdf">Exemplifier.pdf</a>
 <a href="texmf-dist/doc/metapost/featpost/doc/featpostbeamer.pdf">featpostbeamer.pdf</a>
@@ -8028,42 +8009,42 @@
 <a href="texmf-dist/doc/metapost/featpost/doc/otherinfo/tb88henderson.pdf">tb88henderson.pdf</a>.
 </small></li>
 
-<li id="fei"><b><a href="texmf-dist/doc/latex/fei">fei</a></b><small>
+<li id="fei"><b><a href="texmf-dist/doc/latex/fei/">fei</a></b><small>
 (<a href="https://ctan.org/pkg/fei">CTAN</a>):
-Class for academic works at FEI University Center -- Brazil
+Class for academic works at FEI University Center -- Brazil. 
 <a href="texmf-dist/doc/latex/fei/fei.pdf">fei.pdf</a> (pt-br).
 </small></li>
 
-<li id="fetamont"><b><a href="texmf-dist/doc/fonts/fetamont">fetamont</a></b><small>
+<li id="fetamont"><b><a href="texmf-dist/doc/fonts/fetamont/">fetamont</a></b><small>
 (<a href="https://ctan.org/pkg/fetamont">CTAN</a>):
-Extended version of Knuth's logo typeface
+Extended version of Knuth's logo typeface. 
 <a href="texmf-dist/doc/fonts/fetamont/fetamont-typeface.pdf">fetamont-typeface.pdf</a>
 <a href="texmf-dist/doc/fonts/fetamont/fetamont.pdf">fetamont.pdf</a>.
 </small></li>
 
-<li id="fetchcls"><b><a href="texmf-dist/doc/latex/fetchcls">fetchcls</a></b><small>
+<li id="fetchcls"><b><a href="texmf-dist/doc/latex/fetchcls/">fetchcls</a></b><small>
 (<a href="https://ctan.org/pkg/fetchcls">CTAN</a>):
-Fetch the current class name
+Fetch the current class name. 
 <a href="texmf-dist/doc/latex/fetchcls/fetchcls.pdf">fetchcls.pdf</a>.
 </small></li>
 
-<li id="feupphdteses"><b><a href="texmf-dist/doc/latex/feupphdteses/Figures">feupphdteses</a></b><small>
+<li id="feupphdteses"><b><a href="texmf-dist/doc/latex/feupphdteses/">feupphdteses</a></b><small>
 (<a href="https://ctan.org/pkg/feupphdteses">CTAN</a>):
-Typeset Engineering PhD theses at the University of Porto
+Typeset Engineering PhD theses at the University of Porto. 
 <a href="texmf-dist/doc/latex/feupphdteses/Figures/uporto-feup.pdf">uporto-feup.pdf</a>
 <a href="texmf-dist/doc/latex/feupphdteses/Template_EN.pdf">Template_EN.pdf</a>.
 </small></li>
 
-<li id="fewerfloatpages"><b><a href="texmf-dist/doc/latex/fewerfloatpages">fewerfloatpages</a></b><small>
+<li id="fewerfloatpages"><b><a href="texmf-dist/doc/latex/fewerfloatpages/">fewerfloatpages</a></b><small>
 (<a href="https://ctan.org/pkg/fewerfloatpages">CTAN</a>):
-Reduce the number of unnecessary float pages
+Reduce the number of unnecessary float pages. 
 <a href="texmf-dist/doc/latex/fewerfloatpages/fewerfloatpages-code.pdf">fewerfloatpages-code.pdf</a>
 <a href="texmf-dist/doc/latex/fewerfloatpages/fewerfloatpages-doc.pdf">fewerfloatpages-doc.pdf</a>.
 </small></li>
 
-<li id="feyn"><b><a href="texmf-dist/doc/fonts/feyn">feyn</a></b><small>
+<li id="feyn"><b><a href="texmf-dist/doc/fonts/feyn/">feyn</a></b><small>
 (<a href="https://ctan.org/pkg/feyn">CTAN</a>):
-A font for in-text Feynman diagrams
+A font for in-text Feynman diagrams. 
 <a href="texmf-dist/doc/fonts/feyn/exercise-font.pdf">exercise-font.pdf</a>
 <a href="texmf-dist/doc/fonts/feyn/feyn.html">feyn.html</a>
 <a href="texmf-dist/doc/fonts/feyn/feyn.pdf">feyn.pdf</a>
@@ -8071,21 +8052,21 @@
 <a href="texmf-dist/doc/fonts/feyn/release-notes.html">release-notes.html</a>.
 </small></li>
 
-<li id="feynmf"><b><a href="texmf-dist/doc/latex/feynmf">feynmf</a></b><small>
+<li id="feynmf"><b><a href="texmf-dist/doc/latex/feynmf/">feynmf</a></b><small>
 (<a href="https://ctan.org/pkg/feynmf">CTAN</a>):
-Macros and fonts for creating Feynman (and other) diagrams
+Macros and fonts for creating Feynman (and other) diagrams. 
 <a href="texmf-dist/doc/latex/feynmf/fmfman.pdf">fmfman.pdf</a>.
 </small></li>
 
-<li id="feynmp-auto"><b><a href="texmf-dist/doc/latex/feynmp-auto">feynmp-auto</a></b><small>
+<li id="feynmp-auto"><b><a href="texmf-dist/doc/latex/feynmp-auto/">feynmp-auto</a></b><small>
 (<a href="https://ctan.org/pkg/feynmp-auto">CTAN</a>):
-Automatic processing of feynmp graphics
+Automatic processing of feynmp graphics. 
 <a href="texmf-dist/doc/latex/feynmp-auto/feynmp-auto.pdf">feynmp-auto.pdf</a>.
 </small></li>
 
-<li id="ffslides"><b><a href="texmf-dist/doc/latex/ffslides">ffslides</a></b><small>
+<li id="ffslides"><b><a href="texmf-dist/doc/latex/ffslides/">ffslides</a></b><small>
 (<a href="https://ctan.org/pkg/ffslides">CTAN</a>):
-Freeform slides based on the article class
+Freeform slides based on the article class. 
 <a href="texmf-dist/doc/latex/ffslides/ffslides-doc.pdf">ffslides-doc.pdf</a>
 <a href="texmf-dist/doc/latex/ffslides/figure.pdf">figure.pdf</a>
 <a href="texmf-dist/doc/latex/ffslides/tiny_example_1.pdf">tiny_example_1.pdf</a>
@@ -8092,21 +8073,21 @@
 <a href="texmf-dist/doc/latex/ffslides/tiny_example_2.pdf">tiny_example_2.pdf</a>.
 </small></li>
 
-<li id="fge"><b><a href="texmf-dist/doc/fonts/fge">fge</a></b><small>
+<li id="fge"><b><a href="texmf-dist/doc/fonts/fge/">fge</a></b><small>
 (<a href="https://ctan.org/pkg/fge">CTAN</a>):
-A font for Frege's Grundgesetze der Arithmetik
+A font for Frege's Grundgesetze der Arithmetik. 
 <a href="texmf-dist/doc/fonts/fge/fge-doc.pdf">fge-doc.pdf</a>.
 </small></li>
 
-<li id="fgruler"><b><a href="texmf-dist/doc/latex/fgruler">fgruler</a></b><small>
+<li id="fgruler"><b><a href="texmf-dist/doc/latex/fgruler/">fgruler</a></b><small>
 (<a href="https://ctan.org/pkg/fgruler">CTAN</a>):
-Draw rulers on the foreground or in the text
+Draw rulers on the foreground or in the text. 
 <a href="texmf-dist/doc/latex/fgruler/fgruler.pdf">fgruler.pdf</a>.
 </small></li>
 
-<li id="fibeamer"><b><a href="texmf-dist/doc/latex/fibeamer">fibeamer</a></b><small>
+<li id="fibeamer"><b><a href="texmf-dist/doc/latex/fibeamer/">fibeamer</a></b><small>
 (<a href="https://ctan.org/pkg/fibeamer">CTAN</a>):
-Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic)
+Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic). 
 <a href="texmf-dist/doc/latex/fibeamer/fibeamer.pdf">fibeamer.pdf</a>
 <a href="texmf-dist/doc/latex/fibeamer/guide/mu/econ.pdf">econ.pdf</a>
 <a href="texmf-dist/doc/latex/fibeamer/guide/mu/fi.pdf">fi.pdf</a>
@@ -8119,9 +8100,9 @@
 <a href="texmf-dist/doc/latex/fibeamer/guide/mu/sci.pdf">sci.pdf</a>.
 </small></li>
 
-<li id="fifinddo-info"><b><a href="texmf-dist/doc/latex/fifinddo-info">fifinddo-info</a></b><small>
+<li id="fifinddo-info"><b><a href="texmf-dist/doc/latex/fifinddo-info/">fifinddo-info</a></b><small>
 (<a href="https://ctan.org/pkg/fifinddo-info">CTAN</a>):
-German HTML beamer presentation on nicetext and morehype
+German HTML beamer presentation on nicetext and morehype. 
 <a href="texmf-dist/doc/latex/fifinddo-info/dante-mv45-lueck.pdf">dante-mv45-lueck.pdf</a>
 <a href="texmf-dist/doc/latex/fifinddo-info/mdoccorr.pdf">mdoccorr.pdf</a>
 <a href="texmf-dist/doc/latex/fifinddo-info/variants/dantev45-1180-clean.html">dantev45-1180-clean.html</a>
@@ -8135,98 +8116,98 @@
 <a href="texmf-dist/doc/latex/fifinddo-info/variants/dantev45-992-exact.html">dantev45-992-exact.html</a>.
 </small></li>
 
-<li id="fifo-stack"><b><a href="texmf-dist/doc/latex/fifo-stack">fifo-stack</a></b><small>
+<li id="fifo-stack"><b><a href="texmf-dist/doc/latex/fifo-stack/">fifo-stack</a></b><small>
 (<a href="https://ctan.org/pkg/fifo-stack">CTAN</a>):
-FIFO and stack implementation for package writers
+FIFO and stack implementation for package writers. 
 <a href="texmf-dist/doc/latex/fifo-stack/fifo-stack.pdf">fifo-stack.pdf</a>.
 </small></li>
 
-<li id="fig4latex"><b><a href="texmf-dist/doc/support/fig4latex">fig4latex</a></b><small>
+<li id="fig4latex"><b><a href="texmf-dist/doc/support/fig4latex/">fig4latex</a></b><small>
 (<a href="https://ctan.org/pkg/fig4latex">CTAN</a>):
-Management of figures for large LaTeX documents
+Management of figures for large LaTeX documents. 
 <a href="texmf-dist/doc/support/fig4latex/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="figbas"><b><a href="texmf-dist/doc/fonts/figbas">figbas</a></b><small>
+<li id="figbas"><b><a href="texmf-dist/doc/fonts/figbas/">figbas</a></b><small>
 (<a href="https://ctan.org/pkg/figbas">CTAN</a>):
-Mini-fonts for figured-bass notation in music
+Mini-fonts for figured-bass notation in music. 
 <a href="texmf-dist/doc/fonts/figbas/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/fonts/figbas/figbas.pdf">figbas.pdf</a>.
 </small></li>
 
-<li id="figbib"><b><a href="texmf-dist/doc/latex/figbib">figbib</a></b><small>
+<li id="figbib"><b><a href="texmf-dist/doc/latex/figbib/">figbib</a></b><small>
 (<a href="https://ctan.org/pkg/figbib">CTAN</a>):
-Organize figure databases with BibTeX
+Organize figure databases with BibTeX. 
 <a href="texmf-dist/doc/latex/figbib/figbib_doc.pdf">figbib_doc.pdf</a>
 <a href="texmf-dist/doc/latex/figbib/figbib_sample.pdf">figbib_sample.pdf</a>.
 </small></li>
 
-<li id="figsize"><b><a href="texmf-dist/doc/latex/figsize">figsize</a></b><small>
+<li id="figsize"><b><a href="texmf-dist/doc/latex/figsize/">figsize</a></b><small>
 (<a href="https://ctan.org/pkg/figsize">CTAN</a>):
-Auto-size graphics
+Auto-size graphics. 
 <a href="texmf-dist/doc/latex/figsize/figsize.pdf">figsize.pdf</a>.
 </small></li>
 
-<li id="filecontents"><b><a href="texmf-dist/doc/latex/filecontents">filecontents</a></b><small>
+<li id="filecontents"><b><a href="texmf-dist/doc/latex/filecontents/">filecontents</a></b><small>
 (<a href="https://ctan.org/pkg/filecontents">CTAN</a>):
-Create an external file from within a LaTeX document
+Create an external file from within a LaTeX document. 
 <a href="texmf-dist/doc/latex/filecontents/filecontents.pdf">filecontents.pdf</a>.
 </small></li>
 
-<li id="filecontentsdef"><b><a href="texmf-dist/doc/latex/filecontentsdef">filecontentsdef</a></b><small>
+<li id="filecontentsdef"><b><a href="texmf-dist/doc/latex/filecontentsdef/">filecontentsdef</a></b><small>
 (<a href="https://ctan.org/pkg/filecontentsdef">CTAN</a>):
-filecontents + macro + verbatim
+filecontents + macro + verbatim. 
 <a href="texmf-dist/doc/latex/filecontentsdef/filecontentsdef.pdf">filecontentsdef.pdf</a>.
 </small></li>
 
-<li id="filedate"><b><a href="texmf-dist/doc/latex/filedate">filedate</a></b><small>
+<li id="filedate"><b><a href="texmf-dist/doc/latex/filedate/">filedate</a></b><small>
 (<a href="https://ctan.org/pkg/filedate">CTAN</a>):
-Access and compare info and modification dates
+Access and compare info and modification dates. 
 <a href="texmf-dist/doc/latex/filedate/filedate.pdf">filedate.pdf</a>.
 </small></li>
 
-<li id="filehook"><b><a href="texmf-dist/doc/latex/filehook">filehook</a></b><small>
+<li id="filehook"><b><a href="texmf-dist/doc/latex/filehook/">filehook</a></b><small>
 (<a href="https://ctan.org/pkg/filehook">CTAN</a>):
-Hooks for input files
+Hooks for input files. 
 <a href="texmf-dist/doc/latex/filehook/filehook.pdf">filehook.pdf</a>.
 </small></li>
 
-<li id="fileinfo"><b><a href="texmf-dist/doc/latex/fileinfo">fileinfo</a></b><small>
+<li id="fileinfo"><b><a href="texmf-dist/doc/latex/fileinfo/">fileinfo</a></b><small>
 (<a href="https://ctan.org/pkg/fileinfo">CTAN</a>):
-Enhanced display of LaTeX File Information
+Enhanced display of LaTeX File Information. 
 <a href="texmf-dist/doc/latex/fileinfo/README.pdf">README.pdf</a>
 <a href="texmf-dist/doc/latex/fileinfo/myfilist.pdf">myfilist.pdf</a>
 <a href="texmf-dist/doc/latex/fileinfo/readprov.pdf">readprov.pdf</a>.
 </small></li>
 
-<li id="filemod"><b><a href="texmf-dist/doc/latex/filemod">filemod</a></b><small>
+<li id="filemod"><b><a href="texmf-dist/doc/latex/filemod/">filemod</a></b><small>
 (<a href="https://ctan.org/pkg/filemod">CTAN</a>):
-Provide file modification times, and compare them
+Provide file modification times, and compare them. 
 <a href="texmf-dist/doc/latex/filemod/filemod.pdf">filemod.pdf</a>.
 </small></li>
 
-<li id="findhyph"><b><a href="texmf-dist/doc/man/man1">findhyph</a></b><small>
+<li id="findhyph"><b><a href="texmf-dist/doc/man/man1/">findhyph</a></b><small>
 (<a href="https://ctan.org/pkg/findhyph">CTAN</a>):
-Find hyphenated words in a document
+Find hyphenated words in a document. 
 <a href="texmf-dist/doc/man/man1/findhyph.man1.pdf">findhyph.man1.pdf</a>.
 </small></li>
 
-<li id="fink"><b><a href="texmf-dist/doc/latex/fink">fink</a></b><small>
+<li id="fink"><b><a href="texmf-dist/doc/latex/fink/">fink</a></b><small>
 (<a href="https://ctan.org/pkg/fink">CTAN</a>):
-The LaTeX2e File Name Keeper
+The LaTeX2e File Name Keeper. 
 <a href="texmf-dist/doc/latex/fink/fink.pdf">fink.pdf</a>.
 </small></li>
 
-<li id="finstrut"><b><a href="texmf-dist/doc/latex/finstrut">finstrut</a></b><small>
+<li id="finstrut"><b><a href="texmf-dist/doc/latex/finstrut/">finstrut</a></b><small>
 (<a href="https://ctan.org/pkg/finstrut">CTAN</a>):
-Adjust behaviour of the ends of footnotes
+Adjust behaviour of the ends of footnotes. 
 <a href="texmf-dist/doc/latex/finstrut/finstrut.pdf">finstrut.pdf</a>
 <a href="texmf-dist/doc/latex/finstrut/fstrutst.pdf">fstrutst.pdf</a>.
 </small></li>
 
-<li id="fira"><b><a href="texmf-dist/doc/fonts/fira">fira</a></b><small>
+<li id="fira"><b><a href="texmf-dist/doc/fonts/fira/">fira</a></b><small>
 (<a href="https://ctan.org/pkg/fira">CTAN</a>):
-Fira fonts with LaTeX support
+Fira fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/fira/Fira_4_3_Change_Log.pdf">Fira_4_3_Change_Log.pdf</a>
 <a href="texmf-dist/doc/fonts/fira/TechnicalReportFiraSans.pdf">TechnicalReportFiraSans.pdf</a>
 <a href="texmf-dist/doc/fonts/fira/TechnicalReportFiraSansItalic.pdf">TechnicalReportFiraSansItalic.pdf</a>
@@ -8233,36 +8214,36 @@
 <a href="texmf-dist/doc/fonts/fira/fira-samples.pdf">fira-samples.pdf</a>.
 </small></li>
 
-<li id="firamath"><b><a href="texmf-dist/doc/fonts/firamath">firamath</a></b><small>
+<li id="firamath"><b><a href="texmf-dist/doc/fonts/firamath/">firamath</a></b><small>
 (<a href="https://ctan.org/pkg/firamath">CTAN</a>):
-Fira sans serif font with Unicode math support
+Fira sans serif font with Unicode math support. 
 <a href="texmf-dist/doc/fonts/firamath/firamath-demo.pdf">firamath-demo.pdf</a>
 <a href="texmf-dist/doc/fonts/firamath/firamath-specimen.pdf">firamath-specimen.pdf</a>.
 </small></li>
 
-<li id="firamath-otf"><b><a href="texmf-dist/doc/fonts/firamath-otf">firamath-otf</a></b><small>
+<li id="firamath-otf"><b><a href="texmf-dist/doc/fonts/firamath-otf/">firamath-otf</a></b><small>
 (<a href="https://ctan.org/pkg/firamath-otf">CTAN</a>):
-Use OpenType math font Fira Math
+Use OpenType math font Fira Math. 
 <a href="texmf-dist/doc/fonts/firamath-otf/firamath-otf-doc.pdf">firamath-otf-doc.pdf</a>.
 </small></li>
 
-<li id="first-latex-doc"><b><a href="texmf-dist/doc/latex/first-latex-doc">first-latex-doc</a></b><small>
+<li id="first-latex-doc"><b><a href="texmf-dist/doc/latex/first-latex-doc/">first-latex-doc</a></b><small>
 (<a href="https://ctan.org/pkg/first-latex-doc">CTAN</a>):
-A document for absolute LaTeX beginners
+A document for absolute LaTeX beginners. 
 <a href="texmf-dist/doc/latex/first-latex-doc/first-latex-doc.pdf">first-latex-doc.pdf</a>.
 </small></li>
 
-<li id="fitbox"><b><a href="texmf-dist/doc/latex/fitbox">fitbox</a></b><small>
+<li id="fitbox"><b><a href="texmf-dist/doc/latex/fitbox/">fitbox</a></b><small>
 (<a href="https://ctan.org/pkg/fitbox">CTAN</a>):
-Fit graphics on a page
+Fit graphics on a page. 
 <a href="texmf-dist/doc/latex/fitbox/fitbox.pdf">fitbox.pdf</a>
 <a href="texmf-dist/doc/latex/fitbox/sample-subfigure.pdf">sample-subfigure.pdf</a>
 <a href="texmf-dist/doc/latex/fitbox/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="fithesis"><b><a href="texmf-dist/doc/latex/fithesis">fithesis</a></b><small>
+<li id="fithesis"><b><a href="texmf-dist/doc/latex/fithesis/">fithesis</a></b><small>
 (<a href="https://ctan.org/pkg/fithesis">CTAN</a>):
-Thesis class and template for Masaryk University (Brno, Czech Republic)
+Thesis class and template for Masaryk University (Brno, Czech Republic). 
 <a href="texmf-dist/doc/latex/fithesis/fithesis.pdf">fithesis.pdf</a>
 <a href="texmf-dist/doc/latex/fithesis/guide/mu/econ.pdf">econ.pdf</a>
 <a href="texmf-dist/doc/latex/fithesis/guide/mu/fi.pdf">fi.pdf</a>
@@ -8275,95 +8256,95 @@
 <a href="texmf-dist/doc/latex/fithesis/guide/mu/sci.pdf">sci.pdf</a>.
 </small></li>
 
-<li id="fix2col"><b><a href="texmf-dist/doc/latex/fix2col">fix2col</a></b><small>
+<li id="fix2col"><b><a href="texmf-dist/doc/latex/fix2col/">fix2col</a></b><small>
 (<a href="https://ctan.org/pkg/fix2col">CTAN</a>):
-Fix miscellaneous two column mode features
+Fix miscellaneous two column mode features. 
 <a href="texmf-dist/doc/latex/fix2col/fix2col.pdf">fix2col.pdf</a>.
 </small></li>
 
-<li id="fixcmex"><b><a href="texmf-dist/doc/latex/fixcmex">fixcmex</a></b><small>
+<li id="fixcmex"><b><a href="texmf-dist/doc/latex/fixcmex/">fixcmex</a></b><small>
 (<a href="https://ctan.org/pkg/fixcmex">CTAN</a>):
-Fully scalable version of Computer Modern Math Extension font
+Fully scalable version of Computer Modern Math Extension font. 
 <a href="texmf-dist/doc/latex/fixcmex/fixcmex.pdf">fixcmex.pdf</a>.
 </small></li>
 
-<li id="fixfoot"><b><a href="texmf-dist/doc/latex/fixfoot">fixfoot</a></b><small>
+<li id="fixfoot"><b><a href="texmf-dist/doc/latex/fixfoot/">fixfoot</a></b><small>
 (<a href="https://ctan.org/pkg/fixfoot">CTAN</a>):
-Multiple use of the same footnote text
+Multiple use of the same footnote text. 
 <a href="texmf-dist/doc/latex/fixfoot/fixfoot.pdf">fixfoot.pdf</a>.
 </small></li>
 
-<li id="fixjfm"><b><a href="texmf-dist/doc/generic/fixjfm">fixjfm</a></b><small>
+<li id="fixjfm"><b><a href="texmf-dist/doc/generic/fixjfm/">fixjfm</a></b><small>
 (<a href="https://ctan.org/pkg/fixjfm">CTAN</a>):
-Fix JFM (for *pTeX)
+Fix JFM (for *pTeX). 
 <a href="texmf-dist/doc/generic/fixjfm/fixjfm-doc.pdf">fixjfm-doc.pdf</a>.
 </small></li>
 
-<li id="fixlatvian"><b><a href="texmf-dist/doc/xelatex/fixlatvian">fixlatvian</a></b><small>
+<li id="fixlatvian"><b><a href="texmf-dist/doc/xelatex/fixlatvian/">fixlatvian</a></b><small>
 (<a href="https://ctan.org/pkg/fixlatvian">CTAN</a>):
-Improve Latvian language support in XeLaTeX
+Improve Latvian language support in XeLaTeX. 
 <a href="texmf-dist/doc/xelatex/fixlatvian/fixlatvian.pdf">fixlatvian.pdf</a> (lv).
 </small></li>
 
-<li id="fixltxhyph"><b><a href="texmf-dist/doc/latex/fixltxhyph">fixltxhyph</a></b><small>
+<li id="fixltxhyph"><b><a href="texmf-dist/doc/latex/fixltxhyph/">fixltxhyph</a></b><small>
 (<a href="https://ctan.org/pkg/fixltxhyph">CTAN</a>):
-Allow hyphenation of partially-emphasised substrings
+Allow hyphenation of partially-emphasised substrings. 
 <a href="texmf-dist/doc/latex/fixltxhyph/fixltxhyph.pdf">fixltxhyph.pdf</a>.
 </small></li>
 
-<li id="fixme"><b><a href="texmf-dist/doc/latex/fixme">fixme</a></b><small>
+<li id="fixme"><b><a href="texmf-dist/doc/latex/fixme/">fixme</a></b><small>
 (<a href="https://ctan.org/pkg/fixme">CTAN</a>):
-Collaborative annotation tool for LaTeX
+Collaborative annotation tool for LaTeX. 
 <a href="texmf-dist/doc/latex/fixme/fixme.pdf">fixme.pdf</a>.
 </small></li>
 
-<li id="fiziko"><b><a href="texmf-dist/doc/metapost/fiziko">fiziko</a></b><small>
+<li id="fiziko"><b><a href="texmf-dist/doc/metapost/fiziko/">fiziko</a></b><small>
 (<a href="https://ctan.org/pkg/fiziko">CTAN</a>):
-A MetaPost library for physics textbook illustrations
+A MetaPost library for physics textbook illustrations. 
 <a href="texmf-dist/doc/metapost/fiziko/fiziko.pdf">fiziko.pdf</a>.
 </small></li>
 
-<li id="fjodor"><b><a href="texmf-dist/doc/latex/fjodor">fjodor</a></b><small>
+<li id="fjodor"><b><a href="texmf-dist/doc/latex/fjodor/">fjodor</a></b><small>
 (<a href="https://ctan.org/pkg/fjodor">CTAN</a>):
-A selection of layout styles
+A selection of layout styles. 
 <a href="texmf-dist/doc/latex/fjodor/dostojevski.pdf">dostojevski.pdf</a>
 <a href="texmf-dist/doc/latex/fjodor/fjodor.pdf">fjodor.pdf</a>.
 </small></li>
 
-<li id="flabels"><b><a href="texmf-dist/doc/latex/flabels">flabels</a></b><small>
+<li id="flabels"><b><a href="texmf-dist/doc/latex/flabels/">flabels</a></b><small>
 (<a href="https://ctan.org/pkg/flabels">CTAN</a>):
-Labels for files and folders
+Labels for files and folders. 
 <a href="texmf-dist/doc/latex/flabels/flabels.pdf">flabels.pdf</a>.
 </small></li>
 
-<li id="flacards"><b><a href="texmf-dist/doc/latex/flacards">flacards</a></b><small>
+<li id="flacards"><b><a href="texmf-dist/doc/latex/flacards/">flacards</a></b><small>
 (<a href="https://ctan.org/pkg/flacards">CTAN</a>):
-Generate flashcards for printing
+Generate flashcards for printing. 
 <a href="texmf-dist/doc/latex/flacards/flacards_ex.pdf">flacards_ex.pdf</a>.
 </small></li>
 
-<li id="flagderiv"><b><a href="texmf-dist/doc/latex/flagderiv">flagderiv</a></b><small>
+<li id="flagderiv"><b><a href="texmf-dist/doc/latex/flagderiv/">flagderiv</a></b><small>
 (<a href="https://ctan.org/pkg/flagderiv">CTAN</a>):
-Flag style derivation package
+Flag style derivation package. 
 <a href="texmf-dist/doc/latex/flagderiv/flagderiv.pdf">flagderiv.pdf</a>.
 </small></li>
 
-<li id="flashcards"><b><a href="texmf-dist/doc/latex/flashcards">flashcards</a></b><small>
+<li id="flashcards"><b><a href="texmf-dist/doc/latex/flashcards/">flashcards</a></b><small>
 (<a href="https://ctan.org/pkg/flashcards">CTAN</a>):
-A class for typesetting flashcards
+A class for typesetting flashcards. 
 <a href="texmf-dist/doc/latex/flashcards/flashcards.pdf">flashcards.pdf</a>.
 </small></li>
 
-<li id="flashmovie"><b><a href="texmf-dist/doc/latex/flashmovie">flashmovie</a></b><small>
+<li id="flashmovie"><b><a href="texmf-dist/doc/latex/flashmovie/">flashmovie</a></b><small>
 (<a href="https://ctan.org/pkg/flashmovie">CTAN</a>):
-Directly embed flash movies into PDF files
+Directly embed flash movies into PDF files. 
 <a href="texmf-dist/doc/latex/flashmovie/test-beamer-0.pdf">test-beamer-0.pdf</a>
 <a href="texmf-dist/doc/latex/flashmovie/test-flv.pdf">test-flv.pdf</a>.
 </small></li>
 
-<li id="flipbook"><b><a href="texmf-dist/doc/latex/flipbook/Images/Anims/an1b">flipbook</a></b><small>
+<li id="flipbook"><b><a href="texmf-dist/doc/latex/flipbook/">flipbook</a></b><small>
 (<a href="https://ctan.org/pkg/flipbook">CTAN</a>):
-Typeset flipbook animations, in the corners of documents
+Typeset flipbook animations, in the corners of documents. 
 <a href="texmf-dist/doc/latex/flipbook/Images/Anims/an1b/im01.pdf">im01.pdf</a>
 <a href="texmf-dist/doc/latex/flipbook/Images/Anims/an1b/im02.pdf">im02.pdf</a>
 <a href="texmf-dist/doc/latex/flipbook/Images/Anims/an1b/im03.pdf">im03.pdf</a>
@@ -8391,40 +8372,40 @@
 <a href="texmf-dist/doc/latex/flipbook/flipbook-ex.pdf">flipbook-ex.pdf</a>.
 </small></li>
 
-<li id="flippdf"><b><a href="texmf-dist/doc/latex/flippdf">flippdf</a></b><small>
+<li id="flippdf"><b><a href="texmf-dist/doc/latex/flippdf/">flippdf</a></b><small>
 (<a href="https://ctan.org/pkg/flippdf">CTAN</a>):
-Horizontal flipping of pages with pdfLaTeX
+Horizontal flipping of pages with pdfLaTeX. 
 <a href="texmf-dist/doc/latex/flippdf/flippdf.pdf">flippdf.pdf</a>.
 </small></li>
 
-<li id="float"><b><a href="texmf-dist/doc/latex/float">float</a></b><small>
+<li id="float"><b><a href="texmf-dist/doc/latex/float/">float</a></b><small>
 (<a href="https://ctan.org/pkg/float">CTAN</a>):
-Improved interface for floating objects
+Improved interface for floating objects. 
 <a href="texmf-dist/doc/latex/float/float.pdf">float.pdf</a>.
 </small></li>
 
-<li id="floatflt"><b><a href="texmf-dist/doc/latex/floatflt">floatflt</a></b><small>
+<li id="floatflt"><b><a href="texmf-dist/doc/latex/floatflt/">floatflt</a></b><small>
 (<a href="https://ctan.org/pkg/floatflt">CTAN</a>):
-Wrap text around floats
+Wrap text around floats. 
 <a href="texmf-dist/doc/latex/floatflt/floatflt.pdf">floatflt.pdf</a>.
 </small></li>
 
-<li id="floatrow"><b><a href="texmf-dist/doc/latex/floatrow">floatrow</a></b><small>
+<li id="floatrow"><b><a href="texmf-dist/doc/latex/floatrow/">floatrow</a></b><small>
 (<a href="https://ctan.org/pkg/floatrow">CTAN</a>):
-Modifying the layout of floats
+Modifying the layout of floats. 
 <a href="texmf-dist/doc/latex/floatrow/floatrow-rus.pdf">floatrow-rus.pdf</a> (ru) 
 <a href="texmf-dist/doc/latex/floatrow/floatrow.pdf">floatrow.pdf</a>.
 </small></li>
 
-<li id="flowchart"><b><a href="texmf-dist/doc/latex/flowchart">flowchart</a></b><small>
+<li id="flowchart"><b><a href="texmf-dist/doc/latex/flowchart/">flowchart</a></b><small>
 (<a href="https://ctan.org/pkg/flowchart">CTAN</a>):
-Shapes for drawing flowcharts, using TikZ
+Shapes for drawing flowcharts, using TikZ. 
 <a href="texmf-dist/doc/latex/flowchart/flowchart.pdf">flowchart.pdf</a>.
 </small></li>
 
-<li id="flowfram"><b><a href="texmf-dist/doc/latex/flowfram">flowfram</a></b><small>
+<li id="flowfram"><b><a href="texmf-dist/doc/latex/flowfram/">flowfram</a></b><small>
 (<a href="https://ctan.org/pkg/flowfram">CTAN</a>):
-Create text frames for posters, brochures or magazines
+Create text frames for posters, brochures or magazines. 
 <a href="texmf-dist/doc/latex/flowfram/ffuserguide.pdf">ffuserguide.pdf</a>
 <a href="texmf-dist/doc/latex/flowfram/flowfram.pdf">flowfram.pdf</a>
 <a href="texmf-dist/doc/latex/flowfram/samples/sample-article.pdf">sample-article.pdf</a>
@@ -8441,137 +8422,137 @@
 <a href="texmf-dist/doc/latex/flowfram/samples/sampleRL.pdf">sampleRL.pdf</a>.
 </small></li>
 
-<li id="fltpoint"><b><a href="texmf-dist/doc/generic/fltpoint">fltpoint</a></b><small>
+<li id="fltpoint"><b><a href="texmf-dist/doc/generic/fltpoint/">fltpoint</a></b><small>
 (<a href="https://ctan.org/pkg/fltpoint">CTAN</a>):
-Simple floating point arithmetic
+Simple floating point arithmetic. 
 <a href="texmf-dist/doc/generic/fltpoint/fltpoint.pdf">fltpoint.pdf</a>.
 </small></li>
 
-<li id="fmp"><b><a href="texmf-dist/doc/latex/fmp">fmp</a></b><small>
+<li id="fmp"><b><a href="texmf-dist/doc/latex/fmp/">fmp</a></b><small>
 (<a href="https://ctan.org/pkg/fmp">CTAN</a>):
-Include Functional MetaPost in LaTeX
+Include Functional MetaPost in LaTeX. 
 <a href="texmf-dist/doc/latex/fmp/fmp.pdf">fmp.pdf</a>.
 </small></li>
 
-<li id="fmtcount"><b><a href="texmf-dist/doc/latex/fmtcount">fmtcount</a></b><small>
+<li id="fmtcount"><b><a href="texmf-dist/doc/latex/fmtcount/">fmtcount</a></b><small>
 (<a href="https://ctan.org/pkg/fmtcount">CTAN</a>):
-Display the value of a LaTeX counter in a variety of formats
+Display the value of a LaTeX counter in a variety of formats. 
 <a href="texmf-dist/doc/latex/fmtcount/fmtcount.pdf">fmtcount.pdf</a>.
 </small></li>
 
-<li id="fn2end"><b><a href="texmf-dist/doc/latex/fn2end">fn2end</a></b><small>
+<li id="fn2end"><b><a href="texmf-dist/doc/latex/fn2end/">fn2end</a></b><small>
 (<a href="https://ctan.org/pkg/fn2end">CTAN</a>):
-Convert footnotes to endnotes
+Convert footnotes to endnotes. 
 <a href="texmf-dist/doc/latex/fn2end/fn2end.pdf">fn2end.pdf</a>.
 </small></li>
 
-<li id="fnbreak"><b><a href="texmf-dist/doc/latex/fnbreak">fnbreak</a></b><small>
+<li id="fnbreak"><b><a href="texmf-dist/doc/latex/fnbreak/">fnbreak</a></b><small>
 (<a href="https://ctan.org/pkg/fnbreak">CTAN</a>):
-Warn for split footnotes
+Warn for split footnotes. 
 <a href="texmf-dist/doc/latex/fnbreak/fnbreak.pdf">fnbreak.pdf</a>.
 </small></li>
 
-<li id="fncychap"><b><a href="texmf-dist/doc/latex/fncychap">fncychap</a></b><small>
+<li id="fncychap"><b><a href="texmf-dist/doc/latex/fncychap/">fncychap</a></b><small>
 (<a href="https://ctan.org/pkg/fncychap">CTAN</a>):
-Seven predefined chapter heading styles
+Seven predefined chapter heading styles. 
 <a href="texmf-dist/doc/latex/fncychap/fncychap.pdf">fncychap.pdf</a>.
 </small></li>
 
-<li id="fncylab"><b><a href="texmf-dist/doc/latex/fncylab">fncylab</a></b><small>
+<li id="fncylab"><b><a href="texmf-dist/doc/latex/fncylab/">fncylab</a></b><small>
 (<a href="https://ctan.org/pkg/fncylab">CTAN</a>):
-Alter the format of \label references
+Alter the format of \label references. 
 <a href="texmf-dist/doc/latex/fncylab/fncylab.pdf">fncylab.pdf</a>.
 </small></li>
 
-<li id="fnpara"><b><a href="texmf-dist/doc/latex/fnpara">fnpara</a></b><small>
+<li id="fnpara"><b><a href="texmf-dist/doc/latex/fnpara/">fnpara</a></b><small>
 (<a href="https://ctan.org/pkg/fnpara">CTAN</a>):
-Footnotes in paragraphs
+Footnotes in paragraphs. 
 <a href="texmf-dist/doc/latex/fnpara/fnpara-doc.pdf">fnpara-doc.pdf</a>.
 </small></li>
 
-<li id="fnpct"><b><a href="texmf-dist/doc/latex/fnpct">fnpct</a></b><small>
+<li id="fnpct"><b><a href="texmf-dist/doc/latex/fnpct/">fnpct</a></b><small>
 (<a href="https://ctan.org/pkg/fnpct">CTAN</a>):
-Manage footnote marks' interaction with punctuation
+Manage footnote marks' interaction with punctuation. 
 <a href="texmf-dist/doc/latex/fnpct/fnpct_en.pdf">fnpct_en.pdf</a>.
 </small></li>
 
-<li id="fnspe"><b><a href="texmf-dist/doc/latex/fnspe">fnspe</a></b><small>
+<li id="fnspe"><b><a href="texmf-dist/doc/latex/fnspe/">fnspe</a></b><small>
 (<a href="https://ctan.org/pkg/fnspe">CTAN</a>):
-Macros for supporting mainly students of FNSPE CTU in Prague
+Macros for supporting mainly students of FNSPE CTU in Prague. 
 <a href="texmf-dist/doc/latex/fnspe/fnspe.pdf">fnspe.pdf</a>.
 </small></li>
 
-<li id="fntproof"><b><a href="texmf-dist/doc/generic/fntproof">fntproof</a></b><small>
+<li id="fntproof"><b><a href="texmf-dist/doc/generic/fntproof/">fntproof</a></b><small>
 (<a href="https://ctan.org/pkg/fntproof">CTAN</a>):
-A programmable font test pattern generator
+A programmable font test pattern generator. 
 <a href="texmf-dist/doc/generic/fntproof/fntproof-doc.pdf">fntproof-doc.pdf</a>.
 </small></li>
 
-<li id="fnumprint"><b><a href="texmf-dist/doc/latex/fnumprint">fnumprint</a></b><small>
+<li id="fnumprint"><b><a href="texmf-dist/doc/latex/fnumprint/">fnumprint</a></b><small>
 (<a href="https://ctan.org/pkg/fnumprint">CTAN</a>):
-Print a number in 'appropriate' format
+Print a number in 'appropriate' format. 
 <a href="texmf-dist/doc/latex/fnumprint/fnumprint.pdf">fnumprint.pdf</a>.
 </small></li>
 
-<li id="foekfont"><b><a href="texmf-dist/doc/latex/foekfont">foekfont</a></b><small>
+<li id="foekfont"><b><a href="texmf-dist/doc/latex/foekfont/">foekfont</a></b><small>
 (<a href="https://ctan.org/pkg/foekfont">CTAN</a>):
-The title font of the Mads Fok magazine
+The title font of the Mads Fok magazine. 
 <a href="texmf-dist/doc/latex/foekfont/foekfont.pdf">foekfont.pdf</a>.
 </small></li>
 
-<li id="fonetika"><b><a href="texmf-dist/doc/fonts/fonetika">fonetika</a></b><small>
+<li id="fonetika"><b><a href="texmf-dist/doc/fonts/fonetika/">fonetika</a></b><small>
 (<a href="https://ctan.org/pkg/fonetika">CTAN</a>):
-Support for the Danish "Dania" phonetic system
+Support for the Danish "Dania" phonetic system. 
 <a href="texmf-dist/doc/fonts/fonetika/fonetika.pdf">fonetika.pdf</a>.
 </small></li>
 
-<li id="font-change"><b><a href="texmf-dist/doc/plain/font-change">font-change</a></b><small>
+<li id="font-change"><b><a href="texmf-dist/doc/plain/font-change/">font-change</a></b><small>
 (<a href="https://ctan.org/pkg/font-change">CTAN</a>):
-Macros to change text and mathematics fonts in plain TeX
+Macros to change text and mathematics fonts in plain TeX. 
 <a href="texmf-dist/doc/plain/font-change/font-change.pdf">font-change.pdf</a>
 <a href="texmf-dist/doc/plain/font-change/font-change_FRENCH.pdf">font-change_FRENCH.pdf</a>.
 </small></li>
 
-<li id="font-change-xetex"><b><a href="texmf-dist/doc/xetex/font-change-xetex">font-change-xetex</a></b><small>
+<li id="font-change-xetex"><b><a href="texmf-dist/doc/xetex/font-change-xetex/">font-change-xetex</a></b><small>
 (<a href="https://ctan.org/pkg/font-change-xetex">CTAN</a>):
-Macros to change text and mathematics fonts in plain XeTeX
+Macros to change text and mathematics fonts in plain XeTeX. 
 <a href="texmf-dist/doc/xetex/font-change-xetex/font-change-xetex.pdf">font-change-xetex.pdf</a>.
 </small></li>
 
-<li id="fontawesome"><b><a href="texmf-dist/doc/fonts/fontawesome">fontawesome</a></b><small>
+<li id="fontawesome"><b><a href="texmf-dist/doc/fonts/fontawesome/">fontawesome</a></b><small>
 (<a href="https://ctan.org/pkg/fontawesome">CTAN</a>):
-Font containing web-related icons
+Font containing web-related icons. 
 <a href="texmf-dist/doc/fonts/fontawesome/fontawesome.pdf">fontawesome.pdf</a>.
 </small></li>
 
-<li id="fontawesome5"><b><a href="texmf-dist/doc/fonts/fontawesome5">fontawesome5</a></b><small>
+<li id="fontawesome5"><b><a href="texmf-dist/doc/fonts/fontawesome5/">fontawesome5</a></b><small>
 (<a href="https://ctan.org/pkg/fontawesome5">CTAN</a>):
-Font Awesome 5 with LaTeX support
+Font Awesome 5 with LaTeX support. 
 <a href="texmf-dist/doc/fonts/fontawesome5/fontawesome5.pdf">fontawesome5.pdf</a>.
 </small></li>
 
-<li id="fontaxes"><b><a href="texmf-dist/doc/latex/fontaxes">fontaxes</a></b><small>
+<li id="fontaxes"><b><a href="texmf-dist/doc/latex/fontaxes/">fontaxes</a></b><small>
 (<a href="https://ctan.org/pkg/fontaxes">CTAN</a>):
-Additional font axes for LaTeX
+Additional font axes for LaTeX. 
 <a href="texmf-dist/doc/latex/fontaxes/fontaxes.pdf">fontaxes.pdf</a>.
 </small></li>
 
-<li id="fontbook"><b><a href="texmf-dist/doc/xelatex/fontbook">fontbook</a></b><small>
+<li id="fontbook"><b><a href="texmf-dist/doc/xelatex/fontbook/">fontbook</a></b><small>
 (<a href="https://ctan.org/pkg/fontbook">CTAN</a>):
-Generate a font book
+Generate a font book. 
 <a href="texmf-dist/doc/xelatex/fontbook/fontbook-freefonts.pdf">fontbook-freefonts.pdf</a>
 <a href="texmf-dist/doc/xelatex/fontbook/fontbook.pdf">fontbook.pdf</a>.
 </small></li>
 
-<li id="fontch"><b><a href="texmf-dist/doc/plain/fontch">fontch</a></b><small>
+<li id="fontch"><b><a href="texmf-dist/doc/plain/fontch/">fontch</a></b><small>
 (<a href="https://ctan.org/pkg/fontch">CTAN</a>):
-Changing fonts, sizes and encodings in Plain TeX
+Changing fonts, sizes and encodings in Plain TeX. 
 <a href="texmf-dist/doc/plain/fontch/fontch.pdf">fontch.pdf</a>.
 </small></li>
 
-<li id="fontinst"><b><a href="texmf-dist/doc/fonts/fontinst/manual">fontinst</a></b><small>
+<li id="fontinst"><b><a href="texmf-dist/doc/fonts/fontinst/">fontinst</a></b><small>
 (<a href="https://ctan.org/pkg/fontinst">CTAN</a>):
-Help with installing fonts for TeX and LaTeX
+Help with installing fonts for TeX and LaTeX. 
 <a href="texmf-dist/doc/fonts/fontinst/manual/fontinst.pdf">fontinst.pdf</a>
 <a href="texmf-dist/doc/fonts/fontinst/manual/intro98.pdf">intro98.pdf</a>
 <a href="texmf-dist/doc/fonts/fontinst/talks/et99-font-tables.pdf">et99-font-tables.pdf</a>
@@ -8579,35 +8560,35 @@
 <a href="texmf-dist/doc/man/man1/fontinst.man1.pdf">fontinst.man1.pdf</a>.
 </small></li>
 
-<li id="fontmfizz"><b><a href="texmf-dist/doc/fonts/fontmfizz">fontmfizz</a></b><small>
+<li id="fontmfizz"><b><a href="texmf-dist/doc/fonts/fontmfizz/">fontmfizz</a></b><small>
 (<a href="https://ctan.org/pkg/fontmfizz">CTAN</a>):
-Font Mfizz icons for use in LaTeX
+Font Mfizz icons for use in LaTeX. 
 <a href="texmf-dist/doc/fonts/fontmfizz/fontmfizz.pdf">fontmfizz.pdf</a>.
 </small></li>
 
-<li id="fontname"><b><a href="texmf-dist/doc/fonts/fontname">fontname</a></b><small>
+<li id="fontname"><b><a href="texmf-dist/doc/fonts/fontname/">fontname</a></b><small>
 (<a href="https://ctan.org/pkg/fontname">CTAN</a>):
-Scheme for naming fonts in TeX
+Scheme for naming fonts in TeX. 
 <a href="texmf-dist/doc/fonts/fontname/index.html">index.html</a>.
 </small></li>
 
-<li id="fontools"><b><a href="texmf-dist/doc/man/man1">fontools</a></b><small>
+<li id="fontools"><b><a href="texmf-dist/doc/man/man1/">fontools</a></b><small>
 (<a href="https://ctan.org/pkg/fontools">CTAN</a>):
-Tools to simplify using fonts (especially TT/OTF ones)
+Tools to simplify using fonts (especially TT/OTF ones). 
 <a href="texmf-dist/doc/man/man1/afm2afm.man1.pdf">afm2afm.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/autoinst.man1.pdf">autoinst.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/ot2kpx.man1.pdf">ot2kpx.man1.pdf</a>.
 </small></li>
 
-<li id="fonts-churchslavonic"><b><a href="texmf-dist/doc/fonts/fonts-churchslavonic">fonts-churchslavonic</a></b><small>
+<li id="fonts-churchslavonic"><b><a href="texmf-dist/doc/fonts/fonts-churchslavonic/">fonts-churchslavonic</a></b><small>
 (<a href="https://ctan.org/pkg/fonts-churchslavonic">CTAN</a>):
-Fonts for typesetting in Church Slavonic language
+Fonts for typesetting in Church Slavonic language. 
 <a href="texmf-dist/doc/fonts/fonts-churchslavonic/fonts-churchslavonic.pdf">fonts-churchslavonic.pdf</a>.
 </small></li>
 
-<li id="fontsetup"><b><a href="texmf-dist/doc/latex/fontsetup">fontsetup</a></b><small>
+<li id="fontsetup"><b><a href="texmf-dist/doc/latex/fontsetup/">fontsetup</a></b><small>
 (<a href="https://ctan.org/pkg/fontsetup">CTAN</a>):
-A front-end to fontspec, for selected fonts with math support
+A front-end to fontspec, for selected fonts with math support. 
 <a href="texmf-dist/doc/latex/fontsetup/fontsetup-doc.pdf">fontsetup-doc.pdf</a>
 <a href="texmf-dist/doc/latex/fontsetup/fspsample-cmr.pdf">fspsample-cmr.pdf</a>
 <a href="texmf-dist/doc/latex/fontsetup/fspsample-ebgaramond.pdf">fspsample-ebgaramond.pdf</a>
@@ -8624,28 +8605,27 @@
 <a href="texmf-dist/doc/latex/fontsetup/fspsample-times.pdf">fspsample-times.pdf</a>.
 </small></li>
 
-<li id="fontsize"><b><a href="texmf-dist/doc/latex/fontsize">fontsize</a></b><small>
+<li id="fontsize"><b><a href="texmf-dist/doc/latex/fontsize/">fontsize</a></b><small>
 (<a href="https://ctan.org/pkg/fontsize">CTAN</a>):
-A small package to set arbitrary sizes for the main font of the document
+A small package to set arbitrary sizes for the main font of the document. 
 <a href="texmf-dist/doc/latex/fontsize/fontsize.pdf">fontsize.pdf</a>.
 </small></li>
 
-<li id="fontspec"><b><a href="texmf-dist/doc/latex/fontspec">fontspec</a></b><small>
+<li id="fontspec"><b><a href="texmf-dist/doc/latex/fontspec/">fontspec</a></b><small>
 (<a href="https://ctan.org/pkg/fontspec">CTAN</a>):
-Advanced font selection in XeLaTeX and LuaLaTeX
+Advanced font selection in XeLaTeX and LuaLaTeX. 
 <a href="texmf-dist/doc/latex/fontspec/fontspec-code.pdf">fontspec-code.pdf</a>
 <a href="texmf-dist/doc/latex/fontspec/fontspec.pdf">fontspec.pdf</a>.
 </small></li>
 
-<li id="fonttable"><b><a href="texmf-dist/doc/latex/fonttable">fonttable</a></b><small>
+<li id="fonttable"><b><a href="texmf-dist/doc/latex/fonttable/">fonttable</a></b><small>
 (<a href="https://ctan.org/pkg/fonttable">CTAN</a>):
-Print font tables from a LaTeX document
+Print font tables from a LaTeX document. 
 <a href="texmf-dist/doc/latex/fonttable/fonttable.pdf">fonttable.pdf</a>.
 </small></li>
 
-<li id="fontware"><b><a href="texmf-dist/doc/man/man1">fontware</a></b><small>
-(<a href="https://ctan.org/pkg/fontware">CTAN</a>):
-Tools for virtual font metrics
+<li id="fontware"><b><a href="texmf-dist/doc/man/man1/">fontware</a></b><small>
+Tools for virtual font metrics. 
 <a href="texmf-dist/doc/man/man1/pltotf.man1.pdf">pltotf.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/tftopl.man1.pdf">tftopl.man1.pdf</a>
 <a href="texmf-dist/doc/man/man1/vftovp.man1.pdf">vftovp.man1.pdf</a>
@@ -8652,144 +8632,144 @@
 <a href="texmf-dist/doc/man/man1/vptovf.man1.pdf">vptovf.man1.pdf</a>.
 </small></li>
 
-<li id="fontwrap"><b><a href="texmf-dist/doc/xelatex/fontwrap">fontwrap</a></b><small>
+<li id="fontwrap"><b><a href="texmf-dist/doc/xelatex/fontwrap/">fontwrap</a></b><small>
 (<a href="https://ctan.org/pkg/fontwrap">CTAN</a>):
-Bind fonts to specific unicode blocks
+Bind fonts to specific unicode blocks. 
 <a href="texmf-dist/doc/xelatex/fontwrap/fontwrap.pdf">fontwrap.pdf</a>
 <a href="texmf-dist/doc/xelatex/fontwrap/fontwrap_example.pdf">fontwrap_example.pdf</a>.
 </small></li>
 
-<li id="footbib"><b><a href="texmf-dist/doc/latex/footbib">footbib</a></b><small>
+<li id="footbib"><b><a href="texmf-dist/doc/latex/footbib/">footbib</a></b><small>
 (<a href="https://ctan.org/pkg/footbib">CTAN</a>):
-Bibliographic references as footnotes
+Bibliographic references as footnotes. 
 <a href="texmf-dist/doc/latex/footbib/footbib.pdf">footbib.pdf</a>.
 </small></li>
 
-<li id="footmisc"><b><a href="texmf-dist/doc/latex/footmisc">footmisc</a></b><small>
+<li id="footmisc"><b><a href="texmf-dist/doc/latex/footmisc/">footmisc</a></b><small>
 (<a href="https://ctan.org/pkg/footmisc">CTAN</a>):
-A range of footnote options
+A range of footnote options. 
 <a href="texmf-dist/doc/latex/footmisc/footmisc.pdf">footmisc.pdf</a>.
 </small></li>
 
-<li id="footnotebackref"><b><a href="texmf-dist/doc/latex/footnotebackref">footnotebackref</a></b><small>
+<li id="footnotebackref"><b><a href="texmf-dist/doc/latex/footnotebackref/">footnotebackref</a></b><small>
 (<a href="https://ctan.org/pkg/footnotebackref">CTAN</a>):
-Back-references from footnotes
+Back-references from footnotes. 
 <a href="texmf-dist/doc/latex/footnotebackref/footnotebackref.pdf">footnotebackref.pdf</a>.
 </small></li>
 
-<li id="footnotehyper"><b><a href="texmf-dist/doc/latex/footnotehyper">footnotehyper</a></b><small>
+<li id="footnotehyper"><b><a href="texmf-dist/doc/latex/footnotehyper/">footnotehyper</a></b><small>
 (<a href="https://ctan.org/pkg/footnotehyper">CTAN</a>):
-hyperref aware footnote.sty
+hyperref aware footnote.sty. 
 <a href="texmf-dist/doc/latex/footnotehyper/footnotehyper.pdf">footnotehyper.pdf</a>.
 </small></li>
 
-<li id="footnoterange"><b><a href="texmf-dist/doc/latex/footnoterange">footnoterange</a></b><small>
+<li id="footnoterange"><b><a href="texmf-dist/doc/latex/footnoterange/">footnoterange</a></b><small>
 (<a href="https://ctan.org/pkg/footnoterange">CTAN</a>):
-References to ranges of footnotes
+References to ranges of footnotes. 
 <a href="texmf-dist/doc/latex/footnoterange/footnoterange-example.pdf">footnoterange-example.pdf</a>
 <a href="texmf-dist/doc/latex/footnoterange/footnoterange.pdf">footnoterange.pdf</a>.
 </small></li>
 
-<li id="footnpag"><b><a href="texmf-dist/doc/latex/footnpag">footnpag</a></b><small>
+<li id="footnpag"><b><a href="texmf-dist/doc/latex/footnpag/">footnpag</a></b><small>
 (<a href="https://ctan.org/pkg/footnpag">CTAN</a>):
-Per-page numbering of footnotes
+Per-page numbering of footnotes. 
 <a href="texmf-dist/doc/latex/footnpag/footnpag-user.pdf">footnpag-user.pdf</a>.
 </small></li>
 
-<li id="forarray"><b><a href="texmf-dist/doc/latex/forarray">forarray</a></b><small>
+<li id="forarray"><b><a href="texmf-dist/doc/latex/forarray/">forarray</a></b><small>
 (<a href="https://ctan.org/pkg/forarray">CTAN</a>):
-Using array structures in LaTeX
+Using array structures in LaTeX. 
 <a href="texmf-dist/doc/latex/forarray/forarray-test.pdf">forarray-test.pdf</a>
 <a href="texmf-dist/doc/latex/forarray/forarray.pdf">forarray.pdf</a>.
 </small></li>
 
-<li id="foreign"><b><a href="texmf-dist/doc/latex/foreign">foreign</a></b><small>
+<li id="foreign"><b><a href="texmf-dist/doc/latex/foreign/">foreign</a></b><small>
 (<a href="https://ctan.org/pkg/foreign">CTAN</a>):
-Systematic treatment of 'foreign' words in documents
+Systematic treatment of 'foreign' words in documents. 
 <a href="texmf-dist/doc/latex/foreign/foreign.pdf">foreign.pdf</a>.
 </small></li>
 
-<li id="forest"><b><a href="texmf-dist/doc/latex/forest">forest</a></b><small>
+<li id="forest"><b><a href="texmf-dist/doc/latex/forest/">forest</a></b><small>
 (<a href="https://ctan.org/pkg/forest">CTAN</a>):
-Drawing (linguistic) trees
+Drawing (linguistic) trees. 
 <a href="texmf-dist/doc/latex/forest/forest-doc.pdf">forest-doc.pdf</a>
 <a href="texmf-dist/doc/latex/forest/forest.pdf">forest.pdf</a>.
 </small></li>
 
-<li id="forest-quickstart"><b><a href="texmf-dist/doc/latex/forest-quickstart">forest-quickstart</a></b><small>
+<li id="forest-quickstart"><b><a href="texmf-dist/doc/latex/forest-quickstart/">forest-quickstart</a></b><small>
 (<a href="https://ctan.org/pkg/forest-quickstart">CTAN</a>):
-Quickstart Guide for Linguists package "forest"
+Quickstart Guide for Linguists package "forest". 
 <a href="texmf-dist/doc/latex/forest-quickstart/ForestQuickstart.pdf">ForestQuickstart.pdf</a>.
 </small></li>
 
-<li id="forloop"><b><a href="texmf-dist/doc/latex/forloop">forloop</a></b><small>
+<li id="forloop"><b><a href="texmf-dist/doc/latex/forloop/">forloop</a></b><small>
 (<a href="https://ctan.org/pkg/forloop">CTAN</a>):
-Iteration in LaTeX
+Iteration in LaTeX. 
 <a href="texmf-dist/doc/latex/forloop/forloop.pdf">forloop.pdf</a>.
 </small></li>
 
-<li id="formation-latex-ul"><b><a href="texmf-dist/doc/latex/formation-latex-ul">formation-latex-ul</a></b><small>
+<li id="formation-latex-ul"><b><a href="texmf-dist/doc/latex/formation-latex-ul/">formation-latex-ul</a></b><small>
 (<a href="https://ctan.org/pkg/formation-latex-ul">CTAN</a>):
-Introductory LaTeX course in French
+Introductory LaTeX course in French. 
 <a href="texmf-dist/doc/latex/formation-latex-ul/console-screenshot.pdf">console-screenshot.pdf</a>
 <a href="texmf-dist/doc/latex/formation-latex-ul/formation-latex-ul-diapos.pdf">formation-latex-ul-diapos.pdf</a> (fr) 
 <a href="texmf-dist/doc/latex/formation-latex-ul/formation-latex-ul.pdf">formation-latex-ul.pdf</a> (fr).
 </small></li>
 
-<li id="formlett"><b><a href="texmf-dist/doc/generic/formlett">formlett</a></b><small>
+<li id="formlett"><b><a href="texmf-dist/doc/generic/formlett/">formlett</a></b><small>
 (<a href="https://ctan.org/pkg/formlett">CTAN</a>):
-Letters to multiple recipients
+Letters to multiple recipients. 
 <a href="texmf-dist/doc/generic/formlett/prog_manual.pdf">prog_manual.pdf</a>
 <a href="texmf-dist/doc/generic/formlett/user_manual.pdf">user_manual.pdf</a>.
 </small></li>
 
-<li id="forms16be"><b><a href="texmf-dist/doc/latex/forms16be/doc">forms16be</a></b><small>
+<li id="forms16be"><b><a href="texmf-dist/doc/latex/forms16be/">forms16be</a></b><small>
 (<a href="https://ctan.org/pkg/forms16be">CTAN</a>):
-Initialize form properties using big-endian encoding
+Initialize form properties using big-endian encoding. 
 <a href="texmf-dist/doc/latex/forms16be/doc/forms16be-man.pdf">forms16be-man.pdf</a>
 <a href="texmf-dist/doc/latex/forms16be/examples/forms16be-ef.pdf">forms16be-ef.pdf</a>.
 </small></li>
 
-<li id="formular"><b><a href="texmf-dist/doc/latex/formular">formular</a></b><small>
+<li id="formular"><b><a href="texmf-dist/doc/latex/formular/">formular</a></b><small>
 (<a href="https://ctan.org/pkg/formular">CTAN</a>):
-Create forms containing field for manual entry
+Create forms containing field for manual entry. 
 <a href="texmf-dist/doc/latex/formular/formular.pdf">formular.pdf</a>.
 </small></li>
 
-<li id="forum"><b><a href="texmf-dist/doc/fonts/forum">forum</a></b><small>
+<li id="forum"><b><a href="texmf-dist/doc/fonts/forum/">forum</a></b><small>
 (<a href="https://ctan.org/pkg/forum">CTAN</a>):
-forum fonts with LaTeX support
+forum fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/forum/forum-samples.pdf">forum-samples.pdf</a>.
 </small></li>
 
-<li id="fouridx"><b><a href="texmf-dist/doc/latex/fouridx">fouridx</a></b><small>
+<li id="fouridx"><b><a href="texmf-dist/doc/latex/fouridx/">fouridx</a></b><small>
 (<a href="https://ctan.org/pkg/fouridx">CTAN</a>):
-Left sub- and superscripts in maths mode
+Left sub- and superscripts in maths mode. 
 <a href="texmf-dist/doc/latex/fouridx/fouridx.pdf">fouridx.pdf</a>.
 </small></li>
 
-<li id="fourier"><b><a href="texmf-dist/doc/fonts/fourier">fourier</a></b><small>
+<li id="fourier"><b><a href="texmf-dist/doc/fonts/fourier/">fourier</a></b><small>
 (<a href="https://ctan.org/pkg/fourier">CTAN</a>):
-Using Utopia fonts in LaTeX documents
+Using Utopia fonts in LaTeX documents. 
 <a href="texmf-dist/doc/fonts/fourier/fourier-doc-en.pdf">fourier-doc-en.pdf</a>
 <a href="texmf-dist/doc/fonts/fourier/fourier-orns-doc.pdf">fourier-orns-doc.pdf</a>.
 </small></li>
 
-<li id="fouriernc"><b><a href="texmf-dist/doc/fonts/fouriernc">fouriernc</a></b><small>
+<li id="fouriernc"><b><a href="texmf-dist/doc/fonts/fouriernc/">fouriernc</a></b><small>
 (<a href="https://ctan.org/pkg/fouriernc">CTAN</a>):
-Use New Century Schoolbook text with Fourier maths fonts
+Use New Century Schoolbook text with Fourier maths fonts. 
 <a href="texmf-dist/doc/fonts/fouriernc/test_fouriernc.pdf">test_fouriernc.pdf</a>.
 </small></li>
 
-<li id="fp"><b><a href="texmf-dist/doc/latex/fp">fp</a></b><small>
+<li id="fp"><b><a href="texmf-dist/doc/latex/fp/">fp</a></b><small>
 (<a href="https://ctan.org/pkg/fp">CTAN</a>):
-Fixed point arithmetic
+Fixed point arithmetic. 
 <a href="texmf-dist/doc/latex/fp/documentation.pdf">documentation.pdf</a>.
 </small></li>
 
-<li id="fragmaster"><b><a href="texmf-dist/doc/support/fragmaster/example">fragmaster</a></b><small>
+<li id="fragmaster"><b><a href="texmf-dist/doc/support/fragmaster/">fragmaster</a></b><small>
 (<a href="https://ctan.org/pkg/fragmaster">CTAN</a>):
-Using psfrag with pdfLaTeX
+Using psfrag with pdfLaTeX. 
 <a href="texmf-dist/doc/support/fragmaster/example/document.pdf">document.pdf</a>
 <a href="texmf-dist/doc/support/fragmaster/example/parabel.pdf">parabel.pdf</a>
 <a href="texmf-dist/doc/support/fragmaster/example/parabel_fm.pdf">parabel_fm.pdf</a>
@@ -8796,21 +8776,21 @@
 <a href="texmf-dist/doc/support/fragmaster/fragmaster.pdf">fragmaster.pdf</a>.
 </small></li>
 
-<li id="frame"><b><a href="texmf-dist/doc/generic/frame">frame</a></b><small>
+<li id="frame"><b><a href="texmf-dist/doc/generic/frame/">frame</a></b><small>
 (<a href="https://ctan.org/pkg/frame">CTAN</a>):
-Framed boxes for Plain TeX
+Framed boxes for Plain TeX. 
 <a href="texmf-dist/doc/generic/frame/frame-doc.pdf">frame-doc.pdf</a>.
 </small></li>
 
-<li id="framed"><b><a href="texmf-dist/doc/latex/framed">framed</a></b><small>
+<li id="framed"><b><a href="texmf-dist/doc/latex/framed/">framed</a></b><small>
 (<a href="https://ctan.org/pkg/framed">CTAN</a>):
-Framed or shaded regions that can break across pages
+Framed or shaded regions that can break across pages. 
 <a href="texmf-dist/doc/latex/framed/framed.pdf">framed.pdf</a>.
 </small></li>
 
-<li id="frankenstein"><b><a href="texmf-dist/doc/latex/frankenstein">frankenstein</a></b><small>
+<li id="frankenstein"><b><a href="texmf-dist/doc/latex/frankenstein/">frankenstein</a></b><small>
 (<a href="https://ctan.org/pkg/frankenstein">CTAN</a>):
-A collection of LaTeX packages
+A collection of LaTeX packages. 
 <a href="texmf-dist/doc/latex/frankenstein/abbrevs.pdf">abbrevs.pdf</a>
 <a href="texmf-dist/doc/latex/frankenstein/achicago-bst.pdf">achicago-bst.pdf</a>
 <a href="texmf-dist/doc/latex/frankenstein/achicago.pdf">achicago.pdf</a>
@@ -8828,34 +8808,34 @@
 <a href="texmf-dist/doc/latex/frankenstein/unsupported/includex.pdf">includex.pdf</a>.
 </small></li>
 
-<li id="frcursive"><b><a href="texmf-dist/doc/fonts/frcursive">frcursive</a></b><small>
+<li id="frcursive"><b><a href="texmf-dist/doc/fonts/frcursive/">frcursive</a></b><small>
 (<a href="https://ctan.org/pkg/frcursive">CTAN</a>):
-French cursive hand fonts
+French cursive hand fonts. 
 <a href="texmf-dist/doc/fonts/frcursive/frcursive.pdf">frcursive.pdf</a>.
 </small></li>
 
-<li id="frederika2016"><b><a href="texmf-dist/doc/fonts/frederika2016">frederika2016</a></b><small>
+<li id="frederika2016"><b><a href="texmf-dist/doc/fonts/frederika2016/">frederika2016</a></b><small>
 (<a href="https://ctan.org/pkg/frederika2016">CTAN</a>):
-An OpenType Greek calligraphy font
+An OpenType Greek calligraphy font. 
 <a href="texmf-dist/doc/fonts/frederika2016/FontInfo.pdf">FontInfo.pdf</a>
 <a href="texmf-dist/doc/fonts/frederika2016/testpol.pdf">testpol.pdf</a>.
 </small></li>
 
-<li id="frege"><b><a href="texmf-dist/doc/latex/frege">frege</a></b><small>
+<li id="frege"><b><a href="texmf-dist/doc/latex/frege/">frege</a></b><small>
 (<a href="https://ctan.org/pkg/frege">CTAN</a>):
-Typeset fregean Begriffsschrift
+Typeset fregean Begriffsschrift. 
 <a href="texmf-dist/doc/latex/frege/frege.pdf">frege.pdf</a>.
 </small></li>
 
-<li id="frenchmath"><b><a href="texmf-dist/doc/latex/frenchmath">frenchmath</a></b><small>
+<li id="frenchmath"><b><a href="texmf-dist/doc/latex/frenchmath/">frenchmath</a></b><small>
 (<a href="https://ctan.org/pkg/frenchmath">CTAN</a>):
-Typesetting mathematics according to French rules
+Typesetting mathematics according to French rules. 
 <a href="texmf-dist/doc/latex/frenchmath/frenchmath.pdf">frenchmath.pdf</a> (fr).
 </small></li>
 
-<li id="frontespizio"><b><a href="texmf-dist/doc/latex/frontespizio">frontespizio</a></b><small>
+<li id="frontespizio"><b><a href="texmf-dist/doc/latex/frontespizio/">frontespizio</a></b><small>
 (<a href="https://ctan.org/pkg/frontespizio">CTAN</a>):
-Create a frontispiece for Italian theses
+Create a frontispiece for Italian theses. 
 <a href="texmf-dist/doc/latex/frontespizio/examplea.pdf">examplea.pdf</a>
 <a href="texmf-dist/doc/latex/frontespizio/exampleasuf.pdf">exampleasuf.pdf</a>
 <a href="texmf-dist/doc/latex/frontespizio/exampleb.pdf">exampleb.pdf</a>
@@ -8866,72 +8846,72 @@
 <a href="texmf-dist/doc/latex/frontespizio/frontespizio.pdf">frontespizio.pdf</a> (it).
 </small></li>
 
-<li id="ftc-notebook"><b><a href="texmf-dist/doc/latex/ftc-notebook">ftc-notebook</a></b><small>
+<li id="ftc-notebook"><b><a href="texmf-dist/doc/latex/ftc-notebook/">ftc-notebook</a></b><small>
 (<a href="https://ctan.org/pkg/ftc-notebook">CTAN</a>):
-Typeset FIRST Tech Challenge (FTC) notebooks
+Typeset FIRST Tech Challenge (FTC) notebooks. 
 <a href="texmf-dist/doc/latex/ftc-notebook/example-notebook.pdf">example-notebook.pdf</a>
 <a href="texmf-dist/doc/latex/ftc-notebook/ftc-notebook.pdf">ftc-notebook.pdf</a>.
 </small></li>
 
-<li id="ftcap"><b><a href="texmf-dist/doc/latex/ftcap">ftcap</a></b><small>
+<li id="ftcap"><b><a href="texmf-dist/doc/latex/ftcap/">ftcap</a></b><small>
 (<a href="https://ctan.org/pkg/ftcap">CTAN</a>):
-Allows \caption at the beginning of a table-environment
+Allows \caption at the beginning of a table-environment. 
 <a href="texmf-dist/doc/latex/ftcap/ftcap.pdf">ftcap.pdf</a>.
 </small></li>
 
-<li id="ftnxtra"><b><a href="texmf-dist/doc/latex/ftnxtra">ftnxtra</a></b><small>
+<li id="ftnxtra"><b><a href="texmf-dist/doc/latex/ftnxtra/">ftnxtra</a></b><small>
 (<a href="https://ctan.org/pkg/ftnxtra">CTAN</a>):
-Extend the applicability of the \footnote command
+Extend the applicability of the \footnote command. 
 <a href="texmf-dist/doc/latex/ftnxtra/ftnxtra.pdf">ftnxtra.pdf</a>.
 </small></li>
 
-<li id="fullblck"><b><a href="texmf-dist/doc/latex/fullblck">fullblck</a></b><small>
+<li id="fullblck"><b><a href="texmf-dist/doc/latex/fullblck/">fullblck</a></b><small>
 (<a href="https://ctan.org/pkg/fullblck">CTAN</a>):
-Left-blocking for letter class
+Left-blocking for letter class. 
 <a href="texmf-dist/doc/latex/fullblck/fullblck.pdf">fullblck.pdf</a>.
 </small></li>
 
-<li id="fullminipage"><b><a href="texmf-dist/doc/latex/fullminipage">fullminipage</a></b><small>
+<li id="fullminipage"><b><a href="texmf-dist/doc/latex/fullminipage/">fullminipage</a></b><small>
 (<a href="https://ctan.org/pkg/fullminipage">CTAN</a>):
-Minipage spanning a complete page
+Minipage spanning a complete page. 
 <a href="texmf-dist/doc/latex/fullminipage/fullminipage.pdf">fullminipage.pdf</a>
 <a href="texmf-dist/doc/latex/fullminipage/fullminipage_test.pdf">fullminipage_test.pdf</a>.
 </small></li>
 
-<li id="fullwidth"><b><a href="texmf-dist/doc/latex/fullwidth">fullwidth</a></b><small>
+<li id="fullwidth"><b><a href="texmf-dist/doc/latex/fullwidth/">fullwidth</a></b><small>
 (<a href="https://ctan.org/pkg/fullwidth">CTAN</a>):
-Adjust margins of text block
+Adjust margins of text block. 
 <a href="texmf-dist/doc/latex/fullwidth/fullwidth-test.pdf">fullwidth-test.pdf</a>
 <a href="texmf-dist/doc/latex/fullwidth/fullwidth.pdf">fullwidth.pdf</a>.
 </small></li>
 
-<li id="functan"><b><a href="texmf-dist/doc/latex/functan">functan</a></b><small>
+<li id="functan"><b><a href="texmf-dist/doc/latex/functan/">functan</a></b><small>
 (<a href="https://ctan.org/pkg/functan">CTAN</a>):
-Macros for functional analysis and PDE theory
+Macros for functional analysis and PDE theory. 
 <a href="texmf-dist/doc/latex/functan/functan.pdf">functan.pdf</a>.
 </small></li>
 
-<li id="fundus-calligra"><b><a href="texmf-dist/doc/latex/fundus-calligra">fundus-calligra</a></b><small>
+<li id="fundus-calligra"><b><a href="texmf-dist/doc/latex/fundus-calligra/">fundus-calligra</a></b><small>
 (<a href="https://ctan.org/pkg/fundus-calligra">CTAN</a>):
-Support for the calligra font in LaTeX documents
+Support for the calligra font in LaTeX documents. 
 <a href="texmf-dist/doc/latex/fundus-calligra/calligra.pdf">calligra.pdf</a>.
 </small></li>
 
-<li id="fundus-sueterlin"><b><a href="texmf-dist/doc/latex/fundus-sueterlin">fundus-sueterlin</a></b><small>
+<li id="fundus-sueterlin"><b><a href="texmf-dist/doc/latex/fundus-sueterlin/">fundus-sueterlin</a></b><small>
 (<a href="https://ctan.org/pkg/fundus-sueterlin">CTAN</a>):
-Sutterlin
+Sutterlin. 
 <a href="texmf-dist/doc/latex/fundus-sueterlin/suetterl.pdf">suetterl.pdf</a>.
 </small></li>
 
-<li id="fvextra"><b><a href="texmf-dist/doc/latex/fvextra">fvextra</a></b><small>
+<li id="fvextra"><b><a href="texmf-dist/doc/latex/fvextra/">fvextra</a></b><small>
 (<a href="https://ctan.org/pkg/fvextra">CTAN</a>):
-Extensions and patches for fancyvrb
+Extensions and patches for fancyvrb. 
 <a href="texmf-dist/doc/latex/fvextra/fvextra.pdf">fvextra.pdf</a>.
 </small></li>
 
-<li id="fwlw"><b><a href="texmf-dist/doc/latex/fwlw">fwlw</a></b><small>
+<li id="fwlw"><b><a href="texmf-dist/doc/latex/fwlw/">fwlw</a></b><small>
 (<a href="https://ctan.org/pkg/fwlw">CTAN</a>):
-Get first and last words of a page
+Get first and last words of a page. 
 <a href="texmf-dist/doc/latex/fwlw/fwlw.pdf">fwlw.pdf</a>.
 </small></li>
 
@@ -8939,118 +8919,118 @@
 
 <h2 id="letter-G">G</h2>
 
-<ol start="1202">
+<ol start="1203">
 
-<li id="g-brief"><b><a href="texmf-dist/doc/latex/g-brief">g-brief</a></b><small>
+<li id="g-brief"><b><a href="texmf-dist/doc/latex/g-brief/">g-brief</a></b><small>
 (<a href="https://ctan.org/pkg/g-brief">CTAN</a>):
-Letter document class
+Letter document class. 
 <a href="texmf-dist/doc/latex/g-brief/beispiel.pdf">beispiel.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/g-brief/beispiel2.pdf">beispiel2.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/g-brief/g-brief.pdf">g-brief.pdf</a> (de).
 </small></li>
 
-<li id="gaceta"><b><a href="texmf-dist/doc/latex/gaceta">gaceta</a></b><small>
+<li id="gaceta"><b><a href="texmf-dist/doc/latex/gaceta/">gaceta</a></b><small>
 (<a href="https://ctan.org/pkg/gaceta">CTAN</a>):
-A class to typeset La Gaceta de la RSME
+A class to typeset La Gaceta de la RSME. 
 <a href="texmf-dist/doc/latex/gaceta/plantilla-articulo-de-seccion.pdf">plantilla-articulo-de-seccion.pdf</a> (es) 
 <a href="texmf-dist/doc/latex/gaceta/plantilla-articulo-suelto.pdf">plantilla-articulo-suelto.pdf</a> (es).
 </small></li>
 
-<li id="galois"><b><a href="texmf-dist/doc/latex/galois">galois</a></b><small>
+<li id="galois"><b><a href="texmf-dist/doc/latex/galois/">galois</a></b><small>
 (<a href="https://ctan.org/pkg/galois">CTAN</a>):
-Typeset Galois connections
+Typeset Galois connections. 
 <a href="texmf-dist/doc/latex/galois/galois.pdf">galois.pdf</a>.
 </small></li>
 
-<li id="gamebook"><b><a href="texmf-dist/doc/latex/gamebook">gamebook</a></b><small>
+<li id="gamebook"><b><a href="texmf-dist/doc/latex/gamebook/">gamebook</a></b><small>
 (<a href="https://ctan.org/pkg/gamebook">CTAN</a>):
-Typeset gamebooks and other interactive novels
+Typeset gamebooks and other interactive novels. 
 <a href="texmf-dist/doc/latex/gamebook/gamebook-example.pdf">gamebook-example.pdf</a>
 <a href="texmf-dist/doc/latex/gamebook/gamebook.pdf">gamebook.pdf</a>.
 </small></li>
 
-<li id="garamond-libre"><b><a href="texmf-dist/doc/fonts/garamond-libre">garamond-libre</a></b><small>
+<li id="garamond-libre"><b><a href="texmf-dist/doc/fonts/garamond-libre/">garamond-libre</a></b><small>
 (<a href="https://ctan.org/pkg/garamond-libre">CTAN</a>):
-The Garamond Libre font face
+The Garamond Libre font face. 
 <a href="texmf-dist/doc/fonts/garamond-libre/garamond-libre.pdf">garamond-libre.pdf</a>.
 </small></li>
 
-<li id="garamond-math"><b><a href="texmf-dist/doc/fonts/garamond-math">garamond-math</a></b><small>
+<li id="garamond-math"><b><a href="texmf-dist/doc/fonts/garamond-math/">garamond-math</a></b><small>
 (<a href="https://ctan.org/pkg/garamond-math">CTAN</a>):
-An OTF math font matching EB Garamond
+An OTF math font matching EB Garamond. 
 <a href="texmf-dist/doc/fonts/garamond-math/Garamond-Math.pdf">Garamond-Math.pdf</a>.
 </small></li>
 
-<li id="gatech-thesis"><b><a href="texmf-dist/doc/latex/gatech-thesis">gatech-thesis</a></b><small>
+<li id="gatech-thesis"><b><a href="texmf-dist/doc/latex/gatech-thesis/">gatech-thesis</a></b><small>
 (<a href="https://ctan.org/pkg/gatech-thesis">CTAN</a>):
-Georgia Institute of Technology thesis class
+Georgia Institute of Technology thesis class. 
 <a href="texmf-dist/doc/latex/gatech-thesis/example-thesis.pdf">example-thesis.pdf</a>.
 </small></li>
 
-<li id="gates"><b><a href="texmf-dist/doc/generic/gates">gates</a></b><small>
+<li id="gates"><b><a href="texmf-dist/doc/generic/gates/">gates</a></b><small>
 (<a href="https://ctan.org/pkg/gates">CTAN</a>):
-Support for writing modular and customisable code
+Support for writing modular and customisable code. 
 <a href="texmf-dist/doc/generic/gates/gates-doc.pdf">gates-doc.pdf</a>.
 </small></li>
 
-<li id="gatherenum"><b><a href="texmf-dist/doc/latex/gatherenum">gatherenum</a></b><small>
+<li id="gatherenum"><b><a href="texmf-dist/doc/latex/gatherenum/">gatherenum</a></b><small>
 (<a href="https://ctan.org/pkg/gatherenum">CTAN</a>):
-A crossover of align* and enumerate
+A crossover of align* and enumerate. 
 <a href="texmf-dist/doc/latex/gatherenum/gatherenum.pdf">gatherenum.pdf</a>.
 </small></li>
 
-<li id="gauss"><b><a href="texmf-dist/doc/latex/gauss">gauss</a></b><small>
+<li id="gauss"><b><a href="texmf-dist/doc/latex/gauss/">gauss</a></b><small>
 (<a href="https://ctan.org/pkg/gauss">CTAN</a>):
-A package for Gaussian operations
+A package for Gaussian operations. 
 <a href="texmf-dist/doc/latex/gauss/gauss-doc.pdf">gauss-doc.pdf</a>
 <a href="texmf-dist/doc/latex/gauss/gauss-ex.pdf">gauss-ex.pdf</a>.
 </small></li>
 
-<li id="gb4e"><b><a href="texmf-dist/doc/latex/gb4e">gb4e</a></b><small>
+<li id="gb4e"><b><a href="texmf-dist/doc/latex/gb4e/">gb4e</a></b><small>
 (<a href="https://ctan.org/pkg/gb4e">CTAN</a>):
-Linguistic tools
+Linguistic tools. 
 <a href="texmf-dist/doc/latex/gb4e/gb4e-doc.pdf">gb4e-doc.pdf</a>.
 </small></li>
 
-<li id="gbt7714"><b><a href="texmf-dist/doc/bibtex/gbt7714">gbt7714</a></b><small>
+<li id="gbt7714"><b><a href="texmf-dist/doc/bibtex/gbt7714/">gbt7714</a></b><small>
 (<a href="https://ctan.org/pkg/gbt7714">CTAN</a>):
-BibTeX implementation of China's bibliography style standard GB/T 7714-2015
+BibTeX implementation of China's bibliography style standard GB/T 7714-2015. 
 <a href="texmf-dist/doc/bibtex/gbt7714/gbt7714.pdf">gbt7714.pdf</a> (zh).
 </small></li>
 
-<li id="gcard"><b><a href="texmf-dist/doc/latex/gcard">gcard</a></b><small>
+<li id="gcard"><b><a href="texmf-dist/doc/latex/gcard/">gcard</a></b><small>
 (<a href="https://ctan.org/pkg/gcard">CTAN</a>):
-Arrange text on a sheet to fold into a greeting card
+Arrange text on a sheet to fold into a greeting card. 
 <a href="texmf-dist/doc/latex/gcard/gcard.pdf">gcard.pdf</a>.
 </small></li>
 
-<li id="gchords"><b><a href="texmf-dist/doc/latex/gchords">gchords</a></b><small>
+<li id="gchords"><b><a href="texmf-dist/doc/latex/gchords/">gchords</a></b><small>
 (<a href="https://ctan.org/pkg/gchords">CTAN</a>):
-Typeset guitar chords
+Typeset guitar chords. 
 <a href="texmf-dist/doc/latex/gchords/gchords_doc.pdf">gchords_doc.pdf</a>.
 </small></li>
 
-<li id="gcite"><b><a href="texmf-dist/doc/latex/gcite">gcite</a></b><small>
+<li id="gcite"><b><a href="texmf-dist/doc/latex/gcite/">gcite</a></b><small>
 (<a href="https://ctan.org/pkg/gcite">CTAN</a>):
-Citations in a reader-friendly style
+Citations in a reader-friendly style. 
 <a href="texmf-dist/doc/latex/gcite/gcite.pdf">gcite.pdf</a>.
 </small></li>
 
-<li id="gender"><b><a href="texmf-dist/doc/latex/gender">gender</a></b><small>
+<li id="gender"><b><a href="texmf-dist/doc/latex/gender/">gender</a></b><small>
 (<a href="https://ctan.org/pkg/gender">CTAN</a>):
-Gender neutrality for languages with grammatical gender
+Gender neutrality for languages with grammatical gender. 
 <a href="texmf-dist/doc/latex/gender/gender.pdf">gender.pdf</a>.
 </small></li>
 
-<li id="gene-logic"><b><a href="texmf-dist/doc/latex/gene-logic">gene-logic</a></b><small>
+<li id="gene-logic"><b><a href="texmf-dist/doc/latex/gene-logic/">gene-logic</a></b><small>
 (<a href="https://ctan.org/pkg/gene-logic">CTAN</a>):
-Typeset logic formulae, etc
+Typeset logic formulae, etc. 
 <a href="texmf-dist/doc/latex/gene-logic/gn-logic14.pdf">gn-logic14.pdf</a>.
 </small></li>
 
-<li id="genealogytree"><b><a href="texmf-dist/doc/latex/genealogytree">genealogytree</a></b><small>
+<li id="genealogytree"><b><a href="texmf-dist/doc/latex/genealogytree/">genealogytree</a></b><small>
 (<a href="https://ctan.org/pkg/genealogytree">CTAN</a>):
-Pedigree and genealogical tree diagrams
+Pedigree and genealogical tree diagrams. 
 <a href="texmf-dist/doc/latex/genealogytree/genealogytree-example-1.pdf">genealogytree-example-1.pdf</a>
 <a href="texmf-dist/doc/latex/genealogytree/genealogytree-example-2.pdf">genealogytree-example-2.pdf</a>
 <a href="texmf-dist/doc/latex/genealogytree/genealogytree-example-3.pdf">genealogytree-example-3.pdf</a>
@@ -9058,28 +9038,28 @@
 <a href="texmf-dist/doc/latex/genealogytree/genealogytree.pdf">genealogytree.pdf</a>.
 </small></li>
 
-<li id="genmpage"><b><a href="texmf-dist/doc/latex/genmpage">genmpage</a></b><small>
+<li id="genmpage"><b><a href="texmf-dist/doc/latex/genmpage/">genmpage</a></b><small>
 (<a href="https://ctan.org/pkg/genmpage">CTAN</a>):
-Generalization of LaTeX's minipages
+Generalization of LaTeX's minipages. 
 <a href="texmf-dist/doc/latex/genmpage/genmpage.pdf">genmpage.pdf</a>.
 </small></li>
 
-<li id="gentium-tug"><b><a href="texmf-dist/doc/fonts/gentium-tug/GentiumPlus/documentation">gentium-tug</a></b><small>
+<li id="gentium-tug"><b><a href="texmf-dist/doc/fonts/gentium-tug/">gentium-tug</a></b><small>
 (<a href="https://ctan.org/pkg/gentium-tug">CTAN</a>):
-Gentium fonts (in two formats) and support files
+Gentium fonts (in two formats) and support files. 
 <a href="texmf-dist/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.pdf">GentiumPlus-features.pdf</a>
 <a href="texmf-dist/doc/fonts/gentium-tug/gentium.pdf">gentium.pdf</a>.
 </small></li>
 
-<li id="gentle"><b><a href="texmf-dist/doc/plain/gentle">gentle</a></b><small>
+<li id="gentle"><b><a href="texmf-dist/doc/plain/gentle/">gentle</a></b><small>
 (<a href="https://ctan.org/pkg/gentle">CTAN</a>):
-A Gentle Introduction to TeX
+A Gentle Introduction to TeX. 
 <a href="texmf-dist/doc/plain/gentle/gentle.pdf">gentle.pdf</a>.
 </small></li>
 
-<li id="gentombow"><b><a href="texmf-dist/doc/latex/gentombow">gentombow</a></b><small>
+<li id="gentombow"><b><a href="texmf-dist/doc/latex/gentombow/">gentombow</a></b><small>
 (<a href="https://ctan.org/pkg/gentombow">CTAN</a>):
-Generate Japanese-style crop marks
+Generate Japanese-style crop marks. 
 <a href="texmf-dist/doc/latex/gentombow/bounddvi-en.pdf">bounddvi-en.pdf</a>
 <a href="texmf-dist/doc/latex/gentombow/bounddvi.pdf">bounddvi.pdf</a> (ja) 
 <a href="texmf-dist/doc/latex/gentombow/gentombow-ja.pdf">gentombow-ja.pdf</a> (ja) 
@@ -9087,218 +9067,218 @@
 <a href="texmf-dist/doc/latex/gentombow/pxgentombow.pdf">pxgentombow.pdf</a>.
 </small></li>
 
-<li id="geometry"><b><a href="texmf-dist/doc/latex/geometry">geometry</a></b><small>
+<li id="geometry"><b><a href="texmf-dist/doc/latex/geometry/">geometry</a></b><small>
 (<a href="https://ctan.org/pkg/geometry">CTAN</a>):
-Flexible and complete interface to document dimensions
+Flexible and complete interface to document dimensions. 
 <a href="texmf-dist/doc/latex/geometry/geometry-de.pdf">geometry-de.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/geometry/geometry.pdf">geometry.pdf</a>.
 </small></li>
 
-<li id="german"><b><a href="texmf-dist/doc/generic/german">german</a></b><small>
+<li id="german"><b><a href="texmf-dist/doc/generic/german/">german</a></b><small>
 (<a href="https://ctan.org/pkg/german">CTAN</a>):
-Support for German typography
+Support for German typography. 
 <a href="texmf-dist/doc/generic/german/gerdoc.pdf">gerdoc.pdf</a> (de).
 </small></li>
 
-<li id="germkorr"><b><a href="texmf-dist/doc/latex/germkorr">germkorr</a></b><small>
+<li id="germkorr"><b><a href="texmf-dist/doc/latex/germkorr/">germkorr</a></b><small>
 (<a href="https://ctan.org/pkg/germkorr">CTAN</a>):
-Change kerning for German quotation marks
+Change kerning for German quotation marks. 
 <a href="texmf-dist/doc/latex/germkorr/germkorr.pdf">germkorr.pdf</a>.
 </small></li>
 
-<li id="geschichtsfrkl"><b><a href="texmf-dist/doc/latex/geschichtsfrkl">geschichtsfrkl</a></b><small>
+<li id="geschichtsfrkl"><b><a href="texmf-dist/doc/latex/geschichtsfrkl/">geschichtsfrkl</a></b><small>
 (<a href="https://ctan.org/pkg/geschichtsfrkl">CTAN</a>):
-BibLaTeX style for historians
+BibLaTeX style for historians. 
 <a href="texmf-dist/doc/latex/geschichtsfrkl/geschichtsfrkl.pdf">geschichtsfrkl.pdf</a> (de).
 </small></li>
 
-<li id="getfiledate"><b><a href="texmf-dist/doc/latex/getfiledate">getfiledate</a></b><small>
+<li id="getfiledate"><b><a href="texmf-dist/doc/latex/getfiledate/">getfiledate</a></b><small>
 (<a href="https://ctan.org/pkg/getfiledate">CTAN</a>):
-Find the date of last modification of a file
+Find the date of last modification of a file. 
 <a href="texmf-dist/doc/latex/getfiledate/getfiledate-guide.pdf">getfiledate-guide.pdf</a>.
 </small></li>
 
-<li id="getitems"><b><a href="texmf-dist/doc/latex/getitems">getitems</a></b><small>
+<li id="getitems"><b><a href="texmf-dist/doc/latex/getitems/">getitems</a></b><small>
 (<a href="https://ctan.org/pkg/getitems">CTAN</a>):
-Gathering items from a list-like environment
+Gathering items from a list-like environment. 
 <a href="texmf-dist/doc/latex/getitems/getitems.pdf">getitems.pdf</a>.
 </small></li>
 
-<li id="getmap"><b><a href="texmf-dist/doc/latex/getmap">getmap</a></b><small>
+<li id="getmap"><b><a href="texmf-dist/doc/latex/getmap/">getmap</a></b><small>
 (<a href="https://ctan.org/pkg/getmap">CTAN</a>):
-Download OpenStreetMap maps for use in documents
+Download OpenStreetMap maps for use in documents. 
 <a href="texmf-dist/doc/latex/getmap/getmap.pdf">getmap.pdf</a>.
 </small></li>
 
-<li id="getoptk"><b><a href="texmf-dist/doc/plain/getoptk">getoptk</a></b><small>
+<li id="getoptk"><b><a href="texmf-dist/doc/plain/getoptk/">getoptk</a></b><small>
 (<a href="https://ctan.org/pkg/getoptk">CTAN</a>):
-Define macros with sophisticated options
+Define macros with sophisticated options. 
 <a href="texmf-dist/doc/plain/getoptk/guide.pdf">guide.pdf</a>.
 </small></li>
 
-<li id="gettitlestring"><b><a href="texmf-dist/doc/latex/gettitlestring">gettitlestring</a></b><small>
+<li id="gettitlestring"><b><a href="texmf-dist/doc/latex/gettitlestring/">gettitlestring</a></b><small>
 (<a href="https://ctan.org/pkg/gettitlestring">CTAN</a>):
-Clean up title references
+Clean up title references. 
 <a href="texmf-dist/doc/latex/gettitlestring/gettitlestring.pdf">gettitlestring.pdf</a>.
 </small></li>
 
-<li id="gfnotation"><b><a href="texmf-dist/doc/plain/gfnotation">gfnotation</a></b><small>
+<li id="gfnotation"><b><a href="texmf-dist/doc/plain/gfnotation/">gfnotation</a></b><small>
 (<a href="https://ctan.org/pkg/gfnotation">CTAN</a>):
-Typeset Gottlob Frege's notation in plain TeX
+Typeset Gottlob Frege's notation in plain TeX. 
 <a href="texmf-dist/doc/plain/gfnotation/GFnotation-doc.pdf">GFnotation-doc.pdf</a>.
 </small></li>
 
-<li id="gfsartemisia"><b><a href="texmf-dist/doc/fonts/gfsartemisia">gfsartemisia</a></b><small>
+<li id="gfsartemisia"><b><a href="texmf-dist/doc/fonts/gfsartemisia/">gfsartemisia</a></b><small>
 (<a href="https://ctan.org/pkg/gfsartemisia">CTAN</a>):
-A modern Greek font design
+A modern Greek font design. 
 <a href="texmf-dist/doc/fonts/gfsartemisia/gfsartemisia.pdf">gfsartemisia.pdf</a>.
 </small></li>
 
-<li id="gfsbaskerville"><b><a href="texmf-dist/doc/fonts/gfsbaskerville">gfsbaskerville</a></b><small>
+<li id="gfsbaskerville"><b><a href="texmf-dist/doc/fonts/gfsbaskerville/">gfsbaskerville</a></b><small>
 (<a href="https://ctan.org/pkg/gfsbaskerville">CTAN</a>):
-A Greek font, from one such by Baskerville
+A Greek font, from one such by Baskerville. 
 <a href="texmf-dist/doc/fonts/gfsbaskerville/gfsbaskerville.pdf">gfsbaskerville.pdf</a>.
 </small></li>
 
-<li id="gfsbodoni"><b><a href="texmf-dist/doc/fonts/gfsbodoni">gfsbodoni</a></b><small>
+<li id="gfsbodoni"><b><a href="texmf-dist/doc/fonts/gfsbodoni/">gfsbodoni</a></b><small>
 (<a href="https://ctan.org/pkg/gfsbodoni">CTAN</a>):
-A Greek and Latin font based on Bodoni
+A Greek and Latin font based on Bodoni. 
 <a href="texmf-dist/doc/fonts/gfsbodoni/gfsbodoni.pdf">gfsbodoni.pdf</a>.
 </small></li>
 
-<li id="gfscomplutum"><b><a href="texmf-dist/doc/fonts/gfscomplutum">gfscomplutum</a></b><small>
+<li id="gfscomplutum"><b><a href="texmf-dist/doc/fonts/gfscomplutum/">gfscomplutum</a></b><small>
 (<a href="https://ctan.org/pkg/gfscomplutum">CTAN</a>):
-A Greek font with a long history
+A Greek font with a long history. 
 <a href="texmf-dist/doc/fonts/gfscomplutum/gfscomplutum.pdf">gfscomplutum.pdf</a>.
 </small></li>
 
-<li id="gfsneohellenicmath"><b><a href="texmf-dist/doc/fonts/gfsneohellenicmath">gfsneohellenicmath</a></b><small>
+<li id="gfsneohellenicmath"><b><a href="texmf-dist/doc/fonts/gfsneohellenicmath/">gfsneohellenicmath</a></b><small>
 (<a href="https://ctan.org/pkg/gfsneohellenicmath">CTAN</a>):
-A Greek math font in the Neo-Hellenic style
+A Greek math font in the Neo-Hellenic style. 
 <a href="texmf-dist/doc/fonts/gfsneohellenicmath/MathematicsCheatSheet.pdf">MathematicsCheatSheet.pdf</a>.
 </small></li>
 
-<li id="gfsporson"><b><a href="texmf-dist/doc/fonts/gfsporson">gfsporson</a></b><small>
+<li id="gfsporson"><b><a href="texmf-dist/doc/fonts/gfsporson/">gfsporson</a></b><small>
 (<a href="https://ctan.org/pkg/gfsporson">CTAN</a>):
-A Greek font, originally from Porson
+A Greek font, originally from Porson. 
 <a href="texmf-dist/doc/fonts/gfsporson/gfsporson.pdf">gfsporson.pdf</a>.
 </small></li>
 
-<li id="gfssolomos"><b><a href="texmf-dist/doc/fonts/gfssolomos">gfssolomos</a></b><small>
+<li id="gfssolomos"><b><a href="texmf-dist/doc/fonts/gfssolomos/">gfssolomos</a></b><small>
 (<a href="https://ctan.org/pkg/gfssolomos">CTAN</a>):
-A Greek-alphabet font
+A Greek-alphabet font. 
 <a href="texmf-dist/doc/fonts/gfssolomos/gfssolomos.pdf">gfssolomos.pdf</a>.
 </small></li>
 
-<li id="ghab"><b><a href="texmf-dist/doc/latex/ghab">ghab</a></b><small>
+<li id="ghab"><b><a href="texmf-dist/doc/latex/ghab/">ghab</a></b><small>
 (<a href="https://ctan.org/pkg/ghab">CTAN</a>):
-Typeset ghab boxes in LaTeX
+Typeset ghab boxes in LaTeX. 
 <a href="texmf-dist/doc/latex/ghab/ghab-doc.pdf">ghab-doc.pdf</a>.
 </small></li>
 
-<li id="ghsystem"><b><a href="texmf-dist/doc/latex/ghsystem">ghsystem</a></b><small>
+<li id="ghsystem"><b><a href="texmf-dist/doc/latex/ghsystem/">ghsystem</a></b><small>
 (<a href="https://ctan.org/pkg/ghsystem">CTAN</a>):
-Globally harmonised system of chemical (etc) naming
+Globally harmonised system of chemical (etc) naming. 
 <a href="texmf-dist/doc/latex/ghsystem/ghsystem-manual.pdf">ghsystem-manual.pdf</a>.
 </small></li>
 
-<li id="gillcm"><b><a href="texmf-dist/doc/latex/gillcm">gillcm</a></b><small>
+<li id="gillcm"><b><a href="texmf-dist/doc/latex/gillcm/">gillcm</a></b><small>
 (<a href="https://ctan.org/pkg/gillcm">CTAN</a>):
-Alternative unslanted italic Computer Modern fonts
+Alternative unslanted italic Computer Modern fonts. 
 <a href="texmf-dist/doc/latex/gillcm/gillcm.pdf">gillcm.pdf</a>
 <a href="texmf-dist/doc/latex/gillcm/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="gillius"><b><a href="texmf-dist/doc/fonts/gillius">gillius</a></b><small>
+<li id="gillius"><b><a href="texmf-dist/doc/fonts/gillius/">gillius</a></b><small>
 (<a href="https://ctan.org/pkg/gillius">CTAN</a>):
-Gillius fonts with LaTeX support
+Gillius fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/gillius/Gillius-cat.pdf">Gillius-cat.pdf</a>
 <a href="texmf-dist/doc/fonts/gillius/gillius-samples.pdf">gillius-samples.pdf</a>
 <a href="texmf-dist/doc/fonts/gillius/gillius2-samples.pdf">gillius2-samples.pdf</a>.
 </small></li>
 
-<li id="gincltex"><b><a href="texmf-dist/doc/latex/gincltex">gincltex</a></b><small>
+<li id="gincltex"><b><a href="texmf-dist/doc/latex/gincltex/">gincltex</a></b><small>
 (<a href="https://ctan.org/pkg/gincltex">CTAN</a>):
-Include TeX files as graphics (.tex support for \includegraphics)
+Include TeX files as graphics (.tex support for \includegraphics). 
 <a href="texmf-dist/doc/latex/gincltex/gincltex.pdf">gincltex.pdf</a>.
 </small></li>
 
-<li id="gindex"><b><a href="texmf-dist/doc/latex/gindex">gindex</a></b><small>
+<li id="gindex"><b><a href="texmf-dist/doc/latex/gindex/">gindex</a></b><small>
 (<a href="https://ctan.org/pkg/gindex">CTAN</a>):
-Formatting indexes
+Formatting indexes. 
 <a href="texmf-dist/doc/latex/gindex/gindex.pdf">gindex.pdf</a>.
 </small></li>
 
-<li id="ginpenc"><b><a href="texmf-dist/doc/latex/ginpenc">ginpenc</a></b><small>
+<li id="ginpenc"><b><a href="texmf-dist/doc/latex/ginpenc/">ginpenc</a></b><small>
 (<a href="https://ctan.org/pkg/ginpenc">CTAN</a>):
-Modification of inputenc for German
+Modification of inputenc for German. 
 <a href="texmf-dist/doc/latex/ginpenc/ginpenc.pdf">ginpenc.pdf</a>.
 </small></li>
 
-<li id="git-latexdiff"><b><a href="texmf-dist/doc/man/man1">git-latexdiff</a></b><small>
+<li id="git-latexdiff"><b><a href="texmf-dist/doc/man/man1/">git-latexdiff</a></b><small>
 (<a href="https://ctan.org/pkg/git-latexdiff">CTAN</a>):
-Call latexdiff on two Git revisions of a file
+Call latexdiff on two Git revisions of a file. 
 <a href="texmf-dist/doc/man/man1/git-latexdiff.man1.pdf">git-latexdiff.man1.pdf</a>.
 </small></li>
 
-<li id="gitfile-info"><b><a href="texmf-dist/doc/support/gitfile-info">gitfile-info</a></b><small>
+<li id="gitfile-info"><b><a href="texmf-dist/doc/support/gitfile-info/">gitfile-info</a></b><small>
 (<a href="https://ctan.org/pkg/gitfile-info">CTAN</a>):
-Get git metadata for a specific file
+Get git metadata for a specific file. 
 <a href="texmf-dist/doc/support/gitfile-info/gitfile-info.pdf">gitfile-info.pdf</a>.
 </small></li>
 
-<li id="gitinfo"><b><a href="texmf-dist/doc/latex/gitinfo">gitinfo</a></b><small>
+<li id="gitinfo"><b><a href="texmf-dist/doc/latex/gitinfo/">gitinfo</a></b><small>
 (<a href="https://ctan.org/pkg/gitinfo">CTAN</a>):
-Access metadata from the git distributed version control system
+Access metadata from the git distributed version control system. 
 <a href="texmf-dist/doc/latex/gitinfo/gitinfo.pdf">gitinfo.pdf</a>.
 </small></li>
 
-<li id="gitinfo2"><b><a href="texmf-dist/doc/latex/gitinfo2">gitinfo2</a></b><small>
+<li id="gitinfo2"><b><a href="texmf-dist/doc/latex/gitinfo2/">gitinfo2</a></b><small>
 (<a href="https://ctan.org/pkg/gitinfo2">CTAN</a>):
-Access metadata from the git distributed version control system
+Access metadata from the git distributed version control system. 
 <a href="texmf-dist/doc/latex/gitinfo2/gitinfo2.pdf">gitinfo2.pdf</a>.
 </small></li>
 
-<li id="gitlog"><b><a href="texmf-dist/doc/latex/gitlog">gitlog</a></b><small>
+<li id="gitlog"><b><a href="texmf-dist/doc/latex/gitlog/">gitlog</a></b><small>
 (<a href="https://ctan.org/pkg/gitlog">CTAN</a>):
-Typesetting git changelogs
+Typesetting git changelogs. 
 <a href="texmf-dist/doc/latex/gitlog/gitlog.pdf">gitlog.pdf</a>.
 </small></li>
 
-<li id="gitver"><b><a href="texmf-dist/doc/latex/gitver">gitver</a></b><small>
+<li id="gitver"><b><a href="texmf-dist/doc/latex/gitver/">gitver</a></b><small>
 (<a href="https://ctan.org/pkg/gitver">CTAN</a>):
-Get the current git hash of a project and typeset it in the document
+Get the current git hash of a project and typeset it in the document. 
 <a href="texmf-dist/doc/latex/gitver/gitver.pdf">gitver.pdf</a>.
 </small></li>
 
-<li id="globalvals"><b><a href="texmf-dist/doc/latex/globalvals">globalvals</a></b><small>
+<li id="globalvals"><b><a href="texmf-dist/doc/latex/globalvals/">globalvals</a></b><small>
 (<a href="https://ctan.org/pkg/globalvals">CTAN</a>):
-Declare global variables
+Declare global variables. 
 <a href="texmf-dist/doc/latex/globalvals/globalvals.pdf">globalvals.pdf</a>.
 </small></li>
 
-<li id="glosmathtools"><b><a href="texmf-dist/doc/latex/glosmathtools">glosmathtools</a></b><small>
+<li id="glosmathtools"><b><a href="texmf-dist/doc/latex/glosmathtools/">glosmathtools</a></b><small>
 (<a href="https://ctan.org/pkg/glosmathtools">CTAN</a>):
-Mathematical nomenclature tools based on the glossaries package
+Mathematical nomenclature tools based on the glossaries package. 
 <a href="texmf-dist/doc/latex/glosmathtools/sample_glosmathtools_en.pdf">sample_glosmathtools_en.pdf</a>
 <a href="texmf-dist/doc/latex/glosmathtools/sample_glosmathtools_fr.pdf">sample_glosmathtools_fr.pdf</a> (fr).
 </small></li>
 
-<li id="gloss"><b><a href="texmf-dist/doc/latex/gloss">gloss</a></b><small>
+<li id="gloss"><b><a href="texmf-dist/doc/latex/gloss/">gloss</a></b><small>
 (<a href="https://ctan.org/pkg/gloss">CTAN</a>):
-Create glossaries using BibTeX
+Create glossaries using BibTeX. 
 <a href="texmf-dist/doc/latex/gloss/gloss.pdf">gloss.pdf</a>.
 </small></li>
 
-<li id="gloss-occitan"><b><a href="texmf-dist/doc/latex/gloss-occitan">gloss-occitan</a></b><small>
+<li id="gloss-occitan"><b><a href="texmf-dist/doc/latex/gloss-occitan/">gloss-occitan</a></b><small>
 (<a href="https://ctan.org/pkg/gloss-occitan">CTAN</a>):
-Polyglossia support for Occitan
+Polyglossia support for Occitan. 
 <a href="texmf-dist/doc/latex/gloss-occitan/gloss-occitan.pdf">gloss-occitan.pdf</a>.
 </small></li>
 
-<li id="glossaries"><b><a href="texmf-dist/doc/latex/glossaries">glossaries</a></b><small>
+<li id="glossaries"><b><a href="texmf-dist/doc/latex/glossaries/">glossaries</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries">CTAN</a>):
-Create glossaries and lists of acronyms
+Create glossaries and lists of acronyms. 
 <a href="texmf-dist/doc/latex/glossaries/glossaries-code.pdf">glossaries-code.pdf</a>
 <a href="texmf-dist/doc/latex/glossaries/glossaries-user.html">glossaries-user.html</a>
 <a href="texmf-dist/doc/latex/glossaries/glossaries-user.pdf">glossaries-user.pdf</a>
@@ -9358,33 +9338,33 @@
 <a href="texmf-dist/doc/man/man1/makeglossaries.man1.pdf">makeglossaries.man1.pdf</a>.
 </small></li>
 
-<li id="glossaries-danish"><b><a href="texmf-dist/doc/latex/glossaries-danish">glossaries-danish</a></b><small>
+<li id="glossaries-danish"><b><a href="texmf-dist/doc/latex/glossaries-danish/">glossaries-danish</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-danish">CTAN</a>):
-Danish language module for glossaries package
+Danish language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-danish/glossaries-danish.pdf">glossaries-danish.pdf</a>.
 </small></li>
 
-<li id="glossaries-dutch"><b><a href="texmf-dist/doc/latex/glossaries-dutch">glossaries-dutch</a></b><small>
+<li id="glossaries-dutch"><b><a href="texmf-dist/doc/latex/glossaries-dutch/">glossaries-dutch</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-dutch">CTAN</a>):
-Dutch language module for glossaries package
+Dutch language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-dutch/glossaries-dutch.pdf">glossaries-dutch.pdf</a>.
 </small></li>
 
-<li id="glossaries-english"><b><a href="texmf-dist/doc/latex/glossaries-english">glossaries-english</a></b><small>
+<li id="glossaries-english"><b><a href="texmf-dist/doc/latex/glossaries-english/">glossaries-english</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-english">CTAN</a>):
-English language module for glossaries package
+English language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-english/glossaries-english.pdf">glossaries-english.pdf</a>.
 </small></li>
 
-<li id="glossaries-estonian"><b><a href="texmf-dist/doc/latex/glossaries-estonian">glossaries-estonian</a></b><small>
+<li id="glossaries-estonian"><b><a href="texmf-dist/doc/latex/glossaries-estonian/">glossaries-estonian</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-estonian">CTAN</a>):
-Estonian language module for glossaries package
+Estonian language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-estonian/glossaries-estonian.pdf">glossaries-estonian.pdf</a>.
 </small></li>
 
-<li id="glossaries-extra"><b><a href="texmf-dist/doc/latex/glossaries-extra">glossaries-extra</a></b><small>
+<li id="glossaries-extra"><b><a href="texmf-dist/doc/latex/glossaries-extra/">glossaries-extra</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-extra">CTAN</a>):
-An extension to the glossaries package
+An extension to the glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-extra/glossaries-extra-code.pdf">glossaries-extra-code.pdf</a>
 <a href="texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual.html">glossaries-extra-manual.html</a>
 <a href="texmf-dist/doc/latex/glossaries-extra/glossaries-extra-manual.pdf">glossaries-extra-manual.pdf</a>
@@ -9438,142 +9418,142 @@
 <a href="texmf-dist/doc/latex/glossaries-extra/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="glossaries-finnish"><b><a href="texmf-dist/doc/latex/glossaries-finnish">glossaries-finnish</a></b><small>
+<li id="glossaries-finnish"><b><a href="texmf-dist/doc/latex/glossaries-finnish/">glossaries-finnish</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-finnish">CTAN</a>):
-Finnish language module for glossaries package
+Finnish language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-finnish/glossaries-finnish.pdf">glossaries-finnish.pdf</a>.
 </small></li>
 
-<li id="glossaries-french"><b><a href="texmf-dist/doc/latex/glossaries-french">glossaries-french</a></b><small>
+<li id="glossaries-french"><b><a href="texmf-dist/doc/latex/glossaries-french/">glossaries-french</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-french">CTAN</a>):
-French language module for glossaries package
+French language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-french/glossaries-french.pdf">glossaries-french.pdf</a>.
 </small></li>
 
-<li id="glossaries-german"><b><a href="texmf-dist/doc/latex/glossaries-german">glossaries-german</a></b><small>
+<li id="glossaries-german"><b><a href="texmf-dist/doc/latex/glossaries-german/">glossaries-german</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-german">CTAN</a>):
-German language module for glossaries package
+German language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-german/glossaries-german.pdf">glossaries-german.pdf</a>.
 </small></li>
 
-<li id="glossaries-irish"><b><a href="texmf-dist/doc/latex/glossaries-irish">glossaries-irish</a></b><small>
+<li id="glossaries-irish"><b><a href="texmf-dist/doc/latex/glossaries-irish/">glossaries-irish</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-irish">CTAN</a>):
-Irish language module for glossaries package
+Irish language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-irish/glossaries-irish.pdf">glossaries-irish.pdf</a>.
 </small></li>
 
-<li id="glossaries-italian"><b><a href="texmf-dist/doc/latex/glossaries-italian">glossaries-italian</a></b><small>
+<li id="glossaries-italian"><b><a href="texmf-dist/doc/latex/glossaries-italian/">glossaries-italian</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-italian">CTAN</a>):
-Italian language module for glossaries package
+Italian language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-italian/glossaries-italian.pdf">glossaries-italian.pdf</a>.
 </small></li>
 
-<li id="glossaries-magyar"><b><a href="texmf-dist/doc/latex/glossaries-magyar">glossaries-magyar</a></b><small>
+<li id="glossaries-magyar"><b><a href="texmf-dist/doc/latex/glossaries-magyar/">glossaries-magyar</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-magyar">CTAN</a>):
-Magyar language module for glossaries package
+Magyar language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-magyar/glossaries-magyar.pdf">glossaries-magyar.pdf</a>.
 </small></li>
 
-<li id="glossaries-nynorsk"><b><a href="texmf-dist/doc/latex/glossaries-nynorsk">glossaries-nynorsk</a></b><small>
+<li id="glossaries-nynorsk"><b><a href="texmf-dist/doc/latex/glossaries-nynorsk/">glossaries-nynorsk</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-nynorsk">CTAN</a>):
-Nynorsk language module for the glossaries package
+Nynorsk language module for the glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-nynorsk/glossaries-nynorsk.pdf">glossaries-nynorsk.pdf</a>.
 </small></li>
 
-<li id="glossaries-polish"><b><a href="texmf-dist/doc/latex/glossaries-polish">glossaries-polish</a></b><small>
+<li id="glossaries-polish"><b><a href="texmf-dist/doc/latex/glossaries-polish/">glossaries-polish</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-polish">CTAN</a>):
-Polish language module for glossaries package
+Polish language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-polish/glossaries-polish.pdf">glossaries-polish.pdf</a>.
 </small></li>
 
-<li id="glossaries-portuges"><b><a href="texmf-dist/doc/latex/glossaries-portuges">glossaries-portuges</a></b><small>
+<li id="glossaries-portuges"><b><a href="texmf-dist/doc/latex/glossaries-portuges/">glossaries-portuges</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-portuges">CTAN</a>):
-Portuges language module for glossaries package
+Portuges language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-portuges/glossaries-portuges.pdf">glossaries-portuges.pdf</a>.
 </small></li>
 
-<li id="glossaries-serbian"><b><a href="texmf-dist/doc/latex/glossaries-serbian">glossaries-serbian</a></b><small>
+<li id="glossaries-serbian"><b><a href="texmf-dist/doc/latex/glossaries-serbian/">glossaries-serbian</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-serbian">CTAN</a>):
-Serbian language module for glossaries package
+Serbian language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-serbian/glossaries-serbian.pdf">glossaries-serbian.pdf</a>.
 </small></li>
 
-<li id="glossaries-slovene"><b><a href="texmf-dist/doc/latex/glossaries-slovene">glossaries-slovene</a></b><small>
+<li id="glossaries-slovene"><b><a href="texmf-dist/doc/latex/glossaries-slovene/">glossaries-slovene</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-slovene">CTAN</a>):
-Slovene language module for glossaries package
+Slovene language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-slovene/glossaries-slovene.pdf">glossaries-slovene.pdf</a>.
 </small></li>
 
-<li id="glossaries-spanish"><b><a href="texmf-dist/doc/latex/glossaries-spanish">glossaries-spanish</a></b><small>
+<li id="glossaries-spanish"><b><a href="texmf-dist/doc/latex/glossaries-spanish/">glossaries-spanish</a></b><small>
 (<a href="https://ctan.org/pkg/glossaries-spanish">CTAN</a>):
-Spanish language module for glossaries package
+Spanish language module for glossaries package. 
 <a href="texmf-dist/doc/latex/glossaries-spanish/glossaries-spanish.pdf">glossaries-spanish.pdf</a>.
 </small></li>
 
-<li id="gmdoc"><b><a href="texmf-dist/doc/latex/gmdoc">gmdoc</a></b><small>
+<li id="gmdoc"><b><a href="texmf-dist/doc/latex/gmdoc/">gmdoc</a></b><small>
 (<a href="https://ctan.org/pkg/gmdoc">CTAN</a>):
-Documentation of LaTeX packages
+Documentation of LaTeX packages. 
 <a href="texmf-dist/doc/latex/gmdoc/gmdoc.pdf">gmdoc.pdf</a>.
 </small></li>
 
-<li id="gmdoc-enhance"><b><a href="texmf-dist/doc/latex/gmdoc-enhance">gmdoc-enhance</a></b><small>
+<li id="gmdoc-enhance"><b><a href="texmf-dist/doc/latex/gmdoc-enhance/">gmdoc-enhance</a></b><small>
 (<a href="https://ctan.org/pkg/gmdoc-enhance">CTAN</a>):
-Some enhancements to the gmdoc package
+Some enhancements to the gmdoc package. 
 <a href="texmf-dist/doc/latex/gmdoc-enhance/gmdoc-enhance.pdf">gmdoc-enhance.pdf</a>.
 </small></li>
 
-<li id="gmiflink"><b><a href="texmf-dist/doc/latex/gmiflink">gmiflink</a></b><small>
+<li id="gmiflink"><b><a href="texmf-dist/doc/latex/gmiflink/">gmiflink</a></b><small>
 (<a href="https://ctan.org/pkg/gmiflink">CTAN</a>):
-Simplify usage of \hypertarget and \hyperlink
+Simplify usage of \hypertarget and \hyperlink. 
 <a href="texmf-dist/doc/latex/gmiflink/gmiflink.pdf">gmiflink.pdf</a>.
 </small></li>
 
-<li id="gmp"><b><a href="texmf-dist/doc/latex/gmp">gmp</a></b><small>
+<li id="gmp"><b><a href="texmf-dist/doc/latex/gmp/">gmp</a></b><small>
 (<a href="https://ctan.org/pkg/gmp">CTAN</a>):
-Enable integration between MetaPost pictures and LaTeX
+Enable integration between MetaPost pictures and LaTeX. 
 <a href="texmf-dist/doc/latex/gmp/gmp.pdf">gmp.pdf</a>.
 </small></li>
 
-<li id="gmutils"><b><a href="texmf-dist/doc/latex/gmutils">gmutils</a></b><small>
+<li id="gmutils"><b><a href="texmf-dist/doc/latex/gmutils/">gmutils</a></b><small>
 (<a href="https://ctan.org/pkg/gmutils">CTAN</a>):
-Support macros for other packages
+Support macros for other packages. 
 <a href="texmf-dist/doc/latex/gmutils/gmutils.pdf">gmutils.pdf</a>.
 </small></li>
 
-<li id="gmverb"><b><a href="texmf-dist/doc/latex/gmverb">gmverb</a></b><small>
+<li id="gmverb"><b><a href="texmf-dist/doc/latex/gmverb/">gmverb</a></b><small>
 (<a href="https://ctan.org/pkg/gmverb">CTAN</a>):
-A variant of LaTeX \verb, verbatim and shortvrb
+A variant of LaTeX \verb, verbatim and shortvrb. 
 <a href="texmf-dist/doc/latex/gmverb/gmverb.pdf">gmverb.pdf</a>.
 </small></li>
 
-<li id="gmverse"><b><a href="texmf-dist/doc/latex/gmverse">gmverse</a></b><small>
+<li id="gmverse"><b><a href="texmf-dist/doc/latex/gmverse/">gmverse</a></b><small>
 (<a href="https://ctan.org/pkg/gmverse">CTAN</a>):
-A package for typesetting (short) poems
+A package for typesetting (short) poems. 
 <a href="texmf-dist/doc/latex/gmverse/gmverse.pdf">gmverse.pdf</a>.
 </small></li>
 
-<li id="gnuplottex"><b><a href="texmf-dist/doc/latex/gnuplottex">gnuplottex</a></b><small>
+<li id="gnuplottex"><b><a href="texmf-dist/doc/latex/gnuplottex/">gnuplottex</a></b><small>
 (<a href="https://ctan.org/pkg/gnuplottex">CTAN</a>):
-Embed Gnuplot commands in LaTeX documents
+Embed Gnuplot commands in LaTeX documents. 
 <a href="texmf-dist/doc/latex/gnuplottex/gnuplottex.pdf">gnuplottex.pdf</a>.
 </small></li>
 
-<li id="gobble"><b><a href="texmf-dist/doc/generic/gobble">gobble</a></b><small>
+<li id="gobble"><b><a href="texmf-dist/doc/generic/gobble/">gobble</a></b><small>
 (<a href="https://ctan.org/pkg/gobble">CTAN</a>):
-More gobble macros for PlainTeX and LaTeX
+More gobble macros for PlainTeX and LaTeX. 
 <a href="texmf-dist/doc/generic/gobble/gobble.pdf">gobble.pdf</a>.
 </small></li>
 
-<li id="gofonts"><b><a href="texmf-dist/doc/fonts/gofonts">gofonts</a></b><small>
+<li id="gofonts"><b><a href="texmf-dist/doc/fonts/gofonts/">gofonts</a></b><small>
 (<a href="https://ctan.org/pkg/gofonts">CTAN</a>):
-GoSans and GoMono fonts with LaTeX support
+GoSans and GoMono fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/gofonts/go-samples.pdf">go-samples.pdf</a>
 <a href="texmf-dist/doc/fonts/gofonts/gofonts.pdf">gofonts.pdf</a>.
 </small></li>
 
-<li id="gost"><b><a href="texmf-dist/doc/bibtex/gost/examples/cp1251">gost</a></b><small>
+<li id="gost"><b><a href="texmf-dist/doc/bibtex/gost/">gost</a></b><small>
 (<a href="https://ctan.org/pkg/gost">CTAN</a>):
-BibTeX styles to format according to GOST
+BibTeX styles to format according to GOST. 
 <a href="texmf-dist/doc/bibtex/gost/examples/cp1251/gost2003.pdf">gost2003.pdf</a>
 <a href="texmf-dist/doc/bibtex/gost/examples/cp1251/gost2008-customized.pdf">gost2008-customized.pdf</a>
 <a href="texmf-dist/doc/bibtex/gost/examples/cp1251/gost2008.pdf">gost2008.pdf</a>
@@ -9591,59 +9571,59 @@
 <a href="texmf-dist/doc/bibtex/gost/gost.pdf">gost.pdf</a>.
 </small></li>
 
-<li id="gothic"><b><a href="texmf-dist/doc/fonts/gothic">gothic</a></b><small>
+<li id="gothic"><b><a href="texmf-dist/doc/fonts/gothic/">gothic</a></b><small>
 (<a href="https://ctan.org/pkg/gothic">CTAN</a>):
-A collection of old German-style fonts
+A collection of old German-style fonts. 
 <a href="texmf-dist/doc/fonts/gothic/suet.pdf">suet.pdf</a>
 <a href="texmf-dist/doc/fonts/gothic/yinit.pdf">yinit.pdf</a>.
 </small></li>
 
-<li id="gotoh"><b><a href="texmf-dist/doc/latex/gotoh">gotoh</a></b><small>
+<li id="gotoh"><b><a href="texmf-dist/doc/latex/gotoh/">gotoh</a></b><small>
 (<a href="https://ctan.org/pkg/gotoh">CTAN</a>):
-An implementation of the Gotoh sequence alignment algorithm
+An implementation of the Gotoh sequence alignment algorithm. 
 <a href="texmf-dist/doc/latex/gotoh/gotoh.pdf">gotoh.pdf</a>.
 </small></li>
 
-<li id="grabbox"><b><a href="texmf-dist/doc/latex/grabbox">grabbox</a></b><small>
+<li id="grabbox"><b><a href="texmf-dist/doc/latex/grabbox/">grabbox</a></b><small>
 (<a href="https://ctan.org/pkg/grabbox">CTAN</a>):
-Read an argument into a box and execute the code afterwards
+Read an argument into a box and execute the code afterwards. 
 <a href="texmf-dist/doc/latex/grabbox/grabbox.pdf">grabbox.pdf</a>.
 </small></li>
 
-<li id="gradientframe"><b><a href="texmf-dist/doc/latex/gradientframe">gradientframe</a></b><small>
+<li id="gradientframe"><b><a href="texmf-dist/doc/latex/gradientframe/">gradientframe</a></b><small>
 (<a href="https://ctan.org/pkg/gradientframe">CTAN</a>):
-Simple gradient frames around objects
+Simple gradient frames around objects. 
 <a href="texmf-dist/doc/latex/gradientframe/gradientframe.pdf">gradientframe.pdf</a>.
 </small></li>
 
-<li id="grafcet"><b><a href="texmf-dist/doc/latex/grafcet">grafcet</a></b><small>
+<li id="grafcet"><b><a href="texmf-dist/doc/latex/grafcet/">grafcet</a></b><small>
 (<a href="https://ctan.org/pkg/grafcet">CTAN</a>):
-Draw Grafcet/SFC with TikZ
+Draw Grafcet/SFC with TikZ. 
 <a href="texmf-dist/doc/latex/grafcet/grafcet.pdf">grafcet.pdf</a> (fr).
 </small></li>
 
-<li id="grant"><b><a href="texmf-dist/doc/latex/grant">grant</a></b><small>
+<li id="grant"><b><a href="texmf-dist/doc/latex/grant/">grant</a></b><small>
 (<a href="https://ctan.org/pkg/grant">CTAN</a>):
-Classes for formatting federal grant proposals
+Classes for formatting federal grant proposals. 
 <a href="texmf-dist/doc/latex/grant/grant.pdf">grant.pdf</a>.
 </small></li>
 
-<li id="graph35"><b><a href="texmf-dist/doc/latex/graph35">graph35</a></b><small>
+<li id="graph35"><b><a href="texmf-dist/doc/latex/graph35/">graph35</a></b><small>
 (<a href="https://ctan.org/pkg/graph35">CTAN</a>):
-Draw keys and screen items of several Casio calculators
+Draw keys and screen items of several Casio calculators. 
 <a href="texmf-dist/doc/latex/graph35/graph35-en.pdf">graph35-en.pdf</a>
 <a href="texmf-dist/doc/latex/graph35/graph35-fr.pdf">graph35-fr.pdf</a>.
 </small></li>
 
-<li id="graphbox"><b><a href="texmf-dist/doc/latex/graphbox">graphbox</a></b><small>
+<li id="graphbox"><b><a href="texmf-dist/doc/latex/graphbox/">graphbox</a></b><small>
 (<a href="https://ctan.org/pkg/graphbox">CTAN</a>):
-Extend graphicx to improve placement of graphics
+Extend graphicx to improve placement of graphics. 
 <a href="texmf-dist/doc/latex/graphbox/graphbox.pdf">graphbox.pdf</a>.
 </small></li>
 
-<li id="graphics"><b><a href="texmf-dist/doc/latex/graphics">graphics</a></b><small>
+<li id="graphics"><b><a href="texmf-dist/doc/latex/graphics/">graphics</a></b><small>
 (<a href="https://ctan.org/pkg/graphics">CTAN</a>):
-The LaTeX standard graphics bundle
+The LaTeX standard graphics bundle. 
 <a href="texmf-dist/doc/latex/graphics/color.pdf">color.pdf</a>
 <a href="texmf-dist/doc/latex/graphics/drivers.pdf">drivers.pdf</a>
 <a href="texmf-dist/doc/latex/graphics/epsfig.pdf">epsfig.pdf</a>
@@ -9657,15 +9637,15 @@
 <a href="texmf-dist/doc/latex/graphics/trig.pdf">trig.pdf</a>.
 </small></li>
 
-<li id="graphicx-psmin"><b><a href="texmf-dist/doc/latex/graphicx-psmin">graphicx-psmin</a></b><small>
+<li id="graphicx-psmin"><b><a href="texmf-dist/doc/latex/graphicx-psmin/">graphicx-psmin</a></b><small>
 (<a href="https://ctan.org/pkg/graphicx-psmin">CTAN</a>):
-Reduce size of PostScript files by not repeating images
+Reduce size of PostScript files by not repeating images. 
 <a href="texmf-dist/doc/latex/graphicx-psmin/graphicx-psmin.pdf">graphicx-psmin.pdf</a>.
 </small></li>
 
-<li id="graphicxbox"><b><a href="texmf-dist/doc/latex/graphicxbox/doc">graphicxbox</a></b><small>
+<li id="graphicxbox"><b><a href="texmf-dist/doc/latex/graphicxbox/">graphicxbox</a></b><small>
 (<a href="https://ctan.org/pkg/graphicxbox">CTAN</a>):
-Insert a graphical image as a background
+Insert a graphical image as a background. 
 <a href="texmf-dist/doc/latex/graphicxbox/doc/graphicxbox.pdf">graphicxbox.pdf</a>
 <a href="texmf-dist/doc/latex/graphicxbox/examples/graphics/IndianBlanket.pdf">IndianBlanket.pdf</a>
 <a href="texmf-dist/doc/latex/graphicxbox/examples/graphics/Wood-Brown.pdf">Wood-Brown.pdf</a>
@@ -9676,29 +9656,29 @@
 <a href="texmf-dist/doc/latex/graphicxbox/examples/grfxbox_tst_sp.pdf">grfxbox_tst_sp.pdf</a>.
 </small></li>
 
-<li id="graphicxpsd"><b><a href="texmf-dist/doc/latex/graphicxpsd">graphicxpsd</a></b><small>
+<li id="graphicxpsd"><b><a href="texmf-dist/doc/latex/graphicxpsd/">graphicxpsd</a></b><small>
 (<a href="https://ctan.org/pkg/graphicxpsd">CTAN</a>):
-Adobe Photoshop Data format (PSD) support for graphicx package
+Adobe Photoshop Data format (PSD) support for graphicx package. 
 <a href="texmf-dist/doc/latex/graphicxpsd/graphicxpsd.pdf">graphicxpsd.pdf</a>.
 </small></li>
 
-<li id="graphviz"><b><a href="texmf-dist/doc/latex/graphviz">graphviz</a></b><small>
+<li id="graphviz"><b><a href="texmf-dist/doc/latex/graphviz/">graphviz</a></b><small>
 (<a href="https://ctan.org/pkg/graphviz">CTAN</a>):
-Write graphviz (dot+neato) inline in LaTeX documents
+Write graphviz (dot+neato) inline in LaTeX documents. 
 <a href="texmf-dist/doc/latex/graphviz/graphviz.pdf">graphviz.pdf</a>.
 </small></li>
 
-<li id="grayhints"><b><a href="texmf-dist/doc/latex/grayhints/doc">grayhints</a></b><small>
+<li id="grayhints"><b><a href="texmf-dist/doc/latex/grayhints/">grayhints</a></b><small>
 (<a href="https://ctan.org/pkg/grayhints">CTAN</a>):
-Produce 'gray hints' to a variable text field
+Produce 'gray hints' to a variable text field. 
 <a href="texmf-dist/doc/latex/grayhints/doc/grayhints.pdf">grayhints.pdf</a>
 <a href="texmf-dist/doc/latex/grayhints/doc/grayhints_man.pdf">grayhints_man.pdf</a>
 <a href="texmf-dist/doc/latex/grayhints/examples/gh-eforms.pdf">gh-eforms.pdf</a>.
 </small></li>
 
-<li id="greek-fontenc"><b><a href="texmf-dist/doc/latex/greek-fontenc">greek-fontenc</a></b><small>
+<li id="greek-fontenc"><b><a href="texmf-dist/doc/latex/greek-fontenc/">greek-fontenc</a></b><small>
 (<a href="https://ctan.org/pkg/greek-fontenc">CTAN</a>):
-LICR macros and encoding definition files for Greek
+LICR macros and encoding definition files for Greek. 
 <a href="texmf-dist/doc/latex/greek-fontenc/README.html">README.html</a>
 <a href="texmf-dist/doc/latex/greek-fontenc/alphabeta-doc.pdf">alphabeta-doc.pdf</a>
 <a href="texmf-dist/doc/latex/greek-fontenc/alphabeta-lgr.def.html">alphabeta-lgr.def.html</a>
@@ -9718,9 +9698,9 @@
 <a href="texmf-dist/doc/latex/greek-fontenc/tuenc-greek.def.html">tuenc-greek.def.html</a>.
 </small></li>
 
-<li id="greek-inputenc"><b><a href="texmf-dist/doc/latex/greek-inputenc">greek-inputenc</a></b><small>
+<li id="greek-inputenc"><b><a href="texmf-dist/doc/latex/greek-inputenc/">greek-inputenc</a></b><small>
 (<a href="https://ctan.org/pkg/greek-inputenc">CTAN</a>):
-Greek encoding support for inputenc
+Greek encoding support for inputenc. 
 <a href="texmf-dist/doc/latex/greek-inputenc/README.html">README.html</a>
 <a href="texmf-dist/doc/latex/greek-inputenc/greek-utf8-minimal.pdf">greek-utf8-minimal.pdf</a>
 <a href="texmf-dist/doc/latex/greek-inputenc/greek-utf8.pdf">greek-utf8.pdf</a>
@@ -9728,71 +9708,71 @@
 <a href="texmf-dist/doc/latex/greek-inputenc/lgrenc.dfu.html">lgrenc.dfu.html</a>.
 </small></li>
 
-<li id="greekdates"><b><a href="texmf-dist/doc/latex/greekdates">greekdates</a></b><small>
+<li id="greekdates"><b><a href="texmf-dist/doc/latex/greekdates/">greekdates</a></b><small>
 (<a href="https://ctan.org/pkg/greekdates">CTAN</a>):
-Provides ancient Greek day and month names, dates, etc
+Provides ancient Greek day and month names, dates, etc. 
 <a href="texmf-dist/doc/latex/greekdates/greekdates.pdf">greekdates.pdf</a>.
 </small></li>
 
-<li id="greektex"><b><a href="texmf-dist/doc/fonts/greektex">greektex</a></b><small>
+<li id="greektex"><b><a href="texmf-dist/doc/fonts/greektex/">greektex</a></b><small>
 (<a href="https://ctan.org/pkg/greektex">CTAN</a>):
-Fonts for typesetting Greek/English documents
+Fonts for typesetting Greek/English documents. 
 <a href="texmf-dist/doc/fonts/greektex/greektexdoc.pdf">greektexdoc.pdf</a> (el).
 </small></li>
 
-<li id="greektonoi"><b><a href="texmf-dist/doc/latex/greektonoi">greektonoi</a></b><small>
+<li id="greektonoi"><b><a href="texmf-dist/doc/latex/greektonoi/">greektonoi</a></b><small>
 (<a href="https://ctan.org/pkg/greektonoi">CTAN</a>):
-Facilitates writing/editing of multiaccented greek
+Facilitates writing/editing of multiaccented greek. 
 <a href="texmf-dist/doc/latex/greektonoi/greektonoi-en.pdf">greektonoi-en.pdf</a>
 <a href="texmf-dist/doc/latex/greektonoi/greektonoi.pdf">greektonoi.pdf</a> (el).
 </small></li>
 
-<li id="gregoriotex"><b><a href="texmf-dist/doc/luatex/gregoriotex">gregoriotex</a></b><small>
+<li id="gregoriotex"><b><a href="texmf-dist/doc/luatex/gregoriotex/">gregoriotex</a></b><small>
 (<a href="https://ctan.org/pkg/gregoriotex">CTAN</a>):
-Engraving Gregorian Chant scores
+Engraving Gregorian Chant scores. 
 <a href="texmf-dist/doc/luatex/gregoriotex/GregorioNabcRef.pdf">GregorioNabcRef.pdf</a>
 <a href="texmf-dist/doc/luatex/gregoriotex/GregorioRef.pdf">GregorioRef.pdf</a>.
 </small></li>
 
-<li id="grfext"><b><a href="texmf-dist/doc/latex/grfext">grfext</a></b><small>
+<li id="grfext"><b><a href="texmf-dist/doc/latex/grfext/">grfext</a></b><small>
 (<a href="https://ctan.org/pkg/grfext">CTAN</a>):
-Manipulate the graphics package's list of extensions
+Manipulate the graphics package's list of extensions. 
 <a href="texmf-dist/doc/latex/grfext/grfext.pdf">grfext.pdf</a>.
 </small></li>
 
-<li id="grffile"><b><a href="texmf-dist/doc/latex/grffile">grffile</a></b><small>
+<li id="grffile"><b><a href="texmf-dist/doc/latex/grffile/">grffile</a></b><small>
 (<a href="https://ctan.org/pkg/grffile">CTAN</a>):
-Extended file name support for graphics (legacy package)
+Extended file name support for graphics (legacy package). 
 <a href="texmf-dist/doc/latex/grffile/grffile.pdf">grffile.pdf</a>.
 </small></li>
 
-<li id="grfpaste"><b><a href="texmf-dist/doc/latex/grfpaste/doc">grfpaste</a></b><small>
+<li id="grfpaste"><b><a href="texmf-dist/doc/latex/grfpaste/">grfpaste</a></b><small>
 (<a href="https://ctan.org/pkg/grfpaste">CTAN</a>):
-Include fragments of a dvi file
+Include fragments of a dvi file. 
 <a href="texmf-dist/doc/latex/grfpaste/doc/grfpaste.pdf">grfpaste.pdf</a>.
 </small></li>
 
-<li id="grid"><b><a href="texmf-dist/doc/latex/grid">grid</a></b><small>
+<li id="grid"><b><a href="texmf-dist/doc/latex/grid/">grid</a></b><small>
 (<a href="https://ctan.org/pkg/grid">CTAN</a>):
-Grid typesetting in LaTeX
+Grid typesetting in LaTeX. 
 <a href="texmf-dist/doc/latex/grid/grid.pdf">grid.pdf</a>.
 </small></li>
 
-<li id="grid-system"><b><a href="texmf-dist/doc/latex/grid-system">grid-system</a></b><small>
+<li id="grid-system"><b><a href="texmf-dist/doc/latex/grid-system/">grid-system</a></b><small>
 (<a href="https://ctan.org/pkg/grid-system">CTAN</a>):
-Page organisation, modelled on CSS facilities
+Page organisation, modelled on CSS facilities. 
 <a href="texmf-dist/doc/latex/grid-system/grid-system.pdf">grid-system.pdf</a>.
 </small></li>
 
-<li id="gridset"><b><a href="texmf-dist/doc/latex/gridset">gridset</a></b><small>
+<li id="gridset"><b><a href="texmf-dist/doc/latex/gridset/">gridset</a></b><small>
 (<a href="https://ctan.org/pkg/gridset">CTAN</a>):
-Grid, a.k.a. in-register, setting
+Grid, a.k.a. in-register, setting. 
 <a href="texmf-dist/doc/latex/gridset/gridset.pdf">gridset.pdf</a>.
 </small></li>
 
-<li id="gridslides"><b><a href="texmf-dist/doc/latex/gridslides">gridslides</a></b><small>
+<li id="gridslides"><b><a href="texmf-dist/doc/latex/gridslides/">gridslides</a></b><small>
 (<a href="https://ctan.org/pkg/gridslides">CTAN</a>):
-Free form slides with blocks placed on a grid
+Free form slides with blocks placed on a grid. 
 <a href="texmf-dist/doc/latex/gridslides/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/latex/gridslides/figures/cnontrivial.pdf">cnontrivial.pdf</a>
 <a href="texmf-dist/doc/latex/gridslides/figures/ctrivial.pdf">ctrivial.pdf</a>
@@ -9803,15 +9783,14 @@
 <a href="texmf-dist/doc/latex/gridslides/gridslides.pdf">gridslides.pdf</a>.
 </small></li>
 
-<li id="grundgesetze"><b><a href="texmf-dist/doc/latex/grundgesetze">grundgesetze</a></b><small>
+<li id="grundgesetze"><b><a href="texmf-dist/doc/latex/grundgesetze/">grundgesetze</a></b><small>
 (<a href="https://ctan.org/pkg/grundgesetze">CTAN</a>):
-Typeset Frege's Grundgesetze der Arithmetik
+Typeset Frege's Grundgesetze der Arithmetik. 
 <a href="texmf-dist/doc/latex/grundgesetze/grundgesetze.pdf">grundgesetze.pdf</a>.
 </small></li>
 
-<li id="GS1"><b><a href="texmf-dist/doc/latex/GS1">GS1</a></b><small>
-(<a href="https://ctan.org/pkg/GS1">CTAN</a>):
-Typeset EAN barcodes using TeX rules, only
+<li id="GS1"><b><a href="texmf-dist/doc/latex/GS1/">GS1</a></b><small>
+Typeset EAN barcodes using TeX rules, only. 
 <a href="texmf-dist/doc/latex/GS1/GS1.pdf">GS1.pdf</a>
 <a href="texmf-dist/doc/latex/GS1/examples/EANBarcode.pdf">EANBarcode.pdf</a>
 <a href="texmf-dist/doc/latex/GS1/examples/EANControlDigit.pdf">EANControlDigit.pdf</a>
@@ -9823,79 +9802,78 @@
 <a href="texmf-dist/doc/latex/GS1/rule-D.pdf">rule-D.pdf</a>.
 </small></li>
 
-<li id="gsemthesis"><b><a href="texmf-dist/doc/latex/gsemthesis">gsemthesis</a></b><small>
+<li id="gsemthesis"><b><a href="texmf-dist/doc/latex/gsemthesis/">gsemthesis</a></b><small>
 (<a href="https://ctan.org/pkg/gsemthesis">CTAN</a>):
-Geneva School of Economics and Management PhD thesis format
+Geneva School of Economics and Management PhD thesis format. 
 <a href="texmf-dist/doc/latex/gsemthesis/gsemthesis.pdf">gsemthesis.pdf</a>.
 </small></li>
 
-<li id="gsftopk"><b><a href="texmf-dist/doc/man/man1">gsftopk</a></b><small>
+<li id="gsftopk"><b><a href="texmf-dist/doc/man/man1/">gsftopk</a></b><small>
 (<a href="https://ctan.org/pkg/gsftopk">CTAN</a>):
-Convert "Ghostscript fonts" to PK files
+Convert "Ghostscript fonts" to PK files. 
 <a href="texmf-dist/doc/man/man1/gsftopk.man1.pdf">gsftopk.man1.pdf</a>.
 </small></li>
 
-<li id="gtl"><b><a href="texmf-dist/doc/generic/gtl">gtl</a></b><small>
+<li id="gtl"><b><a href="texmf-dist/doc/generic/gtl/">gtl</a></b><small>
 (<a href="https://ctan.org/pkg/gtl">CTAN</a>):
-Manipulating generalized token lists
+Manipulating generalized token lists. 
 <a href="texmf-dist/doc/generic/gtl/gtl.pdf">gtl.pdf</a>.
 </small></li>
 
-<li id="gtrcrd"><b><a href="texmf-dist/doc/latex/gtrcrd">gtrcrd</a></b><small>
+<li id="gtrcrd"><b><a href="texmf-dist/doc/latex/gtrcrd/">gtrcrd</a></b><small>
 (<a href="https://ctan.org/pkg/gtrcrd">CTAN</a>):
-Add chords to lyrics
+Add chords to lyrics. 
 <a href="texmf-dist/doc/latex/gtrcrd/gtrcrd-doc.pdf">gtrcrd-doc.pdf</a>.
 </small></li>
 
-<li id="gtrlib-largetrees"><b><a href="texmf-dist/doc/latex/gtrlib-largetrees">gtrlib-largetrees</a></b><small>
+<li id="gtrlib-largetrees"><b><a href="texmf-dist/doc/latex/gtrlib-largetrees/">gtrlib-largetrees</a></b><small>
 (<a href="https://ctan.org/pkg/gtrlib-largetrees">CTAN</a>):
-Library for genealogytree aiming at large trees
+Library for genealogytree aiming at large trees. 
 <a href="texmf-dist/doc/latex/gtrlib-largetrees/gtrlib.largetrees.pdf">gtrlib.largetrees.pdf</a>.
 </small></li>
 
-<li id="gu"><b><a href="texmf-dist/doc/latex/gu">gu</a></b><small>
+<li id="gu"><b><a href="texmf-dist/doc/latex/gu/">gu</a></b><small>
 (<a href="https://ctan.org/pkg/gu">CTAN</a>):
-Typeset crystallographic group-subgroup-schemes
+Typeset crystallographic group-subgroup-schemes. 
 <a href="texmf-dist/doc/latex/gu/gudoc.pdf">gudoc.pdf</a> (de).
 </small></li>
 
-<li id="guide-to-latex"><b><a href="texmf-dist/doc/latex/guide-to-latex">guide-to-latex</a></b><small>
-(<a href="https://ctan.org/pkg/guide-to-latex">CTAN</a>):
-examples and more from Guide to LaTeX, by Kopka and Daly
+<li id="guide-to-latex"><b><a href="texmf-dist/doc/latex/guide-to-latex/">guide-to-latex</a></b><small>
+examples and more from Guide to LaTeX, by Kopka and Daly. 
 <a href="texmf-dist/doc/latex/guide-to-latex/demo.pdf">demo.pdf</a>
 <a href="texmf-dist/doc/latex/guide-to-latex/demodoc.pdf">demodoc.pdf</a>
 <a href="texmf-dist/doc/latex/guide-to-latex/palette.pdf">palette.pdf</a>.
 </small></li>
 
-<li id="guitar"><b><a href="texmf-dist/doc/latex/guitar">guitar</a></b><small>
+<li id="guitar"><b><a href="texmf-dist/doc/latex/guitar/">guitar</a></b><small>
 (<a href="https://ctan.org/pkg/guitar">CTAN</a>):
-Guitar chords and song texts
+Guitar chords and song texts. 
 <a href="texmf-dist/doc/latex/guitar/guitar.pdf">guitar.pdf</a>.
 </small></li>
 
-<li id="guitarchordschemes"><b><a href="texmf-dist/doc/latex/guitarchordschemes">guitarchordschemes</a></b><small>
+<li id="guitarchordschemes"><b><a href="texmf-dist/doc/latex/guitarchordschemes/">guitarchordschemes</a></b><small>
 (<a href="https://ctan.org/pkg/guitarchordschemes">CTAN</a>):
-Guitar Chord and Scale Tablatures
+Guitar Chord and Scale Tablatures. 
 <a href="texmf-dist/doc/latex/guitarchordschemes/guitarchordschemes_en.pdf">guitarchordschemes_en.pdf</a>.
 </small></li>
 
-<li id="guitartabs"><b><a href="texmf-dist/doc/latex/guitartabs">guitartabs</a></b><small>
+<li id="guitartabs"><b><a href="texmf-dist/doc/latex/guitartabs/">guitartabs</a></b><small>
 (<a href="https://ctan.org/pkg/guitartabs">CTAN</a>):
-A class for drawing guitar tablatures easily
+A class for drawing guitar tablatures easily. 
 <a href="texmf-dist/doc/latex/guitartabs/guitartabs-doc.pdf">guitartabs-doc.pdf</a>
 <a href="texmf-dist/doc/latex/guitartabs/nothingelsematters.pdf">nothingelsematters.pdf</a>.
 </small></li>
 
-<li id="guitlogo"><b><a href="texmf-dist/doc/latex/guitlogo">guitlogo</a></b><small>
+<li id="guitlogo"><b><a href="texmf-dist/doc/latex/guitlogo/">guitlogo</a></b><small>
 (<a href="https://ctan.org/pkg/guitlogo">CTAN</a>):
-Macros for typesetting the GuIT logo
+Macros for typesetting the GuIT logo. 
 <a href="texmf-dist/doc/latex/guitlogo/guit.pdf">guit.pdf</a> (it) 
 <a href="texmf-dist/doc/latex/guitlogo/guittest.pdf">guittest.pdf</a>.
 </small></li>
 
-<li id="gzt"><b><a href="texmf-dist/doc/latex/gzt/french">gzt</a></b><small>
+<li id="gzt"><b><a href="texmf-dist/doc/latex/gzt/">gzt</a></b><small>
 (<a href="https://ctan.org/pkg/gzt">CTAN</a>):
-Bundle of classes for "La Gazette des Mathematiciens"
+Bundle of classes for "La Gazette des Mathematiciens". 
 <a href="texmf-dist/doc/latex/gzt/french/gzt-fr.pdf">gzt-fr.pdf</a> (fr).
 </small></li>
 
@@ -9903,11 +9881,11 @@
 
 <h2 id="letter-H">H</h2>
 
-<ol start="1328">
+<ol start="1329">
 
-<li id="h2020proposal"><b><a href="texmf-dist/doc/latex/h2020proposal/manual">h2020proposal</a></b><small>
+<li id="h2020proposal"><b><a href="texmf-dist/doc/latex/h2020proposal/">h2020proposal</a></b><small>
 (<a href="https://ctan.org/pkg/h2020proposal">CTAN</a>):
-LaTeX class and template for EU H2020 RIA proposal
+LaTeX class and template for EU H2020 RIA proposal. 
 <a href="texmf-dist/doc/latex/h2020proposal/manual/h2020proposal.pdf">h2020proposal.pdf</a>
 <a href="texmf-dist/doc/latex/h2020proposal/template-fet/template-fet.pdf">template-fet.pdf</a>
 <a href="texmf-dist/doc/latex/h2020proposal/template-ict/implementation.pdf">implementation.pdf</a>
@@ -9914,28 +9892,27 @@
 <a href="texmf-dist/doc/latex/h2020proposal/template-ict/template-ict.pdf">template-ict.pdf</a>.
 </small></li>
 
-<li id="HA-prosper"><b><a href="texmf-dist/doc/latex/HA-prosper">HA-prosper</a></b><small>
-(<a href="https://ctan.org/pkg/HA-prosper">CTAN</a>):
-Patches and improvements for prosper
+<li id="HA-prosper"><b><a href="texmf-dist/doc/latex/HA-prosper/">HA-prosper</a></b><small>
+Patches and improvements for prosper. 
 <a href="texmf-dist/doc/latex/HA-prosper/HA-prosper.pdf">HA-prosper.pdf</a>.
 </small></li>
 
-<li id="hackthefootline"><b><a href="texmf-dist/doc/latex/hackthefootline/doc">hackthefootline</a></b><small>
+<li id="hackthefootline"><b><a href="texmf-dist/doc/latex/hackthefootline/">hackthefootline</a></b><small>
 (<a href="https://ctan.org/pkg/hackthefootline">CTAN</a>):
-Footline selection and configuration for LaTeX beamer's standard themes
+Footline selection and configuration for LaTeX beamer's standard themes. 
 <a href="texmf-dist/doc/latex/hackthefootline/doc/hackthefootline-doc.pdf">hackthefootline-doc.pdf</a>
 <a href="texmf-dist/doc/latex/hackthefootline/doc/hackthefootline-examples.pdf">hackthefootline-examples.pdf</a>.
 </small></li>
 
-<li id="hacm"><b><a href="texmf-dist/doc/fonts/hacm">hacm</a></b><small>
+<li id="hacm"><b><a href="texmf-dist/doc/fonts/hacm/">hacm</a></b><small>
 (<a href="https://ctan.org/pkg/hacm">CTAN</a>):
-Font support for the Arka language
+Font support for the Arka language. 
 <a href="texmf-dist/doc/fonts/hacm/hacmdoc.pdf">hacmdoc.pdf</a>.
 </small></li>
 
-<li id="hagenberg-thesis"><b><a href="texmf-dist/doc/latex/hagenberg-thesis/examples/HgbArticle">hagenberg-thesis</a></b><small>
+<li id="hagenberg-thesis"><b><a href="texmf-dist/doc/latex/hagenberg-thesis/">hagenberg-thesis</a></b><small>
 (<a href="https://ctan.org/pkg/hagenberg-thesis">CTAN</a>):
-A Collection of LaTeX classes, style files, and example documents for academic manuscripts
+A Collection of LaTeX classes, style files, and example documents for academic manuscripts. 
 <a href="texmf-dist/doc/latex/hagenberg-thesis/examples/HgbArticle/main.pdf">main.pdf</a>
 <a href="texmf-dist/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/images/logo.pdf">logo.pdf</a>
 <a href="texmf-dist/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.pdf">main.pdf</a>
@@ -9969,24 +9946,24 @@
 <a href="texmf-dist/doc/latex/hagenberg-thesis/hagenberg-thesis.pdf">hagenberg-thesis.pdf</a>.
 </small></li>
 
-<li id="halloweenmath"><b><a href="texmf-dist/doc/latex/halloweenmath">halloweenmath</a></b><small>
+<li id="halloweenmath"><b><a href="texmf-dist/doc/latex/halloweenmath/">halloweenmath</a></b><small>
 (<a href="https://ctan.org/pkg/halloweenmath">CTAN</a>):
-Scary and creepy math symbols with AMS-LaTeX integration
+Scary and creepy math symbols with AMS-LaTeX integration. 
 <a href="texmf-dist/doc/latex/halloweenmath/halloweenmath-doc.pdf">halloweenmath-doc.pdf</a>
 <a href="texmf-dist/doc/latex/halloweenmath/halloweenmath-man.pdf">halloweenmath-man.pdf</a>.
 </small></li>
 
-<li id="handin"><b><a href="texmf-dist/doc/latex/handin">handin</a></b><small>
+<li id="handin"><b><a href="texmf-dist/doc/latex/handin/">handin</a></b><small>
 (<a href="https://ctan.org/pkg/handin">CTAN</a>):
-Light weight template for creating school submissions using LaTeX
+Light weight template for creating school submissions using LaTeX. 
 <a href="texmf-dist/doc/latex/handin/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/latex/handin/handin-doc.pdf">handin-doc.pdf</a>
 <a href="texmf-dist/doc/latex/handin/layout.pdf">layout.pdf</a>.
 </small></li>
 
-<li id="handout"><b><a href="texmf-dist/doc/latex/handout/examples">handout</a></b><small>
+<li id="handout"><b><a href="texmf-dist/doc/latex/handout/">handout</a></b><small>
 (<a href="https://ctan.org/pkg/handout">CTAN</a>):
-Create handout for auditors of a talk
+Create handout for auditors of a talk. 
 <a href="texmf-dist/doc/latex/handout/examples/example1-minimal.pdf">example1-minimal.pdf</a>
 <a href="texmf-dist/doc/latex/handout/examples/example2-cancel-quotation.pdf">example2-cancel-quotation.pdf</a>
 <a href="texmf-dist/doc/latex/handout/examples/example3-defined-path.pdf">example3-defined-path.pdf</a>
@@ -9997,107 +9974,107 @@
 <a href="texmf-dist/doc/latex/handout/handout.pdf">handout.pdf</a>.
 </small></li>
 
-<li id="hang"><b><a href="texmf-dist/doc/latex/hang">hang</a></b><small>
+<li id="hang"><b><a href="texmf-dist/doc/latex/hang/">hang</a></b><small>
 (<a href="https://ctan.org/pkg/hang">CTAN</a>):
-Environments for hanging paragraphs and list items
+Environments for hanging paragraphs and list items. 
 <a href="texmf-dist/doc/latex/hang/hang.pdf">hang.pdf</a>
 <a href="texmf-dist/doc/latex/hang/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="hanging"><b><a href="texmf-dist/doc/latex/hanging">hanging</a></b><small>
+<li id="hanging"><b><a href="texmf-dist/doc/latex/hanging/">hanging</a></b><small>
 (<a href="https://ctan.org/pkg/hanging">CTAN</a>):
-Hanging paragraphs
+Hanging paragraphs. 
 <a href="texmf-dist/doc/latex/hanging/hanging.pdf">hanging.pdf</a>.
 </small></li>
 
-<li id="happy4th"><b><a href="texmf-dist/doc/plain/happy4th">happy4th</a></b><small>
+<li id="happy4th"><b><a href="texmf-dist/doc/plain/happy4th/">happy4th</a></b><small>
 (<a href="https://ctan.org/pkg/happy4th">CTAN</a>):
-A firework display in obfuscated TeX
+A firework display in obfuscated TeX. 
 <a href="texmf-dist/doc/plain/happy4th/happy4th.pdf">happy4th.pdf</a>.
 </small></li>
 
-<li id="har2nat"><b><a href="texmf-dist/doc/latex/har2nat">har2nat</a></b><small>
+<li id="har2nat"><b><a href="texmf-dist/doc/latex/har2nat/">har2nat</a></b><small>
 (<a href="https://ctan.org/pkg/har2nat">CTAN</a>):
-Replace the harvard package with natbib
+Replace the harvard package with natbib. 
 <a href="texmf-dist/doc/latex/har2nat/har2nat.pdf">har2nat.pdf</a>.
 </small></li>
 
-<li id="hardwrap"><b><a href="texmf-dist/doc/latex/hardwrap">hardwrap</a></b><small>
+<li id="hardwrap"><b><a href="texmf-dist/doc/latex/hardwrap/">hardwrap</a></b><small>
 (<a href="https://ctan.org/pkg/hardwrap">CTAN</a>):
-Hard wrap text to a certain character length
+Hard wrap text to a certain character length. 
 <a href="texmf-dist/doc/latex/hardwrap/hardwrap.pdf">hardwrap.pdf</a>.
 </small></li>
 
-<li id="harmony"><b><a href="texmf-dist/doc/latex/harmony">harmony</a></b><small>
+<li id="harmony"><b><a href="texmf-dist/doc/latex/harmony/">harmony</a></b><small>
 (<a href="https://ctan.org/pkg/harmony">CTAN</a>):
-Typeset harmony symbols, etc., for musicology
+Typeset harmony symbols, etc., for musicology. 
 <a href="texmf-dist/doc/latex/harmony/harmony.pdf">harmony.pdf</a>.
 </small></li>
 
-<li id="harnon-cv"><b><a href="texmf-dist/doc/latex/harnon-cv">harnon-cv</a></b><small>
+<li id="harnon-cv"><b><a href="texmf-dist/doc/latex/harnon-cv/">harnon-cv</a></b><small>
 (<a href="https://ctan.org/pkg/harnon-cv">CTAN</a>):
-A CV document class with a vertical timeline for experience
+A CV document class with a vertical timeline for experience. 
 <a href="texmf-dist/doc/latex/harnon-cv/sample.pdf">sample.pdf</a>.
 </small></li>
 
-<li id="harpoon"><b><a href="texmf-dist/doc/latex/harpoon">harpoon</a></b><small>
+<li id="harpoon"><b><a href="texmf-dist/doc/latex/harpoon/">harpoon</a></b><small>
 (<a href="https://ctan.org/pkg/harpoon">CTAN</a>):
-Extra harpoons, using the graphics package
+Extra harpoons, using the graphics package. 
 <a href="texmf-dist/doc/latex/harpoon/harpoon.pdf">harpoon.pdf</a>.
 </small></li>
 
-<li id="harvard"><b><a href="texmf-dist/doc/latex/harvard">harvard</a></b><small>
+<li id="harvard"><b><a href="texmf-dist/doc/latex/harvard/">harvard</a></b><small>
 (<a href="https://ctan.org/pkg/harvard">CTAN</a>):
-Harvard citation package for use with LaTeX 2e
+Harvard citation package for use with LaTeX 2e. 
 <a href="texmf-dist/doc/latex/harvard/harvard.pdf">harvard.pdf</a>.
 </small></li>
 
-<li id="harveyballs"><b><a href="texmf-dist/doc/latex/harveyballs">harveyballs</a></b><small>
+<li id="harveyballs"><b><a href="texmf-dist/doc/latex/harveyballs/">harveyballs</a></b><small>
 (<a href="https://ctan.org/pkg/harveyballs">CTAN</a>):
-Create Harvey Balls using TikZ
+Create Harvey Balls using TikZ. 
 <a href="texmf-dist/doc/latex/harveyballs/harveyballs-Manual.pdf">harveyballs-Manual.pdf</a>.
 </small></li>
 
-<li id="hausarbeit-jura"><b><a href="texmf-dist/doc/latex/hausarbeit-jura">hausarbeit-jura</a></b><small>
+<li id="hausarbeit-jura"><b><a href="texmf-dist/doc/latex/hausarbeit-jura/">hausarbeit-jura</a></b><small>
 (<a href="https://ctan.org/pkg/hausarbeit-jura">CTAN</a>):
-Class for writing "juristische Hausarbeiten" at German Universities
+Class for writing "juristische Hausarbeiten" at German Universities. 
 <a href="texmf-dist/doc/latex/hausarbeit-jura/hausarbeit-jura.pdf">hausarbeit-jura.pdf</a> (de).
 </small></li>
 
-<li id="havannah"><b><a href="texmf-dist/doc/latex/havannah">havannah</a></b><small>
+<li id="havannah"><b><a href="texmf-dist/doc/latex/havannah/">havannah</a></b><small>
 (<a href="https://ctan.org/pkg/havannah">CTAN</a>):
-Diagrams of board positions in the games of Havannah and Hex
+Diagrams of board positions in the games of Havannah and Hex. 
 <a href="texmf-dist/doc/latex/havannah/havannah.pdf">havannah.pdf</a>.
 </small></li>
 
-<li id="he-she"><b><a href="texmf-dist/doc/latex/he-she">he-she</a></b><small>
+<li id="he-she"><b><a href="texmf-dist/doc/latex/he-she/">he-she</a></b><small>
 (<a href="https://ctan.org/pkg/he-she">CTAN</a>):
-Alternating pronouns to aid gender-neutral writing
+Alternating pronouns to aid gender-neutral writing. 
 <a href="texmf-dist/doc/latex/he-she/he-she.pdf">he-she.pdf</a>.
 </small></li>
 
-<li id="hecthese"><b><a href="texmf-dist/doc/latex/hecthese">hecthese</a></b><small>
+<li id="hecthese"><b><a href="texmf-dist/doc/latex/hecthese/">hecthese</a></b><small>
 (<a href="https://ctan.org/pkg/hecthese">CTAN</a>):
-A class for dissertations and theses at HEC Montreal
+A class for dissertations and theses at HEC Montreal. 
 <a href="texmf-dist/doc/latex/hecthese/hecthese-en.pdf">hecthese-en.pdf</a>
 <a href="texmf-dist/doc/latex/hecthese/hecthese.pdf">hecthese.pdf</a> (fr).
 </small></li>
 
-<li id="helmholtz-ellis-ji-notation"><b><a href="texmf-dist/doc/fonts/helmholtz-ellis-ji-notation">helmholtz-ellis-ji-notation</a></b><small>
+<li id="helmholtz-ellis-ji-notation"><b><a href="texmf-dist/doc/fonts/helmholtz-ellis-ji-notation/">helmholtz-ellis-ji-notation</a></b><small>
 (<a href="https://ctan.org/pkg/helmholtz-ellis-ji-notation">CTAN</a>):
-Beautiful in-line microtonal just intonation accidentals
+Beautiful in-line microtonal just intonation accidentals. 
 <a href="texmf-dist/doc/fonts/helmholtz-ellis-ji-notation/helmholtz-ellis-ji-notation.pdf">helmholtz-ellis-ji-notation.pdf</a>.
 </small></li>
 
-<li id="hep-paper"><b><a href="texmf-dist/doc/latex/hep-paper">hep-paper</a></b><small>
+<li id="hep-paper"><b><a href="texmf-dist/doc/latex/hep-paper/">hep-paper</a></b><small>
 (<a href="https://ctan.org/pkg/hep-paper">CTAN</a>):
-Publications in High Energy Physics
+Publications in High Energy Physics. 
 <a href="texmf-dist/doc/latex/hep-paper/hep-paper.pdf">hep-paper.pdf</a>.
 </small></li>
 
-<li id="hepnames"><b><a href="texmf-dist/doc/latex/hepnames">hepnames</a></b><small>
+<li id="hepnames"><b><a href="texmf-dist/doc/latex/hepnames/">hepnames</a></b><small>
 (<a href="https://ctan.org/pkg/hepnames">CTAN</a>):
-Pre-defined high energy particle names
+Pre-defined high energy particle names. 
 <a href="texmf-dist/doc/latex/hepnames/hepnames.pdf">hepnames.pdf</a>
 <a href="texmf-dist/doc/latex/hepnames/hepnicenames-it.pdf">hepnicenames-it.pdf</a>
 <a href="texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdf">hepnicenames-rm.pdf</a>
@@ -10105,16 +10082,16 @@
 <a href="texmf-dist/doc/latex/hepnames/heppennames-rm.pdf">heppennames-rm.pdf</a>.
 </small></li>
 
-<li id="hepparticles"><b><a href="texmf-dist/doc/latex/hepparticles">hepparticles</a></b><small>
+<li id="hepparticles"><b><a href="texmf-dist/doc/latex/hepparticles/">hepparticles</a></b><small>
 (<a href="https://ctan.org/pkg/hepparticles">CTAN</a>):
-Macros for typesetting high energy physics particle names
+Macros for typesetting high energy physics particle names. 
 <a href="texmf-dist/doc/latex/hepparticles/hepparticles.pdf">hepparticles.pdf</a>
 <a href="texmf-dist/doc/latex/hepparticles/testhepparticles.pdf">testhepparticles.pdf</a>.
 </small></li>
 
-<li id="hepthesis"><b><a href="texmf-dist/doc/latex/hepthesis/example">hepthesis</a></b><small>
+<li id="hepthesis"><b><a href="texmf-dist/doc/latex/hepthesis/">hepthesis</a></b><small>
 (<a href="https://ctan.org/pkg/hepthesis">CTAN</a>):
-A class for academic reports, especially PhD theses
+A class for academic reports, especially PhD theses. 
 <a href="texmf-dist/doc/latex/hepthesis/example/ckmfitter-alpha-combined.pdf">ckmfitter-alpha-combined.pdf</a>
 <a href="texmf-dist/doc/latex/hepthesis/example/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/latex/hepthesis/example/lhcb-detector-cross-section.pdf">lhcb-detector-cross-section.pdf</a>
@@ -10121,71 +10098,71 @@
 <a href="texmf-dist/doc/latex/hepthesis/hepthesis.pdf">hepthesis.pdf</a>.
 </small></li>
 
-<li id="hepunits"><b><a href="texmf-dist/doc/latex/hepunits">hepunits</a></b><small>
+<li id="hepunits"><b><a href="texmf-dist/doc/latex/hepunits/">hepunits</a></b><small>
 (<a href="https://ctan.org/pkg/hepunits">CTAN</a>):
-A set of units useful in high energy physics applications
+A set of units useful in high energy physics applications. 
 <a href="texmf-dist/doc/latex/hepunits/hepunits.pdf">hepunits.pdf</a>.
 </small></li>
 
-<li id="heuristica"><b><a href="texmf-dist/doc/fonts/heuristica">heuristica</a></b><small>
+<li id="heuristica"><b><a href="texmf-dist/doc/fonts/heuristica/">heuristica</a></b><small>
 (<a href="https://ctan.org/pkg/heuristica">CTAN</a>):
-Fonts extending Utopia, with LaTeX support files
+Fonts extending Utopia, with LaTeX support files. 
 <a href="texmf-dist/doc/fonts/heuristica/heuristica-doc.pdf">heuristica-doc.pdf</a>.
 </small></li>
 
-<li id="hexgame"><b><a href="texmf-dist/doc/latex/hexgame">hexgame</a></b><small>
+<li id="hexgame"><b><a href="texmf-dist/doc/latex/hexgame/">hexgame</a></b><small>
 (<a href="https://ctan.org/pkg/hexgame">CTAN</a>):
-Provide an environment to draw a hexgame-board
+Provide an environment to draw a hexgame-board. 
 <a href="texmf-dist/doc/latex/hexgame/hexgame.pdf">hexgame.pdf</a>.
 </small></li>
 
-<li id="hf-tikz"><b><a href="texmf-dist/doc/latex/hf-tikz">hf-tikz</a></b><small>
+<li id="hf-tikz"><b><a href="texmf-dist/doc/latex/hf-tikz/">hf-tikz</a></b><small>
 (<a href="https://ctan.org/pkg/hf-tikz">CTAN</a>):
-A simple way to highlight formulas and formula parts
+A simple way to highlight formulas and formula parts. 
 <a href="texmf-dist/doc/latex/hf-tikz/hf-tikz.pdf">hf-tikz.pdf</a>.
 </small></li>
 
-<li id="hfoldsty"><b><a href="texmf-dist/doc/fonts/hfoldsty">hfoldsty</a></b><small>
+<li id="hfoldsty"><b><a href="texmf-dist/doc/fonts/hfoldsty/">hfoldsty</a></b><small>
 (<a href="https://ctan.org/pkg/hfoldsty">CTAN</a>):
-Old style numerals with EC fonts
+Old style numerals with EC fonts. 
 <a href="texmf-dist/doc/fonts/hfoldsty/hfoldsty.pdf">hfoldsty.pdf</a>.
 </small></li>
 
-<li id="hhtensor"><b><a href="texmf-dist/doc/latex/hhtensor">hhtensor</a></b><small>
+<li id="hhtensor"><b><a href="texmf-dist/doc/latex/hhtensor/">hhtensor</a></b><small>
 (<a href="https://ctan.org/pkg/hhtensor">CTAN</a>):
-Print vectors, matrices, and tensors
+Print vectors, matrices, and tensors. 
 <a href="texmf-dist/doc/latex/hhtensor/hhtensor.pdf">hhtensor.pdf</a>.
 </small></li>
 
-<li id="histogr"><b><a href="texmf-dist/doc/latex/histogr">histogr</a></b><small>
+<li id="histogr"><b><a href="texmf-dist/doc/latex/histogr/">histogr</a></b><small>
 (<a href="https://ctan.org/pkg/histogr">CTAN</a>):
-Draw histograms with the LaTeX picture environment
+Draw histograms with the LaTeX picture environment. 
 <a href="texmf-dist/doc/latex/histogr/histogr.pdf">histogr.pdf</a>.
 </small></li>
 
-<li id="hitec"><b><a href="texmf-dist/doc/latex/hitec">hitec</a></b><small>
+<li id="hitec"><b><a href="texmf-dist/doc/latex/hitec/">hitec</a></b><small>
 (<a href="https://ctan.org/pkg/hitec">CTAN</a>):
-Class for documentation
+Class for documentation. 
 <a href="texmf-dist/doc/latex/hitec/hitec_doc.pdf">hitec_doc.pdf</a>.
 </small></li>
 
-<li id="hithesis"><b><a href="texmf-dist/doc/latex/hithesis">hithesis</a></b><small>
+<li id="hithesis"><b><a href="texmf-dist/doc/latex/hithesis/">hithesis</a></b><small>
 (<a href="https://ctan.org/pkg/hithesis">CTAN</a>):
-Harbin Institute of Technology Thesis Template
+Harbin Institute of Technology Thesis Template. 
 <a href="texmf-dist/doc/latex/hithesis/hithesis.pdf">hithesis.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/hithesis/main.pdf">main.pdf</a>.
 </small></li>
 
-<li id="hitszbeamer"><b><a href="texmf-dist/doc/latex/hitszbeamer">hitszbeamer</a></b><small>
+<li id="hitszbeamer"><b><a href="texmf-dist/doc/latex/hitszbeamer/">hitszbeamer</a></b><small>
 (<a href="https://ctan.org/pkg/hitszbeamer">CTAN</a>):
-A beamer theme for Harbin Institute of Technology, ShenZhen
+A beamer theme for Harbin Institute of Technology, ShenZhen. 
 <a href="texmf-dist/doc/latex/hitszbeamer/hitszbeamer.pdf">hitszbeamer.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/hitszbeamer/main.pdf">main.pdf</a> (zh).
 </small></li>
 
-<li id="hitszthesis"><b><a href="texmf-dist/doc/latex/hitszthesis">hitszthesis</a></b><small>
+<li id="hitszthesis"><b><a href="texmf-dist/doc/latex/hitszthesis/">hitszthesis</a></b><small>
 (<a href="https://ctan.org/pkg/hitszthesis">CTAN</a>):
-A dissertation template for Harbin Institute of Technology, ShenZhen
+A dissertation template for Harbin Institute of Technology, ShenZhen. 
 <a href="texmf-dist/doc/latex/hitszthesis/hitszthesis.pdf">hitszthesis.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/hitszthesis/main-bachelor.pdf">main-bachelor.pdf</a> (zh) 
 <a href="texmf-dist/doc/latex/hitszthesis/main-doctor.pdf">main-doctor.pdf</a> (zh) 
@@ -10192,92 +10169,92 @@
 <a href="texmf-dist/doc/latex/hitszthesis/main-master.pdf">main-master.pdf</a> (zh).
 </small></li>
 
-<li id="hletter"><b><a href="texmf-dist/doc/latex/hletter">hletter</a></b><small>
+<li id="hletter"><b><a href="texmf-dist/doc/latex/hletter/">hletter</a></b><small>
 (<a href="https://ctan.org/pkg/hletter">CTAN</a>):
-Flexible letter typesetting with flexible page headings
+Flexible letter typesetting with flexible page headings. 
 <a href="texmf-dist/doc/latex/hletter/Hletter.pdf">Hletter.pdf</a>.
 </small></li>
 
-<li id="hlist"><b><a href="texmf-dist/doc/generic/hlist">hlist</a></b><small>
+<li id="hlist"><b><a href="texmf-dist/doc/generic/hlist/">hlist</a></b><small>
 (<a href="https://ctan.org/pkg/hlist">CTAN</a>):
-Horizontal and columned lists
+Horizontal and columned lists. 
 <a href="texmf-dist/doc/generic/hlist/hlist-fr.pdf">hlist-fr.pdf</a>.
 </small></li>
 
-<li id="hmtrump"><b><a href="texmf-dist/doc/lualatex/hmtrump">hmtrump</a></b><small>
+<li id="hmtrump"><b><a href="texmf-dist/doc/lualatex/hmtrump/">hmtrump</a></b><small>
 (<a href="https://ctan.org/pkg/hmtrump">CTAN</a>):
-Describe card games
+Describe card games. 
 <a href="texmf-dist/doc/lualatex/hmtrump/hmtrump-sample.pdf">hmtrump-sample.pdf</a> (ja) 
 <a href="texmf-dist/doc/lualatex/hmtrump/hmtrump.pdf">hmtrump.pdf</a> (ja).
 </small></li>
 
-<li id="hobby"><b><a href="texmf-dist/doc/latex/hobby">hobby</a></b><small>
+<li id="hobby"><b><a href="texmf-dist/doc/latex/hobby/">hobby</a></b><small>
 (<a href="https://ctan.org/pkg/hobby">CTAN</a>):
-An implementation of Hobby's algorithm for PGF/TikZ
+An implementation of Hobby's algorithm for PGF/TikZ. 
 <a href="texmf-dist/doc/latex/hobby/hobby.pdf">hobby.pdf</a>
 <a href="texmf-dist/doc/latex/hobby/hobby_code.pdf">hobby_code.pdf</a>.
 </small></li>
 
-<li id="hobete"><b><a href="texmf-dist/doc/latex/hobete">hobete</a></b><small>
+<li id="hobete"><b><a href="texmf-dist/doc/latex/hobete/">hobete</a></b><small>
 (<a href="https://ctan.org/pkg/hobete">CTAN</a>):
-Unofficial beamer theme for the University of Hohenheim
+Unofficial beamer theme for the University of Hohenheim. 
 <a href="texmf-dist/doc/latex/hobete/hobete_doc.pdf">hobete_doc.pdf</a> (de).
 </small></li>
 
-<li id="hobsub"><b><a href="texmf-dist/doc/latex/hobsub">hobsub</a></b><small>
+<li id="hobsub"><b><a href="texmf-dist/doc/latex/hobsub/">hobsub</a></b><small>
 (<a href="https://ctan.org/pkg/hobsub">CTAN</a>):
-Construct package bundles
+Construct package bundles. 
 <a href="texmf-dist/doc/latex/hobsub/hobsub.pdf">hobsub.pdf</a>.
 </small></li>
 
-<li id="hologo"><b><a href="texmf-dist/doc/latex/hologo">hologo</a></b><small>
+<li id="hologo"><b><a href="texmf-dist/doc/latex/hologo/">hologo</a></b><small>
 (<a href="https://ctan.org/pkg/hologo">CTAN</a>):
-A collection of logos with bookmark support
+A collection of logos with bookmark support. 
 <a href="texmf-dist/doc/latex/hologo/hologo.pdf">hologo.pdf</a>.
 </small></li>
 
-<li id="horoscop"><b><a href="texmf-dist/doc/latex/horoscop">horoscop</a></b><small>
+<li id="horoscop"><b><a href="texmf-dist/doc/latex/horoscop/">horoscop</a></b><small>
 (<a href="https://ctan.org/pkg/horoscop">CTAN</a>):
-Generate astrological charts in LaTeX
+Generate astrological charts in LaTeX. 
 <a href="texmf-dist/doc/latex/horoscop/horoscop.pdf">horoscop.pdf</a>.
 </small></li>
 
-<li id="hpsdiss"><b><a href="texmf-dist/doc/latex/hpsdiss">hpsdiss</a></b><small>
+<li id="hpsdiss"><b><a href="texmf-dist/doc/latex/hpsdiss/">hpsdiss</a></b><small>
 (<a href="https://ctan.org/pkg/hpsdiss">CTAN</a>):
-A dissertation class
+A dissertation class. 
 <a href="texmf-dist/doc/latex/hpsdiss/hpsdiss.pdf">hpsdiss.pdf</a>.
 </small></li>
 
-<li id="hrefhide"><b><a href="texmf-dist/doc/latex/hrefhide">hrefhide</a></b><small>
+<li id="hrefhide"><b><a href="texmf-dist/doc/latex/hrefhide/">hrefhide</a></b><small>
 (<a href="https://ctan.org/pkg/hrefhide">CTAN</a>):
-Suppress hyper links when printing
+Suppress hyper links when printing. 
 <a href="texmf-dist/doc/latex/hrefhide/hrefhide-example.pdf">hrefhide-example.pdf</a>
 <a href="texmf-dist/doc/latex/hrefhide/hrefhide.pdf">hrefhide.pdf</a>.
 </small></li>
 
-<li id="hrlatex"><b><a href="texmf-dist/doc/latex/hrlatex">hrlatex</a></b><small>
+<li id="hrlatex"><b><a href="texmf-dist/doc/latex/hrlatex/">hrlatex</a></b><small>
 (<a href="https://ctan.org/pkg/hrlatex">CTAN</a>):
-LaTeX support for Croatian documents
+LaTeX support for Croatian documents. 
 <a href="texmf-dist/doc/latex/hrlatex/hrlatex.pdf">hrlatex.pdf</a> (hr).
 </small></li>
 
-<li id="hu-berlin-bundle"><b><a href="texmf-dist/doc/latex/hu-berlin-bundle">hu-berlin-bundle</a></b><small>
+<li id="hu-berlin-bundle"><b><a href="texmf-dist/doc/latex/hu-berlin-bundle/">hu-berlin-bundle</a></b><small>
 (<a href="https://ctan.org/pkg/hu-berlin-bundle">CTAN</a>):
-LaTeX classes for the Humboldt-Universitat zu Berlin
+LaTeX classes for the Humboldt-Universitat zu Berlin. 
 <a href="texmf-dist/doc/latex/hu-berlin-bundle/hu-berlin-bundle.pdf">hu-berlin-bundle.pdf</a>
 <a href="texmf-dist/doc/latex/hu-berlin-bundle/img/hu-berlin-logo.pdf">hu-berlin-logo.pdf</a>
 <a href="texmf-dist/doc/latex/hu-berlin-bundle/img/texografie-logo.pdf">texografie-logo.pdf</a>.
 </small></li>
 
-<li id="hulipsum"><b><a href="texmf-dist/doc/latex/hulipsum">hulipsum</a></b><small>
+<li id="hulipsum"><b><a href="texmf-dist/doc/latex/hulipsum/">hulipsum</a></b><small>
 (<a href="https://ctan.org/pkg/hulipsum">CTAN</a>):
-Hungarian dummy text (Lorum ipse)
+Hungarian dummy text (Lorum ipse). 
 <a href="texmf-dist/doc/latex/hulipsum/hulipsum.pdf">hulipsum.pdf</a>.
 </small></li>
 
-<li id="hustthesis"><b><a href="texmf-dist/doc/latex/hustthesis">hustthesis</a></b><small>
+<li id="hustthesis"><b><a href="texmf-dist/doc/latex/hustthesis/">hustthesis</a></b><small>
 (<a href="https://ctan.org/pkg/hustthesis">CTAN</a>):
-Unofficial thesis template for Huazhong University
+Unofficial thesis template for Huazhong University. 
 <a href="texmf-dist/doc/latex/hustthesis/fig-example.pdf">fig-example.pdf</a>
 <a href="texmf-dist/doc/latex/hustthesis/hustthesis-en-example.pdf">hustthesis-en-example.pdf</a>
 <a href="texmf-dist/doc/latex/hustthesis/hustthesis-zh-example.pdf">hustthesis-zh-example.pdf</a>
@@ -10284,9 +10261,9 @@
 <a href="texmf-dist/doc/latex/hustthesis/hustthesis.pdf">hustthesis.pdf</a>.
 </small></li>
 
-<li id="hvfloat"><b><a href="texmf-dist/doc/latex/hvfloat">hvfloat</a></b><small>
+<li id="hvfloat"><b><a href="texmf-dist/doc/latex/hvfloat/">hvfloat</a></b><small>
 (<a href="https://ctan.org/pkg/hvfloat">CTAN</a>):
-Rotating caption and object of floats independently
+Rotating caption and object of floats independently. 
 <a href="texmf-dist/doc/latex/hvfloat/after1s1c.pdf">after1s1c.pdf</a>
 <a href="texmf-dist/doc/latex/hvfloat/after2s2c.pdf">after2s2c.pdf</a>
 <a href="texmf-dist/doc/latex/hvfloat/default1s1c.pdf">default1s1c.pdf</a>
@@ -10338,52 +10315,52 @@
 <a href="texmf-dist/doc/latex/hvfloat/sub-right2s2c.pdf">sub-right2s2c.pdf</a>.
 </small></li>
 
-<li id="hvindex"><b><a href="texmf-dist/doc/latex/hvindex">hvindex</a></b><small>
+<li id="hvindex"><b><a href="texmf-dist/doc/latex/hvindex/">hvindex</a></b><small>
 (<a href="https://ctan.org/pkg/hvindex">CTAN</a>):
-Support for indexing
+Support for indexing. 
 <a href="texmf-dist/doc/latex/hvindex/hvindex-doc.pdf">hvindex-doc.pdf</a>.
 </small></li>
 
-<li id="hvqrurl"><b><a href="texmf-dist/doc/latex/hvqrurl">hvqrurl</a></b><small>
+<li id="hvqrurl"><b><a href="texmf-dist/doc/latex/hvqrurl/">hvqrurl</a></b><small>
 (<a href="https://ctan.org/pkg/hvqrurl">CTAN</a>):
-Insert a QR code in the margin
+Insert a QR code in the margin. 
 <a href="texmf-dist/doc/latex/hvqrurl/hvqrurl.pdf">hvqrurl.pdf</a>.
 </small></li>
 
-<li id="hycolor"><b><a href="texmf-dist/doc/latex/hycolor">hycolor</a></b><small>
+<li id="hycolor"><b><a href="texmf-dist/doc/latex/hycolor/">hycolor</a></b><small>
 (<a href="https://ctan.org/pkg/hycolor">CTAN</a>):
-Implements colour for packages hyperref and bookmark
+Implements colour for packages hyperref and bookmark. 
 <a href="texmf-dist/doc/latex/hycolor/hycolor.pdf">hycolor.pdf</a>.
 </small></li>
 
-<li id="hypdvips"><b><a href="texmf-dist/doc/latex/hypdvips">hypdvips</a></b><small>
+<li id="hypdvips"><b><a href="texmf-dist/doc/latex/hypdvips/">hypdvips</a></b><small>
 (<a href="https://ctan.org/pkg/hypdvips">CTAN</a>):
-Hyperref extensions for use with dvips
+Hyperref extensions for use with dvips. 
 <a href="texmf-dist/doc/latex/hypdvips/hypdvips.pdf">hypdvips.pdf</a>.
 </small></li>
 
-<li id="hyper"><b><a href="texmf-dist/doc/latex/hyper">hyper</a></b><small>
+<li id="hyper"><b><a href="texmf-dist/doc/latex/hyper/">hyper</a></b><small>
 (<a href="https://ctan.org/pkg/hyper">CTAN</a>):
-Hypertext cross referencing
+Hypertext cross referencing. 
 <a href="texmf-dist/doc/latex/hyper/hyper.pdf">hyper.pdf</a>.
 </small></li>
 
-<li id="hyperbar"><b><a href="texmf-dist/doc/latex/hyperbar">hyperbar</a></b><small>
+<li id="hyperbar"><b><a href="texmf-dist/doc/latex/hyperbar/">hyperbar</a></b><small>
 (<a href="https://ctan.org/pkg/hyperbar">CTAN</a>):
-Add interactive Barcode fields to PDF forms
+Add interactive Barcode fields to PDF forms. 
 <a href="texmf-dist/doc/latex/hyperbar/example.pdf">example.pdf</a>
 <a href="texmf-dist/doc/latex/hyperbar/hyperbar.pdf">hyperbar.pdf</a>.
 </small></li>
 
-<li id="hypernat"><b><a href="texmf-dist/doc/latex/hypernat">hypernat</a></b><small>
+<li id="hypernat"><b><a href="texmf-dist/doc/latex/hypernat/">hypernat</a></b><small>
 (<a href="https://ctan.org/pkg/hypernat">CTAN</a>):
-Allow hyperref and natbib to work together
+Allow hyperref and natbib to work together. 
 <a href="texmf-dist/doc/latex/hypernat/hypernat.pdf">hypernat.pdf</a>.
 </small></li>
 
-<li id="hyperref"><b><a href="texmf-dist/doc/latex/hyperref">hyperref</a></b><small>
+<li id="hyperref"><b><a href="texmf-dist/doc/latex/hyperref/">hyperref</a></b><small>
 (<a href="https://ctan.org/pkg/hyperref">CTAN</a>):
-Extensive support for hypertext in LaTeX
+Extensive support for hypertext in LaTeX. 
 <a href="texmf-dist/doc/latex/hyperref/backref.pdf">backref.pdf</a>
 <a href="texmf-dist/doc/latex/hyperref/hyperref.pdf">hyperref.pdf</a>
 <a href="texmf-dist/doc/latex/hyperref/manual.html">manual.html</a>
@@ -10399,23 +10376,22 @@
 <a href="texmf-dist/doc/latex/hyperref/slides.pdf">slides.pdf</a>.
 </small></li>
 
-<li id="hyperxmp"><b><a href="texmf-dist/doc/latex/hyperxmp">hyperxmp</a></b><small>
+<li id="hyperxmp"><b><a href="texmf-dist/doc/latex/hyperxmp/">hyperxmp</a></b><small>
 (<a href="https://ctan.org/pkg/hyperxmp">CTAN</a>):
-Embed XMP metadata within a LaTeX document
+Embed XMP metadata within a LaTeX document. 
 <a href="texmf-dist/doc/latex/hyperxmp/hyperxmp.pdf">hyperxmp.pdf</a>.
 </small></li>
 
-<li id="hyph-utf8"><b><a href="texmf-dist/doc/generic/hyph-utf8">hyph-utf8</a></b><small>
+<li id="hyph-utf8"><b><a href="texmf-dist/doc/generic/hyph-utf8/">hyph-utf8</a></b><small>
 (<a href="https://ctan.org/pkg/hyph-utf8">CTAN</a>):
-Hyphenation patterns expressed in UTF-8
+Hyphenation patterns expressed in UTF-8. 
 <a href="texmf-dist/doc/generic/hyph-utf8/hyph-utf8.pdf">hyph-utf8.pdf</a>
 <a href="texmf-dist/doc/generic/hyph-utf8/hyphenation-distribution.pdf">hyphenation-distribution.pdf</a>
 <a href="texmf-dist/doc/luatex/hyph-utf8/luatex-hyphen.pdf">luatex-hyphen.pdf</a>.
 </small></li>
 
-<li id="hyphen-greek"><b><a href="texmf-dist/doc/generic/elhyphen">hyphen-greek</a></b><small>
-(<a href="https://ctan.org/pkg/hyphen-greek">CTAN</a>):
-Modern Greek hyphenation patterns.
+<li id="hyphen-greek"><b><a href="texmf-dist/doc/generic/elhyphen/">hyphen-greek</a></b><small>
+Modern Greek hyphenation patterns. 
 <a href="texmf-dist/doc/generic/elhyphen/anc-test.pdf">anc-test.pdf</a>
 <a href="texmf-dist/doc/generic/elhyphen/ancient.pdf">ancient.pdf</a>
 <a href="texmf-dist/doc/generic/elhyphen/compound.pdf">compound.pdf</a>
@@ -10422,28 +10398,27 @@
 <a href="texmf-dist/doc/generic/elhyphen/modern.pdf">modern.pdf</a>.
 </small></li>
 
-<li id="hyphen-hungarian"><b><a href="texmf-dist/doc/generic/huhyphen">hyphen-hungarian</a></b><small>
-(<a href="https://ctan.org/pkg/hyphen-hungarian">CTAN</a>):
-Hungarian hyphenation patterns.
+<li id="hyphen-hungarian"><b><a href="texmf-dist/doc/generic/huhyphen/">hyphen-hungarian</a></b><small>
+Hungarian hyphenation patterns. 
 <a href="texmf-dist/doc/generic/huhyphen/huhyphn.pdf">huhyphn.pdf</a>
 <a href="texmf-dist/doc/generic/hyph-utf8/languages/hu/huhyphn.pdf">huhyphn.pdf</a>.
 </small></li>
 
-<li id="hyphen-spanish"><b><a href="texmf-dist/doc/generic/hyph-utf8/languages/es">hyphen-spanish</a></b><small>
+<li id="hyphen-spanish"><b><a href="texmf-dist/doc/generic/hyph-utf8/languages/es/">hyphen-spanish</a></b><small>
 (<a href="https://ctan.org/pkg/hyphen-spanish">CTAN</a>):
-Spanish hyphenation patterns.
+Spanish hyphenation patterns. 
 <a href="texmf-dist/doc/generic/hyph-utf8/languages/es/division.pdf">division.pdf</a> (es).
 </small></li>
 
-<li id="hyphenat"><b><a href="texmf-dist/doc/latex/hyphenat">hyphenat</a></b><small>
+<li id="hyphenat"><b><a href="texmf-dist/doc/latex/hyphenat/">hyphenat</a></b><small>
 (<a href="https://ctan.org/pkg/hyphenat">CTAN</a>):
-Disable/enable hypenation
+Disable/enable hypenation. 
 <a href="texmf-dist/doc/latex/hyphenat/hyphenat.pdf">hyphenat.pdf</a>.
 </small></li>
 
-<li id="hyplain"><b><a href="texmf-dist/doc/plain/hyplain">hyplain</a></b><small>
+<li id="hyplain"><b><a href="texmf-dist/doc/plain/hyplain/">hyplain</a></b><small>
 (<a href="https://ctan.org/pkg/hyplain">CTAN</a>):
-Basic support for multiple languages in Plain TeX
+Basic support for multiple languages in Plain TeX. 
 <a href="texmf-dist/doc/plain/hyplain/hydoc.pdf">hydoc.pdf</a>.
 </small></li>
 
@@ -10451,17 +10426,17 @@
 
 <h2 id="letter-I">I</h2>
 
-<ol start="1396">
+<ol start="1397">
 
-<li id="ibycus-babel"><b><a href="texmf-dist/doc/latex/ibycus-babel">ibycus-babel</a></b><small>
+<li id="ibycus-babel"><b><a href="texmf-dist/doc/latex/ibycus-babel/">ibycus-babel</a></b><small>
 (<a href="https://ctan.org/pkg/ibycus-babel">CTAN</a>):
-Use the Ibycus 4 Greek font with Babel
+Use the Ibycus 4 Greek font with Babel. 
 <a href="texmf-dist/doc/latex/ibycus-babel/ibycus-babel.pdf">ibycus-babel.pdf</a>.
 </small></li>
 
-<li id="icite"><b><a href="texmf-dist/doc/latex/icite">icite</a></b><small>
+<li id="icite"><b><a href="texmf-dist/doc/latex/icite/">icite</a></b><small>
 (<a href="https://ctan.org/pkg/icite">CTAN</a>):
-Indices locorum citatorum
+Indices locorum citatorum. 
 <a href="texmf-dist/doc/latex/icite/icite.pdf">icite.pdf</a>
 <a href="texmf-dist/doc/latex/icite/samples/icite-biblatex.pdf">icite-biblatex.pdf</a>
 <a href="texmf-dist/doc/latex/icite/samples/icite-minimal.pdf">icite-minimal.pdf</a>
@@ -10468,39 +10443,37 @@
 <a href="texmf-dist/doc/latex/icite/samples/icite-nobiblatex.pdf">icite-nobiblatex.pdf</a>.
 </small></li>
 
-<li id="icsv"><b><a href="texmf-dist/doc/latex/icsv">icsv</a></b><small>
+<li id="icsv"><b><a href="texmf-dist/doc/latex/icsv/">icsv</a></b><small>
 (<a href="https://ctan.org/pkg/icsv">CTAN</a>):
-Class for typesetting articles for the ICSV conference
+Class for typesetting articles for the ICSV conference. 
 <a href="texmf-dist/doc/latex/icsv/icsv.pdf">icsv.pdf</a>.
 </small></li>
 
-<li id="idxcmds"><b><a href="texmf-dist/doc/latex/idxcmds">idxcmds</a></b><small>
+<li id="idxcmds"><b><a href="texmf-dist/doc/latex/idxcmds/">idxcmds</a></b><small>
 (<a href="https://ctan.org/pkg/idxcmds">CTAN</a>):
-Semantic commands for adding formatted index entries
+Semantic commands for adding formatted index entries. 
 <a href="texmf-dist/doc/latex/idxcmds/idxcmds_en.pdf">idxcmds_en.pdf</a>.
 </small></li>
 
-<li id="idxlayout"><b><a href="texmf-dist/doc/latex/idxlayout">idxlayout</a></b><small>
+<li id="idxlayout"><b><a href="texmf-dist/doc/latex/idxlayout/">idxlayout</a></b><small>
 (<a href="https://ctan.org/pkg/idxlayout">CTAN</a>):
-Configurable index layout, responsive to KOMA-Script and memoir
+Configurable index layout, responsive to KOMA-Script and memoir. 
 <a href="texmf-dist/doc/latex/idxlayout/idxlayout.pdf">idxlayout.pdf</a>.
 </small></li>
 
-<li id="IEEEconf"><b><a href="texmf-dist/doc/latex/IEEEconf">IEEEconf</a></b><small>
-(<a href="https://ctan.org/pkg/IEEEconf">CTAN</a>):
-Macros for IEEE conference proceedings
+<li id="IEEEconf"><b><a href="texmf-dist/doc/latex/IEEEconf/">IEEEconf</a></b><small>
+Macros for IEEE conference proceedings. 
 <a href="texmf-dist/doc/latex/IEEEconf/IEEEconf.pdf">IEEEconf.pdf</a>.
 </small></li>
 
-<li id="ieeepes"><b><a href="texmf-dist/doc/latex/ieeepes">ieeepes</a></b><small>
+<li id="ieeepes"><b><a href="texmf-dist/doc/latex/ieeepes/">ieeepes</a></b><small>
 (<a href="https://ctan.org/pkg/ieeepes">CTAN</a>):
-IEEE Power Engineering Society Transactions
+IEEE Power Engineering Society Transactions. 
 <a href="texmf-dist/doc/latex/ieeepes/ieeepes_doc.pdf">ieeepes_doc.pdf</a>.
 </small></li>
 
-<li id="IEEEtran"><b><a href="texmf-dist/doc/latex/IEEEtran">IEEEtran</a></b><small>
-(<a href="https://ctan.org/pkg/IEEEtran">CTAN</a>):
-Document class for IEEE Transactions journals and conferences
+<li id="IEEEtran"><b><a href="texmf-dist/doc/latex/IEEEtran/">IEEEtran</a></b><small>
+Document class for IEEE Transactions journals and conferences. 
 <a href="texmf-dist/doc/latex/IEEEtran/testflow_ctl_A4.pdf">testflow_ctl_A4.pdf</a>
 <a href="texmf-dist/doc/latex/IEEEtran/testflow_ctl_LTR.pdf">testflow_ctl_LTR.pdf</a>
 <a href="texmf-dist/doc/latex/IEEEtran/testflow_doc.pdf">testflow_doc.pdf</a>
@@ -10507,145 +10480,143 @@
 <a href="texmf-dist/doc/latex/IEEEtran/tux.pdf">tux.pdf</a>.
 </small></li>
 
-<li id="iffont"><b><a href="texmf-dist/doc/latex/iffont">iffont</a></b><small>
+<li id="iffont"><b><a href="texmf-dist/doc/latex/iffont/">iffont</a></b><small>
 (<a href="https://ctan.org/pkg/iffont">CTAN</a>):
-Conditionally load fonts with fontspec
+Conditionally load fonts with fontspec. 
 <a href="texmf-dist/doc/latex/iffont/iffont.pdf">iffont.pdf</a>.
 </small></li>
 
-<li id="ifmslide"><b><a href="texmf-dist/doc/latex/ifmslide">ifmslide</a></b><small>
+<li id="ifmslide"><b><a href="texmf-dist/doc/latex/ifmslide/">ifmslide</a></b><small>
 (<a href="https://ctan.org/pkg/ifmslide">CTAN</a>):
-Presentation slides for screen and printouts
+Presentation slides for screen and printouts. 
 <a href="texmf-dist/doc/latex/ifmslide/ifmman.pdf">ifmman.pdf</a>.
 </small></li>
 
-<li id="ifmtarg"><b><a href="texmf-dist/doc/latex/ifmtarg">ifmtarg</a></b><small>
+<li id="ifmtarg"><b><a href="texmf-dist/doc/latex/ifmtarg/">ifmtarg</a></b><small>
 (<a href="https://ctan.org/pkg/ifmtarg">CTAN</a>):
-If-then-else command for processing potentially empty arguments
+If-then-else command for processing potentially empty arguments. 
 <a href="texmf-dist/doc/latex/ifmtarg/ifmtarg.pdf">ifmtarg.pdf</a>.
 </small></li>
 
-<li id="ifnextok"><b><a href="texmf-dist/doc/latex/ifnextok">ifnextok</a></b><small>
+<li id="ifnextok"><b><a href="texmf-dist/doc/latex/ifnextok/">ifnextok</a></b><small>
 (<a href="https://ctan.org/pkg/ifnextok">CTAN</a>):
-Utility macro: peek ahead without ignoring spaces
+Utility macro: peek ahead without ignoring spaces. 
 <a href="texmf-dist/doc/latex/ifnextok/ifnextok.pdf">ifnextok.pdf</a>
 <a href="texmf-dist/doc/latex/ifnextok/testIfNT.pdf">testIfNT.pdf</a>.
 </small></li>
 
-<li id="ifoddpage"><b><a href="texmf-dist/doc/latex/ifoddpage">ifoddpage</a></b><small>
+<li id="ifoddpage"><b><a href="texmf-dist/doc/latex/ifoddpage/">ifoddpage</a></b><small>
 (<a href="https://ctan.org/pkg/ifoddpage">CTAN</a>):
-Determine if the current page is odd or even
+Determine if the current page is odd or even. 
 <a href="texmf-dist/doc/latex/ifoddpage/ifoddpage.pdf">ifoddpage.pdf</a>.
 </small></li>
 
-<li id="ifplatform"><b><a href="texmf-dist/doc/latex/ifplatform">ifplatform</a></b><small>
+<li id="ifplatform"><b><a href="texmf-dist/doc/latex/ifplatform/">ifplatform</a></b><small>
 (<a href="https://ctan.org/pkg/ifplatform">CTAN</a>):
-Conditionals to test which platform is being used
+Conditionals to test which platform is being used. 
 <a href="texmf-dist/doc/latex/ifplatform/ifplatform.pdf">ifplatform.pdf</a>.
 </small></li>
 
-<li id="iftex"><b><a href="texmf-dist/doc/generic/iftex">iftex</a></b><small>
+<li id="iftex"><b><a href="texmf-dist/doc/generic/iftex/">iftex</a></b><small>
 (<a href="https://ctan.org/pkg/iftex">CTAN</a>):
-Am I running under pdfTeX, XeTeX or LuaTeX?
+Am I running under pdfTeX, XeTeX or LuaTeX?. 
 <a href="texmf-dist/doc/generic/iftex/iftex.pdf">iftex.pdf</a>.
 </small></li>
 
-<li id="ifxptex"><b><a href="texmf-dist/doc/generic/ifxptex">ifxptex</a></b><small>
+<li id="ifxptex"><b><a href="texmf-dist/doc/generic/ifxptex/">ifxptex</a></b><small>
 (<a href="https://ctan.org/pkg/ifxptex">CTAN</a>):
-Detect pTeX and its derivatives
+Detect pTeX and its derivatives. 
 <a href="texmf-dist/doc/generic/ifxptex/ifxptex-doc.pdf">ifxptex-doc.pdf</a>.
 </small></li>
 
-<li id="iitem"><b><a href="texmf-dist/doc/latex/iitem">iitem</a></b><small>
+<li id="iitem"><b><a href="texmf-dist/doc/latex/iitem/">iitem</a></b><small>
 (<a href="https://ctan.org/pkg/iitem">CTAN</a>):
-Multiple level of lists in one list-like environment
+Multiple level of lists in one list-like environment. 
 <a href="texmf-dist/doc/latex/iitem/iitem.pdf">iitem.pdf</a>.
 </small></li>
 
-<li id="ijmart"><b><a href="texmf-dist/doc/latex/ijmart">ijmart</a></b><small>
+<li id="ijmart"><b><a href="texmf-dist/doc/latex/ijmart/">ijmart</a></b><small>
 (<a href="https://ctan.org/pkg/ijmart">CTAN</a>):
-LaTeX Class for the Israel Journal of Mathematics
+LaTeX Class for the Israel Journal of Mathematics. 
 <a href="texmf-dist/doc/latex/ijmart/ijmart.pdf">ijmart.pdf</a>
 <a href="texmf-dist/doc/latex/ijmart/ijmsample.pdf">ijmsample.pdf</a>.
 </small></li>
 
-<li id="ijqc"><b><a href="texmf-dist/doc/bibtex/ijqc">ijqc</a></b><small>
+<li id="ijqc"><b><a href="texmf-dist/doc/bibtex/ijqc/">ijqc</a></b><small>
 (<a href="https://ctan.org/pkg/ijqc">CTAN</a>):
-BibTeX style file for the Intl. J. Quantum Chem
+BibTeX style file for the Intl. J. Quantum Chem. 
 <a href="texmf-dist/doc/bibtex/ijqc/xampl.pdf">xampl.pdf</a>.
 </small></li>
 
-<li id="ijsra"><b><a href="texmf-dist/doc/latex/ijsra">ijsra</a></b><small>
+<li id="ijsra"><b><a href="texmf-dist/doc/latex/ijsra/">ijsra</a></b><small>
 (<a href="https://ctan.org/pkg/ijsra">CTAN</a>):
-LaTeX document class for the International Journal of Student Research in Archaeology
+LaTeX document class for the International Journal of Student Research in Archaeology. 
 <a href="texmf-dist/doc/latex/ijsra/ijsra.pdf">ijsra.pdf</a>.
 </small></li>
 
-<li id="imac"><b><a href="texmf-dist/doc/latex/imac">imac</a></b><small>
+<li id="imac"><b><a href="texmf-dist/doc/latex/imac/">imac</a></b><small>
 (<a href="https://ctan.org/pkg/imac">CTAN</a>):
-International Modal Analysis Conference format
+International Modal Analysis Conference format. 
 <a href="texmf-dist/doc/latex/imac/imac.pdf">imac.pdf</a>.
 </small></li>
 
-<li id="image-gallery"><b><a href="texmf-dist/doc/latex/image-gallery">image-gallery</a></b><small>
+<li id="image-gallery"><b><a href="texmf-dist/doc/latex/image-gallery/">image-gallery</a></b><small>
 (<a href="https://ctan.org/pkg/image-gallery">CTAN</a>):
-Create an overview of pictures from a digital camera or from other sources
+Create an overview of pictures from a digital camera or from other sources. 
 <a href="texmf-dist/doc/latex/image-gallery/gallery-example.pdf">gallery-example.pdf</a>.
 </small></li>
 
-<li id="imakeidx"><b><a href="texmf-dist/doc/latex/imakeidx">imakeidx</a></b><small>
+<li id="imakeidx"><b><a href="texmf-dist/doc/latex/imakeidx/">imakeidx</a></b><small>
 (<a href="https://ctan.org/pkg/imakeidx">CTAN</a>):
-A package for producing multiple indexes
+A package for producing multiple indexes. 
 <a href="texmf-dist/doc/latex/imakeidx/imakeidx.pdf">imakeidx.pdf</a>.
 </small></li>
 
-<li id="imfellenglish"><b><a href="texmf-dist/doc/fonts/imfellenglish">imfellenglish</a></b><small>
+<li id="imfellenglish"><b><a href="texmf-dist/doc/fonts/imfellenglish/">imfellenglish</a></b><small>
 (<a href="https://ctan.org/pkg/imfellenglish">CTAN</a>):
-IM Fell English fonts with LaTeX support
+IM Fell English fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/imfellenglish/imfellEnglish.pdf">imfellEnglish.pdf</a>.
 </small></li>
 
-<li id="impatient"><b><a href="texmf-dist/doc/plain/impatient">impatient</a></b><small>
+<li id="impatient"><b><a href="texmf-dist/doc/plain/impatient/">impatient</a></b><small>
 (<a href="https://ctan.org/pkg/impatient">CTAN</a>):
-Free edition of the book "TeX for the Impatient"
+Free edition of the book "TeX for the Impatient". 
 <a href="texmf-dist/doc/plain/impatient/book.pdf">book.pdf</a>.
 </small></li>
 
-<li id="impatient-cn"><b><a href="texmf-dist/doc/plain/impatient-cn">impatient-cn</a></b><small>
-(<a href="https://ctan.org/pkg/impatient-cn">CTAN</a>):
-Free edition of the book "TeX for the Impatient"
+<li id="impatient-cn"><b><a href="texmf-dist/doc/plain/impatient-cn/">impatient-cn</a></b><small>
+Free edition of the book "TeX for the Impatient". 
 <a href="texmf-dist/doc/plain/impatient-cn/cnbook.pdf">cnbook.pdf</a> (zh).
 </small></li>
 
-<li id="impatient-fr"><b><a href="texmf-dist/doc/plain/impatient-fr">impatient-fr</a></b><small>
-(<a href="https://ctan.org/pkg/impatient-fr">CTAN</a>):
-Free edition of the book "TeX for the Impatient"
+<li id="impatient-fr"><b><a href="texmf-dist/doc/plain/impatient-fr/">impatient-fr</a></b><small>
+Free edition of the book "TeX for the Impatient". 
 <a href="texmf-dist/doc/plain/impatient-fr/fbook.pdf">fbook.pdf</a> (fr).
 </small></li>
 
-<li id="impnattypo"><b><a href="texmf-dist/doc/latex/impnattypo">impnattypo</a></b><small>
+<li id="impnattypo"><b><a href="texmf-dist/doc/latex/impnattypo/">impnattypo</a></b><small>
 (<a href="https://ctan.org/pkg/impnattypo">CTAN</a>):
-Support typography of l'Imprimerie Nationale Francaise
+Support typography of l'Imprimerie Nationale Francaise. 
 <a href="texmf-dist/doc/latex/impnattypo/impnattypo-fr.pdf">impnattypo-fr.pdf</a> (fr) 
 <a href="texmf-dist/doc/latex/impnattypo/impnattypo.pdf">impnattypo.pdf</a>.
 </small></li>
 
-<li id="import"><b><a href="texmf-dist/doc/latex/import">import</a></b><small>
+<li id="import"><b><a href="texmf-dist/doc/latex/import/">import</a></b><small>
 (<a href="https://ctan.org/pkg/import">CTAN</a>):
-Establish input relative to a directory
+Establish input relative to a directory. 
 <a href="texmf-dist/doc/latex/import/import.pdf">import.pdf</a>.
 </small></li>
 
-<li id="imtekda"><b><a href="texmf-dist/doc/latex/imtekda">imtekda</a></b><small>
+<li id="imtekda"><b><a href="texmf-dist/doc/latex/imtekda/">imtekda</a></b><small>
 (<a href="https://ctan.org/pkg/imtekda">CTAN</a>):
-IMTEK thesis class
+IMTEK thesis class. 
 <a href="texmf-dist/doc/latex/imtekda/IMTEKda.pdf">IMTEKda.pdf</a> (de) 
 <a href="texmf-dist/doc/latex/imtekda/figures/bild.pdf">bild.pdf</a>.
 </small></li>
 
-<li id="incgraph"><b><a href="texmf-dist/doc/latex/incgraph">incgraph</a></b><small>
+<li id="incgraph"><b><a href="texmf-dist/doc/latex/incgraph/">incgraph</a></b><small>
 (<a href="https://ctan.org/pkg/incgraph">CTAN</a>):
-Sophisticated graphics inclusion in a PDF document
+Sophisticated graphics inclusion in a PDF document. 
 <a href="texmf-dist/doc/latex/incgraph/incgraph-example-a.pdf">incgraph-example-a.pdf</a>
 <a href="texmf-dist/doc/latex/incgraph/incgraph-example-b.pdf">incgraph-example-b.pdf</a>
 <a href="texmf-dist/doc/latex/incgraph/incgraph-example-c.pdf">incgraph-example-c.pdf</a>
@@ -10652,15 +10623,15 @@
 <a href="texmf-dist/doc/latex/incgraph/incgraph.pdf">incgraph.pdf</a>.
 </small></li>
 
-<li id="includernw"><b><a href="texmf-dist/doc/latex/includernw">includernw</a></b><small>
+<li id="includernw"><b><a href="texmf-dist/doc/latex/includernw/">includernw</a></b><small>
 (<a href="https://ctan.org/pkg/includernw">CTAN</a>):
-Include .Rnw inside .tex
+Include .Rnw inside .tex. 
 <a href="texmf-dist/doc/latex/includernw/includeRnw-doc.pdf">includeRnw-doc.pdf</a>.
 </small></li>
 
-<li id="inconsolata"><b><a href="texmf-dist/doc/fonts/inconsolata">inconsolata</a></b><small>
+<li id="inconsolata"><b><a href="texmf-dist/doc/fonts/inconsolata/">inconsolata</a></b><small>
 (<a href="https://ctan.org/pkg/inconsolata">CTAN</a>):
-A monospaced font, with support files for use with TeX
+A monospaced font, with support files for use with TeX. 
 <a href="texmf-dist/doc/fonts/inconsolata/inconsolata-doc.pdf">inconsolata-doc.pdf</a>
 <a href="texmf-dist/doc/fonts/inconsolata/novarqu-crop.pdf">novarqu-crop.pdf</a>
 <a href="texmf-dist/doc/fonts/inconsolata/novarqu-noupq-crop.pdf">novarqu-noupq-crop.pdf</a>
@@ -10667,84 +10638,84 @@
 <a href="texmf-dist/doc/fonts/inconsolata/varqu-noupq-crop.pdf">varqu-noupq-crop.pdf</a>.
 </small></li>
 
-<li id="index"><b><a href="texmf-dist/doc/latex/index">index</a></b><small>
+<li id="index"><b><a href="texmf-dist/doc/latex/index/">index</a></b><small>
 (<a href="https://ctan.org/pkg/index">CTAN</a>):
-Extended index for LaTeX including multiple indexes
+Extended index for LaTeX including multiple indexes. 
 <a href="texmf-dist/doc/latex/index/index.pdf">index.pdf</a>.
 </small></li>
 
-<li id="indextools"><b><a href="texmf-dist/doc/latex/indextools">indextools</a></b><small>
+<li id="indextools"><b><a href="texmf-dist/doc/latex/indextools/">indextools</a></b><small>
 (<a href="https://ctan.org/pkg/indextools">CTAN</a>):
-Producing multiple indices
+Producing multiple indices. 
 <a href="texmf-dist/doc/latex/indextools/indextools.pdf">indextools.pdf</a>
 <a href="texmf-dist/doc/latex/indextools/issue5.pdf">issue5.pdf</a>.
 </small></li>
 
-<li id="infwarerr"><b><a href="texmf-dist/doc/latex/infwarerr">infwarerr</a></b><small>
+<li id="infwarerr"><b><a href="texmf-dist/doc/latex/infwarerr/">infwarerr</a></b><small>
 (<a href="https://ctan.org/pkg/infwarerr">CTAN</a>):
-Complete set of information/warning/error message macros
+Complete set of information/warning/error message macros. 
 <a href="texmf-dist/doc/latex/infwarerr/infwarerr.pdf">infwarerr.pdf</a>.
 </small></li>
 
-<li id="inkpaper"><b><a href="texmf-dist/doc/latex/inkpaper">inkpaper</a></b><small>
+<li id="inkpaper"><b><a href="texmf-dist/doc/latex/inkpaper/">inkpaper</a></b><small>
 (<a href="https://ctan.org/pkg/inkpaper">CTAN</a>):
-A mathematical paper template
+A mathematical paper template. 
 <a href="texmf-dist/doc/latex/inkpaper/inkpaper-cn.pdf">inkpaper-cn.pdf</a> (zh-cn) 
 <a href="texmf-dist/doc/latex/inkpaper/inkpaper-en.pdf">inkpaper-en.pdf</a>.
 </small></li>
 
-<li id="inline-images"><b><a href="texmf-dist/doc/latex/inline-images/examples">inline-images</a></b><small>
+<li id="inline-images"><b><a href="texmf-dist/doc/latex/inline-images/">inline-images</a></b><small>
 (<a href="https://ctan.org/pkg/inline-images">CTAN</a>):
-Inline images in base64 encoding
+Inline images in base64 encoding. 
 <a href="texmf-dist/doc/latex/inline-images/examples/example.pdf">example.pdf</a>.
 </small></li>
 
-<li id="inlinedef"><b><a href="texmf-dist/doc/latex/inlinedef">inlinedef</a></b><small>
+<li id="inlinedef"><b><a href="texmf-dist/doc/latex/inlinedef/">inlinedef</a></b><small>
 (<a href="https://ctan.org/pkg/inlinedef">CTAN</a>):
-Inline expansions within definitions
+Inline expansions within definitions. 
 <a href="texmf-dist/doc/latex/inlinedef/inlinedef.pdf">inlinedef.pdf</a>.
 </small></li>
 
-<li id="inputenx"><b><a href="texmf-dist/doc/latex/inputenx">inputenx</a></b><small>
+<li id="inputenx"><b><a href="texmf-dist/doc/latex/inputenx/">inputenx</a></b><small>
 (<a href="https://ctan.org/pkg/inputenx">CTAN</a>):
-Enhanced input encoding handling
+Enhanced input encoding handling. 
 <a href="texmf-dist/doc/latex/inputenx/inputenx.pdf">inputenx.pdf</a>.
 </small></li>
 
-<li id="inputtrc"><b><a href="texmf-dist/doc/latex/inputtrc">inputtrc</a></b><small>
+<li id="inputtrc"><b><a href="texmf-dist/doc/latex/inputtrc/">inputtrc</a></b><small>
 (<a href="https://ctan.org/pkg/inputtrc">CTAN</a>):
-Trace which file loads which
+Trace which file loads which. 
 <a href="texmf-dist/doc/latex/inputtrc/README.pdf">README.pdf</a>
 <a href="texmf-dist/doc/latex/inputtrc/inputtrc.pdf">inputtrc.pdf</a>.
 </small></li>
 
-<li id="inriafonts"><b><a href="texmf-dist/doc/fonts/inriafonts">inriafonts</a></b><small>
+<li id="inriafonts"><b><a href="texmf-dist/doc/fonts/inriafonts/">inriafonts</a></b><small>
 (<a href="https://ctan.org/pkg/inriafonts">CTAN</a>):
-Inria fonts with LaTeX support
+Inria fonts with LaTeX support. 
 <a href="texmf-dist/doc/fonts/inriafonts/inriafonts.pdf">inriafonts.pdf</a>.
 </small></li>
 
-<li id="insbox"><b><a href="texmf-dist/doc/generic/insbox">insbox</a></b><small>
+<li id="insbox"><b><a href="texmf-dist/doc/generic/insbox/">insbox</a></b><small>
 (<a href="https://ctan.org/pkg/insbox">CTAN</a>):
-Insert pictures/boxes into paragraphs
+Insert pictures/boxes into paragraphs. 
 <a href="texmf-dist/doc/generic/insbox/demo.pdf">demo.pdf</a>.
 </small></li>
 
-<li id="installfont"><b><a href="texmf-dist/doc/support/installfont">installfont</a></b><small>
+<li id="installfont"><b><a href="texmf-dist/doc/support/installfont/">installfont</a></b><small>
 (<a href="https://ctan.org/pkg/installfont">CTAN</a>):
-A bash script for installing a LaTeX font family
+A bash script for installing a LaTeX font family. 
 <a href="texmf-dist/doc/support/installfont/installfont.pdf">installfont.pdf</a>.
 </small></li>
 
-<li id="intcalc"><b><a href="texmf-dist/doc/latex/intcalc">intcalc</a></b><small>
+<li id="intcalc"><b><a href="texmf-dist/doc/latex/intcalc/">intcalc</a></b><small>
 (<a href="https://ctan.org/pkg/intcalc">CTAN</a>):
-Expandable arithmetic operations with integers
+Expandable arithmetic operations with integers. 
 <a href="texmf-dist/doc/latex/intcalc/intcalc.pdf">intcalc.pdf</a>.
 </small></li>
 
-<li id="interactiveworkbook"><b><a href="texmf-dist/doc/latex/interactiveworkbook/documentation">interactiveworkbook</a></b><small>
+<li id="interactiveworkbook"><b><a href="texmf-dist/doc/latex/interactiveworkbook/">interactiveworkbook</a></b><small>
 (<a href="https://ctan.org/pkg/interactiveworkbook">CTAN</a>):
-LaTeX-based interactive PDF on the Web
+LaTeX-based interactive PDF on the Web. 
 <a href="texmf-dist/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.pdf">interactiveworkbookmanual.pdf</a>
 <a href="texmf-dist/doc/latex/interactiveworkbook/samplefiles/check.pdf">check.pdf</a>
 <a href="texmf-dist/doc/latex/interactiveworkbook/samplefiles/field.pdf">field.pdf</a>
@@ -10753,74 +10724,74 @@
 <a href="texmf-dist/doc/latex/interactiveworkbook/samplefiles/radio.pdf">radio.pdf</a>.
 </small></li>
 
-<li id="interchar"><b><a href="texmf-dist/doc/xelatex/interchar">interchar</a></b><small>
+<li id="interchar"><b><a href="texmf-dist/doc/xelatex/interchar/">interchar</a></b><small>
 (<a href="https://ctan.org/pkg/interchar">CTAN</a>):
-Managing character class schemes in XeTeX
+Managing character class schemes in XeTeX. 
 <a href="texmf-dist/doc/xelatex/interchar/interchar.pdf">interchar.pdf</a>
 <a href="texmf-dist/doc/xelatex/interchar/interchardemo1.pdf">interchardemo1.pdf</a>
 <a href="texmf-dist/doc/xelatex/interchar/interchartest.pdf">interchartest.pdf</a>.
 </small></li>
 
-<li id="interfaces"><b><a href="texmf-dist/doc/latex/interfaces">interfaces</a></b><small>
+<li id="interfaces"><b><a href="texmf-dist/doc/latex/interfaces/">interfaces</a></b><small>
 (<a href="https://ctan.org/pkg/interfaces">CTAN</a>):
-Set parameters for other packages, conveniently
+Set parameters for other packages, conveniently. 
 <a href="texmf-dist/doc/latex/interfaces/interfaces.pdf">interfaces.pdf</a>.
 </small></li>
 
-<li id="interpreter"><b><a href="texmf-dist/doc/luatex/interpreter">interpreter</a></b><small>
+<li id="interpreter"><b><a href="texmf-dist/doc/luatex/interpreter/">interpreter</a></b><small>
 (<a href="https://ctan.org/pkg/interpreter">CTAN</a>):
-Translate input files on the fly
+Translate input files on the fly. 
 <a href="texmf-dist/doc/luatex/interpreter/interpreter-doc.pdf">interpreter-doc.pdf</a>.
 </small></li>
 
-<li id="interval"><b><a href="texmf-dist/doc/latex/interval">interval</a></b><small>
+<li id="interval"><b><a href="texmf-dist/doc/latex/interval/">interval</a></b><small>
 (<a href="https://ctan.org/pkg/interval">CTAN</a>):
-Format mathematical intervals, ensuring proper spacing
+Format mathematical intervals, ensuring proper spacing. 
 <a href="texmf-dist/doc/latex/interval/interval.pdf">interval.pdf</a>.
 </small></li>
 
-<li id="intopdf"><b><a href="texmf-dist/doc/latex/intopdf">intopdf</a></b><small>
+<li id="intopdf"><b><a href="texmf-dist/doc/latex/intopdf/">intopdf</a></b><small>
 (<a href="https://ctan.org/pkg/intopdf">CTAN</a>):
-Embed non-PDF files into PDF with hyperlink
+Embed non-PDF files into PDF with hyperlink. 
 <a href="texmf-dist/doc/latex/intopdf/intopdf.pdf">intopdf.pdf</a>.
 </small></li>
 
-<li id="intro-scientific"><b><a href="texmf-dist/doc/latex/intro-scientific">intro-scientific</a></b><small>
+<li id="intro-scientific"><b><a href="texmf-dist/doc/latex/intro-scientific/">intro-scientific</a></b><small>
 (<a href="https://ctan.org/pkg/intro-scientific">CTAN</a>):
-Introducing scientific/mathematical documents using LaTeX
+Introducing scientific/mathematical documents using LaTeX. 
 <a href="texmf-dist/doc/latex/intro-scientific/earth-moon.pdf">earth-moon.pdf</a>
 <a href="texmf-dist/doc/latex/intro-scientific/scidoc.pdf">scidoc.pdf</a>.
 </small></li>
 
-<li id="inversepath"><b><a href="texmf-dist/doc/latex/inversepath">inversepath</a></b><small>
+<li id="inversepath"><b><a href="texmf-dist/doc/latex/inversepath/">inversepath</a></b><small>
 (<a href="https://ctan.org/pkg/inversepath">CTAN</a>):
-Calculate inverse file paths
+Calculate inverse file paths. 
 <a href="texmf-dist/doc/latex/inversepath/inversepath.pdf">inversepath.pdf</a>.
 </small></li>
 
-<li id="invoice"><b><a href="texmf-dist/doc/latex/invoice">invoice</a></b><small>
+<li id="invoice"><b><a href="texmf-dist/doc/latex/invoice/">invoice</a></b><small>
 (<a href="https://ctan.org/pkg/invoice">CTAN</a>):
-Generate invoices
+Generate invoices. 
 <a href="texmf-dist/doc/latex/invoice/invoice.pdf">invoice.pdf</a>.
 </small></li>
 
-<li id="invoice-class"><b><a href="texmf-dist/doc/latex/invoice-class/doc">invoice-class</a></b><small>
+<li id="invoice-class"><b><a href="texmf-dist/doc/latex/invoice-class/">invoice-class</a></b><small>
 (<a href="https://ctan.org/pkg/invoice-class">CTAN</a>):
-Produces a standard US invoice from a CSV file
+Produces a standard US invoice from a CSV file. 
 <a href="texmf-dist/doc/latex/invoice-class/doc/duck-invoice.pdf">duck-invoice.pdf</a>
 <a href="texmf-dist/doc/latex/invoice-class/doc/ducks.pdf">ducks.pdf</a>
 <a href="texmf-dist/doc/latex/invoice-class/doc/invoice-class.pdf">invoice-class.pdf</a>.
 </small></li>
 
-<li id="invoice2"><b><a href="texmf-dist/doc/latex/invoice2">invoice2</a></b><small>
+<li id="invoice2"><b><a href="texmf-dist/doc/latex/invoice2/">invoice2</a></b><small>
 (<a href="https://ctan.org/pkg/invoice2">CTAN</a>):
-Intelligent invoices with LaTeX3
+Intelligent invoices with LaTeX3. 
 <a href="texmf-dist/doc/latex/invoice2/invoice2.pdf">invoice2.pdf</a>.
 </small></li>
 
-<li id="iodhbwm"><b><a href="texmf-dist/doc/latex/iodhbwm/examples/abstract">iodhbwm</a></b><small>
+<li id="iodhbwm"><b><a href="texmf-dist/doc/latex/iodhbwm/">iodhbwm</a></b><small>
 (<a href="https://ctan.org/pkg/iodhbwm">CTAN</a>):
-Unofficial template of the DHBW Mannheim
+Unofficial template of the DHBW Mannheim. 
 <a href="texmf-dist/doc/latex/iodhbwm/examples/abstract/iodhbwm-auto-sections-with-abstract.pdf">iodhbwm-auto-sections-with-abstract.pdf</a>
 <a href="texmf-dist/doc/latex/iodhbwm/examples/acronyms/iodhbwm-acro.pdf">iodhbwm-acro.pdf</a>
 <a href="texmf-dist/doc/latex/iodhbwm/examples/appendix/iodhbwm-appendix-auto.pdf">iodhbwm-appendix-auto.pdf</a>
@@ -10844,65 +10815,65 @@
 <a href="texmf-dist/doc/latex/iodhbwm/iodhbwm.pdf">iodhbwm.pdf</a> (de).
 </small></li>
 
-<li id="ionumbers"><b><a href="texmf-dist/doc/latex/ionumbers">ionumbers</a></b><small>
+<li id="ionumbers"><b><a href="texmf-dist/doc/latex/ionumbers/">ionumbers</a></b><small>
 (<a href="https://ctan.org/pkg/ionumbers">CTAN</a>):
-Restyle numbers in maths mode
+Restyle numbers in maths mode. 
 <a href="texmf-dist/doc/latex/ionumbers/ionumbers.pdf">ionumbers.pdf</a>
 <a href="texmf-dist/doc/latex/ionumbers/ionumbers_test.pdf">ionumbers_test.pdf</a>.
 </small></li>
 
-<li id="iopart-num"><b><a href="texmf-dist/doc/bibtex/iopart-num">iopart-num</a></b><small>
+<li id="iopart-num"><b><a href="texmf-dist/doc/bibtex/iopart-num/">iopart-num</a></b><small>
 (<a href="https://ctan.org/pkg/iopart-num">CTAN</a>):
-Numeric citation style for IOP journals
+Numeric citation style for IOP journals. 
 <a href="texmf-dist/doc/bibtex/iopart-num/iopart-num.pdf">iopart-num.pdf</a>.
 </small></li>
 
-<li id="ipaex-type1"><b><a href="texmf-dist/doc/fonts/ipaex-type1">ipaex-type1</a></b><small>
+<li id="ipaex-type1"><b><a href="texmf-dist/doc/fonts/ipaex-type1/">ipaex-type1</a></b><small>
 (<a href="https://ctan.org/pkg/ipaex-type1">CTAN</a>):
-IPAex fonts converted to Type-1 format Unicode subfonts
+IPAex fonts converted to Type-1 format Unicode subfonts. 
 <a href="texmf-dist/doc/fonts/ipaex-type1/sample-ipaex-type1.pdf">sample-ipaex-type1.pdf</a> (ja).
 </small></li>
 
-<li id="iscram"><b><a href="texmf-dist/doc/latex/iscram">iscram</a></b><small>
+<li id="iscram"><b><a href="texmf-dist/doc/latex/iscram/">iscram</a></b><small>
 (<a href="https://ctan.org/pkg/iscram">CTAN</a>):
-A LaTeX class to publish article to ISCRAM conferences
+A LaTeX class to publish article to ISCRAM conferences. 
 <a href="texmf-dist/doc/latex/iscram/HMI.pdf">HMI.pdf</a>
 <a href="texmf-dist/doc/latex/iscram/iscram-class-doc.pdf">iscram-class-doc.pdf</a>.
 </small></li>
 
-<li id="iso"><b><a href="texmf-dist/doc/latex/iso">iso</a></b><small>
+<li id="iso"><b><a href="texmf-dist/doc/latex/iso/">iso</a></b><small>
 (<a href="https://ctan.org/pkg/iso">CTAN</a>):
-Generic ISO standards typesetting macros
+Generic ISO standards typesetting macros. 
 <a href="texmf-dist/doc/latex/iso/iso4ht.pdf">iso4ht.pdf</a>
 <a href="texmf-dist/doc/latex/iso/isoe.pdf">isoe.pdf</a>
 <a href="texmf-dist/doc/latex/iso/isoman.pdf">isoman.pdf</a>.
 </small></li>
 
-<li id="iso10303"><b><a href="texmf-dist/doc/latex/iso10303">iso10303</a></b><small>
+<li id="iso10303"><b><a href="texmf-dist/doc/latex/iso10303/">iso10303</a></b><small>
 (<a href="https://ctan.org/pkg/iso10303">CTAN</a>):
-Typesetting the STEP standards
+Typesett