diff options
-rw-r--r-- | Build/source/build-aux/texinfo.tex | 270 | ||||
-rw-r--r-- | Master/doc.html | 13076 | ||||
-rw-r--r-- | Master/texmf-dist/tex/texinfo/texinfo.tex | 270 |
3 files changed, 6838 insertions, 6778 deletions
diff --git a/Build/source/build-aux/texinfo.tex b/Build/source/build-aux/texinfo.tex index 2b7b31b34a9..d3136db38aa 100644 --- a/Build/source/build-aux/texinfo.tex +++ b/Build/source/build-aux/texinfo.tex @@ -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@gnu.org. Please include including a +% Send bug reports to bug-texinfo@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@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 @@ where each line of input produces a line of output.} \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 @@ where each line of input produces a line of output.} \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 @@ end \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 @@ end \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,37 +3945,34 @@ end \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 \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 % 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 @@ end \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,8 +3992,22 @@ end \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 } @@ -5139,64 +5198,66 @@ end \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}% - % - \def\LaTeX{LaTeX}% - \def\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}% + \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}% + % + \do\LaTeX{LaTeX}% + \do\TeX{TeX}% + % + % 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,7 +5272,10 @@ end \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}}% @@ -6423,18 +6487,16 @@ might help (with 'rm \jobname.?? \jobname.??s')% \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 @@ might help (with 'rm \jobname.?? \jobname.??s')% % \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@matematik.su.se> + % start on an odd page, unlike chapters. \contentsalignmacro \immediate\closeout\tocfile % @@ -6816,6 +6876,9 @@ might help (with 'rm \jobname.?? \jobname.??s')% % % 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 @@ might help (with 'rm \jobname.?? \jobname.??s')% \fi \closein 1 \endgroup - \lastnegativepageno = \pageno - \global\pageno = \savepageno + \contentsendroman } % And just the chapters. @@ -6874,10 +6936,20 @@ might help (with 'rm \jobname.?? \jobname.??s')% \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 @@ might help (with 'rm \jobname.?? \jobname.??s')% \wlog{texinfo.tex: doing @verbatiminclude of #1^^J}% \edef\tmp{\noexpand\input #1 } \expandafter - }\tmp + }\expandafter\starttabbox\tmp\egroup \afterenvbreak }% } @@ -10725,6 +10797,8 @@ directory should work if nowhere else does.} \DeclareUnicodeCharacter{0233}{\=y}% \DeclareUnicodeCharacter{0237}{\dotless{j}}% % + \DeclareUnicodeCharacter{02BC}{'}% + % \DeclareUnicodeCharacter{02DB}{\ogonek{ }}% % % Greek letters upper case diff --git a/Master/doc.html b/Master/doc.html index 2001f931018..fcf3f59b316 100644 --- a/Master/doc.html +++ b/Master/doc.html @@ -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 @@ here. <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 @@ Generalising mathematical index sets <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 @@ Macros to print two-up <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 @@ Macros for Manuscript Preparation for AAS Journals <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 @@ Typeset technical and scientific Brazilian documents based on ABNT rules <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 @@ Class for typesetting publications of ACM <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 @@ Typeset acronyms <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 @@ Typeset AIAA conference papers <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 @@ Arabic-Latin Modern Fixed extends TeX-Gyre Latin Modern Mono 10 Regular to full <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 @@ AMS document classes for LaTeX <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 @@ User documentation for AMS document classes <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 @@ TeX fonts from the American Mathematical Society <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 @@ AMS mathematical facilities for LaTeX <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,159 +604,158 @@ A LaTeX-based replacement for BibTeX <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> <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> <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 @@ The book "Apprendre a programmer en TeX" <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,44 +796,44 @@ Proofs in appendix <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> <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 @@ Automation of LaTeX compilation <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,177 +891,177 @@ A collection of archaic fonts <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> <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> <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,18 +1072,18 @@ Commands for using Asymptote figures <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> <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 @@ Asymptote FAQ (Chinese translation) <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 @@ Adds self-archiving information to scientific papers <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 Preprocessor that generates note-spacing commands for MusiXTeX scores <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 @@ Feynman diagrams in a LaTeX document <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 @@ Babel support for documents written in Greek <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 @@ Support for typesetting bagpipe music <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 @@ Draw barcodes with Lua <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 @@ Creating colourful boxes with logos <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,66 +1848,66 @@ A LaTeX class for producing presentations and slides <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> <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 @@ Dark color themes for beamer <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 @@ Convenient mode selection in Beamer documents <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,163 +1957,162 @@ A beamer theme with 4 colour palettes <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> <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> <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> <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 @@ Class for producing books for the publisher "Teubner Verlag" <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 @@ Command line application to convert .bib files to glossaries-extra.sty resource <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,39 +2295,39 @@ Sophisticated Bibliographies in LaTeX <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> <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 collection of BibLaTeX styles for German prehistory <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 @@ Manage book edited in other entry type <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 set of BibLaTeX implementations of chemistry-related bibliography styles <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 @@ Chicago style files for BibLaTeX <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 @@ Humanities styles for BibLaTeX <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 @@ BibLaTeX styles for use in German humanities <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,55 +2563,55 @@ MLA style files for BibLaTeX <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> <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,107 +2619,107 @@ BibLaTeX styles inspired by the Oxford Guide to Style <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> <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 @@ Format bible citations <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 @@ Bidi-aware shipout macros <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 @@ Drawing binary trees using TikZ <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,73 +3000,73 @@ Upscale or downscale all pages of a document <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> <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,213 +3092,219 @@ A class for book covers and dust jackets <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> <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 @@ Business cards with QR-Code <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 @@ Create illustrations for network protocol specifications <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,55 +3473,55 @@ Multipage tables with wide range of features <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> <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 @@ Customising captions in floating environments <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 @@ Generate changebars in LaTeX documents <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,208 +3873,208 @@ Typeset and cross-reference chemical schemes based on TikZ code <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> <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 @@ CJK language support <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 @@ CJK language support <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,422 +4146,422 @@ A "classically styled" thesis package <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> <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> <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> <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> <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 set of tools for generating conference proceedings <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 @@ The ConTeXt macro package <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 module for preparing presentations <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 @@ Scripts for working with crossref.org <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 @@ Support for Czech/Slovak languages <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 LaTeX tutorial <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 @@ CWEB for ANSI-C/C++ compilers <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 @@ Support for Cyrillic fonts in LaTeX <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 @@ Cyrillic bibtex and makeindex <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,31 +5616,31 @@ Tools to load and manipulate data <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> <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,411 +5651,411 @@ Formats for dates, times and time zones <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> <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> <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> <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 @@ Books and tutorials from the "Dickimaw LaTeX Series" <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 @@ Macros related to "Introdktion til LaTeX" <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,262 +6236,262 @@ Create graphs within LaTeX using the dot2tex tool <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> <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> <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 @@ DVI to Laserjet output <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,45 +6523,44 @@ An extended version of dvipdfm <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> <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> <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 simple way to create dynamic blocks for Beamer <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 @@ Construct Dynkin tree diagrams <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 @@ Comprehensive LaTeX support for French-language typesetting <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 @@ BibTeX style for economics papers <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 @@ BibTeX support for submitting to Economics journals <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 @@ LaTeX thesis template for the Universidade Federal de Vicosa (UFV), Brazil <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,69 +6916,69 @@ Typeset scholarly editions <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> <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 @@ Elsevier updated LaTeX templates <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 @@ Class for articles for submission to Elsevier journals <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,219 +7160,217 @@ Helps to type the pronunciation of English words <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> <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,104 +7381,103 @@ Typeset exams with scrambled questions and answers <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> <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 @@ Simple, lightweight template for scientific documents <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 @@ An extended version of TeX, from the NTS project <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 @@ Unofficial class for European curricula vitae <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,134 +7637,134 @@ Exam class, focused on collaborative authoring <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> <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> <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 @@ Exercises and solutions from the same source, into a book <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,109 +7806,109 @@ Extend the standard classes' size options <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> <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 @@ Include a wide range of material in PDF tooltips <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 @@ MetaPost macros for 3D <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,42 +8052,42 @@ A font for in-text Feynman diagrams <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> <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 @@ Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech <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,134 +8116,134 @@ German HTML beamer presentation on nicetext and morehype <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> <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 @@ Thesis class and template for Masaryk University (Brno, Czech Republic) <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 @@ Typeset flipbook animations, in the corners of documents <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 @@ Create text frames for posters, brochures or magazines <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 @@ Help with installing fonts for TeX and LaTeX <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,193 +8605,192 @@ A front-end to fontspec, for selected fonts with math support <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> <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> <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 collection of LaTeX packages <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 @@ Create a frontispiece for Italian theses <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 @@ Get first and last words of a page <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 @@ Pedigree and genealogical tree diagrams <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 @@ Generate Japanese-style crop marks <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 @@ Create glossaries and lists of acronyms <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 @@ An extension to the glossaries package <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 @@ BibTeX styles to format according to GOST <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 @@ The LaTeX standard graphics bundle <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 @@ Insert a graphical image as a background <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 @@ LICR macros and encoding definition files for Greek <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 @@ Greek encoding support for inputenc <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 @@ Free form slides with blocks placed on a grid <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 @@ Typeset EAN barcodes using TeX rules, only <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,39 +9881,38 @@ Bundle of classes for "La Gazette des Mathematiciens" <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> <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 Collection of LaTeX classes, style files, and example documents for academic m <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 @@ Create handout for auditors of a talk <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,188 +10082,188 @@ Pre-defined high energy particle names <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> <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) <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> <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 @@ Rotating caption and object of floats independently <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,51 +10376,49 @@ Extensive support for hypertext in LaTeX <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> <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,300 +10426,296 @@ Basic support for multiple languages in Plain TeX <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> <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> <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> <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> <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 @@ LaTeX-based interactive PDF on the Web <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 @@ Unofficial template of the DHBW Mannheim <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 +Typesetting the STEP standards. <a href="texmf-dist/doc/latex/iso10303/step4ht.pdf">step4ht.pdf</a> <a href="texmf-dist/doc/latex/iso10303/stepe.pdf">stepe.pdf</a> <a href="texmf-dist/doc/latex/iso10303/stepman.pdf">stepman.pdf</a>. </small></li> -<li id="isodate"><b><a href="texmf-dist/doc/latex/isodate">isodate</a></b><small> +<li id="isodate"><b><a href="texmf-dist/doc/latex/isodate/">isodate</a></b><small> (<a href="https://ctan.org/pkg/isodate">CTAN</a>): -Tune the output format of dates according to language +Tune the output format of dates according to language. <a href="texmf-dist/doc/latex/isodate/isodate.pdf">isodate.pdf</a> <a href="texmf-dist/doc/latex/isodate/isodateo.pdf">isodateo.pdf</a> <a href="texmf-dist/doc/latex/isodate/testdate.pdf">testdate.pdf</a>. </small></li> -<li id="isodoc"><b><a href="texmf-dist/doc/latex/isodoc">isodoc</a></b><small> +<li id="isodoc"><b><a href="texmf-dist/doc/latex/isodoc/">isodoc</a></b><small> (<a href="https://ctan.org/pkg/isodoc">CTAN</a>): -A LaTeX class for typesetting letters and invoices +A LaTeX class for typesetting letters and invoices. <a href="texmf-dist/doc/latex/isodoc/isodoc.pdf">isodoc.pdf</a>. </small></li> -<li id="isomath"><b><a href="texmf-dist/doc/latex/isomath">isomath</a></b><small> +<li id="isomath"><b><a href="texmf-dist/doc/latex/isomath/">isomath</a></b><small> (<a href="https://ctan.org/pkg/isomath">CTAN</a>): -Mathematics style for science and technology +Mathematics style for science and technology. <a href="texmf-dist/doc/latex/isomath/README.html">README.html</a> <a href="texmf-dist/doc/latex/isomath/isomath-test.pdf">isomath-test.pdf</a> <a href="texmf-dist/doc/latex/isomath/isomath.html">isomath.html</a> @@ -10910,54 +10881,54 @@ Mathematics style for science and technology <a href="texmf-dist/doc/latex/isomath/isomath.sty.html">isomath.sty.html</a>. </small></li> -<li id="isonums"><b><a href="texmf-dist/doc/latex/isonums">isonums</a></b><small> +<li id="isonums"><b><a href="texmf-dist/doc/latex/isonums/">isonums</a></b><small> (<a href="https://ctan.org/pkg/isonums">CTAN</a>): -Display numbers in maths mode according to ISO 31-0 +Display numbers in maths mode according to ISO 31-0. <a href="texmf-dist/doc/latex/isonums/isonums.pdf">isonums.pdf</a>. </small></li> -<li id="isopt"><b><a href="texmf-dist/doc/latex/isopt">isopt</a></b><small> +<li id="isopt"><b><a href="texmf-dist/doc/latex/isopt/">isopt</a></b><small> (<a href="https://ctan.org/pkg/isopt">CTAN</a>): -Writing a TeX length with a space between number and unit +Writing a TeX length with a space between number and unit. <a href="texmf-dist/doc/latex/isopt/isopt-doc.pdf">isopt-doc.pdf</a>. </small></li> -<li id="isorot"><b><a href="texmf-dist/doc/latex/isorot">isorot</a></b><small> +<li id="isorot"><b><a href="texmf-dist/doc/latex/isorot/">isorot</a></b><small> (<a href="https://ctan.org/pkg/isorot">CTAN</a>): -Rotation of document elements +Rotation of document elements. <a href="texmf-dist/doc/latex/isorot/rotman.pdf">rotman.pdf</a>. </small></li> -<li id="issuulinks"><b><a href="texmf-dist/doc/latex/issuulinks">issuulinks</a></b><small> +<li id="issuulinks"><b><a href="texmf-dist/doc/latex/issuulinks/">issuulinks</a></b><small> (<a href="https://ctan.org/pkg/issuulinks">CTAN</a>): -Produce external links instead of internal ones +Produce external links instead of internal ones. <a href="texmf-dist/doc/latex/issuulinks/issuulinks.pdf">issuulinks.pdf</a> <a href="texmf-dist/doc/latex/issuulinks/sample.pdf">sample.pdf</a>. </small></li> -<li id="istgame"><b><a href="texmf-dist/doc/latex/istgame">istgame</a></b><small> +<li id="istgame"><b><a href="texmf-dist/doc/latex/istgame/">istgame</a></b><small> (<a href="https://ctan.org/pkg/istgame">CTAN</a>): -Draw Game Trees with TikZ +Draw Game Trees with TikZ. <a href="texmf-dist/doc/latex/istgame/istgame-doc.pdf">istgame-doc.pdf</a>. </small></li> -<li id="itnumpar"><b><a href="texmf-dist/doc/latex/itnumpar">itnumpar</a></b><small> +<li id="itnumpar"><b><a href="texmf-dist/doc/latex/itnumpar/">itnumpar</a></b><small> (<a href="https://ctan.org/pkg/itnumpar">CTAN</a>): -Spell numbers in words (Italian) +Spell numbers in words (Italian). <a href="texmf-dist/doc/latex/itnumpar/itnumpar.pdf">itnumpar.pdf</a>. </small></li> -<li id="iwhdp"><b><a href="texmf-dist/doc/latex/iwhdp">iwhdp</a></b><small> +<li id="iwhdp"><b><a href="texmf-dist/doc/latex/iwhdp/">iwhdp</a></b><small> (<a href="https://ctan.org/pkg/iwhdp">CTAN</a>): -Halle Institute for Economic Research (IWH) Discussion Papers +Halle Institute for Economic Research (IWH) Discussion Papers. <a href="texmf-dist/doc/latex/iwhdp/Back_2015.pdf">Back_2015.pdf</a> <a href="texmf-dist/doc/latex/iwhdp/Deckblatt_2015.pdf">Deckblatt_2015.pdf</a> <a href="texmf-dist/doc/latex/iwhdp/iwhdp_Manual.pdf">iwhdp_Manual.pdf</a> (de). </small></li> -<li id="iwona"><b><a href="texmf-dist/doc/fonts/iwona">iwona</a></b><small> +<li id="iwona"><b><a href="texmf-dist/doc/fonts/iwona/">iwona</a></b><small> (<a href="https://ctan.org/pkg/iwona">CTAN</a>): -A two-element sans-serif font +A two-element sans-serif font. <a href="texmf-dist/doc/fonts/iwona/iwona-info.pdf">iwona-info.pdf</a>. </small></li> @@ -10965,32 +10936,32 @@ A two-element sans-serif font <h2 id="letter-J">J</h2> -<ol start="1470"> +<ol start="1471"> -<li id="jablantile"><b><a href="texmf-dist/doc/fonts/jablantile">jablantile</a></b><small> +<li id="jablantile"><b><a href="texmf-dist/doc/fonts/jablantile/">jablantile</a></b><small> (<a href="https://ctan.org/pkg/jablantile">CTAN</a>): -Metafont version of tiles in the style of Slavik Jablan +Metafont version of tiles in the style of Slavik Jablan. <a href="texmf-dist/doc/fonts/jablantile/jablantile.pdf">jablantile.pdf</a>. </small></li> -<li id="jacow"><b><a href="texmf-dist/doc/latex/jacow">jacow</a></b><small> +<li id="jacow"><b><a href="texmf-dist/doc/latex/jacow/">jacow</a></b><small> (<a href="https://ctan.org/pkg/jacow">CTAN</a>): -The "jacow.cls" class is used for submissions to the proceedings of conferences on JACoW.org +The "jacow.cls" class is used for submissions to the proceedings of conferences on JACoW.org. <a href="texmf-dist/doc/latex/jacow/JACoW_LaTeX_A4.pdf">JACoW_LaTeX_A4.pdf</a> <a href="texmf-dist/doc/latex/jacow/JACoW_LaTeX_Letter.pdf">JACoW_LaTeX_Letter.pdf</a> <a href="texmf-dist/doc/latex/jacow/JACpic_mc.pdf">JACpic_mc.pdf</a> <a href="texmf-dist/doc/latex/jacow/jacow-collaboration.pdf">jacow-collaboration.pdf</a>. </small></li> -<li id="jadetex"><b><a href="texmf-dist/doc/otherformats/jadetex/base">jadetex</a></b><small> +<li id="jadetex"><b><a href="texmf-dist/doc/otherformats/jadetex/base/">jadetex</a></b><small> (<a href="https://ctan.org/pkg/jadetex">CTAN</a>): -Macros supporting Jade DSSSL output +Macros supporting Jade DSSSL output. <a href="texmf-dist/doc/otherformats/jadetex/base/index.html">index.html</a>. </small></li> -<li id="jamtimes"><b><a href="texmf-dist/doc/latex/jamtimes">jamtimes</a></b><small> +<li id="jamtimes"><b><a href="texmf-dist/doc/latex/jamtimes/">jamtimes</a></b><small> (<a href="https://ctan.org/pkg/jamtimes">CTAN</a>): -Expanded Times Roman fonts +Expanded Times Roman fonts. <a href="texmf-dist/doc/latex/jamtimes/jamtimes.pdf">jamtimes.pdf</a> <a href="texmf-dist/doc/latex/jamtimes/mathsample.pdf">mathsample.pdf</a> <a href="texmf-dist/doc/latex/jamtimes/mathsample_ps.pdf">mathsample_ps.pdf</a> @@ -10998,27 +10969,27 @@ Expanded Times Roman fonts <a href="texmf-dist/doc/latex/jamtimes/textsample_ps.pdf">textsample_ps.pdf</a>. </small></li> -<li id="jigsaw"><b><a href="texmf-dist/doc/latex/jigsaw">jigsaw</a></b><small> +<li id="jigsaw"><b><a href="texmf-dist/doc/latex/jigsaw/">jigsaw</a></b><small> (<a href="https://ctan.org/pkg/jigsaw">CTAN</a>): -Draw jigsaw pieces with TikZ +Draw jigsaw pieces with TikZ. <a href="texmf-dist/doc/latex/jigsaw/jigsaw-doc.pdf">jigsaw-doc.pdf</a>. </small></li> -<li id="jkmath"><b><a href="texmf-dist/doc/latex/jkmath">jkmath</a></b><small> +<li id="jkmath"><b><a href="texmf-dist/doc/latex/jkmath/">jkmath</a></b><small> (<a href="https://ctan.org/pkg/jkmath">CTAN</a>): -Macros for mathematics that make the code more readable +Macros for mathematics that make the code more readable. <a href="texmf-dist/doc/latex/jkmath/jkmath.pdf">jkmath.pdf</a>. </small></li> -<li id="jlabels"><b><a href="texmf-dist/doc/latex/jlabels">jlabels</a></b><small> +<li id="jlabels"><b><a href="texmf-dist/doc/latex/jlabels/">jlabels</a></b><small> (<a href="https://ctan.org/pkg/jlabels">CTAN</a>): -Make letter-sized pages of labels +Make letter-sized pages of labels. <a href="texmf-dist/doc/latex/jlabels/jlabels.pdf">jlabels.pdf</a>. </small></li> -<li id="jlreq"><b><a href="texmf-dist/doc/latex/jlreq">jlreq</a></b><small> +<li id="jlreq"><b><a href="texmf-dist/doc/latex/jlreq/">jlreq</a></b><small> (<a href="https://ctan.org/pkg/jlreq">CTAN</a>): -Japanese document class based on requirements for Japanese text layout +Japanese document class based on requirements for Japanese text layout. <a href="texmf-dist/doc/latex/jlreq/jlreq-ja.html">jlreq-ja.html</a> <a href="texmf-dist/doc/latex/jlreq/jlreq-ja.pdf">jlreq-ja.pdf</a> (ja) <a href="texmf-dist/doc/latex/jlreq/jlreq-trimmarks-ja.html">jlreq-trimmarks-ja.html</a> @@ -11027,15 +10998,15 @@ Japanese document class based on requirements for Japanese text layout <a href="texmf-dist/doc/latex/jlreq/jlreq.pdf">jlreq.pdf</a>. </small></li> -<li id="jlreq-deluxe"><b><a href="texmf-dist/doc/platex/jlreq-deluxe">jlreq-deluxe</a></b><small> +<li id="jlreq-deluxe"><b><a href="texmf-dist/doc/platex/jlreq-deluxe/">jlreq-deluxe</a></b><small> (<a href="https://ctan.org/pkg/jlreq-deluxe">CTAN</a>): -Multi-weight Japanese font support for the jlreq class +Multi-weight Japanese font support for the jlreq class. <a href="texmf-dist/doc/platex/jlreq-deluxe/jlreq-deluxe.pdf">jlreq-deluxe.pdf</a> (ja). </small></li> -<li id="jmlr"><b><a href="texmf-dist/doc/latex/jmlr">jmlr</a></b><small> +<li id="jmlr"><b><a href="texmf-dist/doc/latex/jmlr/">jmlr</a></b><small> (<a href="https://ctan.org/pkg/jmlr">CTAN</a>): -Class files for the Journal of Machine Learning Research +Class files for the Journal of Machine Learning Research. <a href="texmf-dist/doc/latex/jmlr/jmlr.pdf">jmlr.pdf</a> <a href="texmf-dist/doc/latex/jmlr/sample-books/jmlrbook-sample.pdf">jmlrbook-sample.pdf</a> <a href="texmf-dist/doc/latex/jmlr/sample-books/proceedings-sample.pdf">proceedings-sample.pdf</a> @@ -11043,15 +11014,15 @@ Class files for the Journal of Machine Learning Research <a href="texmf-dist/doc/latex/jmlr/sample-papers/jmlrwcp-sample.pdf">jmlrwcp-sample.pdf</a>. </small></li> -<li id="jneurosci"><b><a href="texmf-dist/doc/latex/jneurosci">jneurosci</a></b><small> +<li id="jneurosci"><b><a href="texmf-dist/doc/latex/jneurosci/">jneurosci</a></b><small> (<a href="https://ctan.org/pkg/jneurosci">CTAN</a>): -BibTeX style for the Journal of Neuroscience +BibTeX style for the Journal of Neuroscience. <a href="texmf-dist/doc/latex/jneurosci/jneurosci.pdf">jneurosci.pdf</a>. </small></li> -<li id="jnuexam"><b><a href="texmf-dist/doc/latex/jnuexam">jnuexam</a></b><small> +<li id="jnuexam"><b><a href="texmf-dist/doc/latex/jnuexam/">jnuexam</a></b><small> (<a href="https://ctan.org/pkg/jnuexam">CTAN</a>): -Exam class for Jinan University +Exam class for Jinan University. <a href="texmf-dist/doc/latex/jnuexam/exam-a-a3input.pdf">exam-a-a3input.pdf</a> <a href="texmf-dist/doc/latex/jnuexam/exam-a-a3split.pdf">exam-a-a3split.pdf</a> <a href="texmf-dist/doc/latex/jnuexam/exam-a-empty.pdf">exam-a-empty.pdf</a> @@ -11063,15 +11034,15 @@ Exam class for Jinan University <a href="texmf-dist/doc/latex/jnuexam/jnuexam.pdf">jnuexam.pdf</a> (zh). </small></li> -<li id="jpsj"><b><a href="texmf-dist/doc/latex/jpsj">jpsj</a></b><small> +<li id="jpsj"><b><a href="texmf-dist/doc/latex/jpsj/">jpsj</a></b><small> (<a href="https://ctan.org/pkg/jpsj">CTAN</a>): -Document Class for Journal of the Physical Society of Japan +Document Class for Journal of the Physical Society of Japan. <a href="texmf-dist/doc/latex/jpsj/injpsj2.pdf">injpsj2.pdf</a>. </small></li> -<li id="jsclasses"><b><a href="texmf-dist/doc/platex/jsclasses">jsclasses</a></b><small> +<li id="jsclasses"><b><a href="texmf-dist/doc/platex/jsclasses/">jsclasses</a></b><small> (<a href="https://ctan.org/pkg/jsclasses">CTAN</a>): -Classes tailored for use with Japanese +Classes tailored for use with Japanese. <a href="texmf-dist/doc/platex/jsclasses/jsclasses.pdf">jsclasses.pdf</a> (ja) <a href="texmf-dist/doc/platex/jsclasses/jslogo.pdf">jslogo.pdf</a> <a href="texmf-dist/doc/platex/jsclasses/jsverb.pdf">jsverb.pdf</a> (ja) @@ -11079,9 +11050,9 @@ Classes tailored for use with Japanese <a href="texmf-dist/doc/platex/jsclasses/okuverb.pdf">okuverb.pdf</a> (ja). </small></li> -<li id="jslectureplanner"><b><a href="texmf-dist/doc/latex/jslectureplanner/examples/English">jslectureplanner</a></b><small> +<li id="jslectureplanner"><b><a href="texmf-dist/doc/latex/jslectureplanner/">jslectureplanner</a></b><small> (<a href="https://ctan.org/pkg/jslectureplanner">CTAN</a>): -Creation and management of university course material +Creation and management of university course material. <a href="texmf-dist/doc/latex/jslectureplanner/examples/English/lecturebib-english.pdf">lecturebib-english.pdf</a> <a href="texmf-dist/doc/latex/jslectureplanner/examples/English/lecturehandout-english.pdf">lecturehandout-english.pdf</a> <a href="texmf-dist/doc/latex/jslectureplanner/examples/English/lecturepresentation-english.pdf">lecturepresentation-english.pdf</a> @@ -11105,49 +11076,49 @@ Creation and management of university course material <a href="texmf-dist/doc/latex/jslectureplanner/jslectureplanner.pdf">jslectureplanner.pdf</a>. </small></li> -<li id="jumplines"><b><a href="texmf-dist/doc/latex/jumplines">jumplines</a></b><small> +<li id="jumplines"><b><a href="texmf-dist/doc/latex/jumplines/">jumplines</a></b><small> (<a href="https://ctan.org/pkg/jumplines">CTAN</a>): -Articles with teasers and continuation later on +Articles with teasers and continuation later on. <a href="texmf-dist/doc/latex/jumplines/jumplines_doc.pdf">jumplines_doc.pdf</a> <a href="texmf-dist/doc/latex/jumplines/jumplines_example.pdf">jumplines_example.pdf</a>. </small></li> -<li id="jura"><b><a href="texmf-dist/doc/latex/jura">jura</a></b><small> +<li id="jura"><b><a href="texmf-dist/doc/latex/jura/">jura</a></b><small> (<a href="https://ctan.org/pkg/jura">CTAN</a>): -A document class for German legal texts +A document class for German legal texts. <a href="texmf-dist/doc/latex/jura/jura.pdf">jura.pdf</a> (de). </small></li> -<li id="juraabbrev"><b><a href="texmf-dist/doc/latex/juraabbrev">juraabbrev</a></b><small> +<li id="juraabbrev"><b><a href="texmf-dist/doc/latex/juraabbrev/">juraabbrev</a></b><small> (<a href="https://ctan.org/pkg/juraabbrev">CTAN</a>): -Abbreviations for typesetting (German) juridical documents +Abbreviations for typesetting (German) juridical documents. <a href="texmf-dist/doc/latex/juraabbrev/juraabbrev.pdf">juraabbrev.pdf</a> (de). </small></li> -<li id="jurabib"><b><a href="texmf-dist/doc/latex/jurabib/docs/english">jurabib</a></b><small> +<li id="jurabib"><b><a href="texmf-dist/doc/latex/jurabib/">jurabib</a></b><small> (<a href="https://ctan.org/pkg/jurabib">CTAN</a>): -Extended BibTeX citation support for the humanities and legal texts +Extended BibTeX citation support for the humanities and legal texts. <a href="texmf-dist/doc/latex/jurabib/docs/english/jbendoc.pdf">jbendoc.pdf</a> <a href="texmf-dist/doc/latex/jurabib/docs/german/jbgerdoc.pdf">jbgerdoc.pdf</a> (de) <a href="texmf-dist/doc/latex/jurabib/jbtest.pdf">jbtest.pdf</a>. </small></li> -<li id="juramisc"><b><a href="texmf-dist/doc/latex/juramisc/doc">juramisc</a></b><small> +<li id="juramisc"><b><a href="texmf-dist/doc/latex/juramisc/">juramisc</a></b><small> (<a href="https://ctan.org/pkg/juramisc">CTAN</a>): -Typesetting German juridical documents +Typesetting German juridical documents. <a href="texmf-dist/doc/latex/juramisc/doc/jmgerdoc.pdf">jmgerdoc.pdf</a> (de) <a href="texmf-dist/doc/latex/juramisc/doc/jmgerdoc_scr.pdf">jmgerdoc_scr.pdf</a>. </small></li> -<li id="jurarsp"><b><a href="texmf-dist/doc/latex/jurarsp">jurarsp</a></b><small> +<li id="jurarsp"><b><a href="texmf-dist/doc/latex/jurarsp/">jurarsp</a></b><small> (<a href="https://ctan.org/pkg/jurarsp">CTAN</a>): -Citations of judgements and official documents in (German) juridical documents +Citations of judgements and official documents in (German) juridical documents. <a href="texmf-dist/doc/latex/jurarsp/jurarsp.pdf">jurarsp.pdf</a> (de). </small></li> -<li id="jvlisting"><b><a href="texmf-dist/doc/latex/jvlisting">jvlisting</a></b><small> +<li id="jvlisting"><b><a href="texmf-dist/doc/latex/jvlisting/">jvlisting</a></b><small> (<a href="https://ctan.org/pkg/jvlisting">CTAN</a>): -A replacement for LaTeX's verbatim package +A replacement for LaTeX's verbatim package. <a href="texmf-dist/doc/latex/jvlisting/jvlisting.pdf">jvlisting.pdf</a>. </small></li> @@ -11155,75 +11126,74 @@ A replacement for LaTeX's verbatim package <h2 id="letter-K">K</h2> -<ol start="1492"> +<ol start="1493"> -<li id="kalendarium"><b><a href="texmf-dist/doc/latex/kalendarium">kalendarium</a></b><small> +<li id="kalendarium"><b><a href="texmf-dist/doc/latex/kalendarium/">kalendarium</a></b><small> (<a href="https://ctan.org/pkg/kalendarium">CTAN</a>): -Print dates according to the classical Latin calendar +Print dates according to the classical Latin calendar. <a href="texmf-dist/doc/latex/kalendarium/kalendarium.pdf">kalendarium.pdf</a>. </small></li> -<li id="kanaparser"><b><a href="texmf-dist/doc/luatex/kanaparser">kanaparser</a></b><small> +<li id="kanaparser"><b><a href="texmf-dist/doc/luatex/kanaparser/">kanaparser</a></b><small> (<a href="https://ctan.org/pkg/kanaparser">CTAN</a>): -Kana parser for LuaTeX +Kana parser for LuaTeX. <a href="texmf-dist/doc/luatex/kanaparser/description.pdf">description.pdf</a> <a href="texmf-dist/doc/luatex/kanaparser/examples.pdf">examples.pdf</a>. </small></li> -<li id="kantlipsum"><b><a href="texmf-dist/doc/latex/kantlipsum">kantlipsum</a></b><small> +<li id="kantlipsum"><b><a href="texmf-dist/doc/latex/kantlipsum/">kantlipsum</a></b><small> (<a href="https://ctan.org/pkg/kantlipsum">CTAN</a>): -Generate sentences in Kant's style +Generate sentences in Kant's style. <a href="texmf-dist/doc/latex/kantlipsum/kantlipsum.pdf">kantlipsum.pdf</a>. </small></li> -<li id="karnaugh"><b><a href="texmf-dist/doc/latex/karnaugh">karnaugh</a></b><small> +<li id="karnaugh"><b><a href="texmf-dist/doc/latex/karnaugh/">karnaugh</a></b><small> (<a href="https://ctan.org/pkg/karnaugh">CTAN</a>): -Typeset Karnaugh-Veitch-maps +Typeset Karnaugh-Veitch-maps. <a href="texmf-dist/doc/latex/karnaugh/kvdoc.pdf">kvdoc.pdf</a>. </small></li> -<li id="karnaugh-map"><b><a href="texmf-dist/doc/latex/karnaugh-map">karnaugh-map</a></b><small> +<li id="karnaugh-map"><b><a href="texmf-dist/doc/latex/karnaugh-map/">karnaugh-map</a></b><small> (<a href="https://ctan.org/pkg/karnaugh-map">CTAN</a>): -LaTeX package for drawing karnaugh maps with up to 6 variables +LaTeX package for drawing karnaugh maps with up to 6 variables. <a href="texmf-dist/doc/latex/karnaugh-map/karnaugh-map.pdf">karnaugh-map.pdf</a>. </small></li> -<li id="karnaughmap"><b><a href="texmf-dist/doc/latex/karnaughmap">karnaughmap</a></b><small> +<li id="karnaughmap"><b><a href="texmf-dist/doc/latex/karnaughmap/">karnaughmap</a></b><small> (<a href="https://ctan.org/pkg/karnaughmap">CTAN</a>): -Typeset Karnaugh maps +Typeset Karnaugh maps. <a href="texmf-dist/doc/latex/karnaughmap/karnaughmap.pdf">karnaughmap.pdf</a>. </small></li> -<li id="kastrup"><b><a href="texmf-dist/doc/generic/kastrup">kastrup</a></b><small> -(<a href="https://ctan.org/pkg/kastrup">CTAN</a>): -Convert numbers into binary, octal and hexadecimal +<li id="kastrup"><b><a href="texmf-dist/doc/generic/kastrup/">kastrup</a></b><small> +Convert numbers into binary, octal and hexadecimal. <a href="texmf-dist/doc/generic/kastrup/binhex.pdf">binhex.pdf</a>. </small></li> -<li id="kblocks"><b><a href="texmf-dist/doc/latex/kblocks">kblocks</a></b><small> +<li id="kblocks"><b><a href="texmf-dist/doc/latex/kblocks/">kblocks</a></b><small> (<a href="https://ctan.org/pkg/kblocks">CTAN</a>): -Easily typeset Control Block Diagrams and Signal Flow Graphs +Easily typeset Control Block Diagrams and Signal Flow Graphs. <a href="texmf-dist/doc/latex/kblocks/kblocks-doc.pdf">kblocks-doc.pdf</a>. </small></li> -<li id="kdgdocs"><b><a href="texmf-dist/doc/latex/kdgdocs">kdgdocs</a></b><small> +<li id="kdgdocs"><b><a href="texmf-dist/doc/latex/kdgdocs/">kdgdocs</a></b><small> (<a href="https://ctan.org/pkg/kdgdocs">CTAN</a>): -Document classes for Karel de Grote University College +Document classes for Karel de Grote University College. <a href="texmf-dist/doc/latex/kdgdocs/kdg_color.pdf">kdg_color.pdf</a> <a href="texmf-dist/doc/latex/kdgdocs/kdgcoursetext-example.pdf">kdgcoursetext-example.pdf</a> <a href="texmf-dist/doc/latex/kdgdocs/kdgdocs.pdf">kdgdocs.pdf</a> <a href="texmf-dist/doc/latex/kdgdocs/kdgmasterthesis-example.pdf">kdgmasterthesis-example.pdf</a>. </small></li> -<li id="kerntest"><b><a href="texmf-dist/doc/latex/kerntest">kerntest</a></b><small> +<li id="kerntest"><b><a href="texmf-dist/doc/latex/kerntest/">kerntest</a></b><small> (<a href="https://ctan.org/pkg/kerntest">CTAN</a>): -Print tables and generate control files to adjust kernings +Print tables and generate control files to adjust kernings. <a href="texmf-dist/doc/latex/kerntest/kerntest.pdf">kerntest.pdf</a>. </small></li> -<li id="ketcindy"><b><a href="texmf-dist/doc/support/ketcindy">ketcindy</a></b><small> +<li id="ketcindy"><b><a href="texmf-dist/doc/support/ketcindy/">ketcindy</a></b><small> (<a href="https://ctan.org/pkg/ketcindy">CTAN</a>): -macros for graphic generation and Cinderella plugin +macros for graphic generation and Cinderella plugin. <a href="texmf-dist/doc/support/ketcindy/HowToInstallE.pdf">HowToInstallE.pdf</a> <a href="texmf-dist/doc/support/ketcindy/HowToInstallJ.pdf">HowToInstallJ.pdf</a> <a href="texmf-dist/doc/support/ketcindy/forLinux/ReadmeLinuxE.pdf">ReadmeLinuxE.pdf</a> @@ -11353,88 +11323,87 @@ macros for graphic generation and Cinderella plugin <a href="texmf-dist/doc/support/ketcindy/source/ketmanual/Fig/zoom-out.pdf">zoom-out.pdf</a>. </small></li> -<li id="keycommand"><b><a href="texmf-dist/doc/latex/keycommand">keycommand</a></b><small> +<li id="keycommand"><b><a href="texmf-dist/doc/latex/keycommand/">keycommand</a></b><small> (<a href="https://ctan.org/pkg/keycommand">CTAN</a>): -Simple creation of commands with key-value arguments +Simple creation of commands with key-value arguments. <a href="texmf-dist/doc/latex/keycommand/keycommand-example.pdf">keycommand-example.pdf</a> <a href="texmf-dist/doc/latex/keycommand/keycommand.pdf">keycommand.pdf</a>. </small></li> -<li id="keyfloat"><b><a href="texmf-dist/doc/latex/keyfloat/images">keyfloat</a></b><small> +<li id="keyfloat"><b><a href="texmf-dist/doc/latex/keyfloat/">keyfloat</a></b><small> (<a href="https://ctan.org/pkg/keyfloat">CTAN</a>): -Provides a key/value interface for generating floats +Provides a key/value interface for generating floats. <a href="texmf-dist/doc/latex/keyfloat/images/image.pdf">image.pdf</a> <a href="texmf-dist/doc/latex/keyfloat/images/image2.pdf">image2.pdf</a> <a href="texmf-dist/doc/latex/keyfloat/keyfloat.pdf">keyfloat.pdf</a>. </small></li> -<li id="keyindex"><b><a href="texmf-dist/doc/latex/keyindex">keyindex</a></b><small> +<li id="keyindex"><b><a href="texmf-dist/doc/latex/keyindex/">keyindex</a></b><small> (<a href="https://ctan.org/pkg/keyindex">CTAN</a>): -Index entries by key lookup +Index entries by key lookup. <a href="texmf-dist/doc/latex/keyindex/keyindex.pdf">keyindex.pdf</a>. </small></li> -<li id="keyreader"><b><a href="texmf-dist/doc/latex/keyreader">keyreader</a></b><small> +<li id="keyreader"><b><a href="texmf-dist/doc/latex/keyreader/">keyreader</a></b><small> (<a href="https://ctan.org/pkg/keyreader">CTAN</a>): -A robust interface to xkeyval +A robust interface to xkeyval. <a href="texmf-dist/doc/latex/keyreader/keyreader-guide.pdf">keyreader-guide.pdf</a>. </small></li> -<li id="keystroke"><b><a href="texmf-dist/doc/latex/keystroke">keystroke</a></b><small> +<li id="keystroke"><b><a href="texmf-dist/doc/latex/keystroke/">keystroke</a></b><small> (<a href="https://ctan.org/pkg/keystroke">CTAN</a>): -Graphical representation of keys on keyboard +Graphical representation of keys on keyboard. <a href="texmf-dist/doc/latex/keystroke/key-test.pdf">key-test.pdf</a>. </small></li> -<li id="keyval2e"><b><a href="texmf-dist/doc/latex/keyval2e">keyval2e</a></b><small> +<li id="keyval2e"><b><a href="texmf-dist/doc/latex/keyval2e/">keyval2e</a></b><small> (<a href="https://ctan.org/pkg/keyval2e">CTAN</a>): -A lightweight and robust key-value parser +A lightweight and robust key-value parser. <a href="texmf-dist/doc/latex/keyval2e/keyval2e-examples.pdf">keyval2e-examples.pdf</a> <a href="texmf-dist/doc/latex/keyval2e/keyval2e-guide.pdf">keyval2e-guide.pdf</a>. </small></li> -<li id="keyvaltable"><b><a href="texmf-dist/doc/latex/keyvaltable">keyvaltable</a></b><small> +<li id="keyvaltable"><b><a href="texmf-dist/doc/latex/keyvaltable/">keyvaltable</a></b><small> (<a href="https://ctan.org/pkg/keyvaltable">CTAN</a>): -Re-usable table layouts separating content and presentation +Re-usable table layouts separating content and presentation. <a href="texmf-dist/doc/latex/keyvaltable/keyvaltable.pdf">keyvaltable.pdf</a>. </small></li> -<li id="kix"><b><a href="texmf-dist/doc/latex/kix">kix</a></b><small> +<li id="kix"><b><a href="texmf-dist/doc/latex/kix/">kix</a></b><small> (<a href="https://ctan.org/pkg/kix">CTAN</a>): -Typeset KIX codes +Typeset KIX codes. <a href="texmf-dist/doc/latex/kix/kix.pdf">kix.pdf</a>. </small></li> -<li id="kixfont"><b><a href="texmf-dist/doc/fonts/kixfont">kixfont</a></b><small> +<li id="kixfont"><b><a href="texmf-dist/doc/fonts/kixfont/">kixfont</a></b><small> (<a href="https://ctan.org/pkg/kixfont">CTAN</a>): -A font for KIX codes +A font for KIX codes. <a href="texmf-dist/doc/fonts/kixfont/kixtable.pdf">kixtable.pdf</a>. </small></li> -<li id="knitting"><b><a href="texmf-dist/doc/fonts/knitting">knitting</a></b><small> +<li id="knitting"><b><a href="texmf-dist/doc/fonts/knitting/">knitting</a></b><small> (<a href="https://ctan.org/pkg/knitting">CTAN</a>): -Produce knitting charts, in Plain TeX or LaTeX +Produce knitting charts, in Plain TeX or LaTeX. <a href="texmf-dist/doc/fonts/knitting/knitexamples.pdf">knitexamples.pdf</a> <a href="texmf-dist/doc/fonts/knitting/knitkey.pdf">knitkey.pdf</a> <a href="texmf-dist/doc/fonts/knitting/knitting-doc.pdf">knitting-doc.pdf</a>. </small></li> -<li id="knittingpattern"><b><a href="texmf-dist/doc/latex/knittingpattern">knittingpattern</a></b><small> +<li id="knittingpattern"><b><a href="texmf-dist/doc/latex/knittingpattern/">knittingpattern</a></b><small> (<a href="https://ctan.org/pkg/knittingpattern">CTAN</a>): -Create knitting patterns +Create knitting patterns. <a href="texmf-dist/doc/latex/knittingpattern/introduction.pdf">introduction.pdf</a> <a href="texmf-dist/doc/latex/knittingpattern/template.pdf">template.pdf</a>. </small></li> -<li id="knowledge"><b><a href="texmf-dist/doc/latex/knowledge">knowledge</a></b><small> +<li id="knowledge"><b><a href="texmf-dist/doc/latex/knowledge/">knowledge</a></b><small> (<a href="https://ctan.org/pkg/knowledge">CTAN</a>): -Displaying, hyperlinking, and indexing notions in a document +Displaying, hyperlinking, and indexing notions in a document. <a href="texmf-dist/doc/latex/knowledge/knowledge.pdf">knowledge.pdf</a>. </small></li> -<li id="knuth"><b><a href="texmf-dist/doc/generic/knuth/errata">knuth</a></b><small> -(<a href="https://ctan.org/pkg/knuth">CTAN</a>): -Knuth's published errata +<li id="knuth"><b><a href="texmf-dist/doc/generic/knuth/">knuth</a></b><small> +Knuth's published errata. <a href="texmf-dist/doc/generic/knuth/errata/errata.pdf">errata.pdf</a> <a href="texmf-dist/doc/generic/knuth/errata/errorlog.pdf">errorlog.pdf</a> <a href="texmf-dist/doc/generic/knuth/etc/vftovp.pdf">vftovp.pdf</a> @@ -11457,15 +11426,15 @@ Knuth's published errata <a href="texmf-dist/doc/generic/knuth/web/webman.pdf">webman.pdf</a>. </small></li> -<li id="koma-moderncvclassic"><b><a href="texmf-dist/doc/latex/koma-moderncvclassic">koma-moderncvclassic</a></b><small> +<li id="koma-moderncvclassic"><b><a href="texmf-dist/doc/latex/koma-moderncvclassic/">koma-moderncvclassic</a></b><small> (<a href="https://ctan.org/pkg/koma-moderncvclassic">CTAN</a>): -Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with BibLaTeX +Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with BibLaTeX. <a href="texmf-dist/doc/latex/koma-moderncvclassic/cvbasic.pdf">cvbasic.pdf</a>. </small></li> -<li id="koma-script"><b><a href="texmf-dist/doc/latex/koma-script">koma-script</a></b><small> +<li id="koma-script"><b><a href="texmf-dist/doc/latex/koma-script/">koma-script</a></b><small> (<a href="https://ctan.org/pkg/koma-script">CTAN</a>): -A bundle of versatile classes and packages +A bundle of versatile classes and packages. <a href="texmf-dist/doc/latex/koma-script/koma-script.html">koma-script.html</a> <a href="texmf-dist/doc/latex/koma-script/komascr.html">komascr.html</a> <a href="texmf-dist/doc/latex/koma-script/komascript.html">komascript.html</a> @@ -11520,9 +11489,9 @@ A bundle of versatile classes and packages <a href="texmf-dist/source/latex/koma-script/doc/typearea.html">typearea.html</a>. </small></li> -<li id="koma-script-examples"><b><a href="texmf-dist/doc/latex/koma-script-examples/Anhang-B/result">koma-script-examples</a></b><small> +<li id="koma-script-examples"><b><a href="texmf-dist/doc/latex/koma-script-examples/Anhang-B/result/">koma-script-examples</a></b><small> (<a href="https://ctan.org/pkg/koma-script-examples">CTAN</a>): -Examples from the KOMA-Script book +Examples from the KOMA-Script book. <a href="texmf-dist/doc/latex/koma-script-examples/Anhang-B/result/chapterthumbexample.pdf">chapterthumbexample.pdf</a> <a href="texmf-dist/doc/latex/koma-script-examples/Anhang-C/result/briefDIN.pdf">briefDIN.pdf</a> <a href="texmf-dist/doc/latex/koma-script-examples/Anhang-C/result/briefSN.pdf">briefSN.pdf</a> @@ -11568,15 +11537,15 @@ Examples from the KOMA-Script book <a href="texmf-dist/doc/latex/koma-script-examples/Kapitel-4/source/musterlogo.pdf">musterlogo.pdf</a>. </small></li> -<li id="koma-script-sfs"><b><a href="texmf-dist/doc/latex/koma-script-sfs">koma-script-sfs</a></b><small> +<li id="koma-script-sfs"><b><a href="texmf-dist/doc/latex/koma-script-sfs/">koma-script-sfs</a></b><small> (<a href="https://ctan.org/pkg/koma-script-sfs">CTAN</a>): -Koma-script letter class option for Finnish +Koma-script letter class option for Finnish. <a href="texmf-dist/doc/latex/koma-script-sfs/SFSesim.pdf">SFSesim.pdf</a> (fi). </small></li> -<li id="komacv"><b><a href="texmf-dist/doc/latex/komacv/examples">komacv</a></b><small> +<li id="komacv"><b><a href="texmf-dist/doc/latex/komacv/">komacv</a></b><small> (<a href="https://ctan.org/pkg/komacv">CTAN</a>): -Typesetting a beautiful CV with various style options +Typesetting a beautiful CV with various style options. <a href="texmf-dist/doc/latex/komacv/examples/komacv_example.pdf">komacv_example.pdf</a> <a href="texmf-dist/doc/latex/komacv/examples/komacv_example_casual.pdf">komacv_example_casual.pdf</a> <a href="texmf-dist/doc/latex/komacv/examples/komacv_example_classic.pdf">komacv_example_classic.pdf</a> @@ -11584,23 +11553,23 @@ Typesetting a beautiful CV with various style options <a href="texmf-dist/doc/latex/komacv/komacv.pdf">komacv.pdf</a>. </small></li> -<li id="komacv-rg"><b><a href="texmf-dist/doc/latex/komacv-rg">komacv-rg</a></b><small> +<li id="komacv-rg"><b><a href="texmf-dist/doc/latex/komacv-rg/">komacv-rg</a></b><small> (<a href="https://ctan.org/pkg/komacv-rg">CTAN</a>): -LaTeX packages that aid in creating CVs based on the komacv class and creating related documents +LaTeX packages that aid in creating CVs based on the komacv class and creating related documents. <a href="texmf-dist/doc/latex/komacv-rg/komacv-addons.pdf">komacv-addons.pdf</a> <a href="texmf-dist/doc/latex/komacv-rg/komacv-lco.pdf">komacv-lco.pdf</a> <a href="texmf-dist/doc/latex/komacv-rg/komacv-multilang.pdf">komacv-multilang.pdf</a>. </small></li> -<li id="kotex-oblivoir"><b><a href="texmf-dist/doc/latex/kotex-oblivoir">kotex-oblivoir</a></b><small> +<li id="kotex-oblivoir"><b><a href="texmf-dist/doc/latex/kotex-oblivoir/">kotex-oblivoir</a></b><small> (<a href="https://ctan.org/pkg/kotex-oblivoir">CTAN</a>): -A LaTeX document class for typesetting Korean documents +A LaTeX document class for typesetting Korean documents. <a href="texmf-dist/doc/latex/kotex-oblivoir/oblivoir-simpledoc.pdf">oblivoir-simpledoc.pdf</a> (ko). </small></li> -<li id="kotex-utf"><b><a href="texmf-dist/doc/latex/kotex-utf/fig">kotex-utf</a></b><small> +<li id="kotex-utf"><b><a href="texmf-dist/doc/latex/kotex-utf/">kotex-utf</a></b><small> (<a href="https://ctan.org/pkg/kotex-utf">CTAN</a>): -Typeset Hangul, coded in UTF-8 +Typeset Hangul, coded in UTF-8. <a href="texmf-dist/doc/latex/kotex-utf/fig/allowbreak-dhucs.pdf">allowbreak-dhucs.pdf</a> <a href="texmf-dist/doc/latex/kotex-utf/fig/fntexp.pdf">fntexp.pdf</a> <a href="texmf-dist/doc/latex/kotex-utf/fig/fntnormal.pdf">fntnormal.pdf</a> @@ -11609,9 +11578,9 @@ Typeset Hangul, coded in UTF-8 <a href="texmf-dist/doc/latex/kotex-utf/kotexdoc.pdf">kotexdoc.pdf</a> (ko). </small></li> -<li id="kpathsea"><b><a href="texmf-dist/doc/kpathsea">kpathsea</a></b><small> +<li id="kpathsea"><b><a href="texmf-dist/doc/kpathsea/">kpathsea</a></b><small> (<a href="https://ctan.org/pkg/kpathsea">CTAN</a>): -Path searching library for TeX-related files +Path searching library for TeX-related files. <a href="texmf-dist/doc/kpathsea/kpathsea.html">kpathsea.html</a> <a href="texmf-dist/doc/kpathsea/kpathsea.pdf">kpathsea.pdf</a> <a href="texmf-dist/doc/man/man1/kpseaccess.man1.pdf">kpseaccess.man1.pdf</a> @@ -11622,30 +11591,30 @@ Path searching library for TeX-related files <a href="texmf-dist/doc/web2c/web2c.pdf">web2c.pdf</a>. </small></li> -<li id="kpfonts"><b><a href="texmf-dist/doc/fonts/kpfonts">kpfonts</a></b><small> +<li id="kpfonts"><b><a href="texmf-dist/doc/fonts/kpfonts/">kpfonts</a></b><small> (<a href="https://ctan.org/pkg/kpfonts">CTAN</a>): -A complete set of fonts for text and mathematics +A complete set of fonts for text and mathematics. <a href="texmf-dist/doc/fonts/kpfonts/Kpfonts-Doc-French.pdf">Kpfonts-Doc-French.pdf</a> (fr) <a href="texmf-dist/doc/fonts/kpfonts/kpfonts-abstract.pdf">kpfonts-abstract.pdf</a> <a href="texmf-dist/doc/fonts/kpfonts/kpfonts-math-symbols-tables.pdf">kpfonts-math-symbols-tables.pdf</a> <a href="texmf-dist/doc/fonts/kpfonts/kpfonts.pdf">kpfonts.pdf</a>. </small></li> -<li id="ksp-thesis"><b><a href="texmf-dist/doc/latex/ksp-thesis">ksp-thesis</a></b><small> +<li id="ksp-thesis"><b><a href="texmf-dist/doc/latex/ksp-thesis/">ksp-thesis</a></b><small> (<a href="https://ctan.org/pkg/ksp-thesis">CTAN</a>): -A LaTeX class for theses published with KIT Scientific Publishing +A LaTeX class for theses published with KIT Scientific Publishing. <a href="texmf-dist/doc/latex/ksp-thesis/ksp-thesis.pdf">ksp-thesis.pdf</a>. </small></li> -<li id="ktv-texdata"><b><a href="texmf-dist/doc/latex/ktv-texdata">ktv-texdata</a></b><small> +<li id="ktv-texdata"><b><a href="texmf-dist/doc/latex/ktv-texdata/">ktv-texdata</a></b><small> (<a href="https://ctan.org/pkg/ktv-texdata">CTAN</a>): -Extract subsets of documents +Extract subsets of documents. <a href="texmf-dist/doc/latex/ktv-texdata/ktv-texdata.pdf">ktv-texdata.pdf</a>. </small></li> -<li id="ku-template"><b><a href="texmf-dist/doc/latex/ku-template/images">ku-template</a></b><small> +<li id="ku-template"><b><a href="texmf-dist/doc/latex/ku-template/">ku-template</a></b><small> (<a href="https://ctan.org/pkg/ku-template">CTAN</a>): -Copenhagen University or faculty logo for front page +Copenhagen University or faculty logo for front page. <a href="texmf-dist/doc/latex/ku-template/images/hum-da.pdf">hum-da.pdf</a> <a href="texmf-dist/doc/latex/ku-template/images/hum-en.pdf">hum-en.pdf</a> <a href="texmf-dist/doc/latex/ku-template/images/jur-da.pdf">jur-da.pdf</a> @@ -11662,39 +11631,39 @@ Copenhagen University or faculty logo for front page <a href="texmf-dist/doc/latex/ku-template/images/teo-en.pdf">teo-en.pdf</a>. </small></li> -<li id="kurdishlipsum"><b><a href="texmf-dist/doc/xelatex/kurdishlipsum">kurdishlipsum</a></b><small> +<li id="kurdishlipsum"><b><a href="texmf-dist/doc/xelatex/kurdishlipsum/">kurdishlipsum</a></b><small> (<a href="https://ctan.org/pkg/kurdishlipsum">CTAN</a>): -A 'lipsum' package for the Kurdish language +A 'lipsum' package for the Kurdish language. <a href="texmf-dist/doc/xelatex/kurdishlipsum/kurdishlipsum.pdf">kurdishlipsum.pdf</a>. </small></li> -<li id="kurier"><b><a href="texmf-dist/doc/fonts/kurier">kurier</a></b><small> +<li id="kurier"><b><a href="texmf-dist/doc/fonts/kurier/">kurier</a></b><small> (<a href="https://ctan.org/pkg/kurier">CTAN</a>): -A two-element sans-serif typeface +A two-element sans-serif typeface. <a href="texmf-dist/doc/fonts/kurier/kurier-info.pdf">kurier-info.pdf</a>. </small></li> -<li id="kvdefinekeys"><b><a href="texmf-dist/doc/latex/kvdefinekeys">kvdefinekeys</a></b><small> +<li id="kvdefinekeys"><b><a href="texmf-dist/doc/latex/kvdefinekeys/">kvdefinekeys</a></b><small> (<a href="https://ctan.org/pkg/kvdefinekeys">CTAN</a>): -Define keys for use in the kvsetkeys package +Define keys for use in the kvsetkeys package. <a href="texmf-dist/doc/latex/kvdefinekeys/kvdefinekeys.pdf">kvdefinekeys.pdf</a>. </small></li> -<li id="kvmap"><b><a href="texmf-dist/doc/latex/kvmap">kvmap</a></b><small> +<li id="kvmap"><b><a href="texmf-dist/doc/latex/kvmap/">kvmap</a></b><small> (<a href="https://ctan.org/pkg/kvmap">CTAN</a>): -Create Karnaugh maps with LaTeX +Create Karnaugh maps with LaTeX. <a href="texmf-dist/doc/latex/kvmap/kvmap.pdf">kvmap.pdf</a>. </small></li> -<li id="kvoptions"><b><a href="texmf-dist/doc/latex/kvoptions">kvoptions</a></b><small> +<li id="kvoptions"><b><a href="texmf-dist/doc/latex/kvoptions/">kvoptions</a></b><small> (<a href="https://ctan.org/pkg/kvoptions">CTAN</a>): -Key value format for package options +Key value format for package options. <a href="texmf-dist/doc/latex/kvoptions/kvoptions.pdf">kvoptions.pdf</a>. </small></li> -<li id="kvsetkeys"><b><a href="texmf-dist/doc/latex/kvsetkeys">kvsetkeys</a></b><small> +<li id="kvsetkeys"><b><a href="texmf-dist/doc/latex/kvsetkeys/">kvsetkeys</a></b><small> (<a href="https://ctan.org/pkg/kvsetkeys">CTAN</a>): -Key value parser with default handler support +Key value parser with default handler support. <a href="texmf-dist/doc/latex/kvsetkeys/kvsetkeys.pdf">kvsetkeys.pdf</a>. </small></li> @@ -11702,61 +11671,61 @@ Key value parser with default handler support <h2 id="letter-L">L</h2> -<ol start="1535"> +<ol start="1536"> -<li id="l2picfaq"><b><a href="texmf-dist/doc/latex/l2picfaq">l2picfaq</a></b><small> +<li id="l2picfaq"><b><a href="texmf-dist/doc/latex/l2picfaq/">l2picfaq</a></b><small> (<a href="https://ctan.org/pkg/l2picfaq">CTAN</a>): -LaTeX pictures "how-to" (German) +LaTeX pictures "how-to" (German). <a href="texmf-dist/doc/latex/l2picfaq/ctanlion.pdf">ctanlion.pdf</a> <a href="texmf-dist/doc/latex/l2picfaq/l2picfaq.pdf">l2picfaq.pdf</a> (de). </small></li> -<li id="l2tabu"><b><a href="texmf-dist/doc/latex/l2tabu">l2tabu</a></b><small> +<li id="l2tabu"><b><a href="texmf-dist/doc/latex/l2tabu/">l2tabu</a></b><small> (<a href="https://ctan.org/pkg/l2tabu">CTAN</a>): -Obsolete packages and commands +Obsolete packages and commands. <a href="texmf-dist/doc/latex/l2tabu/l2tabu.pdf">l2tabu.pdf</a> (de). </small></li> -<li id="l2tabu-english"><b><a href="texmf-dist/doc/latex/l2tabu-english">l2tabu-english</a></b><small> +<li id="l2tabu-english"><b><a href="texmf-dist/doc/latex/l2tabu-english/">l2tabu-english</a></b><small> (<a href="https://ctan.org/pkg/l2tabu-english">CTAN</a>): -English translation of "Obsolete packages and commands" +English translation of "Obsolete packages and commands". <a href="texmf-dist/doc/latex/l2tabu-english/l2tabuen.pdf">l2tabuen.pdf</a>. </small></li> -<li id="l2tabu-french"><b><a href="texmf-dist/doc/latex/l2tabu-french">l2tabu-french</a></b><small> +<li id="l2tabu-french"><b><a href="texmf-dist/doc/latex/l2tabu-french/">l2tabu-french</a></b><small> (<a href="https://ctan.org/pkg/l2tabu-french">CTAN</a>): -French translation of l2tabu +French translation of l2tabu. <a href="texmf-dist/doc/latex/l2tabu-french/l2tabufr.pdf">l2tabufr.pdf</a> (fr). </small></li> -<li id="l2tabu-italian"><b><a href="texmf-dist/doc/latex/l2tabu-italian">l2tabu-italian</a></b><small> +<li id="l2tabu-italian"><b><a href="texmf-dist/doc/latex/l2tabu-italian/">l2tabu-italian</a></b><small> (<a href="https://ctan.org/pkg/l2tabu-italian">CTAN</a>): -Italian Translation of Obsolete packages and commands +Italian Translation of Obsolete packages and commands. <a href="texmf-dist/doc/latex/l2tabu-italian/l2tabuit.pdf">l2tabuit.pdf</a> (it). </small></li> -<li id="l2tabu-spanish"><b><a href="texmf-dist/doc/latex/l2tabu-spanish">l2tabu-spanish</a></b><small> +<li id="l2tabu-spanish"><b><a href="texmf-dist/doc/latex/l2tabu-spanish/">l2tabu-spanish</a></b><small> (<a href="https://ctan.org/pkg/l2tabu-spanish">CTAN</a>): -Spanish translation of "Obsolete packages and commands" +Spanish translation of "Obsolete packages and commands". <a href="texmf-dist/doc/latex/l2tabu-spanish/l2tabues.pdf">l2tabues.pdf</a> (es). </small></li> -<li id="l3backend"><b><a href="texmf-dist/doc/latex/l3backend">l3backend</a></b><small> +<li id="l3backend"><b><a href="texmf-dist/doc/latex/l3backend/">l3backend</a></b><small> (<a href="https://ctan.org/pkg/l3backend">CTAN</a>): -LaTeX3 backend drivers +LaTeX3 backend drivers. <a href="texmf-dist/doc/latex/l3backend/l3backend-code.pdf">l3backend-code.pdf</a>. </small></li> -<li id="l3build"><b><a href="texmf-dist/doc/latex/l3build">l3build</a></b><small> +<li id="l3build"><b><a href="texmf-dist/doc/latex/l3build/">l3build</a></b><small> (<a href="https://ctan.org/pkg/l3build">CTAN</a>): -A testing and building system for (La)TeX +A testing and building system for (La)TeX. <a href="texmf-dist/doc/latex/l3build/l3build.pdf">l3build.pdf</a> <a href="texmf-dist/doc/man/man1/l3build.man1.pdf">l3build.man1.pdf</a>. </small></li> -<li id="l3experimental"><b><a href="texmf-dist/doc/latex/l3experimental/l3benchmark">l3experimental</a></b><small> +<li id="l3experimental"><b><a href="texmf-dist/doc/latex/l3experimental/">l3experimental</a></b><small> (<a href="https://ctan.org/pkg/l3experimental">CTAN</a>): -Experimental LaTeX3 concepts +Experimental LaTeX3 concepts. <a href="texmf-dist/doc/latex/l3experimental/l3benchmark/l3benchmark.pdf">l3benchmark.pdf</a> <a href="texmf-dist/doc/latex/l3experimental/l3cctab/l3cctab.pdf">l3cctab.pdf</a> <a href="texmf-dist/doc/latex/l3experimental/l3color/l3color.pdf">l3color.pdf</a> @@ -11772,9 +11741,9 @@ Experimental LaTeX3 concepts <a href="texmf-dist/doc/latex/l3experimental/xgalley/xgalley.pdf">xgalley.pdf</a>. </small></li> -<li id="l3kernel"><b><a href="texmf-dist/doc/latex/l3kernel">l3kernel</a></b><small> +<li id="l3kernel"><b><a href="texmf-dist/doc/latex/l3kernel/">l3kernel</a></b><small> (<a href="https://ctan.org/pkg/l3kernel">CTAN</a>): -LaTeX3 programming conventions +LaTeX3 programming conventions. <a href="texmf-dist/doc/latex/l3kernel/expl3.pdf">expl3.pdf</a> <a href="texmf-dist/doc/latex/l3kernel/interface3.pdf">interface3.pdf</a> <a href="texmf-dist/doc/latex/l3kernel/l3docstrip.pdf">l3docstrip.pdf</a> @@ -11798,9 +11767,9 @@ LaTeX3 programming conventions <a href="texmf-dist/doc/latex/l3kernel/source3.pdf">source3.pdf</a>. </small></li> -<li id="l3packages"><b><a href="texmf-dist/doc/latex/l3packages/l3keys2e">l3packages</a></b><small> +<li id="l3packages"><b><a href="texmf-dist/doc/latex/l3packages/">l3packages</a></b><small> (<a href="https://ctan.org/pkg/l3packages">CTAN</a>): -High-level LaTeX3 concepts +High-level LaTeX3 concepts. <a href="texmf-dist/doc/latex/l3packages/l3keys2e/l3keys2e.pdf">l3keys2e.pdf</a> <a href="texmf-dist/doc/latex/l3packages/xfp/xfp.pdf">xfp.pdf</a> <a href="texmf-dist/doc/latex/l3packages/xfrac/xfrac.pdf">xfrac.pdf</a> @@ -11808,79 +11777,79 @@ High-level LaTeX3 concepts <a href="texmf-dist/doc/latex/l3packages/xtemplate/xtemplate.pdf">xtemplate.pdf</a>. </small></li> -<li id="labbook"><b><a href="texmf-dist/doc/latex/labbook">labbook</a></b><small> +<li id="labbook"><b><a href="texmf-dist/doc/latex/labbook/">labbook</a></b><small> (<a href="https://ctan.org/pkg/labbook">CTAN</a>): -Typeset laboratory journals +Typeset laboratory journals. <a href="texmf-dist/doc/latex/labbook/labboode.pdf">labboode.pdf</a> (de) <a href="texmf-dist/doc/latex/labbook/labbook.pdf">labbook.pdf</a>. </small></li> -<li id="labels"><b><a href="texmf-dist/doc/latex/labels">labels</a></b><small> +<li id="labels"><b><a href="texmf-dist/doc/latex/labels/">labels</a></b><small> (<a href="https://ctan.org/pkg/labels">CTAN</a>): -Print sheets of sticky labels +Print sheets of sticky labels. <a href="texmf-dist/doc/latex/labels/labels.pdf">labels.pdf</a>. </small></li> -<li id="labels4easylist"><b><a href="texmf-dist/doc/latex/labels4easylist">labels4easylist</a></b><small> +<li id="labels4easylist"><b><a href="texmf-dist/doc/latex/labels4easylist/">labels4easylist</a></b><small> (<a href="https://ctan.org/pkg/labels4easylist">CTAN</a>): -Add reference labels to easylist items +Add reference labels to easylist items. <a href="texmf-dist/doc/latex/labels4easylist/labels4easylist.pdf">labels4easylist.pdf</a>. </small></li> -<li id="labelschanged"><b><a href="texmf-dist/doc/latex/labelschanged">labelschanged</a></b><small> +<li id="labelschanged"><b><a href="texmf-dist/doc/latex/labelschanged/">labelschanged</a></b><small> (<a href="https://ctan.org/pkg/labelschanged">CTAN</a>): -Identify labels which cause endless "may have changed" warnings +Identify labels which cause endless "may have changed" warnings. <a href="texmf-dist/doc/latex/labelschanged/labelschanged.pdf">labelschanged.pdf</a>. </small></li> -<li id="labyrinth"><b><a href="texmf-dist/doc/latex/labyrinth">labyrinth</a></b><small> +<li id="labyrinth"><b><a href="texmf-dist/doc/latex/labyrinth/">labyrinth</a></b><small> (<a href="https://ctan.org/pkg/labyrinth">CTAN</a>): -Draw labyrinths and solution paths +Draw labyrinths and solution paths. <a href="texmf-dist/doc/latex/labyrinth/labyrinth.pdf">labyrinth.pdf</a>. </small></li> -<li id="lacheck"><b><a href="texmf-dist/doc/man/man1">lacheck</a></b><small> +<li id="lacheck"><b><a href="texmf-dist/doc/man/man1/">lacheck</a></b><small> (<a href="https://ctan.org/pkg/lacheck">CTAN</a>): -LaTeX checker +LaTeX checker. <a href="texmf-dist/doc/man/man1/lacheck.man1.pdf">lacheck.man1.pdf</a>. </small></li> -<li id="ladder"><b><a href="texmf-dist/doc/latex/ladder">ladder</a></b><small> +<li id="ladder"><b><a href="texmf-dist/doc/latex/ladder/">ladder</a></b><small> (<a href="https://ctan.org/pkg/ladder">CTAN</a>): -Draw simple ladder diagrams using TikZ +Draw simple ladder diagrams using TikZ. <a href="texmf-dist/doc/latex/ladder/ladder.pdf">ladder.pdf</a>. </small></li> -<li id="lambda-lists"><b><a href="texmf-dist/doc/plain/lambda-lists">lambda-lists</a></b><small> +<li id="lambda-lists"><b><a href="texmf-dist/doc/plain/lambda-lists/">lambda-lists</a></b><small> (<a href="https://ctan.org/pkg/lambda-lists">CTAN</a>): -Lists in TeX's mouth +Lists in TeX's mouth. <a href="texmf-dist/doc/plain/lambda-lists/lambda-lists.pdf">lambda-lists.pdf</a>. </small></li> -<li id="langcode"><b><a href="texmf-dist/doc/generic/langcode">langcode</a></b><small> +<li id="langcode"><b><a href="texmf-dist/doc/generic/langcode/">langcode</a></b><small> (<a href="https://ctan.org/pkg/langcode">CTAN</a>): -Simple language-dependent settings based on language codes +Simple language-dependent settings based on language codes. <a href="texmf-dist/doc/generic/langcode/langcode.pdf">langcode.pdf</a>. </small></li> -<li id="langsci"><b><a href="texmf-dist/doc/xelatex/langsci/documentation">langsci</a></b><small> +<li id="langsci"><b><a href="texmf-dist/doc/xelatex/langsci/">langsci</a></b><small> (<a href="https://ctan.org/pkg/langsci">CTAN</a>): -Typeset books for publication with Language Science Press +Typeset books for publication with Language Science Press. <a href="texmf-dist/doc/xelatex/langsci/documentation/langsci-doc.pdf">langsci-doc.pdf</a> <a href="texmf-dist/doc/xelatex/langsci/documentation/langsci-gb4.pdf">langsci-gb4.pdf</a> <a href="texmf-dist/doc/xelatex/langsci/labphon-logo.pdf">labphon-logo.pdf</a>. </small></li> -<li id="langsci-avm"><b><a href="texmf-dist/doc/latex/langsci-avm/include">langsci-avm</a></b><small> +<li id="langsci-avm"><b><a href="texmf-dist/doc/latex/langsci-avm/">langsci-avm</a></b><small> (<a href="https://ctan.org/pkg/langsci-avm">CTAN</a>): -Attribute-value matrices and feature structures for use in linguistics +Attribute-value matrices and feature structures for use in linguistics. <a href="texmf-dist/doc/latex/langsci-avm/include/smallcaps-standalone.pdf">smallcaps-standalone.pdf</a> <a href="texmf-dist/doc/latex/langsci-avm/langsci-avm.pdf">langsci-avm.pdf</a>. </small></li> -<li id="lapdf"><b><a href="texmf-dist/doc/latex/lapdf">lapdf</a></b><small> +<li id="lapdf"><b><a href="texmf-dist/doc/latex/lapdf/">lapdf</a></b><small> (<a href="https://ctan.org/pkg/lapdf">CTAN</a>): -PDF drawing directly in TeX documents +PDF drawing directly in TeX documents. <a href="texmf-dist/doc/latex/lapdf/arcs.pdf">arcs.pdf</a> <a href="texmf-dist/doc/latex/lapdf/bezier.pdf">bezier.pdf</a> <a href="texmf-dist/doc/latex/lapdf/bezinfo.pdf">bezinfo.pdf</a> @@ -11920,22 +11889,22 @@ PDF drawing directly in TeX documents <a href="texmf-dist/doc/latex/lapdf/vector.pdf">vector.pdf</a>. </small></li> -<li id="lastpackage"><b><a href="texmf-dist/doc/latex/lastpackage">lastpackage</a></b><small> +<li id="lastpackage"><b><a href="texmf-dist/doc/latex/lastpackage/">lastpackage</a></b><small> (<a href="https://ctan.org/pkg/lastpackage">CTAN</a>): -Indicates the last loaded package +Indicates the last loaded package. <a href="texmf-dist/doc/latex/lastpackage/lastpackage.pdf">lastpackage.pdf</a>. </small></li> -<li id="lastpage"><b><a href="texmf-dist/doc/latex/lastpage">lastpage</a></b><small> +<li id="lastpage"><b><a href="texmf-dist/doc/latex/lastpage/">lastpage</a></b><small> (<a href="https://ctan.org/pkg/lastpage">CTAN</a>): -Reference last page for Page N of M type footers +Reference last page for Page N of M type footers. <a href="texmf-dist/doc/latex/lastpage/lastpage-example.pdf">lastpage-example.pdf</a> <a href="texmf-dist/doc/latex/lastpage/lastpage.pdf">lastpage.pdf</a>. </small></li> -<li id="latex"><b><a href="texmf-dist/doc/latex/base">latex</a></b><small> +<li id="latex"><b><a href="texmf-dist/doc/latex/base/">latex</a></b><small> (<a href="https://ctan.org/pkg/latex">CTAN</a>): -A TeX macro package that defines LaTeX +A TeX macro package that defines LaTeX. <a href="texmf-dist/doc/latex/base/alltt.pdf">alltt.pdf</a> <a href="texmf-dist/doc/latex/base/cfgguide.pdf">cfgguide.pdf</a> <a href="texmf-dist/doc/latex/base/classes.pdf">classes.pdf</a> @@ -12008,9 +11977,9 @@ A TeX macro package that defines LaTeX <a href="texmf-dist/doc/latex/base/webcomp.pdf">webcomp.pdf</a>. </small></li> -<li id="latex-amsmath-dev"><b><a href="texmf-dist/doc/latex-dev/amsmath">latex-amsmath-dev</a></b><small> +<li id="latex-amsmath-dev"><b><a href="texmf-dist/doc/latex-dev/amsmath/">latex-amsmath-dev</a></b><small> (<a href="https://ctan.org/pkg/latex-amsmath-dev">CTAN</a>): -Development pre-release of the LaTeX amsmath bundle +Development pre-release of the LaTeX amsmath bundle. <a href="texmf-dist/doc/latex-dev/amsmath/amsbsy.pdf">amsbsy.pdf</a> <a href="texmf-dist/doc/latex-dev/amsmath/amscd.pdf">amscd.pdf</a> <a href="texmf-dist/doc/latex-dev/amsmath/amsgen.pdf">amsgen.pdf</a> @@ -12024,9 +11993,9 @@ Development pre-release of the LaTeX amsmath bundle <a href="texmf-dist/doc/latex-dev/amsmath/testmath.pdf">testmath.pdf</a>. </small></li> -<li id="latex-base-dev"><b><a href="texmf-dist/doc/latex-dev/base">latex-base-dev</a></b><small> +<li id="latex-base-dev"><b><a href="texmf-dist/doc/latex-dev/base/">latex-base-dev</a></b><small> (<a href="https://ctan.org/pkg/latex-base-dev">CTAN</a>): -Development pre-release of the LaTeX kernel +Development pre-release of the LaTeX kernel. <a href="texmf-dist/doc/latex-dev/base/alltt.pdf">alltt.pdf</a> <a href="texmf-dist/doc/latex-dev/base/cfgguide.pdf">cfgguide.pdf</a> <a href="texmf-dist/doc/latex-dev/base/classes.pdf">classes.pdf</a> @@ -12100,18 +12069,16 @@ Development pre-release of the LaTeX kernel <a href="texmf-dist/doc/latex-dev/base/webcomp.pdf">webcomp.pdf</a>. </small></li> -<li id="latex-bin"><b><a href="texmf-dist/doc/man/man1">latex-bin</a></b><small> -(<a href="https://ctan.org/pkg/latex-bin">CTAN</a>): -LaTeX executables and man pages +<li id="latex-bin"><b><a href="texmf-dist/doc/man/man1/">latex-bin</a></b><small> +LaTeX executables and man pages. <a href="texmf-dist/doc/man/man1/dvilualatex.man1.pdf">dvilualatex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/latex.man1.pdf">latex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/lualatex.man1.pdf">lualatex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/pdflatex.man1.pdf">pdflatex.man1.pdf</a>. </small></li> -<li id="latex-bin-dev"><b><a href="texmf-dist/doc/man/man1">latex-bin-dev</a></b><small> -(<a href="https://ctan.org/pkg/latex-bin-dev">CTAN</a>): -LaTeX pre-release executables and formats +<li id="latex-bin-dev"><b><a href="texmf-dist/doc/man/man1/">latex-bin-dev</a></b><small> +LaTeX pre-release executables and formats. <a href="texmf-dist/doc/man/man1/dvilualatex-dev.man1.pdf">dvilualatex-dev.man1.pdf</a> <a href="texmf-dist/doc/man/man1/latex-dev.man1.pdf">latex-dev.man1.pdf</a> <a href="texmf-dist/doc/man/man1/lualatex-dev.man1.pdf">lualatex-dev.man1.pdf</a> @@ -12121,34 +12088,34 @@ LaTeX pre-release executables and formats <a href="texmf-dist/doc/man/man1/xelatex-dev.man1.pdf">xelatex-dev.man1.pdf</a>. </small></li> -<li id="latex-brochure"><b><a href="texmf-dist/doc/latex/latex-brochure">latex-brochure</a></b><small> +<li id="latex-brochure"><b><a href="texmf-dist/doc/latex/latex-brochure/">latex-brochure</a></b><small> (<a href="https://ctan.org/pkg/latex-brochure">CTAN</a>): -A publicity flyer for LaTeX +A publicity flyer for LaTeX. <a href="texmf-dist/doc/latex/latex-brochure/index.html">index.html</a>. </small></li> -<li id="latex-course"><b><a href="texmf-dist/doc/latex/latex-course">latex-course</a></b><small> +<li id="latex-course"><b><a href="texmf-dist/doc/latex/latex-course/">latex-course</a></b><small> (<a href="https://ctan.org/pkg/latex-course">CTAN</a>): -A LaTeX course as a projected presentation +A LaTeX course as a projected presentation. <a href="texmf-dist/doc/latex/latex-course/LaTeX-Course.pdf">LaTeX-Course.pdf</a>. </small></li> -<li id="latex-doc-ptr"><b><a href="texmf-dist/doc/latex/latex-doc-ptr">latex-doc-ptr</a></b><small> +<li id="latex-doc-ptr"><b><a href="texmf-dist/doc/latex/latex-doc-ptr/">latex-doc-ptr</a></b><small> (<a href="https://ctan.org/pkg/latex-doc-ptr">CTAN</a>): -A direction-finder for LaTeX documentation +A direction-finder for LaTeX documentation. <a href="texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.pdf">latex-doc-ptr.pdf</a>. </small></li> -<li id="latex-git-log"><b><a href="texmf-dist/doc/man/man1">latex-git-log</a></b><small> +<li id="latex-git-log"><b><a href="texmf-dist/doc/support/latex-git-log/">latex-git-log</a></b><small> (<a href="https://ctan.org/pkg/latex-git-log">CTAN</a>): -Typeset git log information +Typeset git log information. <a href="texmf-dist/doc/man/man1/latex-git-log.man1.pdf">latex-git-log.man1.pdf</a> <a href="texmf-dist/doc/support/latex-git-log/example.pdf">example.pdf</a>. </small></li> -<li id="latex-graphics-dev"><b><a href="texmf-dist/doc/latex-dev/graphics">latex-graphics-dev</a></b><small> +<li id="latex-graphics-dev"><b><a href="texmf-dist/doc/latex-dev/graphics/">latex-graphics-dev</a></b><small> (<a href="https://ctan.org/pkg/latex-graphics-dev">CTAN</a>): -Development pre-release of the LaTeX graphics bundle +Development pre-release of the LaTeX graphics bundle. <a href="texmf-dist/doc/latex-dev/graphics/color.pdf">color.pdf</a> <a href="texmf-dist/doc/latex-dev/graphics/drivers.pdf">drivers.pdf</a> <a href="texmf-dist/doc/latex-dev/graphics/epsfig.pdf">epsfig.pdf</a> @@ -12162,35 +12129,35 @@ Development pre-release of the LaTeX graphics bundle <a href="texmf-dist/doc/latex-dev/graphics/trig.pdf">trig.pdf</a>. </small></li> -<li id="latex-make"><b><a href="texmf-dist/doc/support/latex-make">latex-make</a></b><small> +<li id="latex-make"><b><a href="texmf-dist/doc/support/latex-make/">latex-make</a></b><small> (<a href="https://ctan.org/pkg/latex-make">CTAN</a>): -Easy compiling of complex (and simple) LaTeX documents +Easy compiling of complex (and simple) LaTeX documents. <a href="texmf-dist/doc/support/latex-make/figlatex.pdf">figlatex.pdf</a> <a href="texmf-dist/doc/support/latex-make/latex-make.pdf">latex-make.pdf</a> <a href="texmf-dist/doc/support/latex-make/texdepends.pdf">texdepends.pdf</a>. </small></li> -<li id="latex-mr"><b><a href="texmf-dist/doc/latex/latex-mr">latex-mr</a></b><small> +<li id="latex-mr"><b><a href="texmf-dist/doc/latex/latex-mr/">latex-mr</a></b><small> (<a href="https://ctan.org/pkg/latex-mr">CTAN</a>): -A practical guide to LaTeX and Polyglossia for Marathi and other Indian languages +A practical guide to LaTeX and Polyglossia for Marathi and other Indian languages. <a href="texmf-dist/doc/latex/latex-mr/latex-mr.pdf">latex-mr.pdf</a>. </small></li> -<li id="latex-notes-zh-cn"><b><a href="texmf-dist/doc/generic/latex-notes-zh-cn">latex-notes-zh-cn</a></b><small> +<li id="latex-notes-zh-cn"><b><a href="texmf-dist/doc/generic/latex-notes-zh-cn/">latex-notes-zh-cn</a></b><small> (<a href="https://ctan.org/pkg/latex-notes-zh-cn">CTAN</a>): -Chinese Introduction to TeX and LaTeX +Chinese Introduction to TeX and LaTeX. <a href="texmf-dist/doc/generic/latex-notes-zh-cn/latex-notes-zh-cn.pdf">latex-notes-zh-cn.pdf</a> (zh). </small></li> -<li id="latex-referenz"><b><a href="texmf-dist/doc/latex/latex-referenz/images">latex-referenz</a></b><small> +<li id="latex-referenz"><b><a href="texmf-dist/doc/latex/latex-referenz/">latex-referenz</a></b><small> (<a href="https://ctan.org/pkg/latex-referenz">CTAN</a>): -Examples from the book "LaTeX Referenz" +Examples from the book "LaTeX Referenz". <a href="texmf-dist/doc/latex/latex-referenz/images/B.pdf">B.pdf</a>. </small></li> -<li id="latex-refsheet"><b><a href="texmf-dist/doc/latex/latex-refsheet">latex-refsheet</a></b><small> +<li id="latex-refsheet"><b><a href="texmf-dist/doc/latex/latex-refsheet/">latex-refsheet</a></b><small> (<a href="https://ctan.org/pkg/latex-refsheet">CTAN</a>): -LaTeX Reference Sheet for a thesis with KOMA-Script +LaTeX Reference Sheet for a thesis with KOMA-Script. <a href="texmf-dist/doc/latex/latex-refsheet/LaTeX_RefSheet.pdf">LaTeX_RefSheet.pdf</a> <a href="texmf-dist/doc/latex/latex-refsheet/acknowledgements.pdf">acknowledgements.pdf</a> <a href="texmf-dist/doc/latex/latex-refsheet/header-graph.pdf">header-graph.pdf</a> @@ -12198,16 +12165,16 @@ LaTeX Reference Sheet for a thesis with KOMA-Script <a href="texmf-dist/doc/latex/latex-refsheet/thesis.pdf">thesis.pdf</a>. </small></li> -<li id="latex-tds"><b><a href="texmf-dist/doc/latex/latex-tds">latex-tds</a></b><small> +<li id="latex-tds"><b><a href="texmf-dist/doc/latex/latex-tds/">latex-tds</a></b><small> (<a href="https://ctan.org/pkg/latex-tds">CTAN</a>): -A structured copy of the LaTeX distribution +A structured copy of the LaTeX distribution. <a href="texmf-dist/doc/latex/latex-tds/README.html">README.html</a> <a href="texmf-dist/doc/latex/latex-tds/README.pdf">README.pdf</a>. </small></li> -<li id="latex-tools-dev"><b><a href="texmf-dist/doc/latex-dev/tools">latex-tools-dev</a></b><small> +<li id="latex-tools-dev"><b><a href="texmf-dist/doc/latex-dev/tools/">latex-tools-dev</a></b><small> (<a href="https://ctan.org/pkg/latex-tools-dev">CTAN</a>): -Development pre-release of the LaTeX tools bundle +Development pre-release of the LaTeX tools bundle. <a href="texmf-dist/doc/latex-dev/tools/afterpage.pdf">afterpage.pdf</a> <a href="texmf-dist/doc/latex-dev/tools/array.pdf">array.pdf</a> <a href="texmf-dist/doc/latex-dev/tools/bm.pdf">bm.pdf</a> @@ -12237,23 +12204,22 @@ Development pre-release of the LaTeX tools bundle <a href="texmf-dist/doc/latex-dev/tools/xspace.pdf">xspace.pdf</a>. </small></li> -<li id="latex-veryshortguide"><b><a href="texmf-dist/doc/latex/latex-veryshortguide">latex-veryshortguide</a></b><small> +<li id="latex-veryshortguide"><b><a href="texmf-dist/doc/latex/latex-veryshortguide/">latex-veryshortguide</a></b><small> (<a href="https://ctan.org/pkg/latex-veryshortguide">CTAN</a>): -The Very Short Guide to LaTeX +The Very Short Guide to LaTeX. <a href="texmf-dist/doc/latex/latex-veryshortguide/veryshortguide-A4-imposed.pdf">veryshortguide-A4-imposed.pdf</a> <a href="texmf-dist/doc/latex/latex-veryshortguide/veryshortguide.pdf">veryshortguide.pdf</a>. </small></li> -<li id="latex-via-exemplos"><b><a href="texmf-dist/doc/latex/latex-via-exemplos">latex-via-exemplos</a></b><small> +<li id="latex-via-exemplos"><b><a href="texmf-dist/doc/latex/latex-via-exemplos/">latex-via-exemplos</a></b><small> (<a href="https://ctan.org/pkg/latex-via-exemplos">CTAN</a>): -A LaTeX course written in brazilian portuguese language +A LaTeX course written in brazilian portuguese language. <a href="texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.pdf">latex-via-exemplos-oneside.pdf</a> <a href="texmf-dist/doc/latex/latex-via-exemplos/latex-via-exemplos.pdf">latex-via-exemplos.pdf</a>. </small></li> -<li id="latex-web-companion"><b><a href="texmf-dist/doc/latex/latex-web-companion/apa">latex-web-companion</a></b><small> -(<a href="https://ctan.org/pkg/latex-web-companion">CTAN</a>): -Examples from The LaTeX Web Companion +<li id="latex-web-companion"><b><a href="texmf-dist/doc/latex/latex-web-companion/">latex-web-companion</a></b><small> +Examples from The LaTeX Web Companion. <a href="texmf-dist/doc/latex/latex-web-companion/apa/teched.html">teched.html</a> <a href="texmf-dist/doc/latex/latex-web-companion/apc/utf8.html">utf8.html</a> <a href="texmf-dist/doc/latex/latex-web-companion/apc/utf8raw.html">utf8raw.html</a> @@ -12266,40 +12232,39 @@ Examples from The LaTeX Web Companion <a href="texmf-dist/doc/latex/latex-web-companion/ch7/invfo1.pdf">invfo1.pdf</a>. </small></li> -<li id="latex2e-help-texinfo"><b><a href="texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures">latex2e-help-texinfo</a></b><small> +<li id="latex2e-help-texinfo"><b><a href="texmf-dist/doc/latex/latex2e-help-texinfo/">latex2e-help-texinfo</a></b><small> (<a href="https://ctan.org/pkg/latex2e-help-texinfo">CTAN</a>): -Unofficial reference manual covering LaTeX2e +Unofficial reference manual covering LaTeX2e. <a href="texmf-dist/doc/latex/latex2e-help-texinfo/latex2e-figures/list.pdf">list.pdf</a> <a href="texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.html">latex2e.html</a> <a href="texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.pdf">latex2e.pdf</a>. </small></li> -<li id="latex2e-help-texinfo-fr"><b><a href="texmf-dist/doc/latex/latex2e-help-texinfo-fr">latex2e-help-texinfo-fr</a></b><small> +<li id="latex2e-help-texinfo-fr"><b><a href="texmf-dist/doc/latex/latex2e-help-texinfo-fr/">latex2e-help-texinfo-fr</a></b><small> (<a href="https://ctan.org/pkg/latex2e-help-texinfo-fr">CTAN</a>): -A French translation of "latex2e-help-texinfo" +A French translation of "latex2e-help-texinfo". <a href="texmf-dist/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.html">latex2e-fr.html</a> (fr) <a href="texmf-dist/doc/latex/latex2e-help-texinfo-fr/latex2e-fr.pdf">latex2e-fr.pdf</a> (fr). </small></li> -<li id="latex2e-help-texinfo-spanish"><b><a href="texmf-dist/doc/latex/latex2e-help-texinfo-spanish">latex2e-help-texinfo-spanish</a></b><small> -(<a href="https://ctan.org/pkg/latex2e-help-texinfo-spanish">CTAN</a>): -Unofficial reference manual covering LaTeX2e +<li id="latex2e-help-texinfo-spanish"><b><a href="texmf-dist/doc/latex/latex2e-help-texinfo-spanish/">latex2e-help-texinfo-spanish</a></b><small> +Unofficial reference manual covering LaTeX2e. <a href="texmf-dist/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.html">latex2e-es.html</a> (es) <a href="texmf-dist/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.pdf">latex2e-es.pdf</a>. </small></li> -<li id="latex2man"><b><a href="texmf-dist/doc/man/man1">latex2man</a></b><small> +<li id="latex2man"><b><a href="texmf-dist/doc/support/latex2man/">latex2man</a></b><small> (<a href="https://ctan.org/pkg/latex2man">CTAN</a>): -Translate LaTeX-based manual pages into Unix man format +Translate LaTeX-based manual pages into Unix man format. <a href="texmf-dist/doc/man/man1/latex2man.man1.pdf">latex2man.man1.pdf</a> <a href="texmf-dist/doc/support/latex2man/latex2man-CHANGES.html">latex2man-CHANGES.html</a> <a href="texmf-dist/doc/support/latex2man/latex2man.html">latex2man.html</a> <a href="texmf-dist/doc/support/latex2man/latex2man.pdf">latex2man.pdf</a>. </small></li> -<li id="latex4musicians"><b><a href="texmf-dist/doc/latex/latex4musicians">latex4musicians</a></b><small> +<li id="latex4musicians"><b><a href="texmf-dist/doc/latex/latex4musicians/">latex4musicians</a></b><small> (<a href="https://ctan.org/pkg/latex4musicians">CTAN</a>): -A guide for combining LaTeX and music +A guide for combining LaTeX and music. <a href="texmf-dist/doc/latex/latex4musicians/abctab.pdf">abctab.pdf</a> <a href="texmf-dist/doc/latex/latex4musicians/bravura.pdf">bravura.pdf</a> <a href="texmf-dist/doc/latex/latex4musicians/chordii.pdf">chordii.pdf</a> @@ -12340,151 +12305,150 @@ A guide for combining LaTeX and music <a href="texmf-dist/doc/latex/latex4musicians/verses-chords.pdf">verses-chords.pdf</a>. </small></li> -<li id="latex4wp"><b><a href="texmf-dist/doc/latex/latex4wp">latex4wp</a></b><small> +<li id="latex4wp"><b><a href="texmf-dist/doc/latex/latex4wp/">latex4wp</a></b><small> (<a href="https://ctan.org/pkg/latex4wp">CTAN</a>): -A LaTeX guide specifically designed for word processor users +A LaTeX guide specifically designed for word processor users. <a href="texmf-dist/doc/latex/latex4wp/gnuplot.pdf">gnuplot.pdf</a> <a href="texmf-dist/doc/latex/latex4wp/latex4wp.pdf">latex4wp.pdf</a> <a href="texmf-dist/doc/latex/latex4wp/tbx.pdf">tbx.pdf</a>. </small></li> -<li id="latex4wp-it"><b><a href="texmf-dist/doc/latex/latex4wp-it">latex4wp-it</a></b><small> +<li id="latex4wp-it"><b><a href="texmf-dist/doc/latex/latex4wp-it/">latex4wp-it</a></b><small> (<a href="https://ctan.org/pkg/latex4wp-it">CTAN</a>): -LaTeX guide for word processor users, in Italian +LaTeX guide for word processor users, in Italian. <a href="texmf-dist/doc/latex/latex4wp-it/gnuplot.pdf">gnuplot.pdf</a> <a href="texmf-dist/doc/latex/latex4wp-it/latex4wp-it.pdf">latex4wp-it.pdf</a> (it) <a href="texmf-dist/doc/latex/latex4wp-it/tbx.pdf">tbx.pdf</a>. </small></li> -<li id="latexbangla"><b><a href="texmf-dist/doc/latex/latexbangla">latexbangla</a></b><small> +<li id="latexbangla"><b><a href="texmf-dist/doc/latex/latexbangla/">latexbangla</a></b><small> (<a href="https://ctan.org/pkg/latexbangla">CTAN</a>): -Enhanced LaTeX integration for Bangla +Enhanced LaTeX integration for Bangla. <a href="texmf-dist/doc/latex/latexbangla/latexbangla.pdf">latexbangla.pdf</a>. </small></li> -<li id="latexbug"><b><a href="texmf-dist/doc/latex/latexbug">latexbug</a></b><small> +<li id="latexbug"><b><a href="texmf-dist/doc/latex/latexbug/">latexbug</a></b><small> (<a href="https://ctan.org/pkg/latexbug">CTAN</a>): -Bug-classification for LaTeX related bugs +Bug-classification for LaTeX related bugs. <a href="texmf-dist/doc/latex/latexbug/latexbug.pdf">latexbug.pdf</a>. </small></li> -<li id="latexcheat"><b><a href="texmf-dist/doc/latex/latexcheat">latexcheat</a></b><small> +<li id="latexcheat"><b><a href="texmf-dist/doc/latex/latexcheat/">latexcheat</a></b><small> (<a href="https://ctan.org/pkg/latexcheat">CTAN</a>): -A LaTeX cheat sheet +A LaTeX cheat sheet. <a href="texmf-dist/doc/latex/latexcheat/latexsheet.pdf">latexsheet.pdf</a>. </small></li> -<li id="latexcheat-de"><b><a href="texmf-dist/doc/latex/latexcheat-de">latexcheat-de</a></b><small> +<li id="latexcheat-de"><b><a href="texmf-dist/doc/latex/latexcheat-de/">latexcheat-de</a></b><small> (<a href="https://ctan.org/pkg/latexcheat-de">CTAN</a>): -A LaTeX cheat sheet, in German +A LaTeX cheat sheet, in German. <a href="texmf-dist/doc/latex/latexcheat-de/latexsheet-de.pdf">latexsheet-de.pdf</a> (de). </small></li> -<li id="latexcheat-esmx"><b><a href="texmf-dist/doc/latex/latexcheat-esmx">latexcheat-esmx</a></b><small> +<li id="latexcheat-esmx"><b><a href="texmf-dist/doc/latex/latexcheat-esmx/">latexcheat-esmx</a></b><small> (<a href="https://ctan.org/pkg/latexcheat-esmx">CTAN</a>): -A LaTeX cheat sheet, in Spanish +A LaTeX cheat sheet, in Spanish. <a href="texmf-dist/doc/latex/latexcheat-esmx/latexsheet-esmx.pdf">latexsheet-esmx.pdf</a> (es). </small></li> -<li id="latexcheat-ptbr"><b><a href="texmf-dist/doc/latex/latexcheat-ptbr">latexcheat-ptbr</a></b><small> +<li id="latexcheat-ptbr"><b><a href="texmf-dist/doc/latex/latexcheat-ptbr/">latexcheat-ptbr</a></b><small> (<a href="https://ctan.org/pkg/latexcheat-ptbr">CTAN</a>): -A LaTeX cheat sheet, in Brazilian Portuguese +A LaTeX cheat sheet, in Brazilian Portuguese. <a href="texmf-dist/doc/latex/latexcheat-ptbr/latexsheet-ptbr.pdf">latexsheet-ptbr.pdf</a> (pt). </small></li> -<li id="latexcolors"><b><a href="texmf-dist/doc/latex/latexcolors">latexcolors</a></b><small> +<li id="latexcolors"><b><a href="texmf-dist/doc/latex/latexcolors/">latexcolors</a></b><small> (<a href="https://ctan.org/pkg/latexcolors">CTAN</a>): -Use color definitions from latexcolor.com +Use color definitions from latexcolor.com. <a href="texmf-dist/doc/latex/latexcolors/latexcolors.pdf">latexcolors.pdf</a>. </small></li> -<li id="latexcourse-rug"><b><a href="texmf-dist/doc/latex/latexcourse-rug">latexcourse-rug</a></b><small> +<li id="latexcourse-rug"><b><a href="texmf-dist/doc/latex/latexcourse-rug/">latexcourse-rug</a></b><small> (<a href="https://ctan.org/pkg/latexcourse-rug">CTAN</a>): -A LaTeX course book +A LaTeX course book. <a href="texmf-dist/doc/latex/latexcourse-rug/latexcourse-rug.pdf">latexcourse-rug.pdf</a>. </small></li> -<li id="latexdemo"><b><a href="texmf-dist/doc/latex/latexdemo">latexdemo</a></b><small> +<li id="latexdemo"><b><a href="texmf-dist/doc/latex/latexdemo/">latexdemo</a></b><small> (<a href="https://ctan.org/pkg/latexdemo">CTAN</a>): -Demonstrate LaTeX code with its resulting output +Demonstrate LaTeX code with its resulting output. <a href="texmf-dist/doc/latex/latexdemo/latexdemo.pdf">latexdemo.pdf</a>. </small></li> -<li id="latexdiff"><b><a href="texmf-dist/doc/man/man1">latexdiff</a></b><small> +<li id="latexdiff"><b><a href="texmf-dist/doc/support/latexdiff/">latexdiff</a></b><small> (<a href="https://ctan.org/pkg/latexdiff">CTAN</a>): -Determine and mark up significant differences between LaTeX files +Determine and mark up significant differences between LaTeX files. <a href="texmf-dist/doc/man/man1/latexdiff-vc.man1.pdf">latexdiff-vc.man1.pdf</a> <a href="texmf-dist/doc/man/man1/latexdiff.man1.pdf">latexdiff.man1.pdf</a> <a href="texmf-dist/doc/man/man1/latexrevise.man1.pdf">latexrevise.man1.pdf</a> <a href="texmf-dist/doc/support/latexdiff/doc/latexdiff-man.pdf">latexdiff-man.pdf</a>. </small></li> -<li id="latexgit"><b><a href="texmf-dist/doc/latex/latexgit">latexgit</a></b><small> +<li id="latexgit"><b><a href="texmf-dist/doc/latex/latexgit/">latexgit</a></b><small> (<a href="https://ctan.org/pkg/latexgit">CTAN</a>): -A LaTeX git wrapper +A LaTeX git wrapper. <a href="texmf-dist/doc/latex/latexgit/latexgit.pdf">latexgit.pdf</a>. </small></li> -<li id="latexindent"><b><a href="texmf-dist/doc/support/latexindent">latexindent</a></b><small> +<li id="latexindent"><b><a href="texmf-dist/doc/support/latexindent/">latexindent</a></b><small> (<a href="https://ctan.org/pkg/latexindent">CTAN</a>): -Indent a LaTeX document, highlighting the programming structure +Indent a LaTeX document, highlighting the programming structure. <a href="texmf-dist/doc/support/latexindent/latexindent.pdf">latexindent.pdf</a>. </small></li> -<li id="latexmk"><b><a href="texmf-dist/doc/man/man1">latexmk</a></b><small> +<li id="latexmk"><b><a href="texmf-dist/doc/support/latexmk/">latexmk</a></b><small> (<a href="https://ctan.org/pkg/latexmk">CTAN</a>): -Fully automated LaTeX document generation +Fully automated LaTeX document generation. <a href="texmf-dist/doc/man/man1/latexmk.man1.pdf">latexmk.man1.pdf</a> <a href="texmf-dist/doc/support/latexmk/latexmk.pdf">latexmk.pdf</a>. </small></li> -<li id="latexmp"><b><a href="texmf-dist/doc/metapost/latexmp">latexmp</a></b><small> +<li id="latexmp"><b><a href="texmf-dist/doc/metapost/latexmp/">latexmp</a></b><small> (<a href="https://ctan.org/pkg/latexmp">CTAN</a>): -Interface for LaTeX-based typesetting in MetaPost +Interface for LaTeX-based typesetting in MetaPost. <a href="texmf-dist/doc/metapost/latexmp/latexmp.pdf">latexmp.pdf</a>. </small></li> -<li id="lato"><b><a href="texmf-dist/doc/fonts/lato">lato</a></b><small> +<li id="lato"><b><a href="texmf-dist/doc/fonts/lato/">lato</a></b><small> (<a href="https://ctan.org/pkg/lato">CTAN</a>): -Lato font family and LaTeX support +Lato font family and LaTeX support. <a href="texmf-dist/doc/fonts/lato/lato-samples.pdf">lato-samples.pdf</a> <a href="texmf-dist/doc/fonts/lato/lato.pdf">lato.pdf</a>. </small></li> -<li id="layaureo"><b><a href="texmf-dist/doc/latex/layaureo">layaureo</a></b><small> +<li id="layaureo"><b><a href="texmf-dist/doc/latex/layaureo/">layaureo</a></b><small> (<a href="https://ctan.org/pkg/layaureo">CTAN</a>): -A package to improve the A4 page layout +A package to improve the A4 page layout. <a href="texmf-dist/doc/latex/layaureo/layaureo.pdf">layaureo.pdf</a> (it). </small></li> -<li id="layouts"><b><a href="texmf-dist/doc/latex/layouts">layouts</a></b><small> +<li id="layouts"><b><a href="texmf-dist/doc/latex/layouts/">layouts</a></b><small> (<a href="https://ctan.org/pkg/layouts">CTAN</a>): -Display various elements of a document's layout +Display various elements of a document's layout. <a href="texmf-dist/doc/latex/layouts/layman.pdf">layman.pdf</a> <a href="texmf-dist/doc/latex/layouts/layouts.pdf">layouts.pdf</a>. </small></li> -<li id="lazylist"><b><a href="texmf-dist/doc/latex/lazylist">lazylist</a></b><small> +<li id="lazylist"><b><a href="texmf-dist/doc/latex/lazylist/">lazylist</a></b><small> (<a href="https://ctan.org/pkg/lazylist">CTAN</a>): -Lists in TeX's "mouth" +Lists in TeX's "mouth". <a href="texmf-dist/doc/latex/lazylist/lazylist.pdf">lazylist.pdf</a>. </small></li> -<li id="lccaps"><b><a href="texmf-dist/doc/latex/lccaps">lccaps</a></b><small> +<li id="lccaps"><b><a href="texmf-dist/doc/latex/lccaps/">lccaps</a></b><small> (<a href="https://ctan.org/pkg/lccaps">CTAN</a>): -Lowercased (spaced) small capitals +Lowercased (spaced) small capitals. <a href="texmf-dist/doc/latex/lccaps/lccaps.pdf">lccaps.pdf</a>. </small></li> -<li id="lcd"><b><a href="texmf-dist/doc/latex/lcd">lcd</a></b><small> +<li id="lcd"><b><a href="texmf-dist/doc/latex/lcd/">lcd</a></b><small> (<a href="https://ctan.org/pkg/lcd">CTAN</a>): -Alphanumerical LCD-style displays +Alphanumerical LCD-style displays. <a href="texmf-dist/doc/latex/lcd/example.pdf">example.pdf</a>. </small></li> -<li id="lcdftypetools"><b><a href="texmf-dist/doc/man/man1">lcdftypetools</a></b><small> -(<a href="https://ctan.org/pkg/lcdftypetools">CTAN</a>): -A bundle of outline font manipulation tools +<li id="lcdftypetools"><b><a href="texmf-dist/doc/man/man1/">lcdftypetools</a></b><small> +A bundle of outline font manipulation tools. <a href="texmf-dist/doc/man/man1/cfftot1.man1.pdf">cfftot1.man1.pdf</a> <a href="texmf-dist/doc/man/man1/mmafm.man1.pdf">mmafm.man1.pdf</a> <a href="texmf-dist/doc/man/man1/mmpfb.man1.pdf">mmpfb.man1.pdf</a> @@ -12498,40 +12462,40 @@ A bundle of outline font manipulation tools <a href="texmf-dist/doc/man/man1/ttftotype42.man1.pdf">ttftotype42.man1.pdf</a>. </small></li> -<li id="lcg"><b><a href="texmf-dist/doc/latex/lcg">lcg</a></b><small> +<li id="lcg"><b><a href="texmf-dist/doc/latex/lcg/">lcg</a></b><small> (<a href="https://ctan.org/pkg/lcg">CTAN</a>): -Generate random integers +Generate random integers. <a href="texmf-dist/doc/latex/lcg/lcg.pdf">lcg.pdf</a>. </small></li> -<li id="lcyw"><b><a href="texmf-dist/doc/latex/lcyw">lcyw</a></b><small> +<li id="lcyw"><b><a href="texmf-dist/doc/latex/lcyw/">lcyw</a></b><small> (<a href="https://ctan.org/pkg/lcyw">CTAN</a>): -Make Classic Cyrillic CM fonts accessible in LaTeX +Make Classic Cyrillic CM fonts accessible in LaTeX. <a href="texmf-dist/doc/latex/lcyw/lcyw.pdf">lcyw.pdf</a>. </small></li> -<li id="leading"><b><a href="texmf-dist/doc/latex/leading">leading</a></b><small> +<li id="leading"><b><a href="texmf-dist/doc/latex/leading/">leading</a></b><small> (<a href="https://ctan.org/pkg/leading">CTAN</a>): -Define leading with a length +Define leading with a length. <a href="texmf-dist/doc/latex/leading/leading.pdf">leading.pdf</a>. </small></li> -<li id="leadsheets"><b><a href="texmf-dist/doc/latex/leadsheets">leadsheets</a></b><small> +<li id="leadsheets"><b><a href="texmf-dist/doc/latex/leadsheets/">leadsheets</a></b><small> (<a href="https://ctan.org/pkg/leadsheets">CTAN</a>): -Typesetting leadsheets and songbooks +Typesetting leadsheets and songbooks. <a href="texmf-dist/doc/latex/leadsheets/leadsheets_en.pdf">leadsheets_en.pdf</a>. </small></li> -<li id="leaflet"><b><a href="texmf-dist/doc/latex/leaflet">leaflet</a></b><small> +<li id="leaflet"><b><a href="texmf-dist/doc/latex/leaflet/">leaflet</a></b><small> (<a href="https://ctan.org/pkg/leaflet">CTAN</a>): -Create small handouts (flyers) +Create small handouts (flyers). <a href="texmf-dist/doc/latex/leaflet/leaflet-manual.pdf">leaflet-manual.pdf</a> <a href="texmf-dist/doc/latex/leaflet/leaflet.pdf">leaflet.pdf</a>. </small></li> -<li id="lecturer"><b><a href="texmf-dist/doc/generic/lecturer">lecturer</a></b><small> +<li id="lecturer"><b><a href="texmf-dist/doc/generic/lecturer/">lecturer</a></b><small> (<a href="https://ctan.org/pkg/lecturer">CTAN</a>): -On-screen presentations for (almost) all formats +On-screen presentations for (almost) all formats. <a href="texmf-dist/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.pdf">LecturerDemo-BeamerCambridgeUS.pdf</a> <a href="texmf-dist/doc/generic/lecturer/LecturerDemo-KitschScienceFiction.pdf">LecturerDemo-KitschScienceFiction.pdf</a> <a href="texmf-dist/doc/generic/lecturer/LecturerDemo-Mondrian.pdf">LecturerDemo-Mondrian.pdf</a> @@ -12542,144 +12506,144 @@ On-screen presentations for (almost) all formats <a href="texmf-dist/doc/generic/lecturer/lecturer-doc.pdf">lecturer-doc.pdf</a>. </small></li> -<li id="ledmac"><b><a href="texmf-dist/doc/latex/ledmac">ledmac</a></b><small> +<li id="ledmac"><b><a href="texmf-dist/doc/latex/ledmac/">ledmac</a></b><small> (<a href="https://ctan.org/pkg/ledmac">CTAN</a>): -Typeset scholarly editions +Typeset scholarly editions. <a href="texmf-dist/doc/latex/ledmac/ledarab.pdf">ledarab.pdf</a> <a href="texmf-dist/doc/latex/ledmac/ledmac.pdf">ledmac.pdf</a> <a href="texmf-dist/doc/latex/ledmac/ledpar.pdf">ledpar.pdf</a>. </small></li> -<li id="leftidx"><b><a href="texmf-dist/doc/latex/leftidx">leftidx</a></b><small> +<li id="leftidx"><b><a href="texmf-dist/doc/latex/leftidx/">leftidx</a></b><small> (<a href="https://ctan.org/pkg/leftidx">CTAN</a>): -Left and right subscripts and superscripts in math mode +Left and right subscripts and superscripts in math mode. <a href="texmf-dist/doc/latex/leftidx/leftidx.pdf">leftidx.pdf</a>. </small></li> -<li id="leipzig"><b><a href="texmf-dist/doc/latex/leipzig">leipzig</a></b><small> +<li id="leipzig"><b><a href="texmf-dist/doc/latex/leipzig/">leipzig</a></b><small> (<a href="https://ctan.org/pkg/leipzig">CTAN</a>): -Typeset and index linguistic gloss abbreviations +Typeset and index linguistic gloss abbreviations. <a href="texmf-dist/doc/latex/leipzig/leipzig.pdf">leipzig.pdf</a>. </small></li> -<li id="lengthconvert"><b><a href="texmf-dist/doc/latex/lengthconvert">lengthconvert</a></b><small> +<li id="lengthconvert"><b><a href="texmf-dist/doc/latex/lengthconvert/">lengthconvert</a></b><small> (<a href="https://ctan.org/pkg/lengthconvert">CTAN</a>): -Express lengths in arbitrary units +Express lengths in arbitrary units. <a href="texmf-dist/doc/latex/lengthconvert/lengthconvert.pdf">lengthconvert.pdf</a>. </small></li> -<li id="letltxmacro"><b><a href="texmf-dist/doc/latex/letltxmacro">letltxmacro</a></b><small> +<li id="letltxmacro"><b><a href="texmf-dist/doc/latex/letltxmacro/">letltxmacro</a></b><small> (<a href="https://ctan.org/pkg/letltxmacro">CTAN</a>): -Let assignment for LaTeX macros +Let assignment for LaTeX macros. <a href="texmf-dist/doc/latex/letltxmacro/letltxmacro.pdf">letltxmacro.pdf</a>. </small></li> -<li id="letterswitharrows"><b><a href="texmf-dist/doc/latex/letterswitharrows">letterswitharrows</a></b><small> +<li id="letterswitharrows"><b><a href="texmf-dist/doc/latex/letterswitharrows/">letterswitharrows</a></b><small> (<a href="https://ctan.org/pkg/letterswitharrows">CTAN</a>): -Draw arrows over math letters +Draw arrows over math letters. <a href="texmf-dist/doc/latex/letterswitharrows/letterswitharrows.pdf">letterswitharrows.pdf</a>. </small></li> -<li id="lettre"><b><a href="texmf-dist/doc/latex/lettre">lettre</a></b><small> +<li id="lettre"><b><a href="texmf-dist/doc/latex/lettre/">lettre</a></b><small> (<a href="https://ctan.org/pkg/lettre">CTAN</a>): -Letters and faxes in French +Letters and faxes in French. <a href="texmf-dist/doc/latex/lettre/lettre.pdf">lettre.pdf</a> (fr). </small></li> -<li id="lettrine"><b><a href="texmf-dist/doc/latex/lettrine">lettrine</a></b><small> +<li id="lettrine"><b><a href="texmf-dist/doc/latex/lettrine/">lettrine</a></b><small> (<a href="https://ctan.org/pkg/lettrine">CTAN</a>): -Typeset dropped capitals +Typeset dropped capitals. <a href="texmf-dist/doc/latex/lettrine/demo-de.pdf">demo-de.pdf</a> (de) <a href="texmf-dist/doc/latex/lettrine/demo-fr.pdf">demo-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/lettrine/demo-lua.pdf">demo-lua.pdf</a> <a href="texmf-dist/doc/latex/lettrine/lettrine.pdf">lettrine.pdf</a>. </small></li> -<li id="lewis"><b><a href="texmf-dist/doc/latex/lewis">lewis</a></b><small> +<li id="lewis"><b><a href="texmf-dist/doc/latex/lewis/">lewis</a></b><small> (<a href="https://ctan.org/pkg/lewis">CTAN</a>): -Draw Lewis structures +Draw Lewis structures. <a href="texmf-dist/doc/latex/lewis/lewis.pdf">lewis.pdf</a>. </small></li> -<li id="lexend"><b><a href="texmf-dist/doc/fonts/lexend">lexend</a></b><small> +<li id="lexend"><b><a href="texmf-dist/doc/fonts/lexend/">lexend</a></b><small> (<a href="https://ctan.org/pkg/lexend">CTAN</a>): -The Lexend fonts for XeLaTeX and LuaLaTeX through fontspec +The Lexend fonts for XeLaTeX and LuaLaTeX through fontspec. <a href="texmf-dist/doc/fonts/lexend/lexend.pdf">lexend.pdf</a>. </small></li> -<li id="lexikon"><b><a href="texmf-dist/doc/latex/lexikon">lexikon</a></b><small> +<li id="lexikon"><b><a href="texmf-dist/doc/latex/lexikon/">lexikon</a></b><small> (<a href="https://ctan.org/pkg/lexikon">CTAN</a>): -Macros for a two language dictionary +Macros for a two language dictionary. <a href="texmf-dist/doc/latex/lexikon/lexikon-doc.pdf">lexikon-doc.pdf</a>. </small></li> -<li id="lexref"><b><a href="texmf-dist/doc/latex/lexref">lexref</a></b><small> +<li id="lexref"><b><a href="texmf-dist/doc/latex/lexref/">lexref</a></b><small> (<a href="https://ctan.org/pkg/lexref">CTAN</a>): -Convenient and uniform references to legal provisions +Convenient and uniform references to legal provisions. <a href="texmf-dist/doc/latex/lexref/lexref.pdf">lexref.pdf</a>. </small></li> -<li id="lfb"><b><a href="texmf-dist/doc/fonts/lfb">lfb</a></b><small> +<li id="lfb"><b><a href="texmf-dist/doc/fonts/lfb/">lfb</a></b><small> (<a href="https://ctan.org/pkg/lfb">CTAN</a>): -A Greek font with normal and bold variants +A Greek font with normal and bold variants. <a href="texmf-dist/doc/fonts/lfb/example.pdf">example.pdf</a> (el). </small></li> -<li id="lgreek"><b><a href="texmf-dist/doc/latex/lgreek">lgreek</a></b><small> +<li id="lgreek"><b><a href="texmf-dist/doc/latex/lgreek/">lgreek</a></b><small> (<a href="https://ctan.org/pkg/lgreek">CTAN</a>): -LaTeX macros for using Silvio Levy's Greek fonts +LaTeX macros for using Silvio Levy's Greek fonts. <a href="texmf-dist/doc/latex/lgreek/lgreekuse.pdf">lgreekuse.pdf</a>. </small></li> -<li id="lhelp"><b><a href="texmf-dist/doc/latex/lhelp">lhelp</a></b><small> +<li id="lhelp"><b><a href="texmf-dist/doc/latex/lhelp/">lhelp</a></b><small> (<a href="https://ctan.org/pkg/lhelp">CTAN</a>): -Miscellaneous helper packages +Miscellaneous helper packages. <a href="texmf-dist/doc/latex/lhelp/lhelp.pdf">lhelp.pdf</a>. </small></li> -<li id="libertine"><b><a href="texmf-dist/doc/fonts/libertine">libertine</a></b><small> +<li id="libertine"><b><a href="texmf-dist/doc/fonts/libertine/">libertine</a></b><small> (<a href="https://ctan.org/pkg/libertine">CTAN</a>): -Use of Linux Libertine and Biolinum fonts with LaTeX +Use of Linux Libertine and Biolinum fonts with LaTeX. <a href="texmf-dist/doc/fonts/libertine/libertine.pdf">libertine.pdf</a> <a href="texmf-dist/doc/fonts/libertine/samples.pdf">samples.pdf</a>. </small></li> -<li id="libertinegc"><b><a href="texmf-dist/doc/fonts/libertinegc">libertinegc</a></b><small> +<li id="libertinegc"><b><a href="texmf-dist/doc/fonts/libertinegc/">libertinegc</a></b><small> (<a href="https://ctan.org/pkg/libertinegc">CTAN</a>): -Libertine add-on to support Greek and Cyrillic +Libertine add-on to support Greek and Cyrillic. <a href="texmf-dist/doc/fonts/libertinegc/libertinegc-doc.pdf">libertinegc-doc.pdf</a>. </small></li> -<li id="libertinus"><b><a href="texmf-dist/doc/fonts/libertinus">libertinus</a></b><small> +<li id="libertinus"><b><a href="texmf-dist/doc/fonts/libertinus/">libertinus</a></b><small> (<a href="https://ctan.org/pkg/libertinus">CTAN</a>): -Wrapper to use the correct libertinus package according to the used TeX engine +Wrapper to use the correct libertinus package according to the used TeX engine. <a href="texmf-dist/doc/fonts/libertinus/libertinus-doc.pdf">libertinus-doc.pdf</a>. </small></li> -<li id="libertinus-fonts"><b><a href="texmf-dist/doc/fonts/libertinus-fonts">libertinus-fonts</a></b><small> +<li id="libertinus-fonts"><b><a href="texmf-dist/doc/fonts/libertinus-fonts/">libertinus-fonts</a></b><small> (<a href="https://ctan.org/pkg/libertinus-fonts">CTAN</a>): -The Libertinus font family +The Libertinus font family. <a href="texmf-dist/doc/fonts/libertinus-fonts/Math-Sample.pdf">Math-Sample.pdf</a> <a href="texmf-dist/doc/fonts/libertinus-fonts/Opentype-Features.pdf">Opentype-Features.pdf</a> <a href="texmf-dist/doc/fonts/libertinus-fonts/Sample.pdf">Sample.pdf</a>. </small></li> -<li id="libertinus-otf"><b><a href="texmf-dist/doc/fonts/libertinus-otf">libertinus-otf</a></b><small> +<li id="libertinus-otf"><b><a href="texmf-dist/doc/fonts/libertinus-otf/">libertinus-otf</a></b><small> (<a href="https://ctan.org/pkg/libertinus-otf">CTAN</a>): -Support for Libertinus OpenType +Support for Libertinus OpenType. <a href="texmf-dist/doc/fonts/libertinus-otf/libertinus-otf-doc.pdf">libertinus-otf-doc.pdf</a>. </small></li> -<li id="libertinus-type1"><b><a href="texmf-dist/doc/fonts/libertinus-type1">libertinus-type1</a></b><small> +<li id="libertinus-type1"><b><a href="texmf-dist/doc/fonts/libertinus-type1/">libertinus-type1</a></b><small> (<a href="https://ctan.org/pkg/libertinus-type1">CTAN</a>): -Support for using Libertinus fonts with LaTeX/pdfLaTeX +Support for using Libertinus fonts with LaTeX/pdfLaTeX. <a href="texmf-dist/doc/fonts/libertinus-type1/libertinus-samples.pdf">libertinus-samples.pdf</a> <a href="texmf-dist/doc/fonts/libertinus-type1/libertinus-type1.pdf">libertinus-type1.pdf</a>. </small></li> -<li id="libertinust1math"><b><a href="texmf-dist/doc/fonts/libertinust1math">libertinust1math</a></b><small> +<li id="libertinust1math"><b><a href="texmf-dist/doc/fonts/libertinust1math/">libertinust1math</a></b><small> (<a href="https://ctan.org/pkg/libertinust1math">CTAN</a>): -A Type 1 font and LaTeX support for Libertinus Math +A Type 1 font and LaTeX support for Libertinus Math. <a href="texmf-dist/doc/fonts/libertinust1math/LibertinusT1Math-doc.pdf">LibertinusT1Math-doc.pdf</a> <a href="texmf-dist/doc/fonts/libertinust1math/sample1-crop.pdf">sample1-crop.pdf</a> <a href="texmf-dist/doc/fonts/libertinust1math/sample1.pdf">sample1.pdf</a> @@ -12705,57 +12669,57 @@ A Type 1 font and LaTeX support for Libertinus Math <a href="texmf-dist/doc/fonts/libertinust1math/sample9.pdf">sample9.pdf</a>. </small></li> -<li id="libgreek"><b><a href="texmf-dist/doc/latex/libgreek">libgreek</a></b><small> +<li id="libgreek"><b><a href="texmf-dist/doc/latex/libgreek/">libgreek</a></b><small> (<a href="https://ctan.org/pkg/libgreek">CTAN</a>): -Use Libertine or Biolinum Greek glyphs in mathematics +Use Libertine or Biolinum Greek glyphs in mathematics. <a href="texmf-dist/doc/latex/libgreek/libgreek.pdf">libgreek.pdf</a>. </small></li> -<li id="librarian"><b><a href="texmf-dist/doc/generic/librarian">librarian</a></b><small> +<li id="librarian"><b><a href="texmf-dist/doc/generic/librarian/">librarian</a></b><small> (<a href="https://ctan.org/pkg/librarian">CTAN</a>): -Tools to create bibliographies in TeX +Tools to create bibliographies in TeX. <a href="texmf-dist/doc/generic/librarian/librarian-doc.pdf">librarian-doc.pdf</a>. </small></li> -<li id="librebaskerville"><b><a href="texmf-dist/doc/fonts/librebaskerville">librebaskerville</a></b><small> +<li id="librebaskerville"><b><a href="texmf-dist/doc/fonts/librebaskerville/">librebaskerville</a></b><small> (<a href="https://ctan.org/pkg/librebaskerville">CTAN</a>): -LaTeX support for the Libre Baskerville family of fonts +LaTeX support for the Libre Baskerville family of fonts. <a href="texmf-dist/doc/fonts/librebaskerville/librebaskerville-samples.pdf">librebaskerville-samples.pdf</a>. </small></li> -<li id="librebodoni"><b><a href="texmf-dist/doc/fonts/librebodoni">librebodoni</a></b><small> +<li id="librebodoni"><b><a href="texmf-dist/doc/fonts/librebodoni/">librebodoni</a></b><small> (<a href="https://ctan.org/pkg/librebodoni">CTAN</a>): -Libre Bodoni fonts with LaTeX support +Libre Bodoni fonts with LaTeX support. <a href="texmf-dist/doc/fonts/librebodoni/librebodoni-samples.pdf">librebodoni-samples.pdf</a>. </small></li> -<li id="librecaslon"><b><a href="texmf-dist/doc/fonts/librecaslon">librecaslon</a></b><small> +<li id="librecaslon"><b><a href="texmf-dist/doc/fonts/librecaslon/">librecaslon</a></b><small> (<a href="https://ctan.org/pkg/librecaslon">CTAN</a>): -Libre Caslon fonts, with LaTeX support +Libre Caslon fonts, with LaTeX support. <a href="texmf-dist/doc/fonts/librecaslon/librecaslon-samples.pdf">librecaslon-samples.pdf</a>. </small></li> -<li id="librefranklin"><b><a href="texmf-dist/doc/fonts/librefranklin">librefranklin</a></b><small> +<li id="librefranklin"><b><a href="texmf-dist/doc/fonts/librefranklin/">librefranklin</a></b><small> (<a href="https://ctan.org/pkg/librefranklin">CTAN</a>): -LaTeX support for the Libre-Franklin family of fonts +LaTeX support for the Libre-Franklin family of fonts. <a href="texmf-dist/doc/fonts/librefranklin/librefranklin-samples.pdf">librefranklin-samples.pdf</a>. </small></li> -<li id="libris"><b><a href="texmf-dist/doc/fonts/libris">libris</a></b><small> +<li id="libris"><b><a href="texmf-dist/doc/fonts/libris/">libris</a></b><small> (<a href="https://ctan.org/pkg/libris">CTAN</a>): -Libris ADF fonts, with LaTeX support +Libris ADF fonts, with LaTeX support. <a href="texmf-dist/doc/fonts/libris/librisadf.pdf">librisadf.pdf</a>. </small></li> -<li id="lie-hasse"><b><a href="texmf-dist/doc/latex/lie-hasse">lie-hasse</a></b><small> +<li id="lie-hasse"><b><a href="texmf-dist/doc/latex/lie-hasse/">lie-hasse</a></b><small> (<a href="https://ctan.org/pkg/lie-hasse">CTAN</a>): -Draw Hasse diagrams +Draw Hasse diagrams. <a href="texmf-dist/doc/latex/lie-hasse/lie-hasse.pdf">lie-hasse.pdf</a>. </small></li> -<li id="lilyglyphs"><b><a href="texmf-dist/doc/lualatex/lilyglyphs/documentation">lilyglyphs</a></b><small> +<li id="lilyglyphs"><b><a href="texmf-dist/doc/lualatex/lilyglyphs/">lilyglyphs</a></b><small> (<a href="https://ctan.org/pkg/lilyglyphs">CTAN</a>): -Access lilypond fragments and glyphs, in LaTeX +Access lilypond fragments and glyphs, in LaTeX. <a href="texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-de.pdf">lilyglyphs-example-de.pdf</a> <a href="texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.pdf">lilyglyphs-example.pdf</a> <a href="texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.pdf">lilyglyphs.pdf</a> @@ -12763,9 +12727,9 @@ Access lilypond fragments and glyphs, in LaTeX <a href="texmf-dist/doc/lualatex/lilyglyphs/documentation/the-feta-font-2-18-0.html">the-feta-font-2-18-0.html</a>. </small></li> -<li id="limap"><b><a href="texmf-dist/doc/latex/limap">limap</a></b><small> +<li id="limap"><b><a href="texmf-dist/doc/latex/limap/">limap</a></b><small> (<a href="https://ctan.org/pkg/limap">CTAN</a>): -Typeset maps and blocks according to the Information Mapping(r) method +Typeset maps and blocks according to the Information Mapping(r) method. <a href="texmf-dist/doc/latex/limap/limap.pdf">limap.pdf</a> <a href="texmf-dist/doc/latex/limap/samples/boxed-toc.pdf">boxed-toc.pdf</a> <a href="texmf-dist/doc/latex/limap/samples/hyper.pdf">hyper.pdf</a> @@ -12773,9 +12737,9 @@ Typeset maps and blocks according to the Information Mapping(r) method <a href="texmf-dist/doc/latex/limap/samples/sample.pdf">sample.pdf</a>. </small></li> -<li id="limecv"><b><a href="texmf-dist/doc/latex/limecv/examples">limecv</a></b><small> +<li id="limecv"><b><a href="texmf-dist/doc/latex/limecv/">limecv</a></b><small> (<a href="https://ctan.org/pkg/limecv">CTAN</a>): -A (Xe/Lua)LaTeX document class for curriculum vitae +A (Xe/Lua)LaTeX document class for curriculum vitae. <a href="texmf-dist/doc/latex/limecv/examples/limecv-icon.pdf">limecv-icon.pdf</a> <a href="texmf-dist/doc/latex/limecv/examples/mwe-latex.pdf">mwe-latex.pdf</a> <a href="texmf-dist/doc/latex/limecv/examples/mwe-lualatex.pdf">mwe-lualatex.pdf</a> @@ -12783,68 +12747,68 @@ A (Xe/Lua)LaTeX document class for curriculum vitae <a href="texmf-dist/doc/latex/limecv/limecv.pdf">limecv.pdf</a>. </small></li> -<li id="linearA"><b><a href="texmf-dist/doc/fonts/linearA">linearA</a></b><small> +<li id="linearA"><b><a href="texmf-dist/doc/fonts/linearA/">linearA</a></b><small> (<a href="https://ctan.org/pkg/linearA">CTAN</a>): -Linear A script fonts +Linear A script fonts. <a href="texmf-dist/doc/fonts/linearA/linearA_glyphs.pdf">linearA_glyphs.pdf</a>. </small></li> -<li id="linegoal"><b><a href="texmf-dist/doc/latex/linegoal">linegoal</a></b><small> +<li id="linegoal"><b><a href="texmf-dist/doc/latex/linegoal/">linegoal</a></b><small> (<a href="https://ctan.org/pkg/linegoal">CTAN</a>): -A "dimen" that returns the space left on the line +A "dimen" that returns the space left on the line. <a href="texmf-dist/doc/latex/linegoal/linegoal.pdf">linegoal.pdf</a>. </small></li> -<li id="lineno"><b><a href="texmf-dist/doc/latex/lineno">lineno</a></b><small> +<li id="lineno"><b><a href="texmf-dist/doc/latex/lineno/">lineno</a></b><small> (<a href="https://ctan.org/pkg/lineno">CTAN</a>): -Line numbers on paragraphs +Line numbers on paragraphs. <a href="texmf-dist/doc/latex/lineno/fnlineno.pdf">fnlineno.pdf</a> <a href="texmf-dist/doc/latex/lineno/lineno.pdf">lineno.pdf</a> <a href="texmf-dist/doc/latex/lineno/lnosuppl.pdf">lnosuppl.pdf</a> <a href="texmf-dist/doc/latex/lineno/ulineno.pdf">ulineno.pdf</a>. </small></li> -<li id="ling-macros"><b><a href="texmf-dist/doc/latex/ling-macros">ling-macros</a></b><small> +<li id="ling-macros"><b><a href="texmf-dist/doc/latex/ling-macros/">ling-macros</a></b><small> (<a href="https://ctan.org/pkg/ling-macros">CTAN</a>): -Macros for typesetting formal linguistics +Macros for typesetting formal linguistics. <a href="texmf-dist/doc/latex/ling-macros/ling-macros-doc.pdf">ling-macros-doc.pdf</a>. </small></li> -<li id="linguex"><b><a href="texmf-dist/doc/latex/linguex">linguex</a></b><small> +<li id="linguex"><b><a href="texmf-dist/doc/latex/linguex/">linguex</a></b><small> (<a href="https://ctan.org/pkg/linguex">CTAN</a>): -Format linguists' examples +Format linguists' examples. <a href="texmf-dist/doc/latex/linguex/linguex-doc.pdf">linguex-doc.pdf</a> <a href="texmf-dist/doc/latex/linguex/ps-trees-doc.pdf">ps-trees-doc.pdf</a>. </small></li> -<li id="linguisticspro"><b><a href="texmf-dist/doc/fonts/linguisticspro">linguisticspro</a></b><small> +<li id="linguisticspro"><b><a href="texmf-dist/doc/fonts/linguisticspro/">linguisticspro</a></b><small> (<a href="https://ctan.org/pkg/linguisticspro">CTAN</a>): -LinguisticsPro fonts with LaTeX support +LinguisticsPro fonts with LaTeX support. <a href="texmf-dist/doc/fonts/linguisticspro/linguisticspro-samples.pdf">linguisticspro-samples.pdf</a>. </small></li> -<li id="linop"><b><a href="texmf-dist/doc/latex/linop">linop</a></b><small> +<li id="linop"><b><a href="texmf-dist/doc/latex/linop/">linop</a></b><small> (<a href="https://ctan.org/pkg/linop">CTAN</a>): -Typeset linear operators as they appear in quantum theory or linear algebra +Typeset linear operators as they appear in quantum theory or linear algebra. <a href="texmf-dist/doc/latex/linop/linop.pdf">linop.pdf</a>. </small></li> -<li id="lion-msc"><b><a href="texmf-dist/doc/latex/lion-msc">lion-msc</a></b><small> +<li id="lion-msc"><b><a href="texmf-dist/doc/latex/lion-msc/">lion-msc</a></b><small> (<a href="https://ctan.org/pkg/lion-msc">CTAN</a>): -LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of Physics (LION) +LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of Physics (LION). <a href="texmf-dist/doc/latex/lion-msc/lion-msc.pdf">lion-msc.pdf</a> <a href="texmf-dist/doc/latex/lion-msc/minimal.pdf">minimal.pdf</a>. </small></li> -<li id="lipsum"><b><a href="texmf-dist/doc/latex/lipsum">lipsum</a></b><small> +<li id="lipsum"><b><a href="texmf-dist/doc/latex/lipsum/">lipsum</a></b><small> (<a href="https://ctan.org/pkg/lipsum">CTAN</a>): -Easy access to the Lorem Ipsum dummy text +Easy access to the Lorem Ipsum dummy text. <a href="texmf-dist/doc/latex/lipsum/lipsum.pdf">lipsum.pdf</a>. </small></li> -<li id="lisp-on-tex"><b><a href="texmf-dist/doc/latex/lisp-on-tex/examples">lisp-on-tex</a></b><small> +<li id="lisp-on-tex"><b><a href="texmf-dist/doc/latex/lisp-on-tex/">lisp-on-tex</a></b><small> (<a href="https://ctan.org/pkg/lisp-on-tex">CTAN</a>): -Execute LISP code in a LaTeX document +Execute LISP code in a LaTeX document. <a href="texmf-dist/doc/latex/lisp-on-tex/examples/div2.pdf">div2.pdf</a> <a href="texmf-dist/doc/latex/lisp-on-tex/examples/fact.pdf">fact.pdf</a> <a href="texmf-dist/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.pdf">fpnummodule-mandelbrot.pdf</a> @@ -12853,90 +12817,90 @@ Execute LISP code in a LaTeX document <a href="texmf-dist/doc/latex/lisp-on-tex/examples/showfont.pdf">showfont.pdf</a>. </small></li> -<li id="listbib"><b><a href="texmf-dist/doc/latex/listbib">listbib</a></b><small> +<li id="listbib"><b><a href="texmf-dist/doc/latex/listbib/">listbib</a></b><small> (<a href="https://ctan.org/pkg/listbib">CTAN</a>): -Lists contents of BibTeX files +Lists contents of BibTeX files. <a href="texmf-dist/doc/latex/listbib/listbib-doc.pdf">listbib-doc.pdf</a>. </small></li> -<li id="listing"><b><a href="texmf-dist/doc/latex/listing">listing</a></b><small> +<li id="listing"><b><a href="texmf-dist/doc/latex/listing/">listing</a></b><small> (<a href="https://ctan.org/pkg/listing">CTAN</a>): -Produce formatted program listings +Produce formatted program listings. <a href="texmf-dist/doc/latex/listing/listing.pdf">listing.pdf</a>. </small></li> -<li id="listings"><b><a href="texmf-dist/doc/latex/listings">listings</a></b><small> +<li id="listings"><b><a href="texmf-dist/doc/latex/listings/">listings</a></b><small> (<a href="https://ctan.org/pkg/listings">CTAN</a>): -Typeset source code listings using LaTeX +Typeset source code listings using LaTeX. <a href="texmf-dist/doc/latex/listings/listings-devel.pdf">listings-devel.pdf</a> <a href="texmf-dist/doc/latex/listings/listings.pdf">listings.pdf</a> <a href="texmf-dist/doc/latex/listings/lstdrvrs.pdf">lstdrvrs.pdf</a>. </small></li> -<li id="listings-ext"><b><a href="texmf-dist/doc/latex/listings-ext">listings-ext</a></b><small> +<li id="listings-ext"><b><a href="texmf-dist/doc/latex/listings-ext/">listings-ext</a></b><small> (<a href="https://ctan.org/pkg/listings-ext">CTAN</a>): -Automated input of source +Automated input of source. <a href="texmf-dist/doc/latex/listings-ext/listings-ext.pdf">listings-ext.pdf</a>. </small></li> -<li id="listingsutf8"><b><a href="texmf-dist/doc/latex/listingsutf8">listingsutf8</a></b><small> +<li id="listingsutf8"><b><a href="texmf-dist/doc/latex/listingsutf8/">listingsutf8</a></b><small> (<a href="https://ctan.org/pkg/listingsutf8">CTAN</a>): -Allow UTF-8 in listings input +Allow UTF-8 in listings input. <a href="texmf-dist/doc/latex/listingsutf8/listingsutf8.pdf">listingsutf8.pdf</a>. </small></li> -<li id="listlbls"><b><a href="texmf-dist/doc/latex/listlbls">listlbls</a></b><small> +<li id="listlbls"><b><a href="texmf-dist/doc/latex/listlbls/">listlbls</a></b><small> (<a href="https://ctan.org/pkg/listlbls">CTAN</a>): -Creates a list of all labels used throughout a document +Creates a list of all labels used throughout a document. <a href="texmf-dist/doc/latex/listlbls/listlbls.pdf">listlbls.pdf</a>. </small></li> -<li id="listliketab"><b><a href="texmf-dist/doc/latex/listliketab">listliketab</a></b><small> +<li id="listliketab"><b><a href="texmf-dist/doc/latex/listliketab/">listliketab</a></b><small> (<a href="https://ctan.org/pkg/listliketab">CTAN</a>): -Typeset lists as tables +Typeset lists as tables. <a href="texmf-dist/doc/latex/listliketab/listliketab.pdf">listliketab.pdf</a>. </small></li> -<li id="listofitems"><b><a href="texmf-dist/doc/generic/listofitems">listofitems</a></b><small> +<li id="listofitems"><b><a href="texmf-dist/doc/generic/listofitems/">listofitems</a></b><small> (<a href="https://ctan.org/pkg/listofitems">CTAN</a>): -Grab items in lists using user-specified sep char +Grab items in lists using user-specified sep char. <a href="texmf-dist/doc/generic/listofitems/listofitems-en.pdf">listofitems-en.pdf</a> <a href="texmf-dist/doc/generic/listofitems/listofitems-fr.pdf">listofitems-fr.pdf</a> (fr). </small></li> -<li id="listofsymbols"><b><a href="texmf-dist/doc/latex/listofsymbols">listofsymbols</a></b><small> +<li id="listofsymbols"><b><a href="texmf-dist/doc/latex/listofsymbols/">listofsymbols</a></b><small> (<a href="https://ctan.org/pkg/listofsymbols">CTAN</a>): -Create and manipulate lists of symbols +Create and manipulate lists of symbols. <a href="texmf-dist/doc/latex/listofsymbols/listofsymbols.pdf">listofsymbols.pdf</a>. </small></li> -<li id="lithuanian"><b><a href="texmf-dist/doc/latex/lithuanian">lithuanian</a></b><small> +<li id="lithuanian"><b><a href="texmf-dist/doc/latex/lithuanian/">lithuanian</a></b><small> (<a href="https://ctan.org/pkg/lithuanian">CTAN</a>): -Lithuanian language support +Lithuanian language support. <a href="texmf-dist/doc/latex/lithuanian/latin7x.pdf">latin7x.pdf</a>. </small></li> -<li id="liturg"><b><a href="texmf-dist/doc/latex/liturg">liturg</a></b><small> +<li id="liturg"><b><a href="texmf-dist/doc/latex/liturg/">liturg</a></b><small> (<a href="https://ctan.org/pkg/liturg">CTAN</a>): -Support for typesetting Catholic liturgical texts +Support for typesetting Catholic liturgical texts. <a href="texmf-dist/doc/latex/liturg/liturg.pdf">liturg.pdf</a>. </small></li> -<li id="lkproof"><b><a href="texmf-dist/doc/latex/lkproof">lkproof</a></b><small> +<li id="lkproof"><b><a href="texmf-dist/doc/latex/lkproof/">lkproof</a></b><small> (<a href="https://ctan.org/pkg/lkproof">CTAN</a>): -LK Proof figure macros +LK Proof figure macros. <a href="texmf-dist/doc/latex/lkproof/lkproof-doc.pdf">lkproof-doc.pdf</a>. </small></li> -<li id="llncsconf"><b><a href="texmf-dist/doc/latex/llncsconf">llncsconf</a></b><small> +<li id="llncsconf"><b><a href="texmf-dist/doc/latex/llncsconf/">llncsconf</a></b><small> (<a href="https://ctan.org/pkg/llncsconf">CTAN</a>): -LaTeX package extending Springer's llncs class +LaTeX package extending Springer's llncs class. <a href="texmf-dist/doc/latex/llncsconf/example.pdf">example.pdf</a>. </small></li> -<li id="lm"><b><a href="texmf-dist/doc/fonts/lm">lm</a></b><small> +<li id="lm"><b><a href="texmf-dist/doc/fonts/lm/">lm</a></b><small> (<a href="https://ctan.org/pkg/lm">CTAN</a>): -Latin modern fonts in outline formats +Latin modern fonts in outline formats. <a href="texmf-dist/doc/fonts/lm/lm-info.pdf">lm-info.pdf</a> <a href="texmf-dist/doc/fonts/lm/tstlmot1.pdf">tstlmot1.pdf</a> <a href="texmf-dist/doc/fonts/lm/tstlmot4.pdf">tstlmot4.pdf</a> @@ -12945,507 +12909,504 @@ Latin modern fonts in outline formats <a href="texmf-dist/doc/fonts/lm/tstlmts1.pdf">tstlmts1.pdf</a>. </small></li> -<li id="lm-math"><b><a href="texmf-dist/doc/fonts/lm-math">lm-math</a></b><small> +<li id="lm-math"><b><a href="texmf-dist/doc/fonts/lm-math/">lm-math</a></b><small> (<a href="https://ctan.org/pkg/lm-math">CTAN</a>): -OpenType maths fonts for Latin Modern +OpenType maths fonts for Latin Modern. <a href="texmf-dist/doc/fonts/lm-math/test-context-latinmodern_math.pdf">test-context-latinmodern_math.pdf</a> <a href="texmf-dist/doc/fonts/lm-math/test-lualatex-latinmodern_math.pdf">test-lualatex-latinmodern_math.pdf</a> <a href="texmf-dist/doc/fonts/lm-math/test-word-latinmodern_math.pdf">test-word-latinmodern_math.pdf</a> <a href="texmf-dist/doc/fonts/lm-math/test-xelatex-latinmodern_math.pdf">test-xelatex-latinmodern_math.pdf</a>. </small></li> -<li id="lmake"><b><a href="texmf-dist/doc/latex/lmake">lmake</a></b><small> +<li id="lmake"><b><a href="texmf-dist/doc/latex/lmake/">lmake</a></b><small> (<a href="https://ctan.org/pkg/lmake">CTAN</a>): -Process lists to do repetitive actions +Process lists to do repetitive actions. <a href="texmf-dist/doc/latex/lmake/lmake.pdf">lmake.pdf</a>. </small></li> -<li id="lni"><b><a href="texmf-dist/doc/latex/lni">lni</a></b><small> +<li id="lni"><b><a href="texmf-dist/doc/latex/lni/">lni</a></b><small> (<a href="https://ctan.org/pkg/lni">CTAN</a>): -Official class for the "Lecture Notes in Informatics" +Official class for the "Lecture Notes in Informatics". <a href="texmf-dist/doc/latex/lni/lni.pdf">lni.pdf</a>. </small></li> -<li id="lobster2"><b><a href="texmf-dist/doc/fonts/lobster2">lobster2</a></b><small> +<li id="lobster2"><b><a href="texmf-dist/doc/fonts/lobster2/">lobster2</a></b><small> (<a href="https://ctan.org/pkg/lobster2">CTAN</a>): -Lobster Two fonts, with support for all LaTeX engines +Lobster Two fonts, with support for all LaTeX engines. <a href="texmf-dist/doc/fonts/lobster2/lobster2-samples.pdf">lobster2-samples.pdf</a>. </small></li> -<li id="locality"><b><a href="texmf-dist/doc/latex/locality">locality</a></b><small> +<li id="locality"><b><a href="texmf-dist/doc/latex/locality/">locality</a></b><small> (<a href="https://ctan.org/pkg/locality">CTAN</a>): -Various macros for keeping things local +Various macros for keeping things local. <a href="texmf-dist/doc/latex/locality/locality.pdf">locality.pdf</a>. </small></li> -<li id="localloc"><b><a href="texmf-dist/doc/latex/localloc">localloc</a></b><small> +<li id="localloc"><b><a href="texmf-dist/doc/latex/localloc/">localloc</a></b><small> (<a href="https://ctan.org/pkg/localloc">CTAN</a>): -Macros for localizing TeX register allocations +Macros for localizing TeX register allocations. <a href="texmf-dist/doc/latex/localloc/localloc.pdf">localloc.pdf</a>. </small></li> -<li id="logbox"><b><a href="texmf-dist/doc/latex/logbox">logbox</a></b><small> +<li id="logbox"><b><a href="texmf-dist/doc/latex/logbox/">logbox</a></b><small> (<a href="https://ctan.org/pkg/logbox">CTAN</a>): -e-TeX showbox facilities for exploration purposes +e-TeX showbox facilities for exploration purposes. <a href="texmf-dist/doc/latex/logbox/logbox.pdf">logbox.pdf</a>. </small></li> -<li id="logicproof"><b><a href="texmf-dist/doc/latex/logicproof">logicproof</a></b><small> +<li id="logicproof"><b><a href="texmf-dist/doc/latex/logicproof/">logicproof</a></b><small> (<a href="https://ctan.org/pkg/logicproof">CTAN</a>): -Box proofs for propositional and predicate logic +Box proofs for propositional and predicate logic. <a href="texmf-dist/doc/latex/logicproof/logicproof.pdf">logicproof.pdf</a>. </small></li> -<li id="logicpuzzle"><b><a href="texmf-dist/doc/latex/logicpuzzle">logicpuzzle</a></b><small> +<li id="logicpuzzle"><b><a href="texmf-dist/doc/latex/logicpuzzle/">logicpuzzle</a></b><small> (<a href="https://ctan.org/pkg/logicpuzzle">CTAN</a>): -Typeset (grid-based) logic puzzles +Typeset (grid-based) logic puzzles. <a href="texmf-dist/doc/latex/logicpuzzle/logicpuzzle.pdf">logicpuzzle.pdf</a>. </small></li> -<li id="logix"><b><a href="texmf-dist/doc/fonts/logix">logix</a></b><small> +<li id="logix"><b><a href="texmf-dist/doc/fonts/logix/">logix</a></b><small> (<a href="https://ctan.org/pkg/logix">CTAN</a>): -Supplement to the Unicode math symbols +Supplement to the Unicode math symbols. <a href="texmf-dist/doc/fonts/logix/logix.pdf">logix.pdf</a>. </small></li> -<li id="logpap"><b><a href="texmf-dist/doc/latex/logpap">logpap</a></b><small> +<li id="logpap"><b><a href="texmf-dist/doc/latex/logpap/">logpap</a></b><small> (<a href="https://ctan.org/pkg/logpap">CTAN</a>): -Generate logarithmic graph paper with LaTeX +Generate logarithmic graph paper with LaTeX. <a href="texmf-dist/doc/latex/logpap/example.pdf">example.pdf</a>. </small></li> -<li id="lollipop"><b><a href="texmf-dist/doc/otherformats/lollipop/manual">lollipop</a></b><small> +<li id="lollipop"><b><a href="texmf-dist/doc/otherformats/lollipop/">lollipop</a></b><small> (<a href="https://ctan.org/pkg/lollipop">CTAN</a>): -TeX made easy +TeX made easy. <a href="texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.pdf">lollipop-manual.pdf</a>. </small></li> -<li id="longdivision"><b><a href="texmf-dist/doc/latex/longdivision">longdivision</a></b><small> +<li id="longdivision"><b><a href="texmf-dist/doc/latex/longdivision/">longdivision</a></b><small> (<a href="https://ctan.org/pkg/longdivision">CTAN</a>): -Typesets long division +Typesets long division. <a href="texmf-dist/doc/latex/longdivision/longdivision_manual.pdf">longdivision_manual.pdf</a>. </small></li> -<li id="longfbox"><b><a href="texmf-dist/doc/latex/longfbox">longfbox</a></b><small> +<li id="longfbox"><b><a href="texmf-dist/doc/latex/longfbox/">longfbox</a></b><small> (<a href="https://ctan.org/pkg/longfbox">CTAN</a>): -Draw framed boxes with standard CSS attributes that can break over multiple pages +Draw framed boxes with standard CSS attributes that can break over multiple pages. <a href="texmf-dist/doc/latex/longfbox/longfbox.html">longfbox.html</a> <a href="texmf-dist/doc/latex/longfbox/longfbox.pdf">longfbox.pdf</a>. </small></li> -<li id="longfigure"><b><a href="texmf-dist/doc/latex/longfigure">longfigure</a></b><small> +<li id="longfigure"><b><a href="texmf-dist/doc/latex/longfigure/">longfigure</a></b><small> (<a href="https://ctan.org/pkg/longfigure">CTAN</a>): -Provides a figure-like environment that break over pages +Provides a figure-like environment that break over pages. <a href="texmf-dist/doc/latex/longfigure/longfigure.pdf">longfigure.pdf</a>. </small></li> -<li id="longnamefilelist"><b><a href="texmf-dist/doc/latex/longnamefilelist">longnamefilelist</a></b><small> +<li id="longnamefilelist"><b><a href="texmf-dist/doc/latex/longnamefilelist/">longnamefilelist</a></b><small> (<a href="https://ctan.org/pkg/longnamefilelist">CTAN</a>): -Tidy \listfiles with long file names +Tidy \listfiles with long file names. <a href="texmf-dist/doc/latex/longnamefilelist/longnamefilelist.pdf">longnamefilelist.pdf</a>. </small></li> -<li id="lpform"><b><a href="texmf-dist/doc/generic/lpform">lpform</a></b><small> +<li id="lpform"><b><a href="texmf-dist/doc/generic/lpform/">lpform</a></b><small> (<a href="https://ctan.org/pkg/lpform">CTAN</a>): -Typesetting linear programming formulations and sets of equations +Typesetting linear programming formulations and sets of equations. <a href="texmf-dist/doc/generic/lpform/lpform-doc.pdf">lpform-doc.pdf</a>. </small></li> -<li id="lpic"><b><a href="texmf-dist/doc/latex/lpic">lpic</a></b><small> +<li id="lpic"><b><a href="texmf-dist/doc/latex/lpic/">lpic</a></b><small> (<a href="https://ctan.org/pkg/lpic">CTAN</a>): -Put LaTeX material over included graphics +Put LaTeX material over included graphics. <a href="texmf-dist/doc/latex/lpic/instructions-differential.pdf">instructions-differential.pdf</a> <a href="texmf-dist/doc/latex/lpic/instructions.pdf">instructions.pdf</a>. </small></li> -<li id="lplfitch"><b><a href="texmf-dist/doc/latex/lplfitch">lplfitch</a></b><small> +<li id="lplfitch"><b><a href="texmf-dist/doc/latex/lplfitch/">lplfitch</a></b><small> (<a href="https://ctan.org/pkg/lplfitch">CTAN</a>): -Fitch-style natural deduction proofs +Fitch-style natural deduction proofs. <a href="texmf-dist/doc/latex/lplfitch/lplfitch.pdf">lplfitch.pdf</a>. </small></li> -<li id="lps"><b><a href="texmf-dist/doc/latex/lps">lps</a></b><small> +<li id="lps"><b><a href="texmf-dist/doc/latex/lps/">lps</a></b><small> (<a href="https://ctan.org/pkg/lps">CTAN</a>): -Class for "Logic and Philosophy of Science" +Class for "Logic and Philosophy of Science". <a href="texmf-dist/doc/latex/lps/lps.pdf">lps.pdf</a>. </small></li> -<li id="lroundrect"><b><a href="texmf-dist/doc/latex/lroundrect">lroundrect</a></b><small> +<li id="lroundrect"><b><a href="texmf-dist/doc/latex/lroundrect/">lroundrect</a></b><small> (<a href="https://ctan.org/pkg/lroundrect">CTAN</a>): -LaTeX macros for utilizing the roundrect MetaPost routines +LaTeX macros for utilizing the roundrect MetaPost routines. <a href="texmf-dist/doc/latex/lroundrect/lroundrect.pdf">lroundrect.pdf</a>. </small></li> -<li id="lsc"><b><a href="texmf-dist/doc/latex/lsc">lsc</a></b><small> +<li id="lsc"><b><a href="texmf-dist/doc/latex/lsc/">lsc</a></b><small> (<a href="https://ctan.org/pkg/lsc">CTAN</a>): -Typesetting Live Sequence Charts +Typesetting Live Sequence Charts. <a href="texmf-dist/doc/latex/lsc/lsc.pdf">lsc.pdf</a>. </small></li> -<li id="lshort-bulgarian"><b><a href="texmf-dist/doc/latex/lshort-bulgarian">lshort-bulgarian</a></b><small> +<li id="lshort-bulgarian"><b><a href="texmf-dist/doc/latex/lshort-bulgarian/">lshort-bulgarian</a></b><small> (<a href="https://ctan.org/pkg/lshort-bulgarian">CTAN</a>): -Bulgarian translation of the "Short Introduction to LaTeX2e" +Bulgarian translation of the "Short Introduction to LaTeX2e". <a href="texmf-dist/doc/latex/lshort-bulgarian/lshort-bg.pdf">lshort-bg.pdf</a> (bg). </small></li> -<li id="lshort-chinese"><b><a href="texmf-dist/doc/latex/lshort-chinese">lshort-chinese</a></b><small> -(<a href="https://ctan.org/pkg/lshort-chinese">CTAN</a>): -Introduction to LaTeX, in Chinese +<li id="lshort-chinese"><b><a href="texmf-dist/doc/latex/lshort-chinese/">lshort-chinese</a></b><small> +Introduction to LaTeX, in Chinese. <a href="texmf-dist/doc/latex/lshort-chinese/lshort-zh-cn.pdf">lshort-zh-cn.pdf</a> (zh). </small></li> -<li id="lshort-czech"><b><a href="texmf-dist/doc/latex/lshort-czech">lshort-czech</a></b><small> +<li id="lshort-czech"><b><a href="texmf-dist/doc/latex/lshort-czech/">lshort-czech</a></b><small> (<a href="https://ctan.org/pkg/lshort-czech">CTAN</a>): -Czech translation of the "Short Introduction to LaTeX2e" +Czech translation of the "Short Introduction to LaTeX2e". <a href="texmf-dist/doc/latex/lshort-czech/lshort-cs.pdf">lshort-cs.pdf</a>. </small></li> -<li id="lshort-dutch"><b><a href="texmf-dist/doc/latex/lshort-dutch">lshort-dutch</a></b><small> +<li id="lshort-dutch"><b><a href="texmf-dist/doc/latex/lshort-dutch/">lshort-dutch</a></b><small> (<a href="https://ctan.org/pkg/lshort-dutch">CTAN</a>): -Introduction to LaTeX in Dutch +Introduction to LaTeX in Dutch. <a href="texmf-dist/doc/latex/lshort-dutch/lshort-nl-1.3.pdf">lshort-nl-1.3.pdf</a> (nl). </small></li> -<li id="lshort-english"><b><a href="texmf-dist/doc/latex/lshort-english">lshort-english</a></b><small> +<li id="lshort-english"><b><a href="texmf-dist/doc/latex/lshort-english/">lshort-english</a></b><small> (<a href="https://ctan.org/pkg/lshort-english">CTAN</a>): -A (Not So) Short Introduction to LaTeX2e +A (Not So) Short Introduction to LaTeX2e. <a href="texmf-dist/doc/latex/lshort-english/lshort.pdf">lshort.pdf</a>. </small></li> -<li id="lshort-estonian"><b><a href="texmf-dist/doc/latex/lshort-estonian">lshort-estonian</a></b><small> +<li id="lshort-estonian"><b><a href="texmf-dist/doc/latex/lshort-estonian/">lshort-estonian</a></b><small> (<a href="https://ctan.org/pkg/lshort-estonian">CTAN</a>): -Estonian introduction to LaTeX +Estonian introduction to LaTeX. <a href="texmf-dist/doc/latex/lshort-estonian/lshort-ee-a5.pdf">lshort-ee-a5.pdf</a> <a href="texmf-dist/doc/latex/lshort-estonian/lshort-ee.pdf">lshort-ee.pdf</a> (et). </small></li> -<li id="lshort-finnish"><b><a href="texmf-dist/doc/latex/lshort-finnish">lshort-finnish</a></b><small> +<li id="lshort-finnish"><b><a href="texmf-dist/doc/latex/lshort-finnish/">lshort-finnish</a></b><small> (<a href="https://ctan.org/pkg/lshort-finnish">CTAN</a>): -Finnish introduction to LaTeX +Finnish introduction to LaTeX. <a href="texmf-dist/doc/latex/lshort-finnish/lyhyt2e.pdf">lyhyt2e.pdf</a> (fi). </small></li> -<li id="lshort-french"><b><a href="texmf-dist/doc/latex/lshort-french">lshort-french</a></b><small> +<li id="lshort-french"><b><a href="texmf-dist/doc/latex/lshort-french/">lshort-french</a></b><small> (<a href="https://ctan.org/pkg/lshort-french">CTAN</a>): -Short introduction to LaTeX, French translation +Short introduction to LaTeX, French translation. <a href="texmf-dist/doc/latex/lshort-french/lshort-fr.pdf">lshort-fr.pdf</a> (fr). </small></li> -<li id="lshort-german"><b><a href="texmf-dist/doc/latex/lshort-german">lshort-german</a></b><small> +<li id="lshort-german"><b><a href="texmf-dist/doc/latex/lshort-german/">lshort-german</a></b><small> (<a href="https://ctan.org/pkg/lshort-german">CTAN</a>): -German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung +German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung. <a href="texmf-dist/doc/latex/lshort-german/fontspec.pdf">fontspec.pdf</a> <a href="texmf-dist/doc/latex/lshort-german/l2kurz.pdf">l2kurz.pdf</a> <a href="texmf-dist/doc/latex/lshort-german/ozean.pdf">ozean.pdf</a>. </small></li> -<li id="lshort-italian"><b><a href="texmf-dist/doc/latex/lshort-italian">lshort-italian</a></b><small> +<li id="lshort-italian"><b><a href="texmf-dist/doc/latex/lshort-italian/">lshort-italian</a></b><small> (<a href="https://ctan.org/pkg/lshort-italian">CTAN</a>): -Introduction to LaTeX in Italian +Introduction to LaTeX in Italian. <a href="texmf-dist/doc/latex/lshort-italian/itlshort.pdf">itlshort.pdf</a> (it). </small></li> -<li id="lshort-japanese"><b><a href="texmf-dist/doc/latex/lshort-japanese">lshort-japanese</a></b><small> +<li id="lshort-japanese"><b><a href="texmf-dist/doc/latex/lshort-japanese/">lshort-japanese</a></b><small> (<a href="https://ctan.org/pkg/lshort-japanese">CTAN</a>): -Japanese version of A Short Introduction to LaTeX2e +Japanese version of A Short Introduction to LaTeX2e. <a href="texmf-dist/doc/latex/lshort-japanese/jlshort.pdf">jlshort.pdf</a>. </small></li> -<li id="lshort-korean"><b><a href="texmf-dist/doc/latex/lshort-korean">lshort-korean</a></b><small> +<li id="lshort-korean"><b><a href="texmf-dist/doc/latex/lshort-korean/">lshort-korean</a></b><small> (<a href="https://ctan.org/pkg/lshort-korean">CTAN</a>): -Korean introduction to LaTeX +Korean introduction to LaTeX. <a href="texmf-dist/doc/latex/lshort-korean/lshort-ko.pdf">lshort-ko.pdf</a> (ko). </small></li> -<li id="lshort-mongol"><b><a href="texmf-dist/doc/latex/lshort-mongol">lshort-mongol</a></b><small> +<li id="lshort-mongol"><b><a href="texmf-dist/doc/latex/lshort-mongol/">lshort-mongol</a></b><small> (<a href="https://ctan.org/pkg/lshort-mongol">CTAN</a>): -Short introduction to LaTeX, in Mongolian +Short introduction to LaTeX, in Mongolian. <a href="texmf-dist/doc/latex/lshort-mongol/lshort-mn.pdf">lshort-mn.pdf</a> (mn). </small></li> -<li id="lshort-persian"><b><a href="texmf-dist/doc/latex/lshort-persian">lshort-persian</a></b><small> +<li id="lshort-persian"><b><a href="texmf-dist/doc/latex/lshort-persian/">lshort-persian</a></b><small> (<a href="https://ctan.org/pkg/lshort-persian">CTAN</a>): -Persian (Farsi) introduction to LaTeX +Persian (Farsi) introduction to LaTeX. <a href="texmf-dist/doc/latex/lshort-persian/lshort.pdf">lshort.pdf</a> (fa). </small></li> -<li id="lshort-polish"><b><a href="texmf-dist/doc/latex/lshort-polish">lshort-polish</a></b><small> +<li id="lshort-polish"><b><a href="texmf-dist/doc/latex/lshort-polish/">lshort-polish</a></b><small> (<a href="https://ctan.org/pkg/lshort-polish">CTAN</a>): -Introduction to LaTeX in Polish +Introduction to LaTeX in Polish. <a href="texmf-dist/doc/latex/lshort-polish/lshort2e.pdf">lshort2e.pdf</a>. </small></li> -<li id="lshort-portuguese"><b><a href="texmf-dist/doc/latex/lshort-portuguese">lshort-portuguese</a></b><small> +<li id="lshort-portuguese"><b><a href="texmf-dist/doc/latex/lshort-portuguese/">lshort-portuguese</a></b><small> (<a href="https://ctan.org/pkg/lshort-portuguese">CTAN</a>): -Introduction to LaTeX in Portuguese +Introduction to LaTeX in Portuguese. <a href="texmf-dist/doc/latex/lshort-portuguese/pt-lshort.pdf">pt-lshort.pdf</a>. </small></li> -<li id="lshort-russian"><b><a href="texmf-dist/doc/latex/lshort-russian">lshort-russian</a></b><small> +<li id="lshort-russian"><b><a href="texmf-dist/doc/latex/lshort-russian/">lshort-russian</a></b><small> (<a href="https://ctan.org/pkg/lshort-russian">CTAN</a>): -Russian introduction to LaTeX +Russian introduction to LaTeX. <a href="texmf-dist/doc/latex/lshort-russian/lshortru.pdf">lshortru.pdf</a>. </small></li> -<li id="lshort-slovak"><b><a href="texmf-dist/doc/latex/lshort-slovak">lshort-slovak</a></b><small> +<li id="lshort-slovak"><b><a href="texmf-dist/doc/latex/lshort-slovak/">lshort-slovak</a></b><small> (<a href="https://ctan.org/pkg/lshort-slovak">CTAN</a>): -Slovak introduction to LaTeX +Slovak introduction to LaTeX. <a href="texmf-dist/doc/latex/lshort-slovak/slshorte.pdf">slshorte.pdf</a>. </small></li> -<li id="lshort-slovenian"><b><a href="texmf-dist/doc/latex/lshort-slovenian">lshort-slovenian</a></b><small> +<li id="lshort-slovenian"><b><a href="texmf-dist/doc/latex/lshort-slovenian/">lshort-slovenian</a></b><small> (<a href="https://ctan.org/pkg/lshort-slovenian">CTAN</a>): -Slovenian translation of lshort +Slovenian translation of lshort. <a href="texmf-dist/doc/latex/lshort-slovenian/lshort-slovenian.pdf">lshort-slovenian.pdf</a>. </small></li> -<li id="lshort-spanish"><b><a href="texmf-dist/doc/latex/lshort-spanish">lshort-spanish</a></b><small> +<li id="lshort-spanish"><b><a href="texmf-dist/doc/latex/lshort-spanish/">lshort-spanish</a></b><small> (<a href="https://ctan.org/pkg/lshort-spanish">CTAN</a>): -Short introduction to LaTeX, Spanish translation +Short introduction to LaTeX, Spanish translation. <a href="texmf-dist/doc/latex/lshort-spanish/lshort-a4.pdf">lshort-a4.pdf</a> (es). </small></li> -<li id="lshort-thai"><b><a href="texmf-dist/doc/latex/lshort-thai">lshort-thai</a></b><small> +<li id="lshort-thai"><b><a href="texmf-dist/doc/latex/lshort-thai/">lshort-thai</a></b><small> (<a href="https://ctan.org/pkg/lshort-thai">CTAN</a>): -Introduction to LaTeX in Thai +Introduction to LaTeX in Thai. <a href="texmf-dist/doc/latex/lshort-thai/lsh132.pdf">lsh132.pdf</a>. </small></li> -<li id="lshort-turkish"><b><a href="texmf-dist/doc/latex/lshort-turkish">lshort-turkish</a></b><small> +<li id="lshort-turkish"><b><a href="texmf-dist/doc/latex/lshort-turkish/">lshort-turkish</a></b><small> (<a href="https://ctan.org/pkg/lshort-turkish">CTAN</a>): -Turkish introduction to LaTeX +Turkish introduction to LaTeX. <a href="texmf-dist/doc/latex/lshort-turkish/lshort-tr.pdf">lshort-tr.pdf</a> (tr). </small></li> -<li id="lshort-ukr"><b><a href="texmf-dist/doc/latex/lshort-ukr">lshort-ukr</a></b><small> +<li id="lshort-ukr"><b><a href="texmf-dist/doc/latex/lshort-ukr/">lshort-ukr</a></b><small> (<a href="https://ctan.org/pkg/lshort-ukr">CTAN</a>): -Ukrainian version of the LaTeX introduction +Ukrainian version of the LaTeX introduction. <a href="texmf-dist/doc/latex/lshort-ukr/lshort-ukr.pdf">lshort-ukr.pdf</a>. </small></li> -<li id="lshort-vietnamese"><b><a href="texmf-dist/doc/latex/lshort-vietnamese">lshort-vietnamese</a></b><small> +<li id="lshort-vietnamese"><b><a href="texmf-dist/doc/latex/lshort-vietnamese/">lshort-vietnamese</a></b><small> (<a href="https://ctan.org/pkg/lshort-vietnamese">CTAN</a>): -Vietnamese version of the LaTeX introduction +Vietnamese version of the LaTeX introduction. <a href="texmf-dist/doc/latex/lshort-vietnamese/lshort-vi.pdf">lshort-vi.pdf</a>. </small></li> -<li id="lstaddons"><b><a href="texmf-dist/doc/latex/lstaddons">lstaddons</a></b><small> +<li id="lstaddons"><b><a href="texmf-dist/doc/latex/lstaddons/">lstaddons</a></b><small> (<a href="https://ctan.org/pkg/lstaddons">CTAN</a>): -Add-on packages for listings: autogobble and line background +Add-on packages for listings: autogobble and line background. <a href="texmf-dist/doc/latex/lstaddons/lstautogobble.pdf">lstautogobble.pdf</a> <a href="texmf-dist/doc/latex/lstaddons/lstlinebgrd.pdf">lstlinebgrd.pdf</a>. </small></li> -<li id="lstbayes"><b><a href="texmf-dist/doc/latex/lstbayes">lstbayes</a></b><small> +<li id="lstbayes"><b><a href="texmf-dist/doc/latex/lstbayes/">lstbayes</a></b><small> (<a href="https://ctan.org/pkg/lstbayes">CTAN</a>): -Listings language driver for Bayesian modeling languages +Listings language driver for Bayesian modeling languages. <a href="texmf-dist/doc/latex/lstbayes/examples.pdf">examples.pdf</a> <a href="texmf-dist/doc/latex/lstbayes/lstbayes.pdf">lstbayes.pdf</a>. </small></li> -<li id="lstfiracode"><b><a href="texmf-dist/doc/latex/lstfiracode">lstfiracode</a></b><small> +<li id="lstfiracode"><b><a href="texmf-dist/doc/latex/lstfiracode/">lstfiracode</a></b><small> (<a href="https://ctan.org/pkg/lstfiracode">CTAN</a>): -Use Fira Code font for listings +Use Fira Code font for listings. <a href="texmf-dist/doc/latex/lstfiracode/lstfiracode.pdf">lstfiracode.pdf</a>. </small></li> -<li id="lt3graph"><b><a href="texmf-dist/doc/latex/lt3graph">lt3graph</a></b><small> +<li id="lt3graph"><b><a href="texmf-dist/doc/latex/lt3graph/">lt3graph</a></b><small> (<a href="https://ctan.org/pkg/lt3graph">CTAN</a>): -Provide a graph datastructure for experimental LaTeX3 +Provide a graph datastructure for experimental LaTeX3. <a href="texmf-dist/doc/latex/lt3graph/lt3graph.pdf">lt3graph.pdf</a>. </small></li> -<li id="ltablex"><b><a href="texmf-dist/doc/latex/ltablex">ltablex</a></b><small> +<li id="ltablex"><b><a href="texmf-dist/doc/latex/ltablex/">ltablex</a></b><small> (<a href="https://ctan.org/pkg/ltablex">CTAN</a>): -Table package extensions +Table package extensions. <a href="texmf-dist/doc/latex/ltablex/ltablex.pdf">ltablex.pdf</a>. </small></li> -<li id="ltabptch"><b><a href="texmf-dist/doc/latex/ltabptch">ltabptch</a></b><small> +<li id="ltabptch"><b><a href="texmf-dist/doc/latex/ltabptch/">ltabptch</a></b><small> (<a href="https://ctan.org/pkg/ltabptch">CTAN</a>): -Bug fix for longtable +Bug fix for longtable. <a href="texmf-dist/doc/latex/ltabptch/ltabptch.pdf">ltabptch.pdf</a>. </small></li> -<li id="ltb2bib"><b><a href="texmf-dist/doc/latex/ltb2bib">ltb2bib</a></b><small> +<li id="ltb2bib"><b><a href="texmf-dist/doc/latex/ltb2bib/">ltb2bib</a></b><small> (<a href="https://ctan.org/pkg/ltb2bib">CTAN</a>): -Converts amsrefs' .ltb bibliographical databases to BibTeX format +Converts amsrefs' .ltb bibliographical databases to BibTeX format. <a href="texmf-dist/doc/latex/ltb2bib/ltb2bib.pdf">ltb2bib.pdf</a>. </small></li> -<li id="ltxcmds"><b><a href="texmf-dist/doc/latex/ltxcmds">ltxcmds</a></b><small> +<li id="ltxcmds"><b><a href="texmf-dist/doc/latex/ltxcmds/">ltxcmds</a></b><small> (<a href="https://ctan.org/pkg/ltxcmds">CTAN</a>): -Some LaTeX kernel commands for general use +Some LaTeX kernel commands for general use. <a href="texmf-dist/doc/latex/ltxcmds/ltxcmds.pdf">ltxcmds.pdf</a>. </small></li> -<li id="ltxfileinfo"><b><a href="texmf-dist/doc/support/ltxfileinfo">ltxfileinfo</a></b><small> +<li id="ltxfileinfo"><b><a href="texmf-dist/doc/support/ltxfileinfo/">ltxfileinfo</a></b><small> (<a href="https://ctan.org/pkg/ltxfileinfo">CTAN</a>): -Print version information for a LaTeX file +Print version information for a LaTeX file. <a href="texmf-dist/doc/support/ltxfileinfo/ltxfileinfo.pdf">ltxfileinfo.pdf</a>. </small></li> -<li id="ltxguidex"><b><a href="texmf-dist/doc/latex/ltxguidex">ltxguidex</a></b><small> +<li id="ltxguidex"><b><a href="texmf-dist/doc/latex/ltxguidex/">ltxguidex</a></b><small> (<a href="https://ctan.org/pkg/ltxguidex">CTAN</a>): -An extended ltxguide class +An extended ltxguide class. <a href="texmf-dist/doc/latex/ltxguidex/ltxguidex.pdf">ltxguidex.pdf</a>. </small></li> -<li id="ltximg"><b><a href="texmf-dist/doc/support/ltximg">ltximg</a></b><small> +<li id="ltximg"><b><a href="texmf-dist/doc/support/ltximg/">ltximg</a></b><small> (<a href="https://ctan.org/pkg/ltximg">CTAN</a>): -Extract LaTeX environments into separate image files +Extract LaTeX environments into separate image files. <a href="texmf-dist/doc/support/ltximg/ltximg-doc.pdf">ltximg-doc.pdf</a>. </small></li> -<li id="ltxkeys"><b><a href="texmf-dist/doc/latex/ltxkeys">ltxkeys</a></b><small> +<li id="ltxkeys"><b><a href="texmf-dist/doc/latex/ltxkeys/">ltxkeys</a></b><small> (<a href="https://ctan.org/pkg/ltxkeys">CTAN</a>): -A robust key parser for LaTeX +A robust key parser for LaTeX. <a href="texmf-dist/doc/latex/ltxkeys/ltxkeys-guide.pdf">ltxkeys-guide.pdf</a>. </small></li> -<li id="ltxnew"><b><a href="texmf-dist/doc/latex/ltxnew">ltxnew</a></b><small> +<li id="ltxnew"><b><a href="texmf-dist/doc/latex/ltxnew/">ltxnew</a></b><small> (<a href="https://ctan.org/pkg/ltxnew">CTAN</a>): -A simple means of creating commands +A simple means of creating commands. <a href="texmf-dist/doc/latex/ltxnew/ltxnew.pdf">ltxnew.pdf</a>. </small></li> -<li id="lua-check-hyphen"><b><a href="texmf-dist/doc/lualatex/lua-check-hyphen/doc">lua-check-hyphen</a></b><small> +<li id="lua-check-hyphen"><b><a href="texmf-dist/doc/lualatex/lua-check-hyphen/">lua-check-hyphen</a></b><small> (<a href="https://ctan.org/pkg/lua-check-hyphen">CTAN</a>): -Mark hyphenations in a document, for checking +Mark hyphenations in a document, for checking. <a href="texmf-dist/doc/lualatex/lua-check-hyphen/doc/luacheckhyphenmanual.pdf">luacheckhyphenmanual.pdf</a> <a href="texmf-dist/doc/lualatex/lua-check-hyphen/doc/sample.pdf">sample.pdf</a>. </small></li> -<li id="lua-uca"><b><a href="texmf-dist/doc/support/lua-uca">lua-uca</a></b><small> +<li id="lua-uca"><b><a href="texmf-dist/doc/support/lua-uca/">lua-uca</a></b><small> (<a href="https://ctan.org/pkg/lua-uca">CTAN</a>): -Unicode Collation Algorithm library for Lua +Unicode Collation Algorithm library for Lua. <a href="texmf-dist/doc/support/lua-uca/lua-uca-doc.pdf">lua-uca-doc.pdf</a>. </small></li> -<li id="lua-ul"><b><a href="texmf-dist/doc/lualatex/lua-ul">lua-ul</a></b><small> +<li id="lua-ul"><b><a href="texmf-dist/doc/lualatex/lua-ul/">lua-ul</a></b><small> (<a href="https://ctan.org/pkg/lua-ul">CTAN</a>): -Underlining for LuaLaTeX +Underlining for LuaLaTeX. <a href="texmf-dist/doc/lualatex/lua-ul/lua-ul.pdf">lua-ul.pdf</a>. </small></li> -<li id="lua-uni-algos"><b><a href="texmf-dist/doc/luatex/lua-uni-algos">lua-uni-algos</a></b><small> +<li id="lua-uni-algos"><b><a href="texmf-dist/doc/luatex/lua-uni-algos/">lua-uni-algos</a></b><small> (<a href="https://ctan.org/pkg/lua-uni-algos">CTAN</a>): -Unicode algorithms for LuaTeX +Unicode algorithms for LuaTeX. <a href="texmf-dist/doc/luatex/lua-uni-algos/lua-uni-algos.pdf">lua-uni-algos.pdf</a>. </small></li> -<li id="lua-visual-debug"><b><a href="texmf-dist/doc/luatex/lua-visual-debug">lua-visual-debug</a></b><small> +<li id="lua-visual-debug"><b><a href="texmf-dist/doc/luatex/lua-visual-debug/">lua-visual-debug</a></b><small> (<a href="https://ctan.org/pkg/lua-visual-debug">CTAN</a>): -Visual debugging with LuaLaTeX +Visual debugging with LuaLaTeX. <a href="texmf-dist/doc/luatex/lua-visual-debug/lvdebug-doc.pdf">lvdebug-doc.pdf</a> <a href="texmf-dist/doc/luatex/lua-visual-debug/sample-plain.pdf">sample-plain.pdf</a> <a href="texmf-dist/doc/luatex/lua-visual-debug/sample.pdf">sample.pdf</a>. </small></li> -<li id="luabibentry"><b><a href="texmf-dist/doc/lualatex/luabibentry">luabibentry</a></b><small> +<li id="luabibentry"><b><a href="texmf-dist/doc/lualatex/luabibentry/">luabibentry</a></b><small> (<a href="https://ctan.org/pkg/luabibentry">CTAN</a>): -Repeat BibTeX entries in a LuaLaTeX document body +Repeat BibTeX entries in a LuaLaTeX document body. <a href="texmf-dist/doc/lualatex/luabibentry/luabibentry.pdf">luabibentry.pdf</a>. </small></li> -<li id="luabidi"><b><a href="texmf-dist/doc/lualatex/luabidi">luabidi</a></b><small> +<li id="luabidi"><b><a href="texmf-dist/doc/lualatex/luabidi/">luabidi</a></b><small> (<a href="https://ctan.org/pkg/luabidi">CTAN</a>): -Bidi functions for LuaTeX +Bidi functions for LuaTeX. <a href="texmf-dist/doc/lualatex/luabidi/luabidi.pdf">luabidi.pdf</a>. </small></li> -<li id="luacode"><b><a href="texmf-dist/doc/lualatex/luacode">luacode</a></b><small> +<li id="luacode"><b><a href="texmf-dist/doc/lualatex/luacode/">luacode</a></b><small> (<a href="https://ctan.org/pkg/luacode">CTAN</a>): -Helper for executing lua code from within TeX +Helper for executing lua code from within TeX. <a href="texmf-dist/doc/lualatex/luacode/luacode.pdf">luacode.pdf</a>. </small></li> -<li id="luacolor"><b><a href="texmf-dist/doc/latex/luacolor">luacolor</a></b><small> +<li id="luacolor"><b><a href="texmf-dist/doc/latex/luacolor/">luacolor</a></b><small> (<a href="https://ctan.org/pkg/luacolor">CTAN</a>): -Color support based on LuaTeX's node attributes +Color support based on LuaTeX's node attributes. <a href="texmf-dist/doc/latex/luacolor/luacolor.pdf">luacolor.pdf</a>. </small></li> -<li id="luahbtex"><b><a href="texmf-dist/doc/man/man1">luahbtex</a></b><small> -(<a href="https://ctan.org/pkg/luahbtex">CTAN</a>): -LuaTeX with HarfBuzz library for glyph shaping +<li id="luahbtex"><b><a href="texmf-dist/doc/man/man1/">luahbtex</a></b><small> +LuaTeX with HarfBuzz library for glyph shaping. <a href="texmf-dist/doc/man/man1/luahbtex.man1.pdf">luahbtex.man1.pdf</a>. </small></li> -<li id="luahyphenrules"><b><a href="texmf-dist/doc/lualatex/luahyphenrules">luahyphenrules</a></b><small> +<li id="luahyphenrules"><b><a href="texmf-dist/doc/lualatex/luahyphenrules/">luahyphenrules</a></b><small> (<a href="https://ctan.org/pkg/luahyphenrules">CTAN</a>): -Loading patterns in LuaLaTeX with language.dat +Loading patterns in LuaLaTeX with language.dat. <a href="texmf-dist/doc/lualatex/luahyphenrules/luahyphenrules.pdf">luahyphenrules.pdf</a>. </small></li> -<li id="luaindex"><b><a href="texmf-dist/doc/lualatex/luaindex">luaindex</a></b><small> +<li id="luaindex"><b><a href="texmf-dist/doc/lualatex/luaindex/">luaindex</a></b><small> (<a href="https://ctan.org/pkg/luaindex">CTAN</a>): -Create index using LuaLaTeX +Create index using LuaLaTeX. <a href="texmf-dist/doc/lualatex/luaindex/luaindex-example.pdf">luaindex-example.pdf</a> <a href="texmf-dist/doc/lualatex/luaindex/luaindex.pdf">luaindex.pdf</a>. </small></li> -<li id="luainputenc"><b><a href="texmf-dist/doc/lualatex/luainputenc">luainputenc</a></b><small> +<li id="luainputenc"><b><a href="texmf-dist/doc/lualatex/luainputenc/">luainputenc</a></b><small> (<a href="https://ctan.org/pkg/luainputenc">CTAN</a>): -Replacing inputenc for use in LuaTeX +Replacing inputenc for use in LuaTeX. <a href="texmf-dist/doc/lualatex/luainputenc/luainputenc.pdf">luainputenc.pdf</a>. </small></li> -<li id="luajittex"><b><a href="texmf-dist/doc/man/man1">luajittex</a></b><small> -(<a href="https://ctan.org/pkg/luajittex">CTAN</a>): -LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz +<li id="luajittex"><b><a href="texmf-dist/doc/man/man1/">luajittex</a></b><small> +LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz. <a href="texmf-dist/doc/man/man1/luajithbtex.man1.pdf">luajithbtex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/luajittex.man1.pdf">luajittex.man1.pdf</a>. </small></li> -<li id="lualatex-doc"><b><a href="texmf-dist/doc/lualatex/lualatex-doc">lualatex-doc</a></b><small> +<li id="lualatex-doc"><b><a href="texmf-dist/doc/lualatex/lualatex-doc/">lualatex-doc</a></b><small> (<a href="https://ctan.org/pkg/lualatex-doc">CTAN</a>): -A guide to use of LaTeX with LuaTeX +A guide to use of LaTeX with LuaTeX. <a href="texmf-dist/doc/lualatex/lualatex-doc/lualatex-doc.pdf">lualatex-doc.pdf</a>. </small></li> -<li id="lualatex-doc-de"><b><a href="texmf-dist/doc/latex/lualatex-doc-de">lualatex-doc-de</a></b><small> +<li id="lualatex-doc-de"><b><a href="texmf-dist/doc/latex/lualatex-doc-de/">lualatex-doc-de</a></b><small> (<a href="https://ctan.org/pkg/lualatex-doc-de">CTAN</a>): -Guide to LuaLaTeX (German translation) +Guide to LuaLaTeX (German translation). <a href="texmf-dist/doc/latex/lualatex-doc-de/lualatex-doc-DE.pdf">lualatex-doc-DE.pdf</a>. </small></li> -<li id="lualatex-math"><b><a href="texmf-dist/doc/lualatex/lualatex-math">lualatex-math</a></b><small> +<li id="lualatex-math"><b><a href="texmf-dist/doc/lualatex/lualatex-math/">lualatex-math</a></b><small> (<a href="https://ctan.org/pkg/lualatex-math">CTAN</a>): -Fixes for mathematics-related LuaLaTeX issues +Fixes for mathematics-related LuaLaTeX issues. <a href="texmf-dist/doc/lualatex/lualatex-math/lualatex-math.pdf">lualatex-math.pdf</a>. </small></li> -<li id="lualatex-truncate"><b><a href="texmf-dist/doc/lualatex/lualatex-truncate">lualatex-truncate</a></b><small> +<li id="lualatex-truncate"><b><a href="texmf-dist/doc/lualatex/lualatex-truncate/">lualatex-truncate</a></b><small> (<a href="https://ctan.org/pkg/lualatex-truncate">CTAN</a>): -A wrapper for using the truncate package with LuaLaTeX +A wrapper for using the truncate package with LuaLaTeX. <a href="texmf-dist/doc/lualatex/lualatex-truncate/lualatex-truncate-doc.pdf">lualatex-truncate-doc.pdf</a>. </small></li> -<li id="lualibs"><b><a href="texmf-dist/doc/luatex/lualibs">lualibs</a></b><small> +<li id="lualibs"><b><a href="texmf-dist/doc/luatex/lualibs/">lualibs</a></b><small> (<a href="https://ctan.org/pkg/lualibs">CTAN</a>): -Additional Lua functions for LuaTeX macro programmers +Additional Lua functions for LuaTeX macro programmers. <a href="texmf-dist/doc/luatex/lualibs/lualibs.pdf">lualibs.pdf</a>. </small></li> -<li id="luamesh"><b><a href="texmf-dist/doc/lualatex/luamesh">luamesh</a></b><small> +<li id="luamesh"><b><a href="texmf-dist/doc/lualatex/luamesh/">luamesh</a></b><small> (<a href="https://ctan.org/pkg/luamesh">CTAN</a>): -Computes and draws 2D Delaunay triangulation +Computes and draws 2D Delaunay triangulation. <a href="texmf-dist/doc/lualatex/luamesh/animation-crop.pdf">animation-crop.pdf</a> <a href="texmf-dist/doc/lualatex/luamesh/fond.pdf">fond.pdf</a> <a href="texmf-dist/doc/lualatex/luamesh/luamesh-doc.pdf">luamesh-doc.pdf</a> <a href="texmf-dist/doc/lualatex/luamesh/luamesh-title.pdf">luamesh-title.pdf</a>. </small></li> -<li id="luamplib"><b><a href="texmf-dist/doc/luatex/luamplib">luamplib</a></b><small> +<li id="luamplib"><b><a href="texmf-dist/doc/luatex/luamplib/">luamplib</a></b><small> (<a href="https://ctan.org/pkg/luamplib">CTAN</a>): -Use LuaTeX's built-in MetaPost interpreter +Use LuaTeX's built-in MetaPost interpreter. <a href="texmf-dist/doc/luatex/luamplib/luamplib.pdf">luamplib.pdf</a>. </small></li> -<li id="luaotfload"><b><a href="texmf-dist/doc/luatex/luaotfload">luaotfload</a></b><small> +<li id="luaotfload"><b><a href="texmf-dist/doc/luatex/luaotfload/">luaotfload</a></b><small> (<a href="https://ctan.org/pkg/luaotfload">CTAN</a>): -OpenType 'loader' for Plain TeX and LaTeX +OpenType 'loader' for Plain TeX and LaTeX. <a href="texmf-dist/doc/luatex/luaotfload/filegraph.pdf">filegraph.pdf</a> <a href="texmf-dist/doc/luatex/luaotfload/luaotfload-conf.pdf">luaotfload-conf.pdf</a> <a href="texmf-dist/doc/luatex/luaotfload/luaotfload-latex.pdf">luaotfload-latex.pdf</a> @@ -13457,27 +13418,27 @@ OpenType 'loader' for Plain TeX and LaTeX <a href="texmf-dist/doc/man/man5/luaotfload.conf.man5.pdf">luaotfload.conf.man5.pdf</a>. </small></li> -<li id="luapackageloader"><b><a href="texmf-dist/doc/luatex/luapackageloader">luapackageloader</a></b><small> +<li id="luapackageloader"><b><a href="texmf-dist/doc/luatex/luapackageloader/">luapackageloader</a></b><small> (<a href="https://ctan.org/pkg/luapackageloader">CTAN</a>): -Allow LuaTeX to load external Lua packages +Allow LuaTeX to load external Lua packages. <a href="texmf-dist/doc/luatex/luapackageloader/luapackageloader.pdf">luapackageloader.pdf</a>. </small></li> -<li id="luarandom"><b><a href="texmf-dist/doc/lualatex/luarandom">luarandom</a></b><small> +<li id="luarandom"><b><a href="texmf-dist/doc/lualatex/luarandom/">luarandom</a></b><small> (<a href="https://ctan.org/pkg/luarandom">CTAN</a>): -Create lists of random numbers +Create lists of random numbers. <a href="texmf-dist/doc/lualatex/luarandom/luarandom-doc.pdf">luarandom-doc.pdf</a>. </small></li> -<li id="luasseq"><b><a href="texmf-dist/doc/lualatex/luasseq">luasseq</a></b><small> +<li id="luasseq"><b><a href="texmf-dist/doc/lualatex/luasseq/">luasseq</a></b><small> (<a href="https://ctan.org/pkg/luasseq">CTAN</a>): -Drawing spectral sequences in LuaLaTeX +Drawing spectral sequences in LuaLaTeX. <a href="texmf-dist/doc/lualatex/luasseq/luasseq.pdf">luasseq.pdf</a>. </small></li> -<li id="luatex"><b><a href="texmf-dist/doc/luatex/base/graphics">luatex</a></b><small> +<li id="luatex"><b><a href="texmf-dist/doc/luatex/base/">luatex</a></b><small> (<a href="https://ctan.org/pkg/luatex">CTAN</a>): -The LuaTeX engine +The LuaTeX engine. <a href="texmf-dist/doc/luatex/base/graphics/luaharfbuzz.pdf">luaharfbuzz.pdf</a> <a href="texmf-dist/doc/luatex/base/luatex.pdf">luatex.pdf</a> <a href="texmf-dist/doc/man/man1/dviluatex.man1.pdf">dviluatex.man1.pdf</a> @@ -13486,21 +13447,21 @@ The LuaTeX engine <a href="texmf-dist/doc/man/man1/texluac.man1.pdf">texluac.man1.pdf</a>. </small></li> -<li id="luatex85"><b><a href="texmf-dist/doc/generic/luatex85">luatex85</a></b><small> +<li id="luatex85"><b><a href="texmf-dist/doc/generic/luatex85/">luatex85</a></b><small> (<a href="https://ctan.org/pkg/luatex85">CTAN</a>): -pdfTeX aliases for LuaTeX +pdfTeX aliases for LuaTeX. <a href="texmf-dist/doc/generic/luatex85/luatex85.pdf">luatex85.pdf</a>. </small></li> -<li id="luatexbase"><b><a href="texmf-dist/doc/luatex/luatexbase">luatexbase</a></b><small> +<li id="luatexbase"><b><a href="texmf-dist/doc/luatex/luatexbase/">luatexbase</a></b><small> (<a href="https://ctan.org/pkg/luatexbase">CTAN</a>): -Basic resource management for LuaTeX code +Basic resource management for LuaTeX code. <a href="texmf-dist/doc/luatex/luatexbase/luatexbase.pdf">luatexbase.pdf</a>. </small></li> -<li id="luatexja"><b><a href="texmf-dist/doc/luatex/luatexja">luatexja</a></b><small> +<li id="luatexja"><b><a href="texmf-dist/doc/luatex/luatexja/">luatexja</a></b><small> (<a href="https://ctan.org/pkg/luatexja">CTAN</a>): -Typeset Japanese with Lua(La)TeX +Typeset Japanese with Lua(La)TeX. <a href="texmf-dist/doc/luatex/luatexja/lltjp-geometry.pdf">lltjp-geometry.pdf</a> <a href="texmf-dist/doc/luatex/luatexja/ltjclasses.pdf">ltjclasses.pdf</a> <a href="texmf-dist/doc/luatex/luatexja/ltjltxdoc.pdf">ltjltxdoc.pdf</a> @@ -13510,52 +13471,52 @@ Typeset Japanese with Lua(La)TeX <a href="texmf-dist/doc/luatex/luatexja/luatexja-ruby.pdf">luatexja-ruby.pdf</a>. </small></li> -<li id="luatexko"><b><a href="texmf-dist/doc/luatex/luatexko">luatexko</a></b><small> +<li id="luatexko"><b><a href="texmf-dist/doc/luatex/luatexko/">luatexko</a></b><small> (<a href="https://ctan.org/pkg/luatexko">CTAN</a>): -Typeset Korean with Lua(La)TeX +Typeset Korean with Lua(La)TeX. <a href="texmf-dist/doc/luatex/luatexko/luatexko-doc.pdf">luatexko-doc.pdf</a>. </small></li> -<li id="luatextra"><b><a href="texmf-dist/doc/lualatex/luatextra">luatextra</a></b><small> +<li id="luatextra"><b><a href="texmf-dist/doc/lualatex/luatextra/">luatextra</a></b><small> (<a href="https://ctan.org/pkg/luatextra">CTAN</a>): -Additional macros for Plain TeX and LaTeX in LuaTeX +Additional macros for Plain TeX and LaTeX in LuaTeX. <a href="texmf-dist/doc/lualatex/luatextra/luatextra.pdf">luatextra.pdf</a>. </small></li> -<li id="luatodonotes"><b><a href="texmf-dist/doc/lualatex/luatodonotes">luatodonotes</a></b><small> +<li id="luatodonotes"><b><a href="texmf-dist/doc/lualatex/luatodonotes/">luatodonotes</a></b><small> (<a href="https://ctan.org/pkg/luatodonotes">CTAN</a>): -Add editing annotations in a LuaLaTeX document +Add editing annotations in a LuaLaTeX document. <a href="texmf-dist/doc/lualatex/luatodonotes/luatodonotes.pdf">luatodonotes.pdf</a>. </small></li> -<li id="luavlna"><b><a href="texmf-dist/doc/luatex/luavlna">luavlna</a></b><small> +<li id="luavlna"><b><a href="texmf-dist/doc/luatex/luavlna/">luavlna</a></b><small> (<a href="https://ctan.org/pkg/luavlna">CTAN</a>): -Prevent line breaks after single letter words, units, or adademic titles +Prevent line breaks after single letter words, units, or adademic titles. <a href="texmf-dist/doc/luatex/luavlna/luavlna-doc.pdf">luavlna-doc.pdf</a>. </small></li> -<li id="luaxml"><b><a href="texmf-dist/doc/luatex/luaxml">luaxml</a></b><small> +<li id="luaxml"><b><a href="texmf-dist/doc/luatex/luaxml/">luaxml</a></b><small> (<a href="https://ctan.org/pkg/luaxml">CTAN</a>): -Lua library for reading and serialising XML files +Lua library for reading and serialising XML files. <a href="texmf-dist/doc/luatex/luaxml/luaxml.pdf">luaxml.pdf</a>. </small></li> -<li id="lwarp"><b><a href="texmf-dist/doc/latex/lwarp">lwarp</a></b><small> +<li id="lwarp"><b><a href="texmf-dist/doc/latex/lwarp/">lwarp</a></b><small> (<a href="https://ctan.org/pkg/lwarp">CTAN</a>): -Converts LaTeX to HTML +Converts LaTeX to HTML. <a href="texmf-dist/doc/latex/lwarp/lwarp.pdf">lwarp.pdf</a>. </small></li> -<li id="lxfonts"><b><a href="texmf-dist/doc/fonts/lxfonts">lxfonts</a></b><small> +<li id="lxfonts"><b><a href="texmf-dist/doc/fonts/lxfonts/">lxfonts</a></b><small> (<a href="https://ctan.org/pkg/lxfonts">CTAN</a>): -Set of slide fonts based on CM +Set of slide fonts based on CM. <a href="texmf-dist/doc/fonts/lxfonts/LXfonts-demo.pdf">LXfonts-demo.pdf</a> <a href="texmf-dist/doc/fonts/lxfonts/lxfonts.pdf">lxfonts.pdf</a>. </small></li> -<li id="lyluatex"><b><a href="texmf-dist/doc/support/lyluatex">lyluatex</a></b><small> +<li id="lyluatex"><b><a href="texmf-dist/doc/support/lyluatex/">lyluatex</a></b><small> (<a href="https://ctan.org/pkg/lyluatex">CTAN</a>): -Commands to include lilypond scores within a (Lua)LaTeX document +Commands to include lilypond scores within a (Lua)LaTeX document. <a href="texmf-dist/doc/support/lyluatex/lyluatex.pdf">lyluatex.pdf</a>. </small></li> @@ -13563,11 +13524,11 @@ Commands to include lilypond scores within a (Lua)LaTeX document <h2 id="letter-M">M</h2> -<ol start="1767"> +<ol start="1768"> -<li id="m-tx"><b><a href="texmf-dist/doc/generic/m-tx">m-tx</a></b><small> +<li id="m-tx"><b><a href="texmf-dist/doc/generic/m-tx/">m-tx</a></b><small> (<a href="https://ctan.org/pkg/m-tx">CTAN</a>): -A preprocessor for pmx +A preprocessor for pmx. <a href="texmf-dist/doc/generic/m-tx/borup.pdf">borup.pdf</a> <a href="texmf-dist/doc/generic/m-tx/halleluja.pdf">halleluja.pdf</a> <a href="texmf-dist/doc/generic/m-tx/kanons.pdf">kanons.pdf</a> @@ -13577,231 +13538,231 @@ A preprocessor for pmx <a href="texmf-dist/doc/man/man1/prepmx.man1.pdf">prepmx.man1.pdf</a>. </small></li> -<li id="macros2e"><b><a href="texmf-dist/doc/latex/macros2e">macros2e</a></b><small> +<li id="macros2e"><b><a href="texmf-dist/doc/latex/macros2e/">macros2e</a></b><small> (<a href="https://ctan.org/pkg/macros2e">CTAN</a>): -A list of internal LaTeX2e macros +A list of internal LaTeX2e macros. <a href="texmf-dist/doc/latex/macros2e/macros2e.pdf">macros2e.pdf</a>. </small></li> -<li id="macroswap"><b><a href="texmf-dist/doc/latex/macroswap">macroswap</a></b><small> +<li id="macroswap"><b><a href="texmf-dist/doc/latex/macroswap/">macroswap</a></b><small> (<a href="https://ctan.org/pkg/macroswap">CTAN</a>): -Swap the definitions of two LaTeX macros +Swap the definitions of two LaTeX macros. <a href="texmf-dist/doc/latex/macroswap/macroswap.pdf">macroswap.pdf</a>. </small></li> -<li id="mafr"><b><a href="texmf-dist/doc/latex/mafr">mafr</a></b><small> +<li id="mafr"><b><a href="texmf-dist/doc/latex/mafr/">mafr</a></b><small> (<a href="https://ctan.org/pkg/mafr">CTAN</a>): -Mathematics in accord with French usage +Mathematics in accord with French usage. <a href="texmf-dist/doc/latex/mafr/docmafr.pdf">docmafr.pdf</a> (fr). </small></li> -<li id="magaz"><b><a href="texmf-dist/doc/latex/magaz">magaz</a></b><small> +<li id="magaz"><b><a href="texmf-dist/doc/latex/magaz/">magaz</a></b><small> (<a href="https://ctan.org/pkg/magaz">CTAN</a>): -Magazine layout +Magazine layout. <a href="texmf-dist/doc/latex/magaz/magaz.pdf">magaz.pdf</a>. </small></li> -<li id="magicnum"><b><a href="texmf-dist/doc/latex/magicnum">magicnum</a></b><small> +<li id="magicnum"><b><a href="texmf-dist/doc/latex/magicnum/">magicnum</a></b><small> (<a href="https://ctan.org/pkg/magicnum">CTAN</a>): -Access TeX systems' "magic numbers" +Access TeX systems' "magic numbers". <a href="texmf-dist/doc/latex/magicnum/magicnum.pdf">magicnum.pdf</a>. </small></li> -<li id="mailing"><b><a href="texmf-dist/doc/latex/mailing">mailing</a></b><small> +<li id="mailing"><b><a href="texmf-dist/doc/latex/mailing/">mailing</a></b><small> (<a href="https://ctan.org/pkg/mailing">CTAN</a>): -Macros for mail merging +Macros for mail merging. <a href="texmf-dist/doc/latex/mailing/mailing.pdf">mailing.pdf</a>. </small></li> -<li id="mailmerge"><b><a href="texmf-dist/doc/latex/mailmerge">mailmerge</a></b><small> +<li id="mailmerge"><b><a href="texmf-dist/doc/latex/mailmerge/">mailmerge</a></b><small> (<a href="https://ctan.org/pkg/mailmerge">CTAN</a>): -Repeating text field substitution +Repeating text field substitution. <a href="texmf-dist/doc/latex/mailmerge/mailmerge.pdf">mailmerge.pdf</a>. </small></li> -<li id="make4ht"><b><a href="texmf-dist/doc/support/make4ht">make4ht</a></b><small> +<li id="make4ht"><b><a href="texmf-dist/doc/support/make4ht/">make4ht</a></b><small> (<a href="https://ctan.org/pkg/make4ht">CTAN</a>): -A build system for tex4ht +A build system for tex4ht. <a href="texmf-dist/doc/support/make4ht/make4ht-doc.pdf">make4ht-doc.pdf</a>. </small></li> -<li id="makebarcode"><b><a href="texmf-dist/doc/latex/makebarcode">makebarcode</a></b><small> +<li id="makebarcode"><b><a href="texmf-dist/doc/latex/makebarcode/">makebarcode</a></b><small> (<a href="https://ctan.org/pkg/makebarcode">CTAN</a>): -Print various kinds 2/5 and Code 39 bar codes +Print various kinds 2/5 and Code 39 bar codes. <a href="texmf-dist/doc/latex/makebarcode/makebarcode.pdf">makebarcode.pdf</a>. </small></li> -<li id="makebase"><b><a href="texmf-dist/doc/latex/makebase">makebase</a></b><small> +<li id="makebase"><b><a href="texmf-dist/doc/latex/makebase/">makebase</a></b><small> (<a href="https://ctan.org/pkg/makebase">CTAN</a>): -Typeset counters in a different base +Typeset counters in a different base. <a href="texmf-dist/doc/latex/makebase/makebase.pdf">makebase.pdf</a>. </small></li> -<li id="makebox"><b><a href="texmf-dist/doc/latex/makebox">makebox</a></b><small> +<li id="makebox"><b><a href="texmf-dist/doc/latex/makebox/">makebox</a></b><small> (<a href="https://ctan.org/pkg/makebox">CTAN</a>): -Defines a \makebox* command +Defines a \makebox* command. <a href="texmf-dist/doc/latex/makebox/makebox.pdf">makebox.pdf</a>. </small></li> -<li id="makecell"><b><a href="texmf-dist/doc/latex/makecell">makecell</a></b><small> +<li id="makecell"><b><a href="texmf-dist/doc/latex/makecell/">makecell</a></b><small> (<a href="https://ctan.org/pkg/makecell">CTAN</a>): -Tabular column heads and multilined cells +Tabular column heads and multilined cells. <a href="texmf-dist/doc/latex/makecell/makecell-rus.pdf">makecell-rus.pdf</a> (ru) <a href="texmf-dist/doc/latex/makecell/makecell.pdf">makecell.pdf</a>. </small></li> -<li id="makecirc"><b><a href="texmf-dist/doc/metapost/makecirc">makecirc</a></b><small> +<li id="makecirc"><b><a href="texmf-dist/doc/metapost/makecirc/">makecirc</a></b><small> (<a href="https://ctan.org/pkg/makecirc">CTAN</a>): -A MetaPost library for drawing electrical circuit diagrams +A MetaPost library for drawing electrical circuit diagrams. <a href="texmf-dist/doc/metapost/makecirc/MakeCirc-en.pdf">MakeCirc-en.pdf</a> <a href="texmf-dist/doc/metapost/makecirc/MakeCirc.pdf">MakeCirc.pdf</a> (es) <a href="texmf-dist/doc/metapost/makecirc/ejemplos.pdf">ejemplos.pdf</a>. </small></li> -<li id="makecmds"><b><a href="texmf-dist/doc/latex/makecmds">makecmds</a></b><small> +<li id="makecmds"><b><a href="texmf-dist/doc/latex/makecmds/">makecmds</a></b><small> (<a href="https://ctan.org/pkg/makecmds">CTAN</a>): -The new \makecommand command always (re)defines a command +The new \makecommand command always (re)defines a command. <a href="texmf-dist/doc/latex/makecmds/makecmds.pdf">makecmds.pdf</a>. </small></li> -<li id="makecookbook"><b><a href="texmf-dist/doc/lualatex/makecookbook">makecookbook</a></b><small> +<li id="makecookbook"><b><a href="texmf-dist/doc/lualatex/makecookbook/">makecookbook</a></b><small> (<a href="https://ctan.org/pkg/makecookbook">CTAN</a>): -Make a Cookbook +Make a Cookbook. <a href="texmf-dist/doc/lualatex/makecookbook/makecookbook-doc.pdf">makecookbook-doc.pdf</a> <a href="texmf-dist/doc/lualatex/makecookbook/mycookbook/makecookbook.pdf">makecookbook.pdf</a>. </small></li> -<li id="makedtx"><b><a href="texmf-dist/doc/support/makedtx">makedtx</a></b><small> +<li id="makedtx"><b><a href="texmf-dist/doc/support/makedtx/">makedtx</a></b><small> (<a href="https://ctan.org/pkg/makedtx">CTAN</a>): -Perl script to help generate dtx and ins files +Perl script to help generate dtx and ins files. <a href="texmf-dist/doc/support/makedtx/makedtx.pdf">makedtx.pdf</a>. </small></li> -<li id="makeglos"><b><a href="texmf-dist/doc/latex/makeglos">makeglos</a></b><small> +<li id="makeglos"><b><a href="texmf-dist/doc/latex/makeglos/">makeglos</a></b><small> (<a href="https://ctan.org/pkg/makeglos">CTAN</a>): -Include a glossary into a document +Include a glossary into a document. <a href="texmf-dist/doc/latex/makeglos/makeglos.pdf">makeglos.pdf</a>. </small></li> -<li id="makeindex"><b><a href="texmf-dist/doc/man/man1">makeindex</a></b><small> +<li id="makeindex"><b><a href="texmf-dist/doc/support/makeindex/">makeindex</a></b><small> (<a href="https://ctan.org/pkg/makeindex">CTAN</a>): -Makeindex development sources +Makeindex development sources. <a href="texmf-dist/doc/man/man1/makeindex.man1.pdf">makeindex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/mkindex.man1.pdf">mkindex.man1.pdf</a> <a href="texmf-dist/doc/support/makeindex/ind.pdf">ind.pdf</a> <a href="texmf-dist/doc/support/makeindex/makeindex.pdf">makeindex.pdf</a>. </small></li> -<li id="makeplot"><b><a href="texmf-dist/doc/latex/makeplot">makeplot</a></b><small> +<li id="makeplot"><b><a href="texmf-dist/doc/latex/makeplot/">makeplot</a></b><small> (<a href="https://ctan.org/pkg/makeplot">CTAN</a>): -Easy plots from Matlab in LaTeX +Easy plots from Matlab in LaTeX. <a href="texmf-dist/doc/latex/makeplot/makeplot.pdf">makeplot.pdf</a>. </small></li> -<li id="makerobust"><b><a href="texmf-dist/doc/latex/makerobust">makerobust</a></b><small> +<li id="makerobust"><b><a href="texmf-dist/doc/latex/makerobust/">makerobust</a></b><small> (<a href="https://ctan.org/pkg/makerobust">CTAN</a>): -Making a macro robust (legacy package) +Making a macro robust (legacy package). <a href="texmf-dist/doc/latex/makerobust/makerobust.pdf">makerobust.pdf</a>. </small></li> -<li id="makeshape"><b><a href="texmf-dist/doc/latex/makeshape">makeshape</a></b><small> +<li id="makeshape"><b><a href="texmf-dist/doc/latex/makeshape/">makeshape</a></b><small> (<a href="https://ctan.org/pkg/makeshape">CTAN</a>): -Declare new PGF shapes +Declare new PGF shapes. <a href="texmf-dist/doc/latex/makeshape/makeshape.pdf">makeshape.pdf</a> <a href="texmf-dist/doc/latex/makeshape/ontesting.pdf">ontesting.pdf</a> <a href="texmf-dist/doc/latex/makeshape/testsample.pdf">testsample.pdf</a>. </small></li> -<li id="mandi"><b><a href="texmf-dist/doc/latex/mandi">mandi</a></b><small> +<li id="mandi"><b><a href="texmf-dist/doc/latex/mandi/">mandi</a></b><small> (<a href="https://ctan.org/pkg/mandi">CTAN</a>): -Macros for introductory physics and astronomy +Macros for introductory physics and astronomy. <a href="texmf-dist/doc/latex/mandi/mandi.pdf">mandi.pdf</a>. </small></li> -<li id="manfnt"><b><a href="texmf-dist/doc/latex/manfnt">manfnt</a></b><small> +<li id="manfnt"><b><a href="texmf-dist/doc/latex/manfnt/">manfnt</a></b><small> (<a href="https://ctan.org/pkg/manfnt">CTAN</a>): -LaTeX support for the TeX book symbols +LaTeX support for the TeX book symbols. <a href="texmf-dist/doc/latex/manfnt/manfnt.pdf">manfnt.pdf</a>. </small></li> -<li id="manuscript"><b><a href="texmf-dist/doc/latex/manuscript">manuscript</a></b><small> +<li id="manuscript"><b><a href="texmf-dist/doc/latex/manuscript/">manuscript</a></b><small> (<a href="https://ctan.org/pkg/manuscript">CTAN</a>): -Emulate look of a document typed on a typewriter +Emulate look of a document typed on a typewriter. <a href="texmf-dist/doc/latex/manuscript/manuscript.pdf">manuscript.pdf</a>. </small></li> -<li id="manyind"><b><a href="texmf-dist/doc/latex/manyind">manyind</a></b><small> +<li id="manyind"><b><a href="texmf-dist/doc/latex/manyind/">manyind</a></b><small> (<a href="https://ctan.org/pkg/manyind">CTAN</a>): -Provides support for many indexes +Provides support for many indexes. <a href="texmf-dist/doc/latex/manyind/mind.html">mind.html</a> <a href="texmf-dist/doc/latex/manyind/mindsample.pdf">mindsample.pdf</a>. </small></li> -<li id="marcellus"><b><a href="texmf-dist/doc/fonts/marcellus">marcellus</a></b><small> +<li id="marcellus"><b><a href="texmf-dist/doc/fonts/marcellus/">marcellus</a></b><small> (<a href="https://ctan.org/pkg/marcellus">CTAN</a>): -Marcellus fonts with LaTeX support +Marcellus fonts with LaTeX support. <a href="texmf-dist/doc/fonts/marcellus/marcellus-samples.pdf">marcellus-samples.pdf</a>. </small></li> -<li id="margbib"><b><a href="texmf-dist/doc/latex/margbib">margbib</a></b><small> +<li id="margbib"><b><a href="texmf-dist/doc/latex/margbib/">margbib</a></b><small> (<a href="https://ctan.org/pkg/margbib">CTAN</a>): -Display bibitem tags in the margins +Display bibitem tags in the margins. <a href="texmf-dist/doc/latex/margbib/margbib.pdf">margbib.pdf</a>. </small></li> -<li id="marginfit"><b><a href="texmf-dist/doc/latex/marginfit">marginfit</a></b><small> +<li id="marginfit"><b><a href="texmf-dist/doc/latex/marginfit/">marginfit</a></b><small> (<a href="https://ctan.org/pkg/marginfit">CTAN</a>): -Improved margin notes +Improved margin notes. <a href="texmf-dist/doc/latex/marginfit/marginfit.pdf">marginfit.pdf</a>. </small></li> -<li id="marginfix"><b><a href="texmf-dist/doc/latex/marginfix">marginfix</a></b><small> +<li id="marginfix"><b><a href="texmf-dist/doc/latex/marginfix/">marginfix</a></b><small> (<a href="https://ctan.org/pkg/marginfix">CTAN</a>): -Patch \marginpar to avoid overfull margins +Patch \marginpar to avoid overfull margins. <a href="texmf-dist/doc/latex/marginfix/marginfix.pdf">marginfix.pdf</a>. </small></li> -<li id="marginnote"><b><a href="texmf-dist/doc/latex/marginnote">marginnote</a></b><small> +<li id="marginnote"><b><a href="texmf-dist/doc/latex/marginnote/">marginnote</a></b><small> (<a href="https://ctan.org/pkg/marginnote">CTAN</a>): -Notes in the margin, even where \marginpar fails +Notes in the margin, even where \marginpar fails. <a href="texmf-dist/doc/latex/marginnote/marginnote.pdf">marginnote.pdf</a>. </small></li> -<li id="markdown"><b><a href="texmf-dist/doc/generic/markdown">markdown</a></b><small> +<li id="markdown"><b><a href="texmf-dist/doc/generic/markdown/">markdown</a></b><small> (<a href="https://ctan.org/pkg/markdown">CTAN</a>): -A package for converting and rendering markdown documents inside TeX +A package for converting and rendering markdown documents inside TeX. <a href="texmf-dist/doc/generic/markdown/markdown.html">markdown.html</a> <a href="texmf-dist/doc/generic/markdown/markdown.pdf">markdown.pdf</a>. </small></li> -<li id="marvosym"><b><a href="texmf-dist/doc/fonts/marvosym">marvosym</a></b><small> +<li id="marvosym"><b><a href="texmf-dist/doc/fonts/marvosym/">marvosym</a></b><small> (<a href="https://ctan.org/pkg/marvosym">CTAN</a>): -Martin Vogel's Symbols (marvosym) font +Martin Vogel's Symbols (marvosym) font. <a href="texmf-dist/doc/fonts/marvosym/marvodoc.pdf">marvodoc.pdf</a> <a href="texmf-dist/doc/fonts/marvosym/marvosym-doc.pdf">marvosym-doc.pdf</a>. </small></li> -<li id="matc3"><b><a href="texmf-dist/doc/latex/matc3">matc3</a></b><small> +<li id="matc3"><b><a href="texmf-dist/doc/latex/matc3/">matc3</a></b><small> (<a href="https://ctan.org/pkg/matc3">CTAN</a>): -Commands for MatematicaC3 textbooks +Commands for MatematicaC3 textbooks. <a href="texmf-dist/doc/latex/matc3/matc3.pdf">matc3.pdf</a> (it). </small></li> -<li id="matc3mem"><b><a href="texmf-dist/doc/latex/matc3mem">matc3mem</a></b><small> +<li id="matc3mem"><b><a href="texmf-dist/doc/latex/matc3mem/">matc3mem</a></b><small> (<a href="https://ctan.org/pkg/matc3mem">CTAN</a>): -Class for MatematicaC3 textbooks +Class for MatematicaC3 textbooks. <a href="texmf-dist/doc/latex/matc3mem/matc3mem.pdf">matc3mem.pdf</a> (it). </small></li> -<li id="match_parens"><b><a href="texmf-dist/doc/support/match_parens">match_parens</a></b><small> +<li id="match_parens"><b><a href="texmf-dist/doc/support/match_parens/">match_parens</a></b><small> (<a href="https://ctan.org/pkg/match_parens">CTAN</a>): -Find mismatches of parentheses, braces, (angle) brackets, in texts +Find mismatches of parentheses, braces, (angle) brackets, in texts. <a href="texmf-dist/doc/support/match_parens/match_parens.pdf">match_parens.pdf</a>. </small></li> -<li id="math-into-latex-4"><b><a href="texmf-dist/doc/latex/math-into-latex-4">math-into-latex-4</a></b><small> +<li id="math-into-latex-4"><b><a href="texmf-dist/doc/latex/math-into-latex-4/">math-into-latex-4</a></b><small> (<a href="https://ctan.org/pkg/math-into-latex-4">CTAN</a>): -Samples from Math into LaTeX, 4th Edition +Samples from Math into LaTeX, 4th Edition. <a href="texmf-dist/doc/latex/math-into-latex-4/babybeamer1.pdf">babybeamer1.pdf</a> <a href="texmf-dist/doc/latex/math-into-latex-4/babybeamer10.pdf">babybeamer10.pdf</a> <a href="texmf-dist/doc/latex/math-into-latex-4/babybeamer2.pdf">babybeamer2.pdf</a> @@ -13829,94 +13790,94 @@ Samples from Math into LaTeX, 4th Edition <a href="texmf-dist/doc/latex/math-into-latex-4/quickbeamer2.pdf">quickbeamer2.pdf</a>. </small></li> -<li id="mathabx"><b><a href="texmf-dist/doc/fonts/mathabx">mathabx</a></b><small> +<li id="mathabx"><b><a href="texmf-dist/doc/fonts/mathabx/">mathabx</a></b><small> (<a href="https://ctan.org/pkg/mathabx">CTAN</a>): -Three series of mathematical symbols +Three series of mathematical symbols. <a href="texmf-dist/doc/fonts/mathabx/mathtest.pdf">mathtest.pdf</a>. </small></li> -<li id="mathalpha"><b><a href="texmf-dist/doc/latex/mathalpha">mathalpha</a></b><small> +<li id="mathalpha"><b><a href="texmf-dist/doc/latex/mathalpha/">mathalpha</a></b><small> (<a href="https://ctan.org/pkg/mathalpha">CTAN</a>): -General package for loading maths alphabets in LaTeX +General package for loading maths alphabets in LaTeX. <a href="texmf-dist/doc/latex/mathalpha/mathalpha-doc.pdf">mathalpha-doc.pdf</a>. </small></li> -<li id="mathastext"><b><a href="texmf-dist/doc/latex/mathastext">mathastext</a></b><small> +<li id="mathastext"><b><a href="texmf-dist/doc/latex/mathastext/">mathastext</a></b><small> (<a href="https://ctan.org/pkg/mathastext">CTAN</a>): -Use the text font in maths mode +Use the text font in maths mode. <a href="texmf-dist/doc/latex/mathastext/mathastext.pdf">mathastext.pdf</a> <a href="texmf-dist/doc/latex/mathastext/mathastexttestalphabets.pdf">mathastexttestalphabets.pdf</a>. </small></li> -<li id="mathcommand"><b><a href="texmf-dist/doc/latex/mathcommand">mathcommand</a></b><small> +<li id="mathcommand"><b><a href="texmf-dist/doc/latex/mathcommand/">mathcommand</a></b><small> (<a href="https://ctan.org/pkg/mathcommand">CTAN</a>): -\newcommand-like commands for defining math macros +\newcommand-like commands for defining math macros. <a href="texmf-dist/doc/latex/mathcommand/mathcommand.pdf">mathcommand.pdf</a>. </small></li> -<li id="mathcomp"><b><a href="texmf-dist/doc/latex/mathcomp">mathcomp</a></b><small> +<li id="mathcomp"><b><a href="texmf-dist/doc/latex/mathcomp/">mathcomp</a></b><small> (<a href="https://ctan.org/pkg/mathcomp">CTAN</a>): -Text symbols in maths mode +Text symbols in maths mode. <a href="texmf-dist/doc/latex/mathcomp/mathcomp.pdf">mathcomp.pdf</a>. </small></li> -<li id="mathdesign"><b><a href="texmf-dist/doc/fonts/mathdesign">mathdesign</a></b><small> +<li id="mathdesign"><b><a href="texmf-dist/doc/fonts/mathdesign/">mathdesign</a></b><small> (<a href="https://ctan.org/pkg/mathdesign">CTAN</a>): -Mathematical fonts to fit with particular text fonts +Mathematical fonts to fit with particular text fonts. <a href="texmf-dist/doc/fonts/mathdesign/MD-Adobe-Utopia-example.pdf">MD-Adobe-Utopia-example.pdf</a> <a href="texmf-dist/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.pdf">MD-Bitstream-Bitstream-Charter-example.pdf</a> <a href="texmf-dist/doc/fonts/mathdesign/mathdesign-doc.pdf">mathdesign-doc.pdf</a>. </small></li> -<li id="mathdots"><b><a href="texmf-dist/doc/generic/mathdots">mathdots</a></b><small> +<li id="mathdots"><b><a href="texmf-dist/doc/generic/mathdots/">mathdots</a></b><small> (<a href="https://ctan.org/pkg/mathdots">CTAN</a>): -Commands to produce dots in math that respect font size +Commands to produce dots in math that respect font size. <a href="texmf-dist/doc/generic/mathdots/mathdots.pdf">mathdots.pdf</a> <a href="texmf-dist/doc/generic/mathdots/mdotest.pdf">mdotest.pdf</a>. </small></li> -<li id="mathexam"><b><a href="texmf-dist/doc/latex/mathexam">mathexam</a></b><small> +<li id="mathexam"><b><a href="texmf-dist/doc/latex/mathexam/">mathexam</a></b><small> (<a href="https://ctan.org/pkg/mathexam">CTAN</a>): -Package for typesetting exams +Package for typesetting exams. <a href="texmf-dist/doc/latex/mathexam/mathexam.pdf">mathexam.pdf</a> <a href="texmf-dist/doc/latex/mathexam/sample.pdf">sample.pdf</a>. </small></li> -<li id="mathfam256"><b><a href="texmf-dist/doc/latex/mathfam256">mathfam256</a></b><small> +<li id="mathfam256"><b><a href="texmf-dist/doc/latex/mathfam256/">mathfam256</a></b><small> (<a href="https://ctan.org/pkg/mathfam256">CTAN</a>): -Extend math family up to 256 for pLaTeX/upLaTeX/Lamed +Extend math family up to 256 for pLaTeX/upLaTeX/Lamed. <a href="texmf-dist/doc/latex/mathfam256/mathfam256.pdf">mathfam256.pdf</a>. </small></li> -<li id="mathfixs"><b><a href="texmf-dist/doc/latex/mathfixs">mathfixs</a></b><small> +<li id="mathfixs"><b><a href="texmf-dist/doc/latex/mathfixs/">mathfixs</a></b><small> (<a href="https://ctan.org/pkg/mathfixs">CTAN</a>): -Fix various layout issues in math mode +Fix various layout issues in math mode. <a href="texmf-dist/doc/latex/mathfixs/mathfixs.pdf">mathfixs.pdf</a>. </small></li> -<li id="mathfont"><b><a href="texmf-dist/doc/latex/mathfont">mathfont</a></b><small> +<li id="mathfont"><b><a href="texmf-dist/doc/latex/mathfont/">mathfont</a></b><small> (<a href="https://ctan.org/pkg/mathfont">CTAN</a>): -Use TrueType and OpenType fonts in math mode +Use TrueType and OpenType fonts in math mode. <a href="texmf-dist/doc/latex/mathfont/mathfont_code.pdf">mathfont_code.pdf</a> <a href="texmf-dist/doc/latex/mathfont/mathfont_symbol_list.pdf">mathfont_symbol_list.pdf</a> <a href="texmf-dist/doc/latex/mathfont/mathfont_user_guide.pdf">mathfont_user_guide.pdf</a>. </small></li> -<li id="mathpartir"><b><a href="texmf-dist/doc/latex/mathpartir">mathpartir</a></b><small> +<li id="mathpartir"><b><a href="texmf-dist/doc/latex/mathpartir/">mathpartir</a></b><small> (<a href="https://ctan.org/pkg/mathpartir">CTAN</a>): -Typesetting sequences of math formulas, e.g. type inference rules +Typesetting sequences of math formulas, e.g. type inference rules. <a href="texmf-dist/doc/latex/mathpartir/mathpartir.pdf">mathpartir.pdf</a>. </small></li> -<li id="mathpazo"><b><a href="texmf-dist/doc/latex/mathpazo">mathpazo</a></b><small> +<li id="mathpazo"><b><a href="texmf-dist/doc/latex/mathpazo/">mathpazo</a></b><small> (<a href="https://ctan.org/pkg/mathpazo">CTAN</a>): -Fonts to typeset mathematics to match Palatino +Fonts to typeset mathematics to match Palatino. <a href="texmf-dist/doc/latex/mathpazo/pazotest.pdf">pazotest.pdf</a>. </small></li> -<li id="mathpunctspace"><b><a href="texmf-dist/doc/latex/mathpunctspace">mathpunctspace</a></b><small> +<li id="mathpunctspace"><b><a href="texmf-dist/doc/latex/mathpunctspace/">mathpunctspace</a></b><small> (<a href="https://ctan.org/pkg/mathpunctspace">CTAN</a>): -Control the space after punctuation in math expressions +Control the space after punctuation in math expressions. <a href="texmf-dist/doc/latex/mathpunctspace/comma0mu-semicolonnat-colonnat.pdf">comma0mu-semicolonnat-colonnat.pdf</a> <a href="texmf-dist/doc/latex/mathpunctspace/comma10mu-semicolon20mu-colon30mu.pdf">comma10mu-semicolon20mu-colon30mu.pdf</a> <a href="texmf-dist/doc/latex/mathpunctspace/comma5pt-semicolon5pt-colon5pt.pdf">comma5pt-semicolon5pt-colon5pt.pdf</a> @@ -13924,103 +13885,103 @@ Control the space after punctuation in math expressions <a href="texmf-dist/doc/latex/mathpunctspace/mathpunctspace.pdf">mathpunctspace.pdf</a>. </small></li> -<li id="maths-symbols"><b><a href="texmf-dist/doc/latex/maths-symbols">maths-symbols</a></b><small> +<li id="maths-symbols"><b><a href="texmf-dist/doc/latex/maths-symbols/">maths-symbols</a></b><small> (<a href="https://ctan.org/pkg/maths-symbols">CTAN</a>): -Summary of mathematical symbols available in LaTeX +Summary of mathematical symbols available in LaTeX. <a href="texmf-dist/doc/latex/maths-symbols/maths-symbols.pdf">maths-symbols.pdf</a> <a href="texmf-dist/doc/latex/maths-symbols/scriptfonts.pdf">scriptfonts.pdf</a>. </small></li> -<li id="mathspec"><b><a href="texmf-dist/doc/xelatex/mathspec">mathspec</a></b><small> +<li id="mathspec"><b><a href="texmf-dist/doc/xelatex/mathspec/">mathspec</a></b><small> (<a href="https://ctan.org/pkg/mathspec">CTAN</a>): -Specify arbitrary fonts for mathematics in XeTeX +Specify arbitrary fonts for mathematics in XeTeX. <a href="texmf-dist/doc/xelatex/mathspec/mathspec.pdf">mathspec.pdf</a>. </small></li> -<li id="mathspic"><b><a href="texmf-dist/doc/latex/mathspic">mathspic</a></b><small> +<li id="mathspic"><b><a href="texmf-dist/doc/latex/mathspic/">mathspic</a></b><small> (<a href="https://ctan.org/pkg/mathspic">CTAN</a>): -A Perl filter program for use with PiCTeX +A Perl filter program for use with PiCTeX. <a href="texmf-dist/doc/latex/mathspic/mathsPICmanual.pdf">mathsPICmanual.pdf</a> <a href="texmf-dist/doc/latex/mathspic/sourcecode113.html">sourcecode113.html</a> <a href="texmf-dist/doc/latex/mathspic/sourcecode113.pdf">sourcecode113.pdf</a> <a href="texmf-dist/doc/man/man1/mathspic.man1.pdf">mathspic.man1.pdf</a>. </small></li> -<li id="mathtools"><b><a href="texmf-dist/doc/latex/mathtools">mathtools</a></b><small> +<li id="mathtools"><b><a href="texmf-dist/doc/latex/mathtools/">mathtools</a></b><small> (<a href="https://ctan.org/pkg/mathtools">CTAN</a>): -Mathematical tools to use with amsmath +Mathematical tools to use with amsmath. <a href="texmf-dist/doc/latex/mathtools/empheq.pdf">empheq.pdf</a> <a href="texmf-dist/doc/latex/mathtools/mathtools.pdf">mathtools.pdf</a> <a href="texmf-dist/doc/latex/mathtools/mhsetup.pdf">mhsetup.pdf</a>. </small></li> -<li id="matlab-prettifier"><b><a href="texmf-dist/doc/latex/matlab-prettifier">matlab-prettifier</a></b><small> +<li id="matlab-prettifier"><b><a href="texmf-dist/doc/latex/matlab-prettifier/">matlab-prettifier</a></b><small> (<a href="https://ctan.org/pkg/matlab-prettifier">CTAN</a>): -Pretty-print Matlab source code +Pretty-print Matlab source code. <a href="texmf-dist/doc/latex/matlab-prettifier/matlab-prettifier.pdf">matlab-prettifier.pdf</a>. </small></li> -<li id="matrix-skeleton"><b><a href="texmf-dist/doc/latex/matrix-skeleton">matrix-skeleton</a></b><small> +<li id="matrix-skeleton"><b><a href="texmf-dist/doc/latex/matrix-skeleton/">matrix-skeleton</a></b><small> (<a href="https://ctan.org/pkg/matrix-skeleton">CTAN</a>): -A PGF/TikZ library that simplifies working with multiple matrix nodes +A PGF/TikZ library that simplifies working with multiple matrix nodes. <a href="texmf-dist/doc/latex/matrix-skeleton/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/matrix-skeleton/manual.pdf">manual.pdf</a>. </small></li> -<li id="mattens"><b><a href="texmf-dist/doc/latex/mattens">mattens</a></b><small> +<li id="mattens"><b><a href="texmf-dist/doc/latex/mattens/">mattens</a></b><small> (<a href="https://ctan.org/pkg/mattens">CTAN</a>): -Matrices/tensor typesetting +Matrices/tensor typesetting. <a href="texmf-dist/doc/latex/mattens/mattens.pdf">mattens.pdf</a> <a href="texmf-dist/doc/latex/mattens/mattens_sample.pdf">mattens_sample.pdf</a>. </small></li> -<li id="maybemath"><b><a href="texmf-dist/doc/latex/maybemath">maybemath</a></b><small> +<li id="maybemath"><b><a href="texmf-dist/doc/latex/maybemath/">maybemath</a></b><small> (<a href="https://ctan.org/pkg/maybemath">CTAN</a>): -Make math bold or italic according to context +Make math bold or italic according to context. <a href="texmf-dist/doc/latex/maybemath/maybemath.pdf">maybemath.pdf</a>. </small></li> -<li id="mcaption"><b><a href="texmf-dist/doc/latex/mcaption">mcaption</a></b><small> +<li id="mcaption"><b><a href="texmf-dist/doc/latex/mcaption/">mcaption</a></b><small> (<a href="https://ctan.org/pkg/mcaption">CTAN</a>): -Put captions in the margin +Put captions in the margin. <a href="texmf-dist/doc/latex/mcaption/mcaption.pdf">mcaption.pdf</a>. </small></li> -<li id="mceinleger"><b><a href="texmf-dist/doc/latex/mceinleger">mceinleger</a></b><small> +<li id="mceinleger"><b><a href="texmf-dist/doc/latex/mceinleger/">mceinleger</a></b><small> (<a href="https://ctan.org/pkg/mceinleger">CTAN</a>): -Creating covers for music cassettes +Creating covers for music cassettes. <a href="texmf-dist/doc/latex/mceinleger/mceinleger.pdf">mceinleger.pdf</a>. </small></li> -<li id="mcexam"><b><a href="texmf-dist/doc/latex/mcexam">mcexam</a></b><small> +<li id="mcexam"><b><a href="texmf-dist/doc/latex/mcexam/">mcexam</a></b><small> (<a href="https://ctan.org/pkg/mcexam">CTAN</a>): -Create randomized Multiple Choice questions +Create randomized Multiple Choice questions. <a href="texmf-dist/doc/latex/mcexam/mcexam.pdf">mcexam.pdf</a>. </small></li> -<li id="mcf2graph"><b><a href="texmf-dist/doc/metapost/mcf2graph">mcf2graph</a></b><small> +<li id="mcf2graph"><b><a href="texmf-dist/doc/metapost/mcf2graph/">mcf2graph</a></b><small> (<a href="https://ctan.org/pkg/mcf2graph">CTAN</a>): -Draw chemical structure diagrams with Metafont/MetaPost +Draw chemical structure diagrams with Metafont/MetaPost. <a href="texmf-dist/doc/metapost/mcf2graph/mcf_example.pdf">mcf_example.pdf</a> <a href="texmf-dist/doc/metapost/mcf2graph/mcf_manual.pdf">mcf_manual.pdf</a> <a href="texmf-dist/doc/metapost/mcf2graph/mcf_mplib_exa.pdf">mcf_mplib_exa.pdf</a>. </small></li> -<li id="mcite"><b><a href="texmf-dist/doc/latex/mcite">mcite</a></b><small> +<li id="mcite"><b><a href="texmf-dist/doc/latex/mcite/">mcite</a></b><small> (<a href="https://ctan.org/pkg/mcite">CTAN</a>): -Multiple items in a single citation +Multiple items in a single citation. <a href="texmf-dist/doc/latex/mcite/mcite.pdf">mcite.pdf</a>. </small></li> -<li id="mciteplus"><b><a href="texmf-dist/doc/latex/mciteplus">mciteplus</a></b><small> +<li id="mciteplus"><b><a href="texmf-dist/doc/latex/mciteplus/">mciteplus</a></b><small> (<a href="https://ctan.org/pkg/mciteplus">CTAN</a>): -Enhanced multiple citations +Enhanced multiple citations. <a href="texmf-dist/doc/latex/mciteplus/mciteplus_doc.pdf">mciteplus_doc.pdf</a>. </small></li> -<li id="mcmthesis"><b><a href="texmf-dist/doc/latex/mcmthesis/figures">mcmthesis</a></b><small> +<li id="mcmthesis"><b><a href="texmf-dist/doc/latex/mcmthesis/">mcmthesis</a></b><small> (<a href="https://ctan.org/pkg/mcmthesis">CTAN</a>): -Template designed for MCM/ICM +Template designed for MCM/ICM. <a href="texmf-dist/doc/latex/mcmthesis/figures/example-image-a.pdf">example-image-a.pdf</a> <a href="texmf-dist/doc/latex/mcmthesis/figures/example-image-b.pdf">example-image-b.pdf</a> <a href="texmf-dist/doc/latex/mcmthesis/figures/example-image-c.pdf">example-image-c.pdf</a> @@ -14029,9 +13990,9 @@ Template designed for MCM/ICM <a href="texmf-dist/doc/latex/mcmthesis/mcmthesis.pdf">mcmthesis.pdf</a>. </small></li> -<li id="mdframed"><b><a href="texmf-dist/doc/latex/mdframed">mdframed</a></b><small> +<li id="mdframed"><b><a href="texmf-dist/doc/latex/mdframed/">mdframed</a></b><small> (<a href="https://ctan.org/pkg/mdframed">CTAN</a>): -Framed environments that can split at page boundaries +Framed environments that can split at page boundaries. <a href="texmf-dist/doc/latex/mdframed/mdframed-example-default.pdf">mdframed-example-default.pdf</a> <a href="texmf-dist/doc/latex/mdframed/mdframed-example-pstricks.pdf">mdframed-example-pstricks.pdf</a> <a href="texmf-dist/doc/latex/mdframed/mdframed-example-texsx.pdf">mdframed-example-texsx.pdf</a> @@ -14039,22 +14000,22 @@ Framed environments that can split at page boundaries <a href="texmf-dist/doc/latex/mdframed/mdframed.pdf">mdframed.pdf</a>. </small></li> -<li id="mdputu"><b><a href="texmf-dist/doc/latex/mdputu">mdputu</a></b><small> +<li id="mdputu"><b><a href="texmf-dist/doc/latex/mdputu/">mdputu</a></b><small> (<a href="https://ctan.org/pkg/mdputu">CTAN</a>): -Upright digits in Adobe Utopia Italic +Upright digits in Adobe Utopia Italic. <a href="texmf-dist/doc/latex/mdputu/mdputu.pdf">mdputu.pdf</a> <a href="texmf-dist/doc/latex/mdputu/sample.pdf">sample.pdf</a>. </small></li> -<li id="mdsymbol"><b><a href="texmf-dist/doc/latex/mdsymbol">mdsymbol</a></b><small> +<li id="mdsymbol"><b><a href="texmf-dist/doc/latex/mdsymbol/">mdsymbol</a></b><small> (<a href="https://ctan.org/pkg/mdsymbol">CTAN</a>): -Symbol fonts to match Adobe Myriad Pro +Symbol fonts to match Adobe Myriad Pro. <a href="texmf-dist/doc/latex/mdsymbol/mdsymbol.pdf">mdsymbol.pdf</a>. </small></li> -<li id="mdwtools"><b><a href="texmf-dist/doc/latex/mdwtools">mdwtools</a></b><small> +<li id="mdwtools"><b><a href="texmf-dist/doc/latex/mdwtools/">mdwtools</a></b><small> (<a href="https://ctan.org/pkg/mdwtools">CTAN</a>): -Miscellaneous tools by Mark Wooding +Miscellaneous tools by Mark Wooding. <a href="texmf-dist/doc/latex/mdwtools/at.pdf">at.pdf</a> <a href="texmf-dist/doc/latex/mdwtools/cmtt.pdf">cmtt.pdf</a> <a href="texmf-dist/doc/latex/mdwtools/doafter.pdf">doafter.pdf</a> @@ -14066,118 +14027,117 @@ Miscellaneous tools by Mark Wooding <a href="texmf-dist/doc/latex/mdwtools/syntax.pdf">syntax.pdf</a>. </small></li> -<li id="media9"><b><a href="texmf-dist/doc/latex/media9">media9</a></b><small> +<li id="media9"><b><a href="texmf-dist/doc/latex/media9/">media9</a></b><small> (<a href="https://ctan.org/pkg/media9">CTAN</a>): -Multimedia inclusion package with Adobe Reader-9/X compatibility +Multimedia inclusion package with Adobe Reader-9/X compatibility. <a href="texmf-dist/doc/latex/media9/media9.pdf">media9.pdf</a>. </small></li> -<li id="meetingmins"><b><a href="texmf-dist/doc/latex/meetingmins">meetingmins</a></b><small> +<li id="meetingmins"><b><a href="texmf-dist/doc/latex/meetingmins/">meetingmins</a></b><small> (<a href="https://ctan.org/pkg/meetingmins">CTAN</a>): -Format written minutes of meetings +Format written minutes of meetings. <a href="texmf-dist/doc/latex/meetingmins/meetingmins.pdf">meetingmins.pdf</a> <a href="texmf-dist/doc/latex/meetingmins/samples/agenda.pdf">agenda.pdf</a> <a href="texmf-dist/doc/latex/meetingmins/samples/chair.pdf">chair.pdf</a> <a href="texmf-dist/doc/latex/meetingmins/samples/minutes.pdf">minutes.pdf</a>. </small></li> -<li id="memdesign"><b><a href="texmf-dist/doc/fonts/memdesign">memdesign</a></b><small> +<li id="memdesign"><b><a href="texmf-dist/doc/fonts/memdesign/">memdesign</a></b><small> (<a href="https://ctan.org/pkg/memdesign">CTAN</a>): -Notes on book design +Notes on book design. <a href="texmf-dist/doc/fonts/memdesign/memdesign.pdf">memdesign.pdf</a>. </small></li> -<li id="memexsupp"><b><a href="texmf-dist/doc/latex/memexsupp">memexsupp</a></b><small> +<li id="memexsupp"><b><a href="texmf-dist/doc/latex/memexsupp/">memexsupp</a></b><small> (<a href="https://ctan.org/pkg/memexsupp">CTAN</a>): -Experimental memoir support +Experimental memoir support. <a href="texmf-dist/doc/latex/memexsupp/memexsupp.pdf">memexsupp.pdf</a>. </small></li> -<li id="memoir"><b><a href="texmf-dist/doc/latex/memoir">memoir</a></b><small> +<li id="memoir"><b><a href="texmf-dist/doc/latex/memoir/">memoir</a></b><small> (<a href="https://ctan.org/pkg/memoir">CTAN</a>): -Typeset fiction, non-fiction and mathematical books +Typeset fiction, non-fiction and mathematical books. <a href="texmf-dist/doc/latex/memoir/memman.pdf">memman.pdf</a> <a href="texmf-dist/doc/latex/memoir/setpage-example.pdf">setpage-example.pdf</a>. </small></li> -<li id="MemoirChapStyles"><b><a href="texmf-dist/doc/latex/MemoirChapStyles">MemoirChapStyles</a></b><small> -(<a href="https://ctan.org/pkg/MemoirChapStyles">CTAN</a>): -Chapter styles in memoir class +<li id="MemoirChapStyles"><b><a href="texmf-dist/doc/latex/MemoirChapStyles/">MemoirChapStyles</a></b><small> +Chapter styles in memoir class. <a href="texmf-dist/doc/latex/MemoirChapStyles/MemoirChapStyles.pdf">MemoirChapStyles.pdf</a>. </small></li> -<li id="memory"><b><a href="texmf-dist/doc/latex/memory">memory</a></b><small> +<li id="memory"><b><a href="texmf-dist/doc/latex/memory/">memory</a></b><small> (<a href="https://ctan.org/pkg/memory">CTAN</a>): -Containers for data in LaTeX +Containers for data in LaTeX. <a href="texmf-dist/doc/latex/memory/memory.pdf">memory.pdf</a>. </small></li> -<li id="memorygraphs"><b><a href="texmf-dist/doc/latex/memorygraphs">memorygraphs</a></b><small> +<li id="memorygraphs"><b><a href="texmf-dist/doc/latex/memorygraphs/">memorygraphs</a></b><small> (<a href="https://ctan.org/pkg/memorygraphs">CTAN</a>): -TikZ styles to typeset graphs of program memory +TikZ styles to typeset graphs of program memory. <a href="texmf-dist/doc/latex/memorygraphs/memorygraphs.pdf">memorygraphs.pdf</a>. </small></li> -<li id="mendex-doc"><b><a href="texmf-dist/doc/support/mendex-doc">mendex-doc</a></b><small> +<li id="mendex-doc"><b><a href="texmf-dist/doc/support/mendex-doc/">mendex-doc</a></b><small> (<a href="https://ctan.org/pkg/mendex-doc">CTAN</a>): -Documentation for Mendex index processor +Documentation for Mendex index processor. <a href="texmf-dist/doc/support/mendex-doc/mendex.pdf">mendex.pdf</a> (ja). </small></li> -<li id="mensa-tex"><b><a href="texmf-dist/doc/latex/mensa-tex/doc">mensa-tex</a></b><small> +<li id="mensa-tex"><b><a href="texmf-dist/doc/latex/mensa-tex/">mensa-tex</a></b><small> (<a href="https://ctan.org/pkg/mensa-tex">CTAN</a>): -Typeset simple school cafeteria menus +Typeset simple school cafeteria menus. <a href="texmf-dist/doc/latex/mensa-tex/doc/mensa-tex-doc.pdf">mensa-tex-doc.pdf</a> <a href="texmf-dist/doc/latex/mensa-tex/doc/mensa-tex-example.pdf">mensa-tex-example.pdf</a>. </small></li> -<li id="mentis"><b><a href="texmf-dist/doc/latex/mentis">mentis</a></b><small> +<li id="mentis"><b><a href="texmf-dist/doc/latex/mentis/">mentis</a></b><small> (<a href="https://ctan.org/pkg/mentis">CTAN</a>): -A basis for books to be published by Mentis publishers +A basis for books to be published by Mentis publishers. <a href="texmf-dist/doc/latex/mentis/mentis.pdf">mentis.pdf</a>. </small></li> -<li id="menu"><b><a href="texmf-dist/doc/latex/menu">menu</a></b><small> +<li id="menu"><b><a href="texmf-dist/doc/latex/menu/">menu</a></b><small> (<a href="https://ctan.org/pkg/menu">CTAN</a>): -Typesetting menus +Typesetting menus. <a href="texmf-dist/doc/latex/menu/menu.pdf">menu.pdf</a>. </small></li> -<li id="menukeys"><b><a href="texmf-dist/doc/latex/menukeys">menukeys</a></b><small> +<li id="menukeys"><b><a href="texmf-dist/doc/latex/menukeys/">menukeys</a></b><small> (<a href="https://ctan.org/pkg/menukeys">CTAN</a>): -Format menu sequences, paths and keystrokes from lists +Format menu sequences, paths and keystrokes from lists. <a href="texmf-dist/doc/latex/menukeys/menukeys.pdf">menukeys.pdf</a>. </small></li> -<li id="mercatormap"><b><a href="texmf-dist/doc/latex/mercatormap">mercatormap</a></b><small> +<li id="mercatormap"><b><a href="texmf-dist/doc/latex/mercatormap/">mercatormap</a></b><small> (<a href="https://ctan.org/pkg/mercatormap">CTAN</a>): -Spherical Mercator coordinate systems and Web Mercator tile integration +Spherical Mercator coordinate systems and Web Mercator tile integration. <a href="texmf-dist/doc/latex/mercatormap/mercatormap.pdf">mercatormap.pdf</a>. </small></li> -<li id="merriweather"><b><a href="texmf-dist/doc/fonts/merriweather">merriweather</a></b><small> +<li id="merriweather"><b><a href="texmf-dist/doc/fonts/merriweather/">merriweather</a></b><small> (<a href="https://ctan.org/pkg/merriweather">CTAN</a>): -Merriweather and MerriweatherSans fonts, with LaTeX support +Merriweather and MerriweatherSans fonts, with LaTeX support. <a href="texmf-dist/doc/fonts/merriweather/merriweather-samples.pdf">merriweather-samples.pdf</a>. </small></li> -<li id="metafont"><b><a href="texmf-dist/doc/man/man1">metafont</a></b><small> +<li id="metafont"><b><a href="texmf-dist/doc/man/man1/">metafont</a></b><small> (<a href="https://ctan.org/pkg/metafont">CTAN</a>): -A system for specifying fonts +A system for specifying fonts. <a href="texmf-dist/doc/man/man1/inimf.man1.pdf">inimf.man1.pdf</a> <a href="texmf-dist/doc/man/man1/mf-nowin.man1.pdf">mf-nowin.man1.pdf</a> <a href="texmf-dist/doc/man/man1/mf.man1.pdf">mf.man1.pdf</a>. </small></li> -<li id="metafont-beginners"><b><a href="texmf-dist/doc/fonts/metafont-beginners">metafont-beginners</a></b><small> +<li id="metafont-beginners"><b><a href="texmf-dist/doc/fonts/metafont-beginners/">metafont-beginners</a></b><small> (<a href="https://ctan.org/pkg/metafont-beginners">CTAN</a>): -An introductory tutorial for Metafont +An introductory tutorial for Metafont. <a href="texmf-dist/doc/fonts/metafont-beginners/metafont-for-beginners.pdf">metafont-for-beginners.pdf</a>. </small></li> -<li id="metago"><b><a href="texmf-dist/doc/metapost/metago">metago</a></b><small> +<li id="metago"><b><a href="texmf-dist/doc/metapost/metago/">metago</a></b><small> (<a href="https://ctan.org/pkg/metago">CTAN</a>): -MetaPost output of Go positions +MetaPost output of Go positions. <a href="texmf-dist/doc/metapost/metago/example-program.pdf">example-program.pdf</a> <a href="texmf-dist/doc/metapost/metago/example-script-1.pdf">example-script-1.pdf</a> <a href="texmf-dist/doc/metapost/metago/example-script-2.pdf">example-script-2.pdf</a> @@ -14189,41 +14149,41 @@ MetaPost output of Go positions <a href="texmf-dist/doc/metapost/metago/example-script-8.pdf">example-script-8.pdf</a>. </small></li> -<li id="metalogo"><b><a href="texmf-dist/doc/latex/metalogo">metalogo</a></b><small> +<li id="metalogo"><b><a href="texmf-dist/doc/latex/metalogo/">metalogo</a></b><small> (<a href="https://ctan.org/pkg/metalogo">CTAN</a>): -Extended TeX logo macros +Extended TeX logo macros. <a href="texmf-dist/doc/latex/metalogo/TeXoutline.pdf">TeXoutline.pdf</a> <a href="texmf-dist/doc/latex/metalogo/eLaToutline.pdf">eLaToutline.pdf</a> <a href="texmf-dist/doc/latex/metalogo/metalogo.pdf">metalogo.pdf</a>. </small></li> -<li id="metalogox"><b><a href="texmf-dist/doc/latex/metalogox">metalogox</a></b><small> +<li id="metalogox"><b><a href="texmf-dist/doc/latex/metalogox/">metalogox</a></b><small> (<a href="https://ctan.org/pkg/metalogox">CTAN</a>): -Adjust TeX logos, with font detection +Adjust TeX logos, with font detection. <a href="texmf-dist/doc/latex/metalogox/metalogox.pdf">metalogox.pdf</a>. </small></li> -<li id="metanorma"><b><a href="texmf-dist/doc/latex/metanorma">metanorma</a></b><small> +<li id="metanorma"><b><a href="texmf-dist/doc/latex/metanorma/">metanorma</a></b><small> (<a href="https://ctan.org/pkg/metanorma">CTAN</a>): -Write Metanorma standardization documents using LaTe +Write Metanorma standardization documents using LaTe. <a href="texmf-dist/doc/latex/metanorma/metanorma.pdf">metanorma.pdf</a>. </small></li> -<li id="metaobj"><b><a href="texmf-dist/doc/metapost/metaobj">metaobj</a></b><small> +<li id="metaobj"><b><a href="texmf-dist/doc/metapost/metaobj/">metaobj</a></b><small> (<a href="https://ctan.org/pkg/metaobj">CTAN</a>): -MetaPost package providing high-level objects +MetaPost package providing high-level objects. <a href="texmf-dist/doc/metapost/metaobj/momanual.pdf">momanual.pdf</a>. </small></li> -<li id="metaplot"><b><a href="texmf-dist/doc/latex/metaplot">metaplot</a></b><small> +<li id="metaplot"><b><a href="texmf-dist/doc/latex/metaplot/">metaplot</a></b><small> (<a href="https://ctan.org/pkg/metaplot">CTAN</a>): -Plot-manipulation macros for use in MetaPost +Plot-manipulation macros for use in MetaPost. <a href="texmf-dist/doc/latex/metaplot/metaplot_preprint.pdf">metaplot_preprint.pdf</a>. </small></li> -<li id="metapost"><b><a href="texmf-dist/doc/man/man1">metapost</a></b><small> +<li id="metapost"><b><a href="texmf-dist/doc/metapost/base/">metapost</a></b><small> (<a href="https://ctan.org/pkg/metapost">CTAN</a>): -A development of Metafont for creating graphics +A development of Metafont for creating graphics. <a href="texmf-dist/doc/man/man1/dvitomp.man1.pdf">dvitomp.man1.pdf</a> <a href="texmf-dist/doc/man/man1/mpost.man1.pdf">mpost.man1.pdf</a> <a href="texmf-dist/doc/metapost/base/grdemo-doc.pdf">grdemo-doc.pdf</a> @@ -14236,108 +14196,108 @@ A development of Metafont for creating graphics <a href="texmf-dist/doc/metapost/base/source-tutorial/previewer.pdf">previewer.pdf</a>. </small></li> -<li id="metapost-colorbrewer"><b><a href="texmf-dist/doc/metapost/metapost-colorbrewer">metapost-colorbrewer</a></b><small> +<li id="metapost-colorbrewer"><b><a href="texmf-dist/doc/metapost/metapost-colorbrewer/">metapost-colorbrewer</a></b><small> (<a href="https://ctan.org/pkg/metapost-colorbrewer">CTAN</a>): -An implementation of the colorbrewer2.org colours for MetaPost +An implementation of the colorbrewer2.org colours for MetaPost. <a href="texmf-dist/doc/metapost/metapost-colorbrewer/colorbrewer-sampler.pdf">colorbrewer-sampler.pdf</a>. </small></li> -<li id="metastr"><b><a href="texmf-dist/doc/latex/metastr">metastr</a></b><small> +<li id="metastr"><b><a href="texmf-dist/doc/latex/metastr/">metastr</a></b><small> (<a href="https://ctan.org/pkg/metastr">CTAN</a>): -Store and compose strings +Store and compose strings. <a href="texmf-dist/doc/latex/metastr/metastr.pdf">metastr.pdf</a>. </small></li> -<li id="metatex"><b><a href="texmf-dist/doc/plain/metatex">metatex</a></b><small> +<li id="metatex"><b><a href="texmf-dist/doc/plain/metatex/">metatex</a></b><small> (<a href="https://ctan.org/pkg/metatex">CTAN</a>): -Incorporate Metafont pictures in TeX source +Incorporate Metafont pictures in TeX source. <a href="texmf-dist/doc/plain/metatex/mtpaper.pdf">mtpaper.pdf</a>. </small></li> -<li id="metauml"><b><a href="texmf-dist/doc/metapost/metauml">metauml</a></b><small> +<li id="metauml"><b><a href="texmf-dist/doc/metapost/metauml/">metauml</a></b><small> (<a href="https://ctan.org/pkg/metauml">CTAN</a>): -MetaPost library for typesetting UML diagrams +MetaPost library for typesetting UML diagrams. <a href="texmf-dist/doc/metapost/metauml/metauml-manual-v0.2.6-19d34de3da75cbd9f814f0a9ec03b4e0861b1541.pdf">metauml-manual-v0.2.6-19d34de3da75cbd9f814f0a9ec03b4e0861b1541.pdf</a>. </small></li> -<li id="method"><b><a href="texmf-dist/doc/latex/method">method</a></b><small> +<li id="method"><b><a href="texmf-dist/doc/latex/method/">method</a></b><small> (<a href="https://ctan.org/pkg/method">CTAN</a>): -Typeset method and variable declarations +Typeset method and variable declarations. <a href="texmf-dist/doc/latex/method/method.pdf">method.pdf</a>. </small></li> -<li id="metre"><b><a href="texmf-dist/doc/latex/metre">metre</a></b><small> +<li id="metre"><b><a href="texmf-dist/doc/latex/metre/">metre</a></b><small> (<a href="https://ctan.org/pkg/metre">CTAN</a>): -Support for the work of classicists +Support for the work of classicists. <a href="texmf-dist/doc/latex/metre/demo.pdf">demo.pdf</a> <a href="texmf-dist/doc/latex/metre/metre.pdf">metre.pdf</a>. </small></li> -<li id="metrix"><b><a href="texmf-dist/doc/latex/metrix">metrix</a></b><small> +<li id="metrix"><b><a href="texmf-dist/doc/latex/metrix/">metrix</a></b><small> (<a href="https://ctan.org/pkg/metrix">CTAN</a>): -Typeset metric marks for Latin text +Typeset metric marks for Latin text. <a href="texmf-dist/doc/latex/metrix/metrix.pdf">metrix.pdf</a>. </small></li> -<li id="mex"><b><a href="texmf-dist/doc/mex/base">mex</a></b><small> +<li id="mex"><b><a href="texmf-dist/doc/mex/base/">mex</a></b><small> (<a href="https://ctan.org/pkg/mex">CTAN</a>): -Polish formats for TeX +Polish formats for TeX. <a href="texmf-dist/doc/mex/base/mex.html">mex.html</a>. </small></li> -<li id="mf2pt1"><b><a href="texmf-dist/doc/support/mf2pt1">mf2pt1</a></b><small> +<li id="mf2pt1"><b><a href="texmf-dist/doc/support/mf2pt1/">mf2pt1</a></b><small> (<a href="https://ctan.org/pkg/mf2pt1">CTAN</a>): -Produce PostScript Type 1 fonts from Metafont source +Produce PostScript Type 1 fonts from Metafont source. <a href="texmf-dist/doc/support/mf2pt1/mf2pt1.pdf">mf2pt1.pdf</a>. </small></li> -<li id="mfirstuc"><b><a href="texmf-dist/doc/latex/mfirstuc">mfirstuc</a></b><small> +<li id="mfirstuc"><b><a href="texmf-dist/doc/latex/mfirstuc/">mfirstuc</a></b><small> (<a href="https://ctan.org/pkg/mfirstuc">CTAN</a>): -Uppercase the first letter of a word +Uppercase the first letter of a word. <a href="texmf-dist/doc/latex/mfirstuc/mfirstuc-code.pdf">mfirstuc-code.pdf</a> <a href="texmf-dist/doc/latex/mfirstuc/mfirstuc-manual.html">mfirstuc-manual.html</a> <a href="texmf-dist/doc/latex/mfirstuc/mfirstuc-manual.pdf">mfirstuc-manual.pdf</a> <a href="texmf-dist/doc/latex/mfirstuc/sample-mfirstuc.pdf">sample-mfirstuc.pdf</a>. </small></li> -<li id="mflogo"><b><a href="texmf-dist/doc/latex/mflogo">mflogo</a></b><small> +<li id="mflogo"><b><a href="texmf-dist/doc/latex/mflogo/">mflogo</a></b><small> (<a href="https://ctan.org/pkg/mflogo">CTAN</a>): -LaTeX support for Metafont logo fonts +LaTeX support for Metafont logo fonts. <a href="texmf-dist/doc/latex/mflogo/mflogo.pdf">mflogo.pdf</a>. </small></li> -<li id="mfnfss"><b><a href="texmf-dist/doc/latex/mfnfss">mfnfss</a></b><small> +<li id="mfnfss"><b><a href="texmf-dist/doc/latex/mfnfss/">mfnfss</a></b><small> (<a href="https://ctan.org/pkg/mfnfss">CTAN</a>): -Packages to typeset oldgerman and pandora fonts in LaTeX +Packages to typeset oldgerman and pandora fonts in LaTeX. <a href="texmf-dist/doc/latex/mfnfss/oldgerm.pdf">oldgerm.pdf</a> <a href="texmf-dist/doc/latex/mfnfss/pandora.pdf">pandora.pdf</a>. </small></li> -<li id="mfpic"><b><a href="texmf-dist/doc/generic/mfpic">mfpic</a></b><small> +<li id="mfpic"><b><a href="texmf-dist/doc/generic/mfpic/">mfpic</a></b><small> (<a href="https://ctan.org/pkg/mfpic">CTAN</a>): -Draw Metafont/post pictures from (La)TeX commands +Draw Metafont/post pictures from (La)TeX commands. <a href="texmf-dist/doc/generic/mfpic/mfpcard.pdf">mfpcard.pdf</a> <a href="texmf-dist/doc/generic/mfpic/mfpguide.pdf">mfpguide.pdf</a> <a href="texmf-dist/doc/generic/mfpic/mfpic-doc.pdf">mfpic-doc.pdf</a>. </small></li> -<li id="mfpic4ode"><b><a href="texmf-dist/doc/latex/mfpic4ode/demo">mfpic4ode</a></b><small> +<li id="mfpic4ode"><b><a href="texmf-dist/doc/latex/mfpic4ode/">mfpic4ode</a></b><small> (<a href="https://ctan.org/pkg/mfpic4ode">CTAN</a>): -Macros to draw direction fields and solutions of ODEs +Macros to draw direction fields and solutions of ODEs. <a href="texmf-dist/doc/latex/mfpic4ode/demo/demo-plain.pdf">demo-plain.pdf</a> <a href="texmf-dist/doc/latex/mfpic4ode/demo/demo.pdf">demo.pdf</a> <a href="texmf-dist/doc/latex/mfpic4ode/mfpic4ode.pdf">mfpic4ode.pdf</a>. </small></li> -<li id="mftinc"><b><a href="texmf-dist/doc/latex/mftinc">mftinc</a></b><small> +<li id="mftinc"><b><a href="texmf-dist/doc/latex/mftinc/">mftinc</a></b><small> (<a href="https://ctan.org/pkg/mftinc">CTAN</a>): -Pretty-print Metafont source +Pretty-print Metafont source. <a href="texmf-dist/doc/latex/mftinc/mftinc.pdf">mftinc.pdf</a>. </small></li> -<li id="mfware"><b><a href="texmf-dist/doc/man/man1">mfware</a></b><small> +<li id="mfware"><b><a href="texmf-dist/doc/man/man1/">mfware</a></b><small> (<a href="https://ctan.org/pkg/mfware">CTAN</a>): -Supporting tools for use with Metafont +Supporting tools for use with Metafont. <a href="texmf-dist/doc/man/man1/gftodvi.man1.pdf">gftodvi.man1.pdf</a> <a href="texmf-dist/doc/man/man1/gftopk.man1.pdf">gftopk.man1.pdf</a> <a href="texmf-dist/doc/man/man1/gftype.man1.pdf">gftype.man1.pdf</a> @@ -14346,116 +14306,116 @@ Supporting tools for use with Metafont <a href="texmf-dist/doc/man/man1/pktype.man1.pdf">pktype.man1.pdf</a>. </small></li> -<li id="mgltex"><b><a href="texmf-dist/doc/latex/mgltex">mgltex</a></b><small> +<li id="mgltex"><b><a href="texmf-dist/doc/latex/mgltex/">mgltex</a></b><small> (<a href="https://ctan.org/pkg/mgltex">CTAN</a>): -High-quality graphics from MGL scripts embedded in LaTeX documents +High-quality graphics from MGL scripts embedded in LaTeX documents. <a href="texmf-dist/doc/latex/mgltex/Recompilation_decision.pdf">Recompilation_decision.pdf</a> <a href="texmf-dist/doc/latex/mgltex/mgltex.pdf">mgltex.pdf</a> <a href="texmf-dist/doc/latex/mgltex/sample.pdf">sample.pdf</a>. </small></li> -<li id="mhchem"><b><a href="texmf-dist/doc/latex/mhchem">mhchem</a></b><small> +<li id="mhchem"><b><a href="texmf-dist/doc/latex/mhchem/">mhchem</a></b><small> (<a href="https://ctan.org/pkg/mhchem">CTAN</a>): -Typeset chemical formulae/equations and Risk and Safety phrases +Typeset chemical formulae/equations and Risk and Safety phrases. <a href="texmf-dist/doc/latex/mhchem/mhchem.pdf">mhchem.pdf</a>. </small></li> -<li id="mhequ"><b><a href="texmf-dist/doc/latex/mhequ">mhequ</a></b><small> +<li id="mhequ"><b><a href="texmf-dist/doc/latex/mhequ/">mhequ</a></b><small> (<a href="https://ctan.org/pkg/mhequ">CTAN</a>): -Multicolumn equations, tags, labels, sub-numbering +Multicolumn equations, tags, labels, sub-numbering. <a href="texmf-dist/doc/latex/mhequ/example.pdf">example.pdf</a>. </small></li> -<li id="mi-solns"><b><a href="texmf-dist/doc/latex/mi-solns/docs">mi-solns</a></b><small> +<li id="mi-solns"><b><a href="texmf-dist/doc/latex/mi-solns/">mi-solns</a></b><small> (<a href="https://ctan.org/pkg/mi-solns">CTAN</a>): -Extract solutions from exercises and quizzes +Extract solutions from exercises and quizzes. <a href="texmf-dist/doc/latex/mi-solns/docs/mi-solns.pdf">mi-solns.pdf</a> <a href="texmf-dist/doc/latex/mi-solns/docs/mi-solnsman.pdf">mi-solnsman.pdf</a>. </small></li> -<li id="miama"><b><a href="texmf-dist/doc/fonts/miama">miama</a></b><small> +<li id="miama"><b><a href="texmf-dist/doc/fonts/miama/">miama</a></b><small> (<a href="https://ctan.org/pkg/miama">CTAN</a>): -The Miama Nueva handwriting font with LaTeX support +The Miama Nueva handwriting font with LaTeX support. <a href="texmf-dist/doc/fonts/miama/miama.pdf">miama.pdf</a>. </small></li> -<li id="microtype"><b><a href="texmf-dist/doc/latex/microtype">microtype</a></b><small> +<li id="microtype"><b><a href="texmf-dist/doc/latex/microtype/">microtype</a></b><small> (<a href="https://ctan.org/pkg/microtype">CTAN</a>): -Subliminal refinements towards typographical perfection +Subliminal refinements towards typographical perfection. <a href="texmf-dist/doc/latex/microtype/microtype.pdf">microtype.pdf</a>. </small></li> -<li id="microtype-de"><b><a href="texmf-dist/doc/latex/microtype-de">microtype-de</a></b><small> +<li id="microtype-de"><b><a href="texmf-dist/doc/latex/microtype-de/">microtype-de</a></b><small> (<a href="https://ctan.org/pkg/microtype-de">CTAN</a>): -Translation into German of the documentation of microtype +Translation into German of the documentation of microtype. <a href="texmf-dist/doc/latex/microtype-de/microtype-DE.pdf">microtype-DE.pdf</a>. </small></li> -<li id="midnight"><b><a href="texmf-dist/doc/generic/midnight">midnight</a></b><small> +<li id="midnight"><b><a href="texmf-dist/doc/generic/midnight/">midnight</a></b><small> (<a href="https://ctan.org/pkg/midnight">CTAN</a>): -A set of useful macro tools +A set of useful macro tools. <a href="texmf-dist/doc/generic/midnight/midnight.pdf">midnight.pdf</a>. </small></li> -<li id="midpage"><b><a href="texmf-dist/doc/latex/midpage">midpage</a></b><small> +<li id="midpage"><b><a href="texmf-dist/doc/latex/midpage/">midpage</a></b><small> (<a href="https://ctan.org/pkg/midpage">CTAN</a>): -Environment for vertical centring +Environment for vertical centring. <a href="texmf-dist/doc/latex/midpage/midpage.pdf">midpage.pdf</a>. </small></li> -<li id="miller"><b><a href="texmf-dist/doc/latex/miller">miller</a></b><small> +<li id="miller"><b><a href="texmf-dist/doc/latex/miller/">miller</a></b><small> (<a href="https://ctan.org/pkg/miller">CTAN</a>): -Typeset miller indices +Typeset miller indices. <a href="texmf-dist/doc/latex/miller/miller.pdf">miller.pdf</a>. </small></li> -<li id="milog"><b><a href="texmf-dist/doc/latex/milog">milog</a></b><small> +<li id="milog"><b><a href="texmf-dist/doc/latex/milog/">milog</a></b><small> (<a href="https://ctan.org/pkg/milog">CTAN</a>): -A LaTeX class for fulfilling the documentation duties according to the German minimum wage law MiLoG +A LaTeX class for fulfilling the documentation duties according to the German minimum wage law MiLoG. <a href="texmf-dist/doc/latex/milog/milog-example.pdf">milog-example.pdf</a> <a href="texmf-dist/doc/latex/milog/milog-formular.pdf">milog-formular.pdf</a> <a href="texmf-dist/doc/latex/milog/milog.pdf">milog.pdf</a> (de). </small></li> -<li id="milsymb"><b><a href="texmf-dist/doc/latex/milsymb">milsymb</a></b><small> +<li id="milsymb"><b><a href="texmf-dist/doc/latex/milsymb/">milsymb</a></b><small> (<a href="https://ctan.org/pkg/milsymb">CTAN</a>): -LaTeX package for TikZ based drawing of military symbols as per NATO APP-6(C) +LaTeX package for TikZ based drawing of military symbols as per NATO APP-6(C). <a href="texmf-dist/doc/latex/milsymb/milsymb.pdf">milsymb.pdf</a>. </small></li> -<li id="minibox"><b><a href="texmf-dist/doc/latex/minibox">minibox</a></b><small> +<li id="minibox"><b><a href="texmf-dist/doc/latex/minibox/">minibox</a></b><small> (<a href="https://ctan.org/pkg/minibox">CTAN</a>): -A simple type of box for LaTeX +A simple type of box for LaTeX. <a href="texmf-dist/doc/latex/minibox/minibox.pdf">minibox.pdf</a>. </small></li> -<li id="minidocument"><b><a href="texmf-dist/doc/latex/minidocument">minidocument</a></b><small> +<li id="minidocument"><b><a href="texmf-dist/doc/latex/minidocument/">minidocument</a></b><small> (<a href="https://ctan.org/pkg/minidocument">CTAN</a>): -Creates miniature documents inside other LaTeX documents +Creates miniature documents inside other LaTeX documents. <a href="texmf-dist/doc/latex/minidocument/minidocument.pdf">minidocument.pdf</a>. </small></li> -<li id="minifp"><b><a href="texmf-dist/doc/generic/minifp">minifp</a></b><small> +<li id="minifp"><b><a href="texmf-dist/doc/generic/minifp/">minifp</a></b><small> (<a href="https://ctan.org/pkg/minifp">CTAN</a>): -Fixed-point real computations to 8 decimals +Fixed-point real computations to 8 decimals. <a href="texmf-dist/doc/generic/minifp/minifp.pdf">minifp.pdf</a>. </small></li> -<li id="minipage-marginpar"><b><a href="texmf-dist/doc/latex/minipage-marginpar">minipage-marginpar</a></b><small> +<li id="minipage-marginpar"><b><a href="texmf-dist/doc/latex/minipage-marginpar/">minipage-marginpar</a></b><small> (<a href="https://ctan.org/pkg/minipage-marginpar">CTAN</a>): -Minipages with marginal notes +Minipages with marginal notes. <a href="texmf-dist/doc/latex/minipage-marginpar/minipage-marginpar.pdf">minipage-marginpar.pdf</a> (de). </small></li> -<li id="miniplot"><b><a href="texmf-dist/doc/latex/miniplot">miniplot</a></b><small> +<li id="miniplot"><b><a href="texmf-dist/doc/latex/miniplot/">miniplot</a></b><small> (<a href="https://ctan.org/pkg/miniplot">CTAN</a>): -A package for easy figure arrangement +A package for easy figure arrangement. <a href="texmf-dist/doc/latex/miniplot/miniplot.pdf">miniplot.pdf</a>. </small></li> -<li id="minitoc"><b><a href="texmf-dist/doc/latex/minitoc/examples">minitoc</a></b><small> +<li id="minitoc"><b><a href="texmf-dist/doc/latex/minitoc/">minitoc</a></b><small> (<a href="https://ctan.org/pkg/minitoc">CTAN</a>): -Produce a table of contents for each chapter, part or section +Produce a table of contents for each chapter, part or section. <a href="texmf-dist/doc/latex/minitoc/examples/mtc-2c.pdf">mtc-2c.pdf</a> <a href="texmf-dist/doc/latex/minitoc/examples/mtc-2nd.pdf">mtc-2nd.pdf</a> <a href="texmf-dist/doc/latex/minitoc/examples/mtc-3co.pdf">mtc-3co.pdf</a> @@ -14495,119 +14455,118 @@ Produce a table of contents for each chapter, part or section <a href="texmf-dist/doc/latex/minitoc/minitoc.pdf">minitoc.pdf</a>. </small></li> -<li id="minorrevision"><b><a href="texmf-dist/doc/latex/minorrevision">minorrevision</a></b><small> +<li id="minorrevision"><b><a href="texmf-dist/doc/latex/minorrevision/">minorrevision</a></b><small> (<a href="https://ctan.org/pkg/minorrevision">CTAN</a>): -Quote and refer to a manuscript for minor revisions +Quote and refer to a manuscript for minor revisions. <a href="texmf-dist/doc/latex/minorrevision/minorrevision.pdf">minorrevision.pdf</a>. </small></li> -<li id="minted"><b><a href="texmf-dist/doc/latex/minted">minted</a></b><small> +<li id="minted"><b><a href="texmf-dist/doc/latex/minted/">minted</a></b><small> (<a href="https://ctan.org/pkg/minted">CTAN</a>): -Highlighted source code for LaTeX +Highlighted source code for LaTeX. <a href="texmf-dist/doc/latex/minted/minted.pdf">minted.pdf</a>. </small></li> -<li id="mintspirit"><b><a href="texmf-dist/doc/fonts/mintspirit">mintspirit</a></b><small> +<li id="mintspirit"><b><a href="texmf-dist/doc/fonts/mintspirit/">mintspirit</a></b><small> (<a href="https://ctan.org/pkg/mintspirit">CTAN</a>): -LaTeX support for MintSpirit font families +LaTeX support for MintSpirit font families. <a href="texmf-dist/doc/fonts/mintspirit/MintSpirit-Cat.pdf">MintSpirit-Cat.pdf</a> <a href="texmf-dist/doc/fonts/mintspirit/mintspirit-samples.pdf">mintspirit-samples.pdf</a> <a href="texmf-dist/doc/fonts/mintspirit/mintspirit2-samples.pdf">mintspirit2-samples.pdf</a>. </small></li> -<li id="minutes"><b><a href="texmf-dist/doc/latex/minutes">minutes</a></b><small> +<li id="minutes"><b><a href="texmf-dist/doc/latex/minutes/">minutes</a></b><small> (<a href="https://ctan.org/pkg/minutes">CTAN</a>): -Typeset the minutes of meetings +Typeset the minutes of meetings. <a href="texmf-dist/doc/latex/minutes/minutes.pdf">minutes.pdf</a>. </small></li> -<li id="mismath"><b><a href="texmf-dist/doc/latex/mismath">mismath</a></b><small> +<li id="mismath"><b><a href="texmf-dist/doc/latex/mismath/">mismath</a></b><small> (<a href="https://ctan.org/pkg/mismath">CTAN</a>): -Miscellaneous mathematical macros +Miscellaneous mathematical macros. <a href="texmf-dist/doc/latex/mismath/mismath.pdf">mismath.pdf</a>. </small></li> -<li id="missaali"><b><a href="texmf-dist/doc/fonts/missaali">missaali</a></b><small> +<li id="missaali"><b><a href="texmf-dist/doc/fonts/missaali/">missaali</a></b><small> (<a href="https://ctan.org/pkg/missaali">CTAN</a>): -A late medieval OpenType textura font +A late medieval OpenType textura font. <a href="texmf-dist/doc/fonts/missaali/missaali.pdf">missaali.pdf</a>. </small></li> -<li id="mkgrkindex"><b><a href="texmf-dist/doc/support/mkgrkindex">mkgrkindex</a></b><small> -(<a href="https://ctan.org/pkg/mkgrkindex">CTAN</a>): -Makeindex working with Greek +<li id="mkgrkindex"><b><a href="texmf-dist/doc/support/mkgrkindex/">mkgrkindex</a></b><small> +Makeindex working with Greek. <a href="texmf-dist/doc/support/mkgrkindex/mkgrkindex.pdf">mkgrkindex.pdf</a>. </small></li> -<li id="mkjobtexmf"><b><a href="texmf-dist/doc/generic/mkjobtexmf">mkjobtexmf</a></b><small> +<li id="mkjobtexmf"><b><a href="texmf-dist/doc/generic/mkjobtexmf/">mkjobtexmf</a></b><small> (<a href="https://ctan.org/pkg/mkjobtexmf">CTAN</a>): -Generate a texmf tree for a particular job +Generate a texmf tree for a particular job. <a href="texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.html">mkjobtexmf.html</a> <a href="texmf-dist/doc/generic/mkjobtexmf/mkjobtexmf.pdf">mkjobtexmf.pdf</a> <a href="texmf-dist/doc/man/man1/mkjobtexmf.man1.pdf">mkjobtexmf.man1.pdf</a>. </small></li> -<li id="mkpattern"><b><a href="texmf-dist/doc/plain/mkpattern">mkpattern</a></b><small> +<li id="mkpattern"><b><a href="texmf-dist/doc/plain/mkpattern/">mkpattern</a></b><small> (<a href="https://ctan.org/pkg/mkpattern">CTAN</a>): -A utility for making hyphenation patterns +A utility for making hyphenation patterns. <a href="texmf-dist/doc/plain/mkpattern/mkpatter.pdf">mkpatter.pdf</a>. </small></li> -<li id="mkpic"><b><a href="texmf-dist/doc/support/mkpic">mkpic</a></b><small> +<li id="mkpic"><b><a href="texmf-dist/doc/support/mkpic/">mkpic</a></b><small> (<a href="https://ctan.org/pkg/mkpic">CTAN</a>): -Perl interface to mfpic +Perl interface to mfpic. <a href="texmf-dist/doc/support/mkpic/mkpic.pdf">mkpic.pdf</a> <a href="texmf-dist/doc/support/mkpic/mkpicdoc.pdf">mkpicdoc.pdf</a>. </small></li> -<li id="mlacls"><b><a href="texmf-dist/doc/latex/mlacls">mlacls</a></b><small> +<li id="mlacls"><b><a href="texmf-dist/doc/latex/mlacls/">mlacls</a></b><small> (<a href="https://ctan.org/pkg/mlacls">CTAN</a>): -LaTeX class for MLA papers +LaTeX class for MLA papers. <a href="texmf-dist/doc/latex/mlacls/mla-example.pdf">mla-example.pdf</a> <a href="texmf-dist/doc/latex/mlacls/mla.pdf">mla.pdf</a>. </small></li> -<li id="mleftright"><b><a href="texmf-dist/doc/latex/mleftright">mleftright</a></b><small> +<li id="mleftright"><b><a href="texmf-dist/doc/latex/mleftright/">mleftright</a></b><small> (<a href="https://ctan.org/pkg/mleftright">CTAN</a>): -Variants of delimiters that act as maths open/close +Variants of delimiters that act as maths open/close. <a href="texmf-dist/doc/latex/mleftright/mleftright.pdf">mleftright.pdf</a>. </small></li> -<li id="mlist"><b><a href="texmf-dist/doc/latex/mlist">mlist</a></b><small> +<li id="mlist"><b><a href="texmf-dist/doc/latex/mlist/">mlist</a></b><small> (<a href="https://ctan.org/pkg/mlist">CTAN</a>): -Logical markup for lists +Logical markup for lists. <a href="texmf-dist/doc/latex/mlist/mlist.pdf">mlist.pdf</a>. </small></li> -<li id="mnotes"><b><a href="texmf-dist/doc/latex/mnotes">mnotes</a></b><small> +<li id="mnotes"><b><a href="texmf-dist/doc/latex/mnotes/">mnotes</a></b><small> (<a href="https://ctan.org/pkg/mnotes">CTAN</a>): -Margin annotation for collaborative writing +Margin annotation for collaborative writing. <a href="texmf-dist/doc/latex/mnotes/mnotes.pdf">mnotes.pdf</a>. </small></li> -<li id="mnras"><b><a href="texmf-dist/doc/latex/mnras">mnras</a></b><small> +<li id="mnras"><b><a href="texmf-dist/doc/latex/mnras/">mnras</a></b><small> (<a href="https://ctan.org/pkg/mnras">CTAN</a>): -Monthly Notices of the Royal Astronomical Society +Monthly Notices of the Royal Astronomical Society. <a href="texmf-dist/doc/latex/mnras/mnras_guide.pdf">mnras_guide.pdf</a>. </small></li> -<li id="mnsymbol"><b><a href="texmf-dist/doc/latex/mnsymbol">mnsymbol</a></b><small> +<li id="mnsymbol"><b><a href="texmf-dist/doc/latex/mnsymbol/">mnsymbol</a></b><small> (<a href="https://ctan.org/pkg/mnsymbol">CTAN</a>): -Mathematical symbol font for Adobe MinionPro +Mathematical symbol font for Adobe MinionPro. <a href="texmf-dist/doc/latex/mnsymbol/MnSymbol.pdf">MnSymbol.pdf</a>. </small></li> -<li id="modeles-factures-belges-assocs"><b><a href="texmf-dist/doc/latex/modeles-factures-belges-assocs">modeles-factures-belges-assocs</a></b><small> +<li id="modeles-factures-belges-assocs"><b><a href="texmf-dist/doc/latex/modeles-factures-belges-assocs/">modeles-factures-belges-assocs</a></b><small> (<a href="https://ctan.org/pkg/modeles-factures-belges-assocs">CTAN</a>): -Generate invoices for Belgian non-profit organizations +Generate invoices for Belgian non-profit organizations. <a href="texmf-dist/doc/latex/modeles-factures-belges-assocs/doc-modeles-factures-belges-assocs.pdf">doc-modeles-factures-belges-assocs.pdf</a> <a href="texmf-dist/doc/latex/modeles-factures-belges-assocs/facture-banlieues.pdf">facture-banlieues.pdf</a> <a href="texmf-dist/doc/latex/modeles-factures-belges-assocs/facture-basique.pdf">facture-basique.pdf</a>. </small></li> -<li id="moderncv"><b><a href="texmf-dist/doc/latex/moderncv/examples">moderncv</a></b><small> +<li id="moderncv"><b><a href="texmf-dist/doc/latex/moderncv/">moderncv</a></b><small> (<a href="https://ctan.org/pkg/moderncv">CTAN</a>): -A modern curriculum vitae class +A modern curriculum vitae class. <a href="texmf-dist/doc/latex/moderncv/examples/template-es.pdf">template-es.pdf</a> <a href="texmf-dist/doc/latex/moderncv/examples/template-multibib.pdf">template-multibib.pdf</a> <a href="texmf-dist/doc/latex/moderncv/examples/template-zh.pdf">template-zh.pdf</a> @@ -14623,105 +14582,105 @@ A modern curriculum vitae class <a href="texmf-dist/doc/latex/moderncv/examples/template_oldstyle_grey.pdf">template_oldstyle_grey.pdf</a>. </small></li> -<li id="modernposter"><b><a href="texmf-dist/doc/latex/modernposter">modernposter</a></b><small> +<li id="modernposter"><b><a href="texmf-dist/doc/latex/modernposter/">modernposter</a></b><small> (<a href="https://ctan.org/pkg/modernposter">CTAN</a>): -A modern LaTeX poster theme +A modern LaTeX poster theme. <a href="texmf-dist/doc/latex/modernposter/demo.pdf">demo.pdf</a> <a href="texmf-dist/doc/latex/modernposter/modernposter.pdf">modernposter.pdf</a>. </small></li> -<li id="moderntimeline"><b><a href="texmf-dist/doc/latex/moderntimeline">moderntimeline</a></b><small> +<li id="moderntimeline"><b><a href="texmf-dist/doc/latex/moderntimeline/">moderntimeline</a></b><small> (<a href="https://ctan.org/pkg/moderntimeline">CTAN</a>): -Timelines for use with moderncv +Timelines for use with moderncv. <a href="texmf-dist/doc/latex/moderntimeline/moderntimeline.pdf">moderntimeline.pdf</a>. </small></li> -<li id="modes"><b><a href="texmf-dist/doc/fonts/modes">modes</a></b><small> +<li id="modes"><b><a href="texmf-dist/doc/fonts/modes/">modes</a></b><small> (<a href="https://ctan.org/pkg/modes">CTAN</a>): -A collection of Metafont mode_def's +A collection of Metafont mode_def's. <a href="texmf-dist/doc/fonts/modes/modes.pdf">modes.pdf</a>. </small></li> -<li id="modiagram"><b><a href="texmf-dist/doc/latex/modiagram">modiagram</a></b><small> +<li id="modiagram"><b><a href="texmf-dist/doc/latex/modiagram/">modiagram</a></b><small> (<a href="https://ctan.org/pkg/modiagram">CTAN</a>): -Drawing molecular orbital diagrams +Drawing molecular orbital diagrams. <a href="texmf-dist/doc/latex/modiagram/modiagram_en.pdf">modiagram_en.pdf</a>. </small></li> -<li id="modref"><b><a href="texmf-dist/doc/latex/modref">modref</a></b><small> +<li id="modref"><b><a href="texmf-dist/doc/latex/modref/">modref</a></b><small> (<a href="https://ctan.org/pkg/modref">CTAN</a>): -Customisation of cross-references in LaTeX +Customisation of cross-references in LaTeX. <a href="texmf-dist/doc/latex/modref/modref.pdf">modref.pdf</a>. </small></li> -<li id="modroman"><b><a href="texmf-dist/doc/latex/modroman">modroman</a></b><small> +<li id="modroman"><b><a href="texmf-dist/doc/latex/modroman/">modroman</a></b><small> (<a href="https://ctan.org/pkg/modroman">CTAN</a>): -Write numbers in lower case roman numerals +Write numbers in lower case roman numerals. <a href="texmf-dist/doc/latex/modroman/modroman-en.pdf">modroman-en.pdf</a> <a href="texmf-dist/doc/latex/modroman/modroman-fr.pdf">modroman-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/modroman/modroman.pdf">modroman.pdf</a>. </small></li> -<li id="modular"><b><a href="texmf-dist/doc/latex/modular">modular</a></b><small> +<li id="modular"><b><a href="texmf-dist/doc/latex/modular/">modular</a></b><small> (<a href="https://ctan.org/pkg/modular">CTAN</a>): -Relative section headings for modular documents +Relative section headings for modular documents. <a href="texmf-dist/doc/latex/modular/modular.pdf">modular.pdf</a>. </small></li> -<li id="modulus"><b><a href="texmf-dist/doc/generic/modulus">modulus</a></b><small> +<li id="modulus"><b><a href="texmf-dist/doc/generic/modulus/">modulus</a></b><small> (<a href="https://ctan.org/pkg/modulus">CTAN</a>): -A non-destructive modulus and integer quotient operator for TeX +A non-destructive modulus and integer quotient operator for TeX. <a href="texmf-dist/doc/generic/modulus/modulus.pdf">modulus.pdf</a>. </small></li> -<li id="mongolian-babel"><b><a href="texmf-dist/doc/latex/mongolian-babel">mongolian-babel</a></b><small> +<li id="mongolian-babel"><b><a href="texmf-dist/doc/latex/mongolian-babel/">mongolian-babel</a></b><small> (<a href="https://ctan.org/pkg/mongolian-babel">CTAN</a>): -A language definition file for Mongolian in Babel +A language definition file for Mongolian in Babel. <a href="texmf-dist/doc/latex/mongolian-babel/mongolian.pdf">mongolian.pdf</a>. </small></li> -<li id="monofill"><b><a href="texmf-dist/doc/latex/monofill">monofill</a></b><small> +<li id="monofill"><b><a href="texmf-dist/doc/latex/monofill/">monofill</a></b><small> (<a href="https://ctan.org/pkg/monofill">CTAN</a>): -Alignment of plain text +Alignment of plain text. <a href="texmf-dist/doc/latex/monofill/monofill.pdf">monofill.pdf</a>. </small></li> -<li id="montex"><b><a href="texmf-dist/doc/latex/montex">montex</a></b><small> +<li id="montex"><b><a href="texmf-dist/doc/latex/montex/">montex</a></b><small> (<a href="https://ctan.org/pkg/montex">CTAN</a>): -Mongolian LaTeX +Mongolian LaTeX. <a href="texmf-dist/doc/latex/montex/mlsquick.pdf">mlsquick.pdf</a> <a href="texmf-dist/doc/latex/montex/montex.pdf">montex.pdf</a> <a href="texmf-dist/doc/latex/montex/zanabazr.pdf">zanabazr.pdf</a>. </small></li> -<li id="montserrat"><b><a href="texmf-dist/doc/fonts/montserrat">montserrat</a></b><small> +<li id="montserrat"><b><a href="texmf-dist/doc/fonts/montserrat/">montserrat</a></b><small> (<a href="https://ctan.org/pkg/montserrat">CTAN</a>): -Montserrat sans serif, otf and pfb, with LaTeX support files +Montserrat sans serif, otf and pfb, with LaTeX support files. <a href="texmf-dist/doc/fonts/montserrat/montserrat-doc.pdf">montserrat-doc.pdf</a>. </small></li> -<li id="moodle"><b><a href="texmf-dist/doc/latex/moodle">moodle</a></b><small> +<li id="moodle"><b><a href="texmf-dist/doc/latex/moodle/">moodle</a></b><small> (<a href="https://ctan.org/pkg/moodle">CTAN</a>): -Generating Moodle quizzes via LaTeX +Generating Moodle quizzes via LaTeX. <a href="texmf-dist/doc/latex/moodle/moodle.pdf">moodle.pdf</a>. </small></li> -<li id="moreenum"><b><a href="texmf-dist/doc/latex/moreenum">moreenum</a></b><small> +<li id="moreenum"><b><a href="texmf-dist/doc/latex/moreenum/">moreenum</a></b><small> (<a href="https://ctan.org/pkg/moreenum">CTAN</a>): -More enumeration options +More enumeration options. <a href="texmf-dist/doc/latex/moreenum/moreenum-doc.pdf">moreenum-doc.pdf</a>. </small></li> -<li id="morefloats"><b><a href="texmf-dist/doc/latex/morefloats">morefloats</a></b><small> +<li id="morefloats"><b><a href="texmf-dist/doc/latex/morefloats/">morefloats</a></b><small> (<a href="https://ctan.org/pkg/morefloats">CTAN</a>): -Increase the number of simultaneous LaTeX floats +Increase the number of simultaneous LaTeX floats. <a href="texmf-dist/doc/latex/morefloats/morefloats-example.pdf">morefloats-example.pdf</a> <a href="texmf-dist/doc/latex/morefloats/morefloats.pdf">morefloats.pdf</a>. </small></li> -<li id="morehype"><b><a href="texmf-dist/doc/latex/morehype">morehype</a></b><small> +<li id="morehype"><b><a href="texmf-dist/doc/latex/morehype/">morehype</a></b><small> (<a href="https://ctan.org/pkg/morehype">CTAN</a>): -Hypertext tools for use with LaTeX +Hypertext tools for use with LaTeX. <a href="texmf-dist/doc/latex/morehype/README.pdf">README.pdf</a> <a href="texmf-dist/doc/latex/morehype/blog.pdf">blog.pdf</a> <a href="texmf-dist/doc/latex/morehype/blogexec.pdf">blogexec.pdf</a> @@ -14730,105 +14689,104 @@ Hypertext tools for use with LaTeX <a href="texmf-dist/doc/latex/morehype/wiki_mwe.pdf">wiki_mwe.pdf</a>. </small></li> -<li id="moresize"><b><a href="texmf-dist/doc/latex/moresize">moresize</a></b><small> +<li id="moresize"><b><a href="texmf-dist/doc/latex/moresize/">moresize</a></b><small> (<a href="https://ctan.org/pkg/moresize">CTAN</a>): -Allows font sizes up to 35.83pt +Allows font sizes up to 35.83pt. <a href="texmf-dist/doc/latex/moresize/moresize.pdf">moresize.pdf</a>. </small></li> -<li id="moreverb"><b><a href="texmf-dist/doc/latex/moreverb">moreverb</a></b><small> +<li id="moreverb"><b><a href="texmf-dist/doc/latex/moreverb/">moreverb</a></b><small> (<a href="https://ctan.org/pkg/moreverb">CTAN</a>): -Extended verbatim +Extended verbatim. <a href="texmf-dist/doc/latex/moreverb/moreverb.pdf">moreverb.pdf</a>. </small></li> -<li id="morewrites"><b><a href="texmf-dist/doc/latex/morewrites">morewrites</a></b><small> +<li id="morewrites"><b><a href="texmf-dist/doc/latex/morewrites/">morewrites</a></b><small> (<a href="https://ctan.org/pkg/morewrites">CTAN</a>): -Always room for a new write stream +Always room for a new write stream. <a href="texmf-dist/doc/latex/morewrites/morewrites.pdf">morewrites.pdf</a> <a href="texmf-dist/doc/latex/morewrites/primargs.pdf">primargs.pdf</a>. </small></li> -<li id="morisawa"><b><a href="texmf-dist/doc/fonts/morisawa">morisawa</a></b><small> +<li id="morisawa"><b><a href="texmf-dist/doc/fonts/morisawa/">morisawa</a></b><small> (<a href="https://ctan.org/pkg/morisawa">CTAN</a>): -Enables selection of 5 standard Japanese fonts for pLaTeX + dvips +Enables selection of 5 standard Japanese fonts for pLaTeX + dvips. <a href="texmf-dist/doc/fonts/morisawa/morisawa.pdf">morisawa.pdf</a> (ja). </small></li> -<li id="movie15"><b><a href="texmf-dist/doc/latex/movie15/files">movie15</a></b><small> +<li id="movie15"><b><a href="texmf-dist/doc/latex/movie15/">movie15</a></b><small> (<a href="https://ctan.org/pkg/movie15">CTAN</a>): -Multimedia inclusion package +Multimedia inclusion package. <a href="texmf-dist/doc/latex/movie15/files/3dsystem.pdf">3dsystem.pdf</a> <a href="texmf-dist/doc/latex/movie15/movie15.pdf">movie15.pdf</a> <a href="texmf-dist/doc/latex/movie15/overlay-example.pdf">overlay-example.pdf</a>. </small></li> -<li id="mp3d"><b><a href="texmf-dist/doc/metapost/mp3d">mp3d</a></b><small> +<li id="mp3d"><b><a href="texmf-dist/doc/metapost/mp3d/">mp3d</a></b><small> (<a href="https://ctan.org/pkg/mp3d">CTAN</a>): -3D animations +3D animations. <a href="texmf-dist/doc/metapost/mp3d/gut2001.pdf">gut2001.pdf</a> (fr) <a href="texmf-dist/doc/metapost/mp3d/paper1997corrected.pdf">paper1997corrected.pdf</a> <a href="texmf-dist/doc/metapost/mp3d/tb57roeg.pdf">tb57roeg.pdf</a> <a href="texmf-dist/doc/metapost/mp3d/tugboat-geometry-space.pdf">tugboat-geometry-space.pdf</a>. </small></li> -<li id="mparhack"><b><a href="texmf-dist/doc/latex/mparhack">mparhack</a></b><small> +<li id="mparhack"><b><a href="texmf-dist/doc/latex/mparhack/">mparhack</a></b><small> (<a href="https://ctan.org/pkg/mparhack">CTAN</a>): -Work around a LaTeX bug in marginpars +Work around a LaTeX bug in marginpars. <a href="texmf-dist/doc/latex/mparhack/mparhack.pdf">mparhack.pdf</a>. </small></li> -<li id="mparrows"><b><a href="texmf-dist/doc/metapost/mparrows">mparrows</a></b><small> +<li id="mparrows"><b><a href="texmf-dist/doc/metapost/mparrows/">mparrows</a></b><small> (<a href="https://ctan.org/pkg/mparrows">CTAN</a>): -MetaPost module with different types of arrow heads +MetaPost module with different types of arrow heads. <a href="texmf-dist/doc/metapost/mparrows/mparrows.pdf">mparrows.pdf</a>. </small></li> -<li id="mpattern"><b><a href="texmf-dist/doc/metapost/mpattern">mpattern</a></b><small> +<li id="mpattern"><b><a href="texmf-dist/doc/metapost/mpattern/">mpattern</a></b><small> (<a href="https://ctan.org/pkg/mpattern">CTAN</a>): -Patterns in MetaPost +Patterns in MetaPost. <a href="texmf-dist/doc/metapost/mpattern/mpattern_test.pdf">mpattern_test.pdf</a>. </small></li> -<li id="mpcolornames"><b><a href="texmf-dist/doc/metapost/mpcolornames">mpcolornames</a></b><small> +<li id="mpcolornames"><b><a href="texmf-dist/doc/metapost/mpcolornames/">mpcolornames</a></b><small> (<a href="https://ctan.org/pkg/mpcolornames">CTAN</a>): -Extend list of predefined colour names for MetaPost +Extend list of predefined colour names for MetaPost. <a href="texmf-dist/doc/metapost/mpcolornames/mpcolornames.pdf">mpcolornames.pdf</a>. </small></li> -<li id="mpgraphics"><b><a href="texmf-dist/doc/latex/mpgraphics">mpgraphics</a></b><small> +<li id="mpgraphics"><b><a href="texmf-dist/doc/latex/mpgraphics/">mpgraphics</a></b><small> (<a href="https://ctan.org/pkg/mpgraphics">CTAN</a>): -Process and display MetaPost figures inline +Process and display MetaPost figures inline. <a href="texmf-dist/doc/latex/mpgraphics/mpgraphics.pdf">mpgraphics.pdf</a>. </small></li> -<li id="mpman-ru"><b><a href="texmf-dist/doc/metapost/mpman-ru">mpman-ru</a></b><small> +<li id="mpman-ru"><b><a href="texmf-dist/doc/metapost/mpman-ru/">mpman-ru</a></b><small> (<a href="https://ctan.org/pkg/mpman-ru">CTAN</a>): -A Russian translation of the MetaPost manual +A Russian translation of the MetaPost manual. <a href="texmf-dist/doc/metapost/mpman-ru/mpman-ru.pdf">mpman-ru.pdf</a>. </small></li> -<li id="mpostinl"><b><a href="texmf-dist/doc/latex/mpostinl">mpostinl</a></b><small> +<li id="mpostinl"><b><a href="texmf-dist/doc/latex/mpostinl/">mpostinl</a></b><small> (<a href="https://ctan.org/pkg/mpostinl">CTAN</a>): -Embed MetaPost figures within LaTeX documents +Embed MetaPost figures within LaTeX documents. <a href="texmf-dist/doc/latex/mpostinl/mpostinl.pdf">mpostinl.pdf</a>. </small></li> -<li id="mptopdf"><b><a href="texmf-dist/doc/man/man1">mptopdf</a></b><small> -(<a href="https://ctan.org/pkg/mptopdf">CTAN</a>): -mpost to PDF, native MetaPost graphics inclusion +<li id="mptopdf"><b><a href="texmf-dist/doc/man/man1/">mptopdf</a></b><small> +mpost to PDF, native MetaPost graphics inclusion. <a href="texmf-dist/doc/man/man1/mptopdf.man1.pdf">mptopdf.man1.pdf</a>. </small></li> -<li id="mptrees"><b><a href="texmf-dist/doc/metapost/mptrees">mptrees</a></b><small> +<li id="mptrees"><b><a href="texmf-dist/doc/metapost/mptrees/">mptrees</a></b><small> (<a href="https://ctan.org/pkg/mptrees">CTAN</a>): -Probability trees with MetaPost +Probability trees with MetaPost. <a href="texmf-dist/doc/metapost/mptrees/mptrees-doc.pdf">mptrees-doc.pdf</a>. </small></li> -<li id="ms"><b><a href="texmf-dist/doc/latex/ms">ms</a></b><small> +<li id="ms"><b><a href="texmf-dist/doc/latex/ms/">ms</a></b><small> (<a href="https://ctan.org/pkg/ms">CTAN</a>): -Various LaTeX packages by Martin Schroder +Various LaTeX packages by Martin Schroder. <a href="texmf-dist/doc/latex/ms/count1to.pdf">count1to.pdf</a> <a href="texmf-dist/doc/latex/ms/everysel.pdf">everysel.pdf</a> <a href="texmf-dist/doc/latex/ms/everyshi.pdf">everyshi.pdf</a> @@ -14836,181 +14794,181 @@ Various LaTeX packages by Martin Schroder <a href="texmf-dist/doc/latex/ms/prelim2e.pdf">prelim2e.pdf</a>. </small></li> -<li id="msc"><b><a href="texmf-dist/doc/latex/msc">msc</a></b><small> +<li id="msc"><b><a href="texmf-dist/doc/latex/msc/">msc</a></b><small> (<a href="https://ctan.org/pkg/msc">CTAN</a>): -Draw MSC diagrams +Draw MSC diagrams. <a href="texmf-dist/doc/latex/msc/maintenance.pdf">maintenance.pdf</a> <a href="texmf-dist/doc/latex/msc/manual.pdf">manual.pdf</a> <a href="texmf-dist/doc/latex/msc/refman.pdf">refman.pdf</a>. </small></li> -<li id="msg"><b><a href="texmf-dist/doc/latex/msg">msg</a></b><small> +<li id="msg"><b><a href="texmf-dist/doc/latex/msg/">msg</a></b><small> (<a href="https://ctan.org/pkg/msg">CTAN</a>): -A package for LaTeX localisation +A package for LaTeX localisation. <a href="texmf-dist/doc/latex/msg/msg.pdf">msg.pdf</a> <a href="texmf-dist/doc/latex/msg/msgguide.pdf">msgguide.pdf</a>. </small></li> -<li id="mslapa"><b><a href="texmf-dist/doc/latex/mslapa">mslapa</a></b><small> +<li id="mslapa"><b><a href="texmf-dist/doc/latex/mslapa/">mslapa</a></b><small> (<a href="https://ctan.org/pkg/mslapa">CTAN</a>): -Michael Landy's APA citation style +Michael Landy's APA citation style. <a href="texmf-dist/doc/latex/mslapa/mslapa.pdf">mslapa.pdf</a>. </small></li> -<li id="msu-thesis"><b><a href="texmf-dist/doc/latex/msu-thesis">msu-thesis</a></b><small> +<li id="msu-thesis"><b><a href="texmf-dist/doc/latex/msu-thesis/">msu-thesis</a></b><small> (<a href="https://ctan.org/pkg/msu-thesis">CTAN</a>): -Class for Michigan State University Master's and PhD theses +Class for Michigan State University Master's and PhD theses. <a href="texmf-dist/doc/latex/msu-thesis/msu-thesis.pdf">msu-thesis.pdf</a> <a href="texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf">MSU-thesis-template.pdf</a> <a href="texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf">MSU-thesis-testfile.pdf</a>. </small></li> -<li id="mtgreek"><b><a href="texmf-dist/doc/latex/mtgreek">mtgreek</a></b><small> +<li id="mtgreek"><b><a href="texmf-dist/doc/latex/mtgreek/">mtgreek</a></b><small> (<a href="https://ctan.org/pkg/mtgreek">CTAN</a>): -Use italic and upright greek letters with mathtime +Use italic and upright greek letters with mathtime. <a href="texmf-dist/doc/latex/mtgreek/mtgreek.pdf">mtgreek.pdf</a>. </small></li> -<li id="mucproc"><b><a href="texmf-dist/doc/latex/mucproc">mucproc</a></b><small> +<li id="mucproc"><b><a href="texmf-dist/doc/latex/mucproc/">mucproc</a></b><small> (<a href="https://ctan.org/pkg/mucproc">CTAN</a>): -Conference proceedings for the German MuC-conference +Conference proceedings for the German MuC-conference. <a href="texmf-dist/doc/latex/mucproc/mucproc.pdf">mucproc.pdf</a>. </small></li> -<li id="mugsthesis"><b><a href="texmf-dist/doc/latex/mugsthesis">mugsthesis</a></b><small> +<li id="mugsthesis"><b><a href="texmf-dist/doc/latex/mugsthesis/">mugsthesis</a></b><small> (<a href="https://ctan.org/pkg/mugsthesis">CTAN</a>): -Thesis class complying with Marquette University Graduate School requirements +Thesis class complying with Marquette University Graduate School requirements. <a href="texmf-dist/doc/latex/mugsthesis/mugsthesis.pdf">mugsthesis.pdf</a> <a href="texmf-dist/doc/latex/mugsthesis/sample/mugsthesis_sample.pdf">mugsthesis_sample.pdf</a>. </small></li> -<li id="multenum"><b><a href="texmf-dist/doc/latex/multenum">multenum</a></b><small> +<li id="multenum"><b><a href="texmf-dist/doc/latex/multenum/">multenum</a></b><small> (<a href="https://ctan.org/pkg/multenum">CTAN</a>): -Multi-column enumerated lists +Multi-column enumerated lists. <a href="texmf-dist/doc/latex/multenum/multienum.pdf">multienum.pdf</a>. </small></li> -<li id="multiaudience"><b><a href="texmf-dist/doc/latex/multiaudience">multiaudience</a></b><small> +<li id="multiaudience"><b><a href="texmf-dist/doc/latex/multiaudience/">multiaudience</a></b><small> (<a href="https://ctan.org/pkg/multiaudience">CTAN</a>): -Several versions of output from the same source +Several versions of output from the same source. <a href="texmf-dist/doc/latex/multiaudience/multiaudience.pdf">multiaudience.pdf</a> <a href="texmf-dist/doc/latex/multiaudience/sample-admins.pdf">sample-admins.pdf</a> <a href="texmf-dist/doc/latex/multiaudience/sample-devs.pdf">sample-devs.pdf</a> <a href="texmf-dist/doc/latex/multiaudience/sample-execs.pdf">sample-execs.pdf</a>. </small></li> -<li id="multibbl"><b><a href="texmf-dist/doc/latex/multibbl">multibbl</a></b><small> +<li id="multibbl"><b><a href="texmf-dist/doc/latex/multibbl/">multibbl</a></b><small> (<a href="https://ctan.org/pkg/multibbl">CTAN</a>): -Multiple bibliographies +Multiple bibliographies. <a href="texmf-dist/doc/latex/multibbl/multibbl.pdf">multibbl.pdf</a>. </small></li> -<li id="multibib"><b><a href="texmf-dist/doc/latex/multibib">multibib</a></b><small> +<li id="multibib"><b><a href="texmf-dist/doc/latex/multibib/">multibib</a></b><small> (<a href="https://ctan.org/pkg/multibib">CTAN</a>): -Multiple bibliographies within one document +Multiple bibliographies within one document. <a href="texmf-dist/doc/latex/multibib/multibib.pdf">multibib.pdf</a>. </small></li> -<li id="multibibliography"><b><a href="texmf-dist/doc/latex/multibibliography">multibibliography</a></b><small> +<li id="multibibliography"><b><a href="texmf-dist/doc/latex/multibibliography/">multibibliography</a></b><small> (<a href="https://ctan.org/pkg/multibibliography">CTAN</a>): -Multiple versions of a bibliography, with different sort orders +Multiple versions of a bibliography, with different sort orders. <a href="texmf-dist/doc/latex/multibibliography/figure.pdf">figure.pdf</a> <a href="texmf-dist/doc/latex/multibibliography/multibibliography.pdf">multibibliography.pdf</a> <a href="texmf-dist/doc/latex/multibibliography/tug-paper.pdf">tug-paper.pdf</a>. </small></li> -<li id="multicap"><b><a href="texmf-dist/doc/latex/multicap">multicap</a></b><small> +<li id="multicap"><b><a href="texmf-dist/doc/latex/multicap/">multicap</a></b><small> (<a href="https://ctan.org/pkg/multicap">CTAN</a>): -Format captions inside multicols +Format captions inside multicols. <a href="texmf-dist/doc/latex/multicap/multicap.pdf">multicap.pdf</a>. </small></li> -<li id="multicolrule"><b><a href="texmf-dist/doc/latex/multicolrule">multicolrule</a></b><small> +<li id="multicolrule"><b><a href="texmf-dist/doc/latex/multicolrule/">multicolrule</a></b><small> (<a href="https://ctan.org/pkg/multicolrule">CTAN</a>): -Decorative rules between columns +Decorative rules between columns. <a href="texmf-dist/doc/latex/multicolrule/mcrule-examples.pdf">mcrule-examples.pdf</a> <a href="texmf-dist/doc/latex/multicolrule/multicolrule.pdf">multicolrule.pdf</a>. </small></li> -<li id="multidef"><b><a href="texmf-dist/doc/latex/multidef">multidef</a></b><small> +<li id="multidef"><b><a href="texmf-dist/doc/latex/multidef/">multidef</a></b><small> (<a href="https://ctan.org/pkg/multidef">CTAN</a>): -Quickly define several similar macros +Quickly define several similar macros. <a href="texmf-dist/doc/latex/multidef/multidef.pdf">multidef.pdf</a>. </small></li> -<li id="multido"><b><a href="texmf-dist/doc/generic/multido">multido</a></b><small> +<li id="multido"><b><a href="texmf-dist/doc/generic/multido/">multido</a></b><small> (<a href="https://ctan.org/pkg/multido">CTAN</a>): -A loop facility for Generic TeX +A loop facility for Generic TeX. <a href="texmf-dist/doc/generic/multido/multido-doc.pdf">multido-doc.pdf</a> <a href="texmf-dist/doc/generic/multido/multido.pdf">multido.pdf</a>. </small></li> -<li id="multienv"><b><a href="texmf-dist/doc/latex/multienv">multienv</a></b><small> +<li id="multienv"><b><a href="texmf-dist/doc/latex/multienv/">multienv</a></b><small> (<a href="https://ctan.org/pkg/multienv">CTAN</a>): -Multiple environments using a "key=value" syntax +Multiple environments using a "key=value" syntax. <a href="texmf-dist/doc/latex/multienv/multienv.pdf">multienv.pdf</a>. </small></li> -<li id="multiexpand"><b><a href="texmf-dist/doc/generic/multiexpand">multiexpand</a></b><small> +<li id="multiexpand"><b><a href="texmf-dist/doc/generic/multiexpand/">multiexpand</a></b><small> (<a href="https://ctan.org/pkg/multiexpand">CTAN</a>): -Variations on the primitive command \expandafter +Variations on the primitive command \expandafter. <a href="texmf-dist/doc/generic/multiexpand/multiexpand.pdf">multiexpand.pdf</a>. </small></li> -<li id="multilang"><b><a href="texmf-dist/doc/latex/multilang">multilang</a></b><small> +<li id="multilang"><b><a href="texmf-dist/doc/latex/multilang/">multilang</a></b><small> (<a href="https://ctan.org/pkg/multilang">CTAN</a>): -A LaTeX package for maintaining multiple translations of a document +A LaTeX package for maintaining multiple translations of a document. <a href="texmf-dist/doc/latex/multilang/multilang.pdf">multilang.pdf</a>. </small></li> -<li id="multiobjective"><b><a href="texmf-dist/doc/latex/multiobjective">multiobjective</a></b><small> +<li id="multiobjective"><b><a href="texmf-dist/doc/latex/multiobjective/">multiobjective</a></b><small> (<a href="https://ctan.org/pkg/multiobjective">CTAN</a>): -Symbols for multiobjective optimisation etc +Symbols for multiobjective optimisation etc. <a href="texmf-dist/doc/latex/multiobjective/multiobjective.pdf">multiobjective.pdf</a>. </small></li> -<li id="multirow"><b><a href="texmf-dist/doc/latex/multirow">multirow</a></b><small> +<li id="multirow"><b><a href="texmf-dist/doc/latex/multirow/">multirow</a></b><small> (<a href="https://ctan.org/pkg/multirow">CTAN</a>): -Create tabular cells spanning multiple rows +Create tabular cells spanning multiple rows. <a href="texmf-dist/doc/latex/multirow/multirow.pdf">multirow.pdf</a>. </small></li> -<li id="munich"><b><a href="texmf-dist/doc/latex/munich">munich</a></b><small> +<li id="munich"><b><a href="texmf-dist/doc/latex/munich/">munich</a></b><small> (<a href="https://ctan.org/pkg/munich">CTAN</a>): -An alternative authordate bibliography style +An alternative authordate bibliography style. <a href="texmf-dist/doc/latex/munich/documenation_munich_Bibtex_style.pdf">documenation_munich_Bibtex_style.pdf</a> <a href="texmf-dist/doc/latex/munich/example_munich_Bibtex_style.pdf">example_munich_Bibtex_style.pdf</a>. </small></li> -<li id="musical"><b><a href="texmf-dist/doc/latex/musical">musical</a></b><small> +<li id="musical"><b><a href="texmf-dist/doc/latex/musical/">musical</a></b><small> (<a href="https://ctan.org/pkg/musical">CTAN</a>): -Typeset (musical) theatre scripts +Typeset (musical) theatre scripts. <a href="texmf-dist/doc/latex/musical/musical.pdf">musical.pdf</a>. </small></li> -<li id="musicography"><b><a href="texmf-dist/doc/latex/musicography">musicography</a></b><small> +<li id="musicography"><b><a href="texmf-dist/doc/latex/musicography/">musicography</a></b><small> (<a href="https://ctan.org/pkg/musicography">CTAN</a>): -Accessing symbols for music writing with pdfLaTeX +Accessing symbols for music writing with pdfLaTeX. <a href="texmf-dist/doc/latex/musicography/musicography.pdf">musicography.pdf</a>. </small></li> -<li id="musikui"><b><a href="texmf-dist/doc/latex/musikui">musikui</a></b><small> +<li id="musikui"><b><a href="texmf-dist/doc/latex/musikui/">musikui</a></b><small> (<a href="https://ctan.org/pkg/musikui">CTAN</a>): -Easy creation of "arithmetical restoration" puzzles +Easy creation of "arithmetical restoration" puzzles. <a href="texmf-dist/doc/latex/musikui/kake.pdf">kake.pdf</a> <a href="texmf-dist/doc/latex/musikui/musikui.pdf">musikui.pdf</a> <a href="texmf-dist/doc/latex/musikui/wari.pdf">wari.pdf</a>. </small></li> -<li id="musixguit"><b><a href="texmf-dist/doc/latex/musixguit">musixguit</a></b><small> +<li id="musixguit"><b><a href="texmf-dist/doc/latex/musixguit/">musixguit</a></b><small> (<a href="https://ctan.org/pkg/musixguit">CTAN</a>): -Easy notation for guitar music, in MusixTeX +Easy notation for guitar music, in MusixTeX. <a href="texmf-dist/doc/latex/musixguit/musixguit_de.pdf">musixguit_de.pdf</a> (de). </small></li> -<li id="musixtex"><b><a href="texmf-dist/doc/generic/musixtex/musixcrd">musixtex</a></b><small> +<li id="musixtex"><b><a href="texmf-dist/doc/generic/musixtex/">musixtex</a></b><small> (<a href="https://ctan.org/pkg/musixtex">CTAN</a>): -Sophisticated music typesetting +Sophisticated music typesetting. <a href="texmf-dist/doc/generic/musixtex/musixcrd/doc.pdf">doc.pdf</a> <a href="texmf-dist/doc/generic/musixtex/musixdoc.pdf">musixdoc.pdf</a> <a href="texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.pdf">nonmoriar.pdf</a> @@ -15027,53 +14985,53 @@ Sophisticated music typesetting <a href="texmf-dist/doc/man/man1/musixtex.man1.pdf">musixtex.man1.pdf</a>. </small></li> -<li id="musixtex-fonts"><b><a href="texmf-dist/doc/fonts/musixtex-fonts">musixtex-fonts</a></b><small> +<li id="musixtex-fonts"><b><a href="texmf-dist/doc/fonts/musixtex-fonts/">musixtex-fonts</a></b><small> (<a href="https://ctan.org/pkg/musixtex-fonts">CTAN</a>): -Fonts used by MusixTeX +Fonts used by MusixTeX. <a href="texmf-dist/doc/fonts/musixtex-fonts/musixtex-fonts-install.pdf">musixtex-fonts-install.pdf</a>. </small></li> -<li id="musixtnt"><b><a href="texmf-dist/doc/generic/musixtnt">musixtnt</a></b><small> +<li id="musixtnt"><b><a href="texmf-dist/doc/generic/musixtnt/">musixtnt</a></b><small> (<a href="https://ctan.org/pkg/musixtnt">CTAN</a>): -A MusiXTeX extension library that enables transformations of the effect of notes commands +A MusiXTeX extension library that enables transformations of the effect of notes commands. <a href="texmf-dist/doc/generic/musixtnt/TransformNotes.pdf">TransformNotes.pdf</a> <a href="texmf-dist/doc/generic/musixtnt/msxlint.pdf">msxlint.pdf</a> <a href="texmf-dist/doc/man/man1/msxlint.man1.pdf">msxlint.man1.pdf</a>. </small></li> -<li id="musuos"><b><a href="texmf-dist/doc/latex/musuos">musuos</a></b><small> +<li id="musuos"><b><a href="texmf-dist/doc/latex/musuos/">musuos</a></b><small> (<a href="https://ctan.org/pkg/musuos">CTAN</a>): -Typeset papers for the department of music, Osnabruck +Typeset papers for the department of music, Osnabruck. <a href="texmf-dist/doc/latex/musuos/musuos.pdf">musuos.pdf</a>. </small></li> -<li id="mversion"><b><a href="texmf-dist/doc/latex/mversion">mversion</a></b><small> +<li id="mversion"><b><a href="texmf-dist/doc/latex/mversion/">mversion</a></b><small> (<a href="https://ctan.org/pkg/mversion">CTAN</a>): -Keeping track of document versions +Keeping track of document versions. <a href="texmf-dist/doc/latex/mversion/mVersion.pdf">mVersion.pdf</a>. </small></li> -<li id="mwcls"><b><a href="texmf-dist/doc/latex/mwcls">mwcls</a></b><small> +<li id="mwcls"><b><a href="texmf-dist/doc/latex/mwcls/">mwcls</a></b><small> (<a href="https://ctan.org/pkg/mwcls">CTAN</a>): -Polish-oriented document classes +Polish-oriented document classes. <a href="texmf-dist/doc/latex/mwcls/mwclsdoc.pdf">mwclsdoc.pdf</a> (pl). </small></li> -<li id="mwe"><b><a href="texmf-dist/doc/latex/mwe">mwe</a></b><small> +<li id="mwe"><b><a href="texmf-dist/doc/latex/mwe/">mwe</a></b><small> (<a href="https://ctan.org/pkg/mwe">CTAN</a>): -Packages and image files for MWEs +Packages and image files for MWEs. <a href="texmf-dist/doc/latex/mwe/mwe.pdf">mwe.pdf</a>. </small></li> -<li id="mxedruli"><b><a href="texmf-dist/doc/fonts/mxedruli">mxedruli</a></b><small> +<li id="mxedruli"><b><a href="texmf-dist/doc/fonts/mxedruli/">mxedruli</a></b><small> (<a href="https://ctan.org/pkg/mxedruli">CTAN</a>): -A pair of fonts for different Georgian alphabets +A pair of fonts for different Georgian alphabets. <a href="texmf-dist/doc/fonts/mxedruli/mxeddoc.pdf">mxeddoc.pdf</a>. </small></li> -<li id="mycv"><b><a href="texmf-dist/doc/latex/mycv/Examples">mycv</a></b><small> +<li id="mycv"><b><a href="texmf-dist/doc/latex/mycv/">mycv</a></b><small> (<a href="https://ctan.org/pkg/mycv">CTAN</a>): -A list-driven CV class, allowing TikZ decorations +A list-driven CV class, allowing TikZ decorations. <a href="texmf-dist/doc/latex/mycv/Examples/mycv-example-dpl.pdf">mycv-example-dpl.pdf</a> <a href="texmf-dist/doc/latex/mycv/Examples/mycv-example-dpl2.pdf">mycv-example-dpl2.pdf</a> <a href="texmf-dist/doc/latex/mycv/Examples/mycv-example-spl.pdf">mycv-example-spl.pdf</a> @@ -15081,15 +15039,15 @@ A list-driven CV class, allowing TikZ decorations <a href="texmf-dist/doc/latex/mycv/mycv.pdf">mycv.pdf</a>. </small></li> -<li id="mylatexformat"><b><a href="texmf-dist/doc/latex/mylatexformat">mylatexformat</a></b><small> +<li id="mylatexformat"><b><a href="texmf-dist/doc/latex/mylatexformat/">mylatexformat</a></b><small> (<a href="https://ctan.org/pkg/mylatexformat">CTAN</a>): -Build a format based on the preamble of a LaTeX file +Build a format based on the preamble of a LaTeX file. <a href="texmf-dist/doc/latex/mylatexformat/mylatexformat.pdf">mylatexformat.pdf</a>. </small></li> -<li id="mynsfc"><b><a href="texmf-dist/doc/xelatex/mynsfc">mynsfc</a></b><small> +<li id="mynsfc"><b><a href="texmf-dist/doc/xelatex/mynsfc/">mynsfc</a></b><small> (<a href="https://ctan.org/pkg/mynsfc">CTAN</a>): -XeLaTeX template for writing the main body of NSFC proposals +XeLaTeX template for writing the main body of NSFC proposals. <a href="texmf-dist/doc/xelatex/mynsfc/my-nsfc-proposal.pdf">my-nsfc-proposal.pdf</a> <a href="texmf-dist/doc/xelatex/mynsfc/mynsfc.pdf">mynsfc.pdf</a>. </small></li> @@ -15098,42 +15056,42 @@ XeLaTeX template for writing the main body of NSFC proposals <h2 id="letter-N">N</h2> -<ol start="1982"> +<ol start="1983"> -<li id="na-box"><b><a href="texmf-dist/doc/xelatex/na-box">na-box</a></b><small> +<li id="na-box"><b><a href="texmf-dist/doc/xelatex/na-box/">na-box</a></b><small> (<a href="https://ctan.org/pkg/na-box">CTAN</a>): -Arabic-aware version of pas-cours package +Arabic-aware version of pas-cours package. <a href="texmf-dist/doc/xelatex/na-box/na-box_doc-back.pdf">na-box_doc-back.pdf</a> <a href="texmf-dist/doc/xelatex/na-box/na-box_doc.pdf">na-box_doc.pdf</a> (ar). </small></li> -<li id="na-position"><b><a href="texmf-dist/doc/xelatex/na-position">na-position</a></b><small> +<li id="na-position"><b><a href="texmf-dist/doc/xelatex/na-position/">na-position</a></b><small> (<a href="https://ctan.org/pkg/na-position">CTAN</a>): -Tables of relative positions of curves and asymptotes or tangents in Arabic documents +Tables of relative positions of curves and asymptotes or tangents in Arabic documents. <a href="texmf-dist/doc/xelatex/na-position/na-position.pdf">na-position.pdf</a> (ar). </small></li> -<li id="nag"><b><a href="texmf-dist/doc/latex/nag">nag</a></b><small> +<li id="nag"><b><a href="texmf-dist/doc/latex/nag/">nag</a></b><small> (<a href="https://ctan.org/pkg/nag">CTAN</a>): -Detecting and warning about obsolete LaTeX commands +Detecting and warning about obsolete LaTeX commands. <a href="texmf-dist/doc/latex/nag/nag.pdf">nag.pdf</a>. </small></li> -<li id="nameauth"><b><a href="texmf-dist/doc/latex/nameauth">nameauth</a></b><small> +<li id="nameauth"><b><a href="texmf-dist/doc/latex/nameauth/">nameauth</a></b><small> (<a href="https://ctan.org/pkg/nameauth">CTAN</a>): -Name authority mechanism for consistency in body text and index +Name authority mechanism for consistency in body text and index. <a href="texmf-dist/doc/latex/nameauth/nameauth.pdf">nameauth.pdf</a>. </small></li> -<li id="namespc"><b><a href="texmf-dist/doc/latex/namespc">namespc</a></b><small> +<li id="namespc"><b><a href="texmf-dist/doc/latex/namespc/">namespc</a></b><small> (<a href="https://ctan.org/pkg/namespc">CTAN</a>): -Rudimentary C++-like namespaces in LaTeX +Rudimentary C++-like namespaces in LaTeX. <a href="texmf-dist/doc/latex/namespc/namespc.pdf">namespc.pdf</a>. </small></li> -<li id="nanicolle"><b><a href="texmf-dist/doc/xelatex/nanicolle">nanicolle</a></b><small> +<li id="nanicolle"><b><a href="texmf-dist/doc/xelatex/nanicolle/">nanicolle</a></b><small> (<a href="https://ctan.org/pkg/nanicolle">CTAN</a>): -Herbarium specimen labels in Chinese +Herbarium specimen labels in Chinese. <a href="texmf-dist/doc/xelatex/nanicolle/ChinaMainland.pdf">ChinaMainland.pdf</a> <a href="texmf-dist/doc/xelatex/nanicolle/Dongguan.pdf">Dongguan.pdf</a> <a href="texmf-dist/doc/xelatex/nanicolle/nanicolle-example.pdf">nanicolle-example.pdf</a> @@ -15141,54 +15099,54 @@ Herbarium specimen labels in Chinese <a href="texmf-dist/doc/xelatex/nanicolle/point.pdf">point.pdf</a>. </small></li> -<li id="nanumtype1"><b><a href="texmf-dist/doc/fonts/nanumtype1">nanumtype1</a></b><small> +<li id="nanumtype1"><b><a href="texmf-dist/doc/fonts/nanumtype1/">nanumtype1</a></b><small> (<a href="https://ctan.org/pkg/nanumtype1">CTAN</a>): -Type1 subfonts of Nanum Korean fonts +Type1 subfonts of Nanum Korean fonts. <a href="texmf-dist/doc/fonts/nanumtype1/nanum-sampler.pdf">nanum-sampler.pdf</a>. </small></li> -<li id="natbib"><b><a href="texmf-dist/doc/latex/natbib">natbib</a></b><small> +<li id="natbib"><b><a href="texmf-dist/doc/latex/natbib/">natbib</a></b><small> (<a href="https://ctan.org/pkg/natbib">CTAN</a>): -Flexible bibliography support +Flexible bibliography support. <a href="texmf-dist/doc/latex/natbib/natbib.pdf">natbib.pdf</a> <a href="texmf-dist/doc/latex/natbib/natnotes.pdf">natnotes.pdf</a>. </small></li> -<li id="natded"><b><a href="texmf-dist/doc/latex/natded">natded</a></b><small> +<li id="natded"><b><a href="texmf-dist/doc/latex/natded/">natded</a></b><small> (<a href="https://ctan.org/pkg/natded">CTAN</a>): -Typeset natural deduction proofs +Typeset natural deduction proofs. <a href="texmf-dist/doc/latex/natded/extended_doc.pdf">extended_doc.pdf</a> <a href="texmf-dist/doc/latex/natded/natded.pdf">natded.pdf</a>. </small></li> -<li id="nath"><b><a href="texmf-dist/doc/latex/nath">nath</a></b><small> +<li id="nath"><b><a href="texmf-dist/doc/latex/nath/">nath</a></b><small> (<a href="https://ctan.org/pkg/nath">CTAN</a>): -Natural mathematics notation +Natural mathematics notation. <a href="texmf-dist/doc/latex/nath/nathguide.pdf">nathguide.pdf</a>. </small></li> -<li id="navigator"><b><a href="texmf-dist/doc/generic/navigator">navigator</a></b><small> +<li id="navigator"><b><a href="texmf-dist/doc/generic/navigator/">navigator</a></b><small> (<a href="https://ctan.org/pkg/navigator">CTAN</a>): -PDF features across formats and engines +PDF features across formats and engines. <a href="texmf-dist/doc/generic/navigator/navigator-doc.pdf">navigator-doc.pdf</a>. </small></li> -<li id="navydocs"><b><a href="texmf-dist/doc/latex/navydocs">navydocs</a></b><small> +<li id="navydocs"><b><a href="texmf-dist/doc/latex/navydocs/">navydocs</a></b><small> (<a href="https://ctan.org/pkg/navydocs">CTAN</a>): -Support for Technical Reports by US Navy Organizations +Support for Technical Reports by US Navy Organizations. <a href="texmf-dist/doc/latex/navydocs/navydocs.pdf">navydocs.pdf</a>. </small></li> -<li id="ncclatex"><b><a href="texmf-dist/doc/latex/ncclatex">ncclatex</a></b><small> +<li id="ncclatex"><b><a href="texmf-dist/doc/latex/ncclatex/">ncclatex</a></b><small> (<a href="https://ctan.org/pkg/ncclatex">CTAN</a>): -An extended general-purpose class +An extended general-purpose class. <a href="texmf-dist/doc/latex/ncclatex/ncclatex.pdf">ncclatex.pdf</a> <a href="texmf-dist/doc/latex/ncclatex/nccnews.pdf">nccnews.pdf</a> (ru). </small></li> -<li id="ncctools"><b><a href="texmf-dist/doc/latex/ncctools">ncctools</a></b><small> +<li id="ncctools"><b><a href="texmf-dist/doc/latex/ncctools/">ncctools</a></b><small> (<a href="https://ctan.org/pkg/ncctools">CTAN</a>): -A collection of general packages for LaTeX +A collection of general packages for LaTeX. <a href="texmf-dist/doc/latex/ncctools/afterpackage.pdf">afterpackage.pdf</a> <a href="texmf-dist/doc/latex/ncctools/dcounter.pdf">dcounter.pdf</a> <a href="texmf-dist/doc/latex/ncctools/desclist.pdf">desclist.pdf</a> @@ -15217,65 +15175,65 @@ A collection of general packages for LaTeX <a href="texmf-dist/doc/latex/ncctools/watermark.pdf">watermark.pdf</a>. </small></li> -<li id="nddiss"><b><a href="texmf-dist/doc/latex/nddiss">nddiss</a></b><small> +<li id="nddiss"><b><a href="texmf-dist/doc/latex/nddiss/">nddiss</a></b><small> (<a href="https://ctan.org/pkg/nddiss">CTAN</a>): -Notre Dame Dissertation format class +Notre Dame Dissertation format class. <a href="texmf-dist/doc/latex/nddiss/nddiss2e.pdf">nddiss2e.pdf</a>. </small></li> -<li id="ndsu-thesis"><b><a href="texmf-dist/doc/latex/ndsu-thesis">ndsu-thesis</a></b><small> +<li id="ndsu-thesis"><b><a href="texmf-dist/doc/latex/ndsu-thesis/">ndsu-thesis</a></b><small> (<a href="https://ctan.org/pkg/ndsu-thesis">CTAN</a>): -North Dakota State University disquisition class +North Dakota State University disquisition class. <a href="texmf-dist/doc/latex/ndsu-thesis/ndsu-thesis.pdf">ndsu-thesis.pdf</a>. </small></li> -<li id="needspace"><b><a href="texmf-dist/doc/latex/needspace">needspace</a></b><small> +<li id="needspace"><b><a href="texmf-dist/doc/latex/needspace/">needspace</a></b><small> (<a href="https://ctan.org/pkg/needspace">CTAN</a>): -Insert pagebreak if not enough space +Insert pagebreak if not enough space. <a href="texmf-dist/doc/latex/needspace/needspace.pdf">needspace.pdf</a>. </small></li> -<li id="neuralnetwork"><b><a href="texmf-dist/doc/latex/neuralnetwork/examples">neuralnetwork</a></b><small> +<li id="neuralnetwork"><b><a href="texmf-dist/doc/latex/neuralnetwork/">neuralnetwork</a></b><small> (<a href="https://ctan.org/pkg/neuralnetwork">CTAN</a>): -Graph-drawing for neural networks +Graph-drawing for neural networks. <a href="texmf-dist/doc/latex/neuralnetwork/examples/neural-networks-ebook.pdf">neural-networks-ebook.pdf</a> <a href="texmf-dist/doc/latex/neuralnetwork/examples/neuralnetwork.pdf">neuralnetwork.pdf</a> <a href="texmf-dist/doc/latex/neuralnetwork/examples/xor.pdf">xor.pdf</a>. </small></li> -<li id="nevelok"><b><a href="texmf-dist/doc/latex/nevelok">nevelok</a></b><small> +<li id="nevelok"><b><a href="texmf-dist/doc/latex/nevelok/">nevelok</a></b><small> (<a href="https://ctan.org/pkg/nevelok">CTAN</a>): -LaTeX package for automatic definite articles for Hungarian +LaTeX package for automatic definite articles for Hungarian. <a href="texmf-dist/doc/latex/nevelok/nevelok.pdf">nevelok.pdf</a>. </small></li> -<li id="newcommand"><b><a href="texmf-dist/doc/latex/newcommand">newcommand</a></b><small> +<li id="newcommand"><b><a href="texmf-dist/doc/latex/newcommand/">newcommand</a></b><small> (<a href="https://ctan.org/pkg/newcommand">CTAN</a>): -Generate new LaTeX command definitions +Generate new LaTeX command definitions. <a href="texmf-dist/doc/latex/newcommand/newcommand.pdf">newcommand.pdf</a>. </small></li> -<li id="newcomputermodern"><b><a href="texmf-dist/doc/fonts/newcomputermodern">newcomputermodern</a></b><small> +<li id="newcomputermodern"><b><a href="texmf-dist/doc/fonts/newcomputermodern/">newcomputermodern</a></b><small> (<a href="https://ctan.org/pkg/newcomputermodern">CTAN</a>): -Computer Modern fonts including matching non-latin alphabets +Computer Modern fonts including matching non-latin alphabets. <a href="texmf-dist/doc/fonts/newcomputermodern/newcomputermodern-sample.pdf">newcomputermodern-sample.pdf</a>. </small></li> -<li id="newfile"><b><a href="texmf-dist/doc/latex/newfile">newfile</a></b><small> +<li id="newfile"><b><a href="texmf-dist/doc/latex/newfile/">newfile</a></b><small> (<a href="https://ctan.org/pkg/newfile">CTAN</a>): -User level management of LaTeX input and output +User level management of LaTeX input and output. <a href="texmf-dist/doc/latex/newfile/newfile.pdf">newfile.pdf</a>. </small></li> -<li id="newfloat"><b><a href="texmf-dist/doc/latex/newfloat">newfloat</a></b><small> +<li id="newfloat"><b><a href="texmf-dist/doc/latex/newfloat/">newfloat</a></b><small> (<a href="https://ctan.org/pkg/newfloat">CTAN</a>): -Define new floating environments +Define new floating environments. <a href="texmf-dist/doc/latex/newfloat/newfloat.pdf">newfloat.pdf</a>. </small></li> -<li id="newlfm"><b><a href="texmf-dist/doc/latex/newlfm">newlfm</a></b><small> +<li id="newlfm"><b><a href="texmf-dist/doc/latex/newlfm/">newlfm</a></b><small> (<a href="https://ctan.org/pkg/newlfm">CTAN</a>): -Write letters, facsimiles, and memos +Write letters, facsimiles, and memos. <a href="texmf-dist/doc/latex/newlfm/draft.pdf">draft.pdf</a> <a href="texmf-dist/doc/latex/newlfm/lvb.pdf">lvb.pdf</a> <a href="texmf-dist/doc/latex/newlfm/manual.pdf">manual.pdf</a> @@ -15285,32 +15243,32 @@ Write letters, facsimiles, and memos <a href="texmf-dist/doc/latex/newlfm/wine.pdf">wine.pdf</a>. </small></li> -<li id="newpx"><b><a href="texmf-dist/doc/fonts/newpx">newpx</a></b><small> +<li id="newpx"><b><a href="texmf-dist/doc/fonts/newpx/">newpx</a></b><small> (<a href="https://ctan.org/pkg/newpx">CTAN</a>): -Alternative uses of the PX fonts, with improved metrics +Alternative uses of the PX fonts, with improved metrics. <a href="texmf-dist/doc/fonts/newpx/newpxdoc.pdf">newpxdoc.pdf</a> <a href="texmf-dist/doc/fonts/newpx/newpxeg-crop.pdf">newpxeg-crop.pdf</a> <a href="texmf-dist/doc/fonts/newpx/pxfontseg-crop.pdf">pxfontseg-crop.pdf</a>. </small></li> -<li id="newsletr"><b><a href="texmf-dist/doc/plain/newsletr">newsletr</a></b><small> +<li id="newsletr"><b><a href="texmf-dist/doc/plain/newsletr/">newsletr</a></b><small> (<a href="https://ctan.org/pkg/newsletr">CTAN</a>): -Macros for making newsletters with Plain TeX +Macros for making newsletters with Plain TeX. <a href="texmf-dist/doc/plain/newsletr/newssamp.pdf">newssamp.pdf</a> <a href="texmf-dist/doc/plain/newsletr/sample.pdf">sample.pdf</a>. </small></li> -<li id="newspaper"><b><a href="texmf-dist/doc/latex/newspaper">newspaper</a></b><small> +<li id="newspaper"><b><a href="texmf-dist/doc/latex/newspaper/">newspaper</a></b><small> (<a href="https://ctan.org/pkg/newspaper">CTAN</a>): -Typeset newsletters to resemble newspapers +Typeset newsletters to resemble newspapers. <a href="texmf-dist/doc/latex/newspaper/Figure1.pdf">Figure1.pdf</a> <a href="texmf-dist/doc/latex/newspaper/Figure2.pdf">Figure2.pdf</a> <a href="texmf-dist/doc/latex/newspaper/newspaper.pdf">newspaper.pdf</a>. </small></li> -<li id="newtx"><b><a href="texmf-dist/doc/fonts/newtx">newtx</a></b><small> +<li id="newtx"><b><a href="texmf-dist/doc/fonts/newtx/">newtx</a></b><small> (<a href="https://ctan.org/pkg/newtx">CTAN</a>): -Alternative uses of the TX fonts, with improved metrics +Alternative uses of the TX fonts, with improved metrics. <a href="texmf-dist/doc/fonts/newtx/implementation.pdf">implementation.pdf</a> <a href="texmf-dist/doc/fonts/newtx/mathnotes.pdf">mathnotes.pdf</a> <a href="texmf-dist/doc/fonts/newtx/newtxdoc.pdf">newtxdoc.pdf</a> @@ -15322,64 +15280,64 @@ Alternative uses of the TX fonts, with improved metrics <a href="texmf-dist/doc/fonts/newtx/sample-tx-crop.pdf">sample-tx-crop.pdf</a>. </small></li> -<li id="newtxsf"><b><a href="texmf-dist/doc/fonts/newtxsf">newtxsf</a></b><small> +<li id="newtxsf"><b><a href="texmf-dist/doc/fonts/newtxsf/">newtxsf</a></b><small> (<a href="https://ctan.org/pkg/newtxsf">CTAN</a>): -Sans-math fonts for use with newtx +Sans-math fonts for use with newtx. <a href="texmf-dist/doc/fonts/newtxsf/newtxsf-doc.pdf">newtxsf-doc.pdf</a>. </small></li> -<li id="newtxtt"><b><a href="texmf-dist/doc/fonts/newtxtt">newtxtt</a></b><small> +<li id="newtxtt"><b><a href="texmf-dist/doc/fonts/newtxtt/">newtxtt</a></b><small> (<a href="https://ctan.org/pkg/newtxtt">CTAN</a>): -Enhancement of typewriter fonts from newtx +Enhancement of typewriter fonts from newtx. <a href="texmf-dist/doc/fonts/newtxtt/newtxtt-doc.pdf">newtxtt-doc.pdf</a>. </small></li> -<li id="newunicodechar"><b><a href="texmf-dist/doc/latex/newunicodechar">newunicodechar</a></b><small> +<li id="newunicodechar"><b><a href="texmf-dist/doc/latex/newunicodechar/">newunicodechar</a></b><small> (<a href="https://ctan.org/pkg/newunicodechar">CTAN</a>): -Definitions of the meaning of Unicode characters +Definitions of the meaning of Unicode characters. <a href="texmf-dist/doc/latex/newunicodechar/newunicodechar.pdf">newunicodechar.pdf</a>. </small></li> -<li id="newvbtm"><b><a href="texmf-dist/doc/latex/newvbtm">newvbtm</a></b><small> +<li id="newvbtm"><b><a href="texmf-dist/doc/latex/newvbtm/">newvbtm</a></b><small> (<a href="https://ctan.org/pkg/newvbtm">CTAN</a>): -Define your own verbatim-like environment +Define your own verbatim-like environment. <a href="texmf-dist/doc/latex/newvbtm/newvbtm-man.pdf">newvbtm-man.pdf</a>. </small></li> -<li id="newverbs"><b><a href="texmf-dist/doc/latex/newverbs">newverbs</a></b><small> +<li id="newverbs"><b><a href="texmf-dist/doc/latex/newverbs/">newverbs</a></b><small> (<a href="https://ctan.org/pkg/newverbs">CTAN</a>): -Define new versions of \verb, including short verb versions +Define new versions of \verb, including short verb versions. <a href="texmf-dist/doc/latex/newverbs/newverbs.pdf">newverbs.pdf</a>. </small></li> -<li id="nfssext-cfr"><b><a href="texmf-dist/doc/latex/nfssext-cfr">nfssext-cfr</a></b><small> +<li id="nfssext-cfr"><b><a href="texmf-dist/doc/latex/nfssext-cfr/">nfssext-cfr</a></b><small> (<a href="https://ctan.org/pkg/nfssext-cfr">CTAN</a>): -Extensions to the LaTeX NFSS +Extensions to the LaTeX NFSS. <a href="texmf-dist/doc/latex/nfssext-cfr/nfssext-cfr.pdf">nfssext-cfr.pdf</a>. </small></li> -<li id="nicefilelist"><b><a href="texmf-dist/doc/latex/nicefilelist">nicefilelist</a></b><small> +<li id="nicefilelist"><b><a href="texmf-dist/doc/latex/nicefilelist/">nicefilelist</a></b><small> (<a href="https://ctan.org/pkg/nicefilelist">CTAN</a>): -Provide \listfiles alignment +Provide \listfiles alignment. <a href="texmf-dist/doc/latex/nicefilelist/nicefilelist.pdf">nicefilelist.pdf</a>. </small></li> -<li id="niceframe"><b><a href="texmf-dist/doc/latex/niceframe">niceframe</a></b><small> +<li id="niceframe"><b><a href="texmf-dist/doc/latex/niceframe/">niceframe</a></b><small> (<a href="https://ctan.org/pkg/niceframe">CTAN</a>): -Support for fancy frames +Support for fancy frames. <a href="texmf-dist/doc/latex/niceframe/niceframe.pdf">niceframe.pdf</a>. </small></li> -<li id="nicematrix"><b><a href="texmf-dist/doc/latex/nicematrix">nicematrix</a></b><small> +<li id="nicematrix"><b><a href="texmf-dist/doc/latex/nicematrix/">nicematrix</a></b><small> (<a href="https://ctan.org/pkg/nicematrix">CTAN</a>): -Improve the typesetting of mathematical matrices with PGF +Improve the typesetting of mathematical matrices with PGF. <a href="texmf-dist/doc/latex/nicematrix/nicematrix-french.pdf">nicematrix-french.pdf</a> (fr) <a href="texmf-dist/doc/latex/nicematrix/nicematrix.pdf">nicematrix.pdf</a>. </small></li> -<li id="nicetext"><b><a href="texmf-dist/doc/latex/nicetext">nicetext</a></b><small> +<li id="nicetext"><b><a href="texmf-dist/doc/latex/nicetext/">nicetext</a></b><small> (<a href="https://ctan.org/pkg/nicetext">CTAN</a>): -Minimal markup for simple text (Wikipedia style) and documentation +Minimal markup for simple text (Wikipedia style) and documentation. <a href="texmf-dist/doc/latex/nicetext/README.pdf">README.pdf</a> <a href="texmf-dist/doc/latex/nicetext/demo/arseneau.pdf">arseneau.pdf</a> <a href="texmf-dist/doc/latex/nicetext/demo/substr.pdf">substr.pdf</a> @@ -15390,81 +15348,81 @@ Minimal markup for simple text (Wikipedia style) and documentation <a href="texmf-dist/doc/latex/nicetext/wikicheat.pdf">wikicheat.pdf</a>. </small></li> -<li id="nidanfloat"><b><a href="texmf-dist/doc/latex/nidanfloat">nidanfloat</a></b><small> +<li id="nidanfloat"><b><a href="texmf-dist/doc/latex/nidanfloat/">nidanfloat</a></b><small> (<a href="https://ctan.org/pkg/nidanfloat">CTAN</a>): -Bottom placement option for double float in two column mode (nidan-kumi) +Bottom placement option for double float in two column mode (nidan-kumi). <a href="texmf-dist/doc/latex/nidanfloat/nidanfloat-en.pdf">nidanfloat-en.pdf</a> <a href="texmf-dist/doc/latex/nidanfloat/nidanfloat.pdf">nidanfloat.pdf</a> (ja). </small></li> -<li id="nih"><b><a href="texmf-dist/doc/latex/nih">nih</a></b><small> +<li id="nih"><b><a href="texmf-dist/doc/latex/nih/">nih</a></b><small> (<a href="https://ctan.org/pkg/nih">CTAN</a>): -A class for NIH grant applications +A class for NIH grant applications. <a href="texmf-dist/doc/latex/nih/example-biosketch.pdf">example-biosketch.pdf</a> <a href="texmf-dist/doc/latex/nih/example-nih-cls.pdf">example-nih-cls.pdf</a>. </small></li> -<li id="nihbiosketch"><b><a href="texmf-dist/doc/latex/nihbiosketch">nihbiosketch</a></b><small> +<li id="nihbiosketch"><b><a href="texmf-dist/doc/latex/nihbiosketch/">nihbiosketch</a></b><small> (<a href="https://ctan.org/pkg/nihbiosketch">CTAN</a>): -A class for NIH biosketches based on the 2015 updated format +A class for NIH biosketches based on the 2015 updated format. <a href="texmf-dist/doc/latex/nihbiosketch/example-nihbiosketch.pdf">example-nihbiosketch.pdf</a>. </small></li> -<li id="nimbus15"><b><a href="texmf-dist/doc/fonts/nimbus15">nimbus15</a></b><small> +<li id="nimbus15"><b><a href="texmf-dist/doc/fonts/nimbus15/">nimbus15</a></b><small> (<a href="https://ctan.org/pkg/nimbus15">CTAN</a>): -Support files for Nimbus 2015 Core fonts +Support files for Nimbus 2015 Core fonts. <a href="texmf-dist/doc/fonts/nimbus15/nimbus15-doc.pdf">nimbus15-doc.pdf</a> <a href="texmf-dist/doc/fonts/nimbus15/ot2trans.pdf">ot2trans.pdf</a>. </small></li> -<li id="njurepo"><b><a href="texmf-dist/doc/latex/njurepo">njurepo</a></b><small> +<li id="njurepo"><b><a href="texmf-dist/doc/latex/njurepo/">njurepo</a></b><small> (<a href="https://ctan.org/pkg/njurepo">CTAN</a>): -Reports for Nanjing University +Reports for Nanjing University. <a href="texmf-dist/doc/latex/njurepo/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/njurepo/njurepo.pdf">njurepo.pdf</a>. </small></li> -<li id="nkarta"><b><a href="texmf-dist/doc/fonts/nkarta">nkarta</a></b><small> +<li id="nkarta"><b><a href="texmf-dist/doc/fonts/nkarta/">nkarta</a></b><small> (<a href="https://ctan.org/pkg/nkarta">CTAN</a>): -A "new" version of the karta cartographic fonts +A "new" version of the karta cartographic fonts. <a href="texmf-dist/doc/fonts/nkarta/figtable.pdf">figtable.pdf</a> <a href="texmf-dist/doc/fonts/nkarta/fonttable.pdf">fonttable.pdf</a>. </small></li> -<li id="nmbib"><b><a href="texmf-dist/doc/latex/nmbib">nmbib</a></b><small> +<li id="nmbib"><b><a href="texmf-dist/doc/latex/nmbib/">nmbib</a></b><small> (<a href="https://ctan.org/pkg/nmbib">CTAN</a>): -Multiple versions of a bibliography, with different sort orders +Multiple versions of a bibliography, with different sort orders. <a href="texmf-dist/doc/latex/nmbib/nmbib.pdf">nmbib.pdf</a> <a href="texmf-dist/doc/latex/nmbib/nmsample.pdf">nmsample.pdf</a>. </small></li> -<li id="nodetree"><b><a href="texmf-dist/doc/luatex/nodetree">nodetree</a></b><small> +<li id="nodetree"><b><a href="texmf-dist/doc/luatex/nodetree/">nodetree</a></b><small> (<a href="https://ctan.org/pkg/nodetree">CTAN</a>): -Visualize node lists in a tree view +Visualize node lists in a tree view. <a href="texmf-dist/doc/luatex/nodetree/nodetree.pdf">nodetree.pdf</a>. </small></li> -<li id="noindentafter"><b><a href="texmf-dist/doc/latex/noindentafter">noindentafter</a></b><small> +<li id="noindentafter"><b><a href="texmf-dist/doc/latex/noindentafter/">noindentafter</a></b><small> (<a href="https://ctan.org/pkg/noindentafter">CTAN</a>): -Tool to prevent paragraph indentation after environments/macros +Tool to prevent paragraph indentation after environments/macros. <a href="texmf-dist/doc/latex/noindentafter/noindentafter.pdf">noindentafter.pdf</a>. </small></li> -<li id="noitcrul"><b><a href="texmf-dist/doc/latex/noitcrul">noitcrul</a></b><small> +<li id="noitcrul"><b><a href="texmf-dist/doc/latex/noitcrul/">noitcrul</a></b><small> (<a href="https://ctan.org/pkg/noitcrul">CTAN</a>): -Improved underlines in mathematics +Improved underlines in mathematics. <a href="texmf-dist/doc/latex/noitcrul/noitcrul.pdf">noitcrul.pdf</a> (de). </small></li> -<li id="nolbreaks"><b><a href="texmf-dist/doc/latex/nolbreaks">nolbreaks</a></b><small> +<li id="nolbreaks"><b><a href="texmf-dist/doc/latex/nolbreaks/">nolbreaks</a></b><small> (<a href="https://ctan.org/pkg/nolbreaks">CTAN</a>): -No line breaks in text +No line breaks in text. <a href="texmf-dist/doc/latex/nolbreaks/nolbreaks.pdf">nolbreaks.pdf</a>. </small></li> -<li id="nomencl"><b><a href="texmf-dist/doc/latex/nomencl">nomencl</a></b><small> +<li id="nomencl"><b><a href="texmf-dist/doc/latex/nomencl/">nomencl</a></b><small> (<a href="https://ctan.org/pkg/nomencl">CTAN</a>): -Produce lists of symbols as in nomenclature +Produce lists of symbols as in nomenclature. <a href="texmf-dist/doc/latex/nomencl/nomencl.pdf">nomencl.pdf</a> <a href="texmf-dist/doc/latex/nomencl/sample01.pdf">sample01.pdf</a> <a href="texmf-dist/doc/latex/nomencl/sample02.pdf">sample02.pdf</a> @@ -15473,87 +15431,87 @@ Produce lists of symbols as in nomenclature <a href="texmf-dist/doc/latex/nomencl/sample05.pdf">sample05.pdf</a>. </small></li> -<li id="nomentbl"><b><a href="texmf-dist/doc/latex/nomentbl">nomentbl</a></b><small> +<li id="nomentbl"><b><a href="texmf-dist/doc/latex/nomentbl/">nomentbl</a></b><small> (<a href="https://ctan.org/pkg/nomentbl">CTAN</a>): -Nomenclature typeset in a longtable +Nomenclature typeset in a longtable. <a href="texmf-dist/doc/latex/nomentbl/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/nomentbl/nomentbl.pdf">nomentbl.pdf</a>. </small></li> -<li id="nonfloat"><b><a href="texmf-dist/doc/latex/nonfloat">nonfloat</a></b><small> +<li id="nonfloat"><b><a href="texmf-dist/doc/latex/nonfloat/">nonfloat</a></b><small> (<a href="https://ctan.org/pkg/nonfloat">CTAN</a>): -Non-floating table and figure captions +Non-floating table and figure captions. <a href="texmf-dist/doc/latex/nonfloat/nonfloat-en.pdf">nonfloat-en.pdf</a> <a href="texmf-dist/doc/latex/nonfloat/nonfloat.pdf">nonfloat.pdf</a> (de). </small></li> -<li id="nonumonpart"><b><a href="texmf-dist/doc/latex/nonumonpart">nonumonpart</a></b><small> +<li id="nonumonpart"><b><a href="texmf-dist/doc/latex/nonumonpart/">nonumonpart</a></b><small> (<a href="https://ctan.org/pkg/nonumonpart">CTAN</a>): -Prevent page numbers on part pages +Prevent page numbers on part pages. <a href="texmf-dist/doc/latex/nonumonpart/nonumonpart-en.pdf">nonumonpart-en.pdf</a> <a href="texmf-dist/doc/latex/nonumonpart/nonumonpart-fr.pdf">nonumonpart-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/nonumonpart/nonumonpart.pdf">nonumonpart.pdf</a>. </small></li> -<li id="nopageno"><b><a href="texmf-dist/doc/latex/nopageno">nopageno</a></b><small> +<li id="nopageno"><b><a href="texmf-dist/doc/latex/nopageno/">nopageno</a></b><small> (<a href="https://ctan.org/pkg/nopageno">CTAN</a>): -No page numbers in LaTeX documents +No page numbers in LaTeX documents. <a href="texmf-dist/doc/latex/nopageno/nopageno.pdf">nopageno.pdf</a>. </small></li> -<li id="normalcolor"><b><a href="texmf-dist/doc/latex/normalcolor">normalcolor</a></b><small> +<li id="normalcolor"><b><a href="texmf-dist/doc/latex/normalcolor/">normalcolor</a></b><small> (<a href="https://ctan.org/pkg/normalcolor">CTAN</a>): -Changing \normalcolor +Changing \normalcolor. <a href="texmf-dist/doc/latex/normalcolor/normalcolor.pdf">normalcolor.pdf</a>. </small></li> -<li id="nostarch"><b><a href="texmf-dist/doc/latex/nostarch">nostarch</a></b><small> +<li id="nostarch"><b><a href="texmf-dist/doc/latex/nostarch/">nostarch</a></b><small> (<a href="https://ctan.org/pkg/nostarch">CTAN</a>): -LaTeX class for No Starch Press +LaTeX class for No Starch Press. <a href="texmf-dist/doc/latex/nostarch/nostarch.pdf">nostarch.pdf</a> <a href="texmf-dist/doc/latex/nostarch/nssample.pdf">nssample.pdf</a>. </small></li> -<li id="notes"><b><a href="texmf-dist/doc/latex/notes">notes</a></b><small> +<li id="notes"><b><a href="texmf-dist/doc/latex/notes/">notes</a></b><small> (<a href="https://ctan.org/pkg/notes">CTAN</a>): -Mark sections of a document +Mark sections of a document. <a href="texmf-dist/doc/latex/notes/notes.pdf">notes.pdf</a>. </small></li> -<li id="notes2bib"><b><a href="texmf-dist/doc/latex/notes2bib">notes2bib</a></b><small> +<li id="notes2bib"><b><a href="texmf-dist/doc/latex/notes2bib/">notes2bib</a></b><small> (<a href="https://ctan.org/pkg/notes2bib">CTAN</a>): -Integrating notes into the bibliography +Integrating notes into the bibliography. <a href="texmf-dist/doc/latex/notes2bib/notes2bib.pdf">notes2bib.pdf</a>. </small></li> -<li id="notespages"><b><a href="texmf-dist/doc/latex/notespages">notespages</a></b><small> +<li id="notespages"><b><a href="texmf-dist/doc/latex/notespages/">notespages</a></b><small> (<a href="https://ctan.org/pkg/notespages">CTAN</a>): -Filling documents with notes pages and notes areas +Filling documents with notes pages and notes areas. <a href="texmf-dist/doc/latex/notespages/notespages.pdf">notespages.pdf</a> <a href="texmf-dist/doc/latex/notespages/np-test.pdf">np-test.pdf</a>. </small></li> -<li id="notestex"><b><a href="texmf-dist/doc/latex/notestex">notestex</a></b><small> +<li id="notestex"><b><a href="texmf-dist/doc/latex/notestex/">notestex</a></b><small> (<a href="https://ctan.org/pkg/notestex">CTAN</a>): -An all-in-one LaTeX notes package for students +An all-in-one LaTeX notes package for students. <a href="texmf-dist/doc/latex/notestex/NotesTeX.pdf">NotesTeX.pdf</a>. </small></li> -<li id="noto"><b><a href="texmf-dist/doc/fonts/noto">noto</a></b><small> +<li id="noto"><b><a href="texmf-dist/doc/fonts/noto/">noto</a></b><small> (<a href="https://ctan.org/pkg/noto">CTAN</a>): -Support for Noto fonts +Support for Noto fonts. <a href="texmf-dist/doc/fonts/noto/noto-samples.pdf">noto-samples.pdf</a>. </small></li> -<li id="notoccite"><b><a href="texmf-dist/doc/latex/notoccite">notoccite</a></b><small> +<li id="notoccite"><b><a href="texmf-dist/doc/latex/notoccite/">notoccite</a></b><small> (<a href="https://ctan.org/pkg/notoccite">CTAN</a>): -Prevent trouble from citations in table of contents, etc +Prevent trouble from citations in table of contents, etc. <a href="texmf-dist/doc/latex/notoccite/notoccite.pdf">notoccite.pdf</a>. </small></li> -<li id="novel"><b><a href="texmf-dist/doc/lualatex/novel/extras">novel</a></b><small> +<li id="novel"><b><a href="texmf-dist/doc/lualatex/novel/">novel</a></b><small> (<a href="https://ctan.org/pkg/novel">CTAN</a>): -Class for printing fiction, such as novels +Class for printing fiction, such as novels. <a href="texmf-dist/doc/lualatex/novel/extras/NovelDeco-glyphs.pdf">NovelDeco-glyphs.pdf</a> <a href="texmf-dist/doc/lualatex/novel/extras/novel-Gallery-ChapterStart.pdf">novel-Gallery-ChapterStart.pdf</a> <a href="texmf-dist/doc/lualatex/novel/extras/novel-extras-README.html">novel-extras-README.html</a> @@ -15561,33 +15519,33 @@ Class for printing fiction, such as novels <a href="texmf-dist/doc/lualatex/novel/novel.pdf">novel.pdf</a>. </small></li> -<li id="nowidow"><b><a href="texmf-dist/doc/latex/nowidow">nowidow</a></b><small> +<li id="nowidow"><b><a href="texmf-dist/doc/latex/nowidow/">nowidow</a></b><small> (<a href="https://ctan.org/pkg/nowidow">CTAN</a>): -Avoid widows +Avoid widows. <a href="texmf-dist/doc/latex/nowidow/nowidow.pdf">nowidow.pdf</a>. </small></li> -<li id="nox"><b><a href="texmf-dist/doc/latex/nox">nox</a></b><small> +<li id="nox"><b><a href="texmf-dist/doc/latex/nox/">nox</a></b><small> (<a href="https://ctan.org/pkg/nox">CTAN</a>): -Adaptable tables +Adaptable tables. <a href="texmf-dist/doc/latex/nox/nox.pdf">nox.pdf</a> (de). </small></li> -<li id="npp-for-context"><b><a href="texmf-dist/doc/context/third/npp-for-context/doc">npp-for-context</a></b><small> +<li id="npp-for-context"><b><a href="texmf-dist/doc/context/third/npp-for-context/">npp-for-context</a></b><small> (<a href="https://ctan.org/pkg/npp-for-context">CTAN</a>): -ConTeXt plugin for Notepad++ +ConTeXt plugin for Notepad++. <a href="texmf-dist/doc/context/third/npp-for-context/doc/npp-context-manual.pdf">npp-context-manual.pdf</a>. </small></li> -<li id="nrc"><b><a href="texmf-dist/doc/latex/nrc">nrc</a></b><small> +<li id="nrc"><b><a href="texmf-dist/doc/latex/nrc/">nrc</a></b><small> (<a href="https://ctan.org/pkg/nrc">CTAN</a>): -Class for the NRC technical journals +Class for the NRC technical journals. <a href="texmf-dist/doc/latex/nrc/userguide.pdf">userguide.pdf</a>. </small></li> -<li id="ntgclass"><b><a href="texmf-dist/doc/latex/ntgclass">ntgclass</a></b><small> +<li id="ntgclass"><b><a href="texmf-dist/doc/latex/ntgclass/">ntgclass</a></b><small> (<a href="https://ctan.org/pkg/ntgclass">CTAN</a>): -"European" versions of standard classes +"European" versions of standard classes. <a href="texmf-dist/doc/latex/ntgclass/a4.pdf">a4.pdf</a> <a href="texmf-dist/doc/latex/ntgclass/artdoc.pdf">artdoc.pdf</a> (nl) <a href="texmf-dist/doc/latex/ntgclass/brief-sample.pdf">brief-sample.pdf</a> @@ -15598,78 +15556,78 @@ Class for the NRC technical journals <a href="texmf-dist/doc/latex/ntgclass/rapdoc.pdf">rapdoc.pdf</a> (nl). </small></li> -<li id="ntheorem"><b><a href="texmf-dist/doc/latex/ntheorem">ntheorem</a></b><small> +<li id="ntheorem"><b><a href="texmf-dist/doc/latex/ntheorem/">ntheorem</a></b><small> (<a href="https://ctan.org/pkg/ntheorem">CTAN</a>): -Enhanced theorem environment +Enhanced theorem environment. <a href="texmf-dist/doc/latex/ntheorem/ntheorem.pdf">ntheorem.pdf</a>. </small></li> -<li id="ntheorem-vn"><b><a href="texmf-dist/doc/latex/ntheorem-vn">ntheorem-vn</a></b><small> +<li id="ntheorem-vn"><b><a href="texmf-dist/doc/latex/ntheorem-vn/">ntheorem-vn</a></b><small> (<a href="https://ctan.org/pkg/ntheorem-vn">CTAN</a>): -Vietnamese translation of documentation of ntheorem +Vietnamese translation of documentation of ntheorem. <a href="texmf-dist/doc/latex/ntheorem-vn/ntheorem-doc-vn.pdf">ntheorem-doc-vn.pdf</a> (vi) <a href="texmf-dist/doc/latex/ntheorem-vn/test.pdf">test.pdf</a>. </small></li> -<li id="nuc"><b><a href="texmf-dist/doc/latex/nuc">nuc</a></b><small> +<li id="nuc"><b><a href="texmf-dist/doc/latex/nuc/">nuc</a></b><small> (<a href="https://ctan.org/pkg/nuc">CTAN</a>): -Notation for nuclear isotopes +Notation for nuclear isotopes. <a href="texmf-dist/doc/latex/nuc/nuc.pdf">nuc.pdf</a>. </small></li> -<li id="nucleardata"><b><a href="texmf-dist/doc/latex/nucleardata">nucleardata</a></b><small> +<li id="nucleardata"><b><a href="texmf-dist/doc/latex/nucleardata/">nucleardata</a></b><small> (<a href="https://ctan.org/pkg/nucleardata">CTAN</a>): -Provides data about atomic nuclides for documents +Provides data about atomic nuclides for documents. <a href="texmf-dist/doc/latex/nucleardata/nuccommandtest.pdf">nuccommandtest.pdf</a> <a href="texmf-dist/doc/latex/nucleardata/nucleardata.pdf">nucleardata.pdf</a>. </small></li> -<li id="numberedblock"><b><a href="texmf-dist/doc/latex/numberedblock">numberedblock</a></b><small> +<li id="numberedblock"><b><a href="texmf-dist/doc/latex/numberedblock/">numberedblock</a></b><small> (<a href="https://ctan.org/pkg/numberedblock">CTAN</a>): -Print a block of code, with unique index number +Print a block of code, with unique index number. <a href="texmf-dist/doc/latex/numberedblock/testnumberedblock.pdf">testnumberedblock.pdf</a>. </small></li> -<li id="numberpt"><b><a href="texmf-dist/doc/latex/numberpt">numberpt</a></b><small> +<li id="numberpt"><b><a href="texmf-dist/doc/latex/numberpt/">numberpt</a></b><small> (<a href="https://ctan.org/pkg/numberpt">CTAN</a>): -Counters spelled out in Portuguese +Counters spelled out in Portuguese. <a href="texmf-dist/doc/latex/numberpt/numberpt.pdf">numberpt.pdf</a>. </small></li> -<li id="numericplots"><b><a href="texmf-dist/doc/latex/numericplots">numericplots</a></b><small> +<li id="numericplots"><b><a href="texmf-dist/doc/latex/numericplots/">numericplots</a></b><small> (<a href="https://ctan.org/pkg/numericplots">CTAN</a>): -Plot numeric data (including Matlab export) using PSTricks +Plot numeric data (including Matlab export) using PSTricks. <a href="texmf-dist/doc/latex/numericplots/NumericPlots.pdf">NumericPlots.pdf</a>. </small></li> -<li id="numname"><b><a href="texmf-dist/doc/latex/numname">numname</a></b><small> +<li id="numname"><b><a href="texmf-dist/doc/latex/numname/">numname</a></b><small> (<a href="https://ctan.org/pkg/numname">CTAN</a>): -Convert a number to its English expression +Convert a number to its English expression. <a href="texmf-dist/doc/latex/numname/numname.pdf">numname.pdf</a>. </small></li> -<li id="numnameru"><b><a href="texmf-dist/doc/latex/numnameru">numnameru</a></b><small> +<li id="numnameru"><b><a href="texmf-dist/doc/latex/numnameru/">numnameru</a></b><small> (<a href="https://ctan.org/pkg/numnameru">CTAN</a>): -Converts a number to the russian spelled out name +Converts a number to the russian spelled out name. <a href="texmf-dist/doc/latex/numnameru/numnameru.pdf">numnameru.pdf</a>. </small></li> -<li id="numprint"><b><a href="texmf-dist/doc/latex/numprint">numprint</a></b><small> +<li id="numprint"><b><a href="texmf-dist/doc/latex/numprint/">numprint</a></b><small> (<a href="https://ctan.org/pkg/numprint">CTAN</a>): -Print numbers with separators and exponent if necessary +Print numbers with separators and exponent if necessary. <a href="texmf-dist/doc/latex/numprint/nbaseprt.pdf">nbaseprt.pdf</a> <a href="texmf-dist/doc/latex/numprint/numprint.pdf">numprint.pdf</a>. </small></li> -<li id="numspell"><b><a href="texmf-dist/doc/latex/numspell">numspell</a></b><small> +<li id="numspell"><b><a href="texmf-dist/doc/latex/numspell/">numspell</a></b><small> (<a href="https://ctan.org/pkg/numspell">CTAN</a>): -Spelling cardinal and ordinal numbers +Spelling cardinal and ordinal numbers. <a href="texmf-dist/doc/latex/numspell/numspell.pdf">numspell.pdf</a>. </small></li> -<li id="nwejm"><b><a href="texmf-dist/doc/latex/nwejm/examples">nwejm</a></b><small> +<li id="nwejm"><b><a href="texmf-dist/doc/latex/nwejm/">nwejm</a></b><small> (<a href="https://ctan.org/pkg/nwejm">CTAN</a>): -Support for the journal "North-Western European Journal of Mathematics" +Support for the journal "North-Western European Journal of Mathematics". <a href="texmf-dist/doc/latex/nwejm/examples/article-in-dutch.pdf">article-in-dutch.pdf</a> <a href="texmf-dist/doc/latex/nwejm/examples/article-in-english.pdf">article-in-english.pdf</a> <a href="texmf-dist/doc/latex/nwejm/examples/article-in-french.pdf">article-in-french.pdf</a> @@ -15683,11 +15641,11 @@ Support for the journal "North-Western European Journal of Mathematics" <h2 id="letter-O">O</h2> -<ol start="2062"> +<ol start="2063"> -<li id="oberdiek"><b><a href="texmf-dist/doc/latex/oberdiek">oberdiek</a></b><small> +<li id="oberdiek"><b><a href="texmf-dist/doc/latex/oberdiek/">oberdiek</a></b><small> (<a href="https://ctan.org/pkg/oberdiek">CTAN</a>): -A bundle of packages submitted by Heiko Oberdiek +A bundle of packages submitted by Heiko Oberdiek. <a href="texmf-dist/doc/latex/oberdiek/aliascnt.pdf">aliascnt.pdf</a> <a href="texmf-dist/doc/latex/oberdiek/bmpsize.pdf">bmpsize.pdf</a> <a href="texmf-dist/doc/latex/oberdiek/centernot.pdf">centernot.pdf</a> @@ -15734,21 +15692,21 @@ A bundle of packages submitted by Heiko Oberdiek <a href="texmf-dist/doc/latex/oberdiek/twoopt.pdf">twoopt.pdf</a>. </small></li> -<li id="objectz"><b><a href="texmf-dist/doc/latex/objectz">objectz</a></b><small> +<li id="objectz"><b><a href="texmf-dist/doc/latex/objectz/">objectz</a></b><small> (<a href="https://ctan.org/pkg/objectz">CTAN</a>): -Macros for typesetting Object Z +Macros for typesetting Object Z. <a href="texmf-dist/doc/latex/objectz/ozguide.pdf">ozguide.pdf</a>. </small></li> -<li id="obnov"><b><a href="texmf-dist/doc/fonts/obnov">obnov</a></b><small> +<li id="obnov"><b><a href="texmf-dist/doc/fonts/obnov/">obnov</a></b><small> (<a href="https://ctan.org/pkg/obnov">CTAN</a>): -Obyknovennaya Novaya fonts +Obyknovennaya Novaya fonts. <a href="texmf-dist/doc/fonts/obnov/example_obn.pdf">example_obn.pdf</a>. </small></li> -<li id="ocg-p"><b><a href="texmf-dist/doc/latex/ocg-p/examples">ocg-p</a></b><small> +<li id="ocg-p"><b><a href="texmf-dist/doc/latex/ocg-p/">ocg-p</a></b><small> (<a href="https://ctan.org/pkg/ocg-p">CTAN</a>): -PDF OCG support in LaTeX +PDF OCG support in LaTeX. <a href="texmf-dist/doc/latex/ocg-p/examples/ocg-p_example_1.pdf">ocg-p_example_1.pdf</a> <a href="texmf-dist/doc/latex/ocg-p/examples/ocg-p_example_2.pdf">ocg-p_example_2.pdf</a> <a href="texmf-dist/doc/latex/ocg-p/examples/ocg-p_example_3.pdf">ocg-p_example_3.pdf</a> @@ -15756,68 +15714,68 @@ PDF OCG support in LaTeX <a href="texmf-dist/doc/latex/ocg-p/ocg-p.pdf">ocg-p.pdf</a>. </small></li> -<li id="ocgx"><b><a href="texmf-dist/doc/latex/ocgx">ocgx</a></b><small> +<li id="ocgx"><b><a href="texmf-dist/doc/latex/ocgx/">ocgx</a></b><small> (<a href="https://ctan.org/pkg/ocgx">CTAN</a>): -Use OCGs within a PDF document without JavaScript +Use OCGs within a PDF document without JavaScript. <a href="texmf-dist/doc/latex/ocgx/demo-ocgx.pdf">demo-ocgx.pdf</a> <a href="texmf-dist/doc/latex/ocgx/ocgx-manual-en.pdf">ocgx-manual-en.pdf</a>. </small></li> -<li id="ocherokee"><b><a href="texmf-dist/doc/omega/ocherokee">ocherokee</a></b><small> +<li id="ocherokee"><b><a href="texmf-dist/doc/omega/ocherokee/">ocherokee</a></b><small> (<a href="https://ctan.org/pkg/ocherokee">CTAN</a>): -LaTeX Support for the Cherokee language +LaTeX Support for the Cherokee language. <a href="texmf-dist/doc/omega/ocherokee/cherokee.pdf">cherokee.pdf</a>. </small></li> -<li id="ocr-latex"><b><a href="texmf-dist/doc/latex/ocr-latex">ocr-latex</a></b><small> +<li id="ocr-latex"><b><a href="texmf-dist/doc/latex/ocr-latex/">ocr-latex</a></b><small> (<a href="https://ctan.org/pkg/ocr-latex">CTAN</a>): -LaTeX support for ocr fonts +LaTeX support for ocr fonts. <a href="texmf-dist/doc/latex/ocr-latex/ocr.pdf">ocr.pdf</a>. </small></li> -<li id="octave"><b><a href="texmf-dist/doc/latex/octave">octave</a></b><small> +<li id="octave"><b><a href="texmf-dist/doc/latex/octave/">octave</a></b><small> (<a href="https://ctan.org/pkg/octave">CTAN</a>): -Typeset musical pitches with octave designations +Typeset musical pitches with octave designations. <a href="texmf-dist/doc/latex/octave/octave.pdf">octave.pdf</a>. </small></li> -<li id="octavo"><b><a href="texmf-dist/doc/latex/octavo">octavo</a></b><small> +<li id="octavo"><b><a href="texmf-dist/doc/latex/octavo/">octavo</a></b><small> (<a href="https://ctan.org/pkg/octavo">CTAN</a>): -Typeset books following classical design and layout +Typeset books following classical design and layout. <a href="texmf-dist/doc/latex/octavo/tub-octavo.pdf">tub-octavo.pdf</a>. </small></li> -<li id="odsfile"><b><a href="texmf-dist/doc/lualatex/odsfile">odsfile</a></b><small> +<li id="odsfile"><b><a href="texmf-dist/doc/lualatex/odsfile/">odsfile</a></b><small> (<a href="https://ctan.org/pkg/odsfile">CTAN</a>): -Read OpenDocument Spreadsheet documents as LaTeX tables +Read OpenDocument Spreadsheet documents as LaTeX tables. <a href="texmf-dist/doc/lualatex/odsfile/odsfile.pdf">odsfile.pdf</a>. </small></li> -<li id="ofs"><b><a href="texmf-dist/doc/generic/ofs">ofs</a></b><small> +<li id="ofs"><b><a href="texmf-dist/doc/generic/ofs/">ofs</a></b><small> (<a href="https://ctan.org/pkg/ofs">CTAN</a>): -Macros for managing large font collections +Macros for managing large font collections. <a href="texmf-dist/doc/generic/ofs/eurotex2003-ofs.pdf">eurotex2003-ofs.pdf</a> <a href="texmf-dist/doc/generic/ofs/ofs-slt.pdf">ofs-slt.pdf</a> <a href="texmf-dist/doc/generic/ofs/ofsdoc-e.pdf">ofsdoc-e.pdf</a> <a href="texmf-dist/doc/generic/ofs/ofsdoc.pdf">ofsdoc.pdf</a> (cs). </small></li> -<li id="ogham"><b><a href="texmf-dist/doc/fonts/ogham">ogham</a></b><small> +<li id="ogham"><b><a href="texmf-dist/doc/fonts/ogham/">ogham</a></b><small> (<a href="https://ctan.org/pkg/ogham">CTAN</a>): -Fonts for typesetting Ogham script +Fonts for typesetting Ogham script. <a href="texmf-dist/doc/fonts/ogham/testfont.pdf">testfont.pdf</a>. </small></li> -<li id="old-arrows"><b><a href="texmf-dist/doc/fonts/old-arrows">old-arrows</a></b><small> +<li id="old-arrows"><b><a href="texmf-dist/doc/fonts/old-arrows/">old-arrows</a></b><small> (<a href="https://ctan.org/pkg/old-arrows">CTAN</a>): -Computer Modern old-style arrows with smaller arrowheads +Computer Modern old-style arrows with smaller arrowheads. <a href="texmf-dist/doc/fonts/old-arrows/old-arrows-italian.pdf">old-arrows-italian.pdf</a> (it) <a href="texmf-dist/doc/fonts/old-arrows/old-arrows.pdf">old-arrows.pdf</a>. </small></li> -<li id="oldlatin"><b><a href="texmf-dist/doc/fonts/oldlatin">oldlatin</a></b><small> +<li id="oldlatin"><b><a href="texmf-dist/doc/fonts/oldlatin/">oldlatin</a></b><small> (<a href="https://ctan.org/pkg/oldlatin">CTAN</a>): -Compute Modern-like font with long s +Compute Modern-like font with long s. <a href="texmf-dist/doc/fonts/oldlatin/oldlatin.pdf">oldlatin.pdf</a> <a href="texmf-dist/doc/fonts/oldlatin/test_ol_all.pdf">test_ol_all.pdf</a> <a href="texmf-dist/doc/fonts/oldlatin/test_ol_bf.pdf">test_ol_bf.pdf</a> @@ -15827,24 +15785,23 @@ Compute Modern-like font with long s <a href="texmf-dist/doc/fonts/oldlatin/test_ol_tt.pdf">test_ol_tt.pdf</a>. </small></li> -<li id="oldstandard"><b><a href="texmf-dist/doc/fonts/oldstandard">oldstandard</a></b><small> +<li id="oldstandard"><b><a href="texmf-dist/doc/fonts/oldstandard/">oldstandard</a></b><small> (<a href="https://ctan.org/pkg/oldstandard">CTAN</a>): -OldStandard fonts with LaTeX support +OldStandard fonts with LaTeX support. <a href="texmf-dist/doc/fonts/oldstandard/fonttable.pdf">fonttable.pdf</a> <a href="texmf-dist/doc/fonts/oldstandard/oldstand-manual.pdf">oldstand-manual.pdf</a> <a href="texmf-dist/doc/fonts/oldstandard/oldstandard-samples.pdf">oldstandard-samples.pdf</a> <a href="texmf-dist/doc/fonts/oldstandard/oldstandard.pdf">oldstandard.pdf</a>. </small></li> -<li id="oldstyle"><b><a href="texmf-dist/doc/latex/oldstyle">oldstyle</a></b><small> +<li id="oldstyle"><b><a href="texmf-dist/doc/latex/oldstyle/">oldstyle</a></b><small> (<a href="https://ctan.org/pkg/oldstyle">CTAN</a>): -Old style numbers in OT1 encoding +Old style numbers in OT1 encoding. <a href="texmf-dist/doc/latex/oldstyle/oldstyle.pdf">oldstyle.pdf</a>. </small></li> -<li id="omegaware"><b><a href="texmf-dist/doc/man/man1">omegaware</a></b><small> -(<a href="https://ctan.org/pkg/omegaware">CTAN</a>): -A wide-character-set extension of TeX +<li id="omegaware"><b><a href="texmf-dist/doc/man/man1/">omegaware</a></b><small> +A wide-character-set extension of TeX. <a href="texmf-dist/doc/man/man1/odvicopy.man1.pdf">odvicopy.man1.pdf</a> <a href="texmf-dist/doc/man/man1/odvitype.man1.pdf">odvitype.man1.pdf</a> <a href="texmf-dist/doc/man/man1/ofm2opl.man1.pdf">ofm2opl.man1.pdf</a> @@ -15856,149 +15813,149 @@ A wide-character-set extension of TeX <a href="texmf-dist/doc/man/man1/ovp2ovf.man1.pdf">ovp2ovf.man1.pdf</a>. </small></li> -<li id="onedown"><b><a href="texmf-dist/doc/latex/onedown/examples">onedown</a></b><small> +<li id="onedown"><b><a href="texmf-dist/doc/latex/onedown/">onedown</a></b><small> (<a href="https://ctan.org/pkg/onedown">CTAN</a>): -Typeset Bridge Diagrams +Typeset Bridge Diagrams. <a href="texmf-dist/doc/latex/onedown/examples/onedown-examples.pdf">onedown-examples.pdf</a> <a href="texmf-dist/doc/latex/onedown/examples/onedown-ref.pdf">onedown-ref.pdf</a> <a href="texmf-dist/doc/latex/onedown/onedown.pdf">onedown.pdf</a>. </small></li> -<li id="onlyamsmath"><b><a href="texmf-dist/doc/latex/onlyamsmath">onlyamsmath</a></b><small> +<li id="onlyamsmath"><b><a href="texmf-dist/doc/latex/onlyamsmath/">onlyamsmath</a></b><small> (<a href="https://ctan.org/pkg/onlyamsmath">CTAN</a>): -Inhibit use of non-amsmath mathematics markup when using amsmath +Inhibit use of non-amsmath mathematics markup when using amsmath. <a href="texmf-dist/doc/latex/onlyamsmath/onlyamsmath.pdf">onlyamsmath.pdf</a>. </small></li> -<li id="onrannual"><b><a href="texmf-dist/doc/latex/onrannual">onrannual</a></b><small> +<li id="onrannual"><b><a href="texmf-dist/doc/latex/onrannual/">onrannual</a></b><small> (<a href="https://ctan.org/pkg/onrannual">CTAN</a>): -Class for Office of Naval Research Ocean Battlespace Sensing annual report +Class for Office of Naval Research Ocean Battlespace Sensing annual report. <a href="texmf-dist/doc/latex/onrannual/samplefigure.pdf">samplefigure.pdf</a> <a href="texmf-dist/doc/latex/onrannual/skeleton.pdf">skeleton.pdf</a>. </small></li> -<li id="opcit"><b><a href="texmf-dist/doc/latex/opcit">opcit</a></b><small> +<li id="opcit"><b><a href="texmf-dist/doc/latex/opcit/">opcit</a></b><small> (<a href="https://ctan.org/pkg/opcit">CTAN</a>): -Footnote-style bibliographical references +Footnote-style bibliographical references. <a href="texmf-dist/doc/latex/opcit/opcit.pdf">opcit.pdf</a>. </small></li> -<li id="opensans"><b><a href="texmf-dist/doc/fonts/opensans">opensans</a></b><small> +<li id="opensans"><b><a href="texmf-dist/doc/fonts/opensans/">opensans</a></b><small> (<a href="https://ctan.org/pkg/opensans">CTAN</a>): -The Open Sans font family, and LaTeX support +The Open Sans font family, and LaTeX support. <a href="texmf-dist/doc/fonts/opensans/opensans-samples.pdf">opensans-samples.pdf</a> <a href="texmf-dist/doc/fonts/opensans/opensans.pdf">opensans.pdf</a>. </small></li> -<li id="oplotsymbl"><b><a href="texmf-dist/doc/latex/oplotsymbl">oplotsymbl</a></b><small> +<li id="oplotsymbl"><b><a href="texmf-dist/doc/latex/oplotsymbl/">oplotsymbl</a></b><small> (<a href="https://ctan.org/pkg/oplotsymbl">CTAN</a>): -Some symbols which are not easily available +Some symbols which are not easily available. <a href="texmf-dist/doc/latex/oplotsymbl/oPlotSymbl-Manual-en.pdf">oPlotSymbl-Manual-en.pdf</a>. </small></li> -<li id="opteng"><b><a href="texmf-dist/doc/latex/opteng">opteng</a></b><small> +<li id="opteng"><b><a href="texmf-dist/doc/latex/opteng/">opteng</a></b><small> (<a href="https://ctan.org/pkg/opteng">CTAN</a>): -SPIE Optical Engineering and OE Letters manuscript template +SPIE Optical Engineering and OE Letters manuscript template. <a href="texmf-dist/doc/latex/opteng/OptEngInstruct.pdf">OptEngInstruct.pdf</a>. </small></li> -<li id="optex"><b><a href="texmf-dist/doc/luatex/optex">optex</a></b><small> +<li id="optex"><b><a href="texmf-dist/doc/luatex/optex/">optex</a></b><small> (<a href="https://ctan.org/pkg/optex">CTAN</a>): -LuaTeX format based on Plain TeX and OPmac +LuaTeX format based on Plain TeX and OPmac. <a href="texmf-dist/doc/luatex/optex/optex-doc.pdf">optex-doc.pdf</a> <a href="texmf-dist/doc/man/man1/optex.man1.pdf">optex.man1.pdf</a>. </small></li> -<li id="optidef"><b><a href="texmf-dist/doc/latex/optidef">optidef</a></b><small> +<li id="optidef"><b><a href="texmf-dist/doc/latex/optidef/">optidef</a></b><small> (<a href="https://ctan.org/pkg/optidef">CTAN</a>): -Environments for writing optimization problems +Environments for writing optimization problems. <a href="texmf-dist/doc/latex/optidef/optidef.pdf">optidef.pdf</a>. </small></li> -<li id="optional"><b><a href="texmf-dist/doc/latex/optional">optional</a></b><small> +<li id="optional"><b><a href="texmf-dist/doc/latex/optional/">optional</a></b><small> (<a href="https://ctan.org/pkg/optional">CTAN</a>): -Facilitate optional printing of parts of a document +Facilitate optional printing of parts of a document. <a href="texmf-dist/doc/latex/optional/optional.pdf">optional.pdf</a>. </small></li> -<li id="options"><b><a href="texmf-dist/doc/latex/options">options</a></b><small> +<li id="options"><b><a href="texmf-dist/doc/latex/options/">options</a></b><small> (<a href="https://ctan.org/pkg/options">CTAN</a>): -Provides convenient key-value options for LaTeX package writers +Provides convenient key-value options for LaTeX package writers. <a href="texmf-dist/doc/latex/options/options.html">options.html</a> <a href="texmf-dist/doc/latex/options/options.pdf">options.pdf</a>. </small></li> -<li id="ordinalpt"><b><a href="texmf-dist/doc/latex/ordinalpt">ordinalpt</a></b><small> +<li id="ordinalpt"><b><a href="texmf-dist/doc/latex/ordinalpt/">ordinalpt</a></b><small> (<a href="https://ctan.org/pkg/ordinalpt">CTAN</a>): -Counters as ordinal numbers in Portuguese +Counters as ordinal numbers in Portuguese. <a href="texmf-dist/doc/latex/ordinalpt/ordinalpt.pdf">ordinalpt.pdf</a>. </small></li> -<li id="orkhun"><b><a href="texmf-dist/doc/fonts/orkhun">orkhun</a></b><small> +<li id="orkhun"><b><a href="texmf-dist/doc/fonts/orkhun/">orkhun</a></b><small> (<a href="https://ctan.org/pkg/orkhun">CTAN</a>): -A font for orkhun script +A font for orkhun script. <a href="texmf-dist/doc/fonts/orkhun/rakhimov.pdf">rakhimov.pdf</a>. </small></li> -<li id="oscola"><b><a href="texmf-dist/doc/latex/oscola">oscola</a></b><small> +<li id="oscola"><b><a href="texmf-dist/doc/latex/oscola/">oscola</a></b><small> (<a href="https://ctan.org/pkg/oscola">CTAN</a>): -BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities +BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities. <a href="texmf-dist/doc/latex/oscola/oscola.pdf">oscola.pdf</a>. </small></li> -<li id="ot-tableau"><b><a href="texmf-dist/doc/latex/ot-tableau">ot-tableau</a></b><small> +<li id="ot-tableau"><b><a href="texmf-dist/doc/latex/ot-tableau/">ot-tableau</a></b><small> (<a href="https://ctan.org/pkg/ot-tableau">CTAN</a>): -Optimality Theory tableaux in LaTeX +Optimality Theory tableaux in LaTeX. <a href="texmf-dist/doc/latex/ot-tableau/ot-tableau.pdf">ot-tableau.pdf</a>. </small></li> -<li id="othelloboard"><b><a href="texmf-dist/doc/latex/othelloboard">othelloboard</a></b><small> +<li id="othelloboard"><b><a href="texmf-dist/doc/latex/othelloboard/">othelloboard</a></b><small> (<a href="https://ctan.org/pkg/othelloboard">CTAN</a>): -Typeset Othello (Reversi) diagrams of any size, with annotations +Typeset Othello (Reversi) diagrams of any size, with annotations. <a href="texmf-dist/doc/latex/othelloboard/example-rose-chps1-2.pdf">example-rose-chps1-2.pdf</a> <a href="texmf-dist/doc/latex/othelloboard/othelloboard.pdf">othelloboard.pdf</a>. </small></li> -<li id="oubraces"><b><a href="texmf-dist/doc/latex/oubraces">oubraces</a></b><small> +<li id="oubraces"><b><a href="texmf-dist/doc/latex/oubraces/">oubraces</a></b><small> (<a href="https://ctan.org/pkg/oubraces">CTAN</a>): -Braces over and under a formula +Braces over and under a formula. <a href="texmf-dist/doc/latex/oubraces/oubraces.pdf">oubraces.pdf</a>. </small></li> -<li id="outline"><b><a href="texmf-dist/doc/latex/outline">outline</a></b><small> +<li id="outline"><b><a href="texmf-dist/doc/latex/outline/">outline</a></b><small> (<a href="https://ctan.org/pkg/outline">CTAN</a>): -List environment for making outlines +List environment for making outlines. <a href="texmf-dist/doc/latex/outline/outline.pdf">outline.pdf</a>. </small></li> -<li id="outlines"><b><a href="texmf-dist/doc/latex/outlines">outlines</a></b><small> +<li id="outlines"><b><a href="texmf-dist/doc/latex/outlines/">outlines</a></b><small> (<a href="https://ctan.org/pkg/outlines">CTAN</a>): -Produce "outline" lists +Produce "outline" lists. <a href="texmf-dist/doc/latex/outlines/outlines.pdf">outlines.pdf</a>. </small></li> -<li id="outlining"><b><a href="texmf-dist/doc/latex/outlining">outlining</a></b><small> +<li id="outlining"><b><a href="texmf-dist/doc/latex/outlining/">outlining</a></b><small> (<a href="https://ctan.org/pkg/outlining">CTAN</a>): -Create outlines for scientific documents +Create outlines for scientific documents. <a href="texmf-dist/doc/latex/outlining/outlining.pdf">outlining.pdf</a>. </small></li> -<li id="overlays"><b><a href="texmf-dist/doc/latex/overlays">overlays</a></b><small> +<li id="overlays"><b><a href="texmf-dist/doc/latex/overlays/">overlays</a></b><small> (<a href="https://ctan.org/pkg/overlays">CTAN</a>): -Incremental slides +Incremental slides. <a href="texmf-dist/doc/latex/overlays/overlays.pdf">overlays.pdf</a> <a href="texmf-dist/doc/latex/overlays/sample.pdf">sample.pdf</a>. </small></li> -<li id="overlock"><b><a href="texmf-dist/doc/fonts/overlock">overlock</a></b><small> +<li id="overlock"><b><a href="texmf-dist/doc/fonts/overlock/">overlock</a></b><small> (<a href="https://ctan.org/pkg/overlock">CTAN</a>): -Overlook sans fonts with LaTeX support +Overlook sans fonts with LaTeX support. <a href="texmf-dist/doc/fonts/overlock/overlock-samples.pdf">overlock-samples.pdf</a>. </small></li> -<li id="overpic"><b><a href="texmf-dist/doc/latex/overpic">overpic</a></b><small> +<li id="overpic"><b><a href="texmf-dist/doc/latex/overpic/">overpic</a></b><small> (<a href="https://ctan.org/pkg/overpic">CTAN</a>): -Combine LaTeX commands over included graphics +Combine LaTeX commands over included graphics. <a href="texmf-dist/doc/latex/overpic/overpic.pdf">overpic.pdf</a>. </small></li> @@ -16006,108 +15963,108 @@ Combine LaTeX commands over included graphics <h2 id="letter-P">P</h2> -<ol start="2102"> +<ol start="2103"> -<li id="padcount"><b><a href="texmf-dist/doc/latex/padcount">padcount</a></b><small> +<li id="padcount"><b><a href="texmf-dist/doc/latex/padcount/">padcount</a></b><small> (<a href="https://ctan.org/pkg/padcount">CTAN</a>): -Pad numbers with arbitrary characters +Pad numbers with arbitrary characters. <a href="texmf-dist/doc/latex/padcount/padcount.pdf">padcount.pdf</a>. </small></li> -<li id="pagecolor"><b><a href="texmf-dist/doc/latex/pagecolor">pagecolor</a></b><small> +<li id="pagecolor"><b><a href="texmf-dist/doc/latex/pagecolor/">pagecolor</a></b><small> (<a href="https://ctan.org/pkg/pagecolor">CTAN</a>): -Interrogate page colour +Interrogate page colour. <a href="texmf-dist/doc/latex/pagecolor/pagecolor-example.pdf">pagecolor-example.pdf</a> <a href="texmf-dist/doc/latex/pagecolor/pagecolor.pdf">pagecolor.pdf</a>. </small></li> -<li id="pagecont"><b><a href="texmf-dist/doc/latex/pagecont">pagecont</a></b><small> +<li id="pagecont"><b><a href="texmf-dist/doc/latex/pagecont/">pagecont</a></b><small> (<a href="https://ctan.org/pkg/pagecont">CTAN</a>): -Page numbering that continues between documents +Page numbering that continues between documents. <a href="texmf-dist/doc/latex/pagecont/pagecont.pdf">pagecont.pdf</a>. </small></li> -<li id="pagenote"><b><a href="texmf-dist/doc/latex/pagenote">pagenote</a></b><small> +<li id="pagenote"><b><a href="texmf-dist/doc/latex/pagenote/">pagenote</a></b><small> (<a href="https://ctan.org/pkg/pagenote">CTAN</a>): -Notes at end of document +Notes at end of document. <a href="texmf-dist/doc/latex/pagenote/pagenote.pdf">pagenote.pdf</a>. </small></li> -<li id="pagerange"><b><a href="texmf-dist/doc/latex/pagerange">pagerange</a></b><small> +<li id="pagerange"><b><a href="texmf-dist/doc/latex/pagerange/">pagerange</a></b><small> (<a href="https://ctan.org/pkg/pagerange">CTAN</a>): -Flexible and configurable page range typesetting +Flexible and configurable page range typesetting. <a href="texmf-dist/doc/latex/pagerange/pagerange-guide.pdf">pagerange-guide.pdf</a>. </small></li> -<li id="pageslts"><b><a href="texmf-dist/doc/latex/pageslts">pageslts</a></b><small> +<li id="pageslts"><b><a href="texmf-dist/doc/latex/pageslts/">pageslts</a></b><small> (<a href="https://ctan.org/pkg/pageslts">CTAN</a>): -Variants of last page labels +Variants of last page labels. <a href="texmf-dist/doc/latex/pageslts/pageslts-example.pdf">pageslts-example.pdf</a> <a href="texmf-dist/doc/latex/pageslts/pageslts.pdf">pageslts.pdf</a>. </small></li> -<li id="paper"><b><a href="texmf-dist/doc/latex/paper">paper</a></b><small> +<li id="paper"><b><a href="texmf-dist/doc/latex/paper/">paper</a></b><small> (<a href="https://ctan.org/pkg/paper">CTAN</a>): -Versions of article class, tuned for scholarly publications +Versions of article class, tuned for scholarly publications. <a href="texmf-dist/doc/latex/paper/paper.pdf">paper.pdf</a> (de). </small></li> -<li id="papercdcase"><b><a href="texmf-dist/doc/latex/papercdcase">papercdcase</a></b><small> +<li id="papercdcase"><b><a href="texmf-dist/doc/latex/papercdcase/">papercdcase</a></b><small> (<a href="https://ctan.org/pkg/papercdcase">CTAN</a>): -Origami-style folding paper CD case +Origami-style folding paper CD case. <a href="texmf-dist/doc/latex/papercdcase/papercdcase.pdf">papercdcase.pdf</a>. </small></li> -<li id="papermas"><b><a href="texmf-dist/doc/latex/papermas">papermas</a></b><small> +<li id="papermas"><b><a href="texmf-dist/doc/latex/papermas/">papermas</a></b><small> (<a href="https://ctan.org/pkg/papermas">CTAN</a>): -Compute the mass of a printed version of a document +Compute the mass of a printed version of a document. <a href="texmf-dist/doc/latex/papermas/papermas-example.pdf">papermas-example.pdf</a> <a href="texmf-dist/doc/latex/papermas/papermas.pdf">papermas.pdf</a>. </small></li> -<li id="papertex"><b><a href="texmf-dist/doc/latex/papertex/example">papertex</a></b><small> +<li id="papertex"><b><a href="texmf-dist/doc/latex/papertex/">papertex</a></b><small> (<a href="https://ctan.org/pkg/papertex">CTAN</a>): -Class for newspapers, etc +Class for newspapers, etc. <a href="texmf-dist/doc/latex/papertex/example/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/papertex/papertex.pdf">papertex.pdf</a>. </small></li> -<li id="paracol"><b><a href="texmf-dist/doc/latex/paracol">paracol</a></b><small> +<li id="paracol"><b><a href="texmf-dist/doc/latex/paracol/">paracol</a></b><small> (<a href="https://ctan.org/pkg/paracol">CTAN</a>): -Multiple columns with texts "in parallel" +Multiple columns with texts "in parallel". <a href="texmf-dist/doc/latex/paracol/paracol-man.pdf">paracol-man.pdf</a> <a href="texmf-dist/doc/latex/paracol/paracol.pdf">paracol.pdf</a>. </small></li> -<li id="parades"><b><a href="texmf-dist/doc/latex/parades/example">parades</a></b><small> +<li id="parades"><b><a href="texmf-dist/doc/latex/parades/">parades</a></b><small> (<a href="https://ctan.org/pkg/parades">CTAN</a>): -Tabulators and space between paragraphs in galley approach +Tabulators and space between paragraphs in galley approach. <a href="texmf-dist/doc/latex/parades/example/udhr.pdf">udhr.pdf</a> <a href="texmf-dist/doc/latex/parades/parades.pdf">parades.pdf</a>. </small></li> -<li id="paralist"><b><a href="texmf-dist/doc/latex/paralist">paralist</a></b><small> +<li id="paralist"><b><a href="texmf-dist/doc/latex/paralist/">paralist</a></b><small> (<a href="https://ctan.org/pkg/paralist">CTAN</a>): -Enumerate and itemize within paragraphs +Enumerate and itemize within paragraphs. <a href="texmf-dist/doc/latex/paralist/paralist.pdf">paralist.pdf</a>. </small></li> -<li id="parallel"><b><a href="texmf-dist/doc/latex/parallel">parallel</a></b><small> +<li id="parallel"><b><a href="texmf-dist/doc/latex/parallel/">parallel</a></b><small> (<a href="https://ctan.org/pkg/parallel">CTAN</a>): -Typeset parallel texts +Typeset parallel texts. <a href="texmf-dist/doc/latex/parallel/parallel.pdf">parallel.pdf</a>. </small></li> -<li id="paratype"><b><a href="texmf-dist/doc/fonts/paratype">paratype</a></b><small> +<li id="paratype"><b><a href="texmf-dist/doc/fonts/paratype/">paratype</a></b><small> (<a href="https://ctan.org/pkg/paratype">CTAN</a>): -LaTeX support for free fonts by ParaType +LaTeX support for free fonts by ParaType. <a href="texmf-dist/doc/fonts/paratype/paratype-sample.pdf">paratype-sample.pdf</a> <a href="texmf-dist/doc/fonts/paratype/paratype.pdf">paratype.pdf</a>. </small></li> -<li id="paresse"><b><a href="texmf-dist/doc/latex/paresse">paresse</a></b><small> +<li id="paresse"><b><a href="texmf-dist/doc/latex/paresse/">paresse</a></b><small> (<a href="https://ctan.org/pkg/paresse">CTAN</a>): -Define simple macros for greek letters +Define simple macros for greek letters. <a href="texmf-dist/doc/latex/paresse/paresse-en.pdf">paresse-en.pdf</a> <a href="texmf-dist/doc/latex/paresse/paresse-ex-en.pdf">paresse-ex-en.pdf</a> <a href="texmf-dist/doc/latex/paresse/paresse-ex-fr.pdf">paresse-ex-fr.pdf</a> (fr) @@ -16115,46 +16072,46 @@ Define simple macros for greek letters <a href="texmf-dist/doc/latex/paresse/paresse.pdf">paresse.pdf</a>. </small></li> -<li id="parnotes"><b><a href="texmf-dist/doc/latex/parnotes">parnotes</a></b><small> +<li id="parnotes"><b><a href="texmf-dist/doc/latex/parnotes/">parnotes</a></b><small> (<a href="https://ctan.org/pkg/parnotes">CTAN</a>): -Notes after every paragraph (or elsewhere) +Notes after every paragraph (or elsewhere). <a href="texmf-dist/doc/latex/parnotes/parnotes.pdf">parnotes.pdf</a>. </small></li> -<li id="parrun"><b><a href="texmf-dist/doc/latex/parrun">parrun</a></b><small> +<li id="parrun"><b><a href="texmf-dist/doc/latex/parrun/">parrun</a></b><small> (<a href="https://ctan.org/pkg/parrun">CTAN</a>): -Typesets (two) streams of text running parallel +Typesets (two) streams of text running parallel. <a href="texmf-dist/doc/latex/parrun/parrun.pdf">parrun.pdf</a>. </small></li> -<li id="parsa"><b><a href="texmf-dist/doc/xelatex/parsa">parsa</a></b><small> +<li id="parsa"><b><a href="texmf-dist/doc/xelatex/parsa/">parsa</a></b><small> (<a href="https://ctan.org/pkg/parsa">CTAN</a>): -A XeLaTeX package for theses and dissertations at Iranian Universities +A XeLaTeX package for theses and dissertations at Iranian Universities. <a href="texmf-dist/doc/xelatex/parsa/parsa-doc.pdf">parsa-doc.pdf</a> (fa). </small></li> -<li id="parselines"><b><a href="texmf-dist/doc/latex/parselines">parselines</a></b><small> +<li id="parselines"><b><a href="texmf-dist/doc/latex/parselines/">parselines</a></b><small> (<a href="https://ctan.org/pkg/parselines">CTAN</a>): -Apply a macro to each line of an environment +Apply a macro to each line of an environment. <a href="texmf-dist/doc/latex/parselines/parselines.pdf">parselines.pdf</a>. </small></li> -<li id="parskip"><b><a href="texmf-dist/doc/latex/parskip">parskip</a></b><small> +<li id="parskip"><b><a href="texmf-dist/doc/latex/parskip/">parskip</a></b><small> (<a href="https://ctan.org/pkg/parskip">CTAN</a>): -Layout with zero \parindent, non-zero \parskip +Layout with zero \parindent, non-zero \parskip. <a href="texmf-dist/doc/latex/parskip/parskip-code.pdf">parskip-code.pdf</a> <a href="texmf-dist/doc/latex/parskip/parskip.pdf">parskip.pdf</a>. </small></li> -<li id="pas-crosswords"><b><a href="texmf-dist/doc/latex/pas-crosswords">pas-crosswords</a></b><small> +<li id="pas-crosswords"><b><a href="texmf-dist/doc/latex/pas-crosswords/">pas-crosswords</a></b><small> (<a href="https://ctan.org/pkg/pas-crosswords">CTAN</a>): -Creating crossword grids, using TikZ +Creating crossword grids, using TikZ. <a href="texmf-dist/doc/latex/pas-crosswords/pas-crosswords.pdf">pas-crosswords.pdf</a> (fr). </small></li> -<li id="pas-cv"><b><a href="texmf-dist/doc/latex/pas-cv/examples">pas-cv</a></b><small> +<li id="pas-cv"><b><a href="texmf-dist/doc/latex/pas-cv/">pas-cv</a></b><small> (<a href="https://ctan.org/pkg/pas-cv">CTAN</a>): -Flexible typesetting of Curricula Vitae +Flexible typesetting of Curricula Vitae. <a href="texmf-dist/doc/latex/pas-cv/examples/cv-andromede.pdf">cv-andromede.pdf</a> <a href="texmf-dist/doc/latex/pas-cv/examples/cv-architecte.pdf">cv-architecte.pdf</a> <a href="texmf-dist/doc/latex/pas-cv/examples/cv-centaure.pdf">cv-centaure.pdf</a> @@ -16173,91 +16130,91 @@ Flexible typesetting of Curricula Vitae <a href="texmf-dist/doc/latex/pas-cv/pas-cv.pdf">pas-cv.pdf</a> (fr). </small></li> -<li id="patchcmd"><b><a href="texmf-dist/doc/latex/patchcmd">patchcmd</a></b><small> +<li id="patchcmd"><b><a href="texmf-dist/doc/latex/patchcmd/">patchcmd</a></b><small> (<a href="https://ctan.org/pkg/patchcmd">CTAN</a>): -Change the definition of an existing command +Change the definition of an existing command. <a href="texmf-dist/doc/latex/patchcmd/patchcmd.pdf">patchcmd.pdf</a>. </small></li> -<li id="patgen"><b><a href="texmf-dist/doc/man/man1">patgen</a></b><small> +<li id="patgen"><b><a href="texmf-dist/doc/man/man1/">patgen</a></b><small> (<a href="https://ctan.org/pkg/patgen">CTAN</a>): -Generate hyphenation patterns +Generate hyphenation patterns. <a href="texmf-dist/doc/man/man1/patgen.man1.pdf">patgen.man1.pdf</a>. </small></li> -<li id="patgen2-tutorial"><b><a href="texmf-dist/doc/support/patgen2-tutorial">patgen2-tutorial</a></b><small> +<li id="patgen2-tutorial"><b><a href="texmf-dist/doc/support/patgen2-tutorial/">patgen2-tutorial</a></b><small> (<a href="https://ctan.org/pkg/patgen2-tutorial">CTAN</a>): -A tutorial on the use of Patgen 2 +A tutorial on the use of Patgen 2. <a href="texmf-dist/doc/support/patgen2-tutorial/patgen2.pdf">patgen2.pdf</a>. </small></li> -<li id="path"><b><a href="texmf-dist/doc/generic/path">path</a></b><small> +<li id="path"><b><a href="texmf-dist/doc/generic/path/">path</a></b><small> (<a href="https://ctan.org/pkg/path">CTAN</a>): -Typeset paths, making them breakable +Typeset paths, making them breakable. <a href="texmf-dist/doc/generic/path/path-doc.pdf">path-doc.pdf</a>. </small></li> -<li id="pauldoc"><b><a href="texmf-dist/doc/latex/pauldoc">pauldoc</a></b><small> +<li id="pauldoc"><b><a href="texmf-dist/doc/latex/pauldoc/">pauldoc</a></b><small> (<a href="https://ctan.org/pkg/pauldoc">CTAN</a>): -German LaTeX package documentation +German LaTeX package documentation. <a href="texmf-dist/doc/latex/pauldoc/pauldoc.pdf">pauldoc.pdf</a> (de). </small></li> -<li id="pb-diagram"><b><a href="texmf-dist/doc/latex/pb-diagram">pb-diagram</a></b><small> +<li id="pb-diagram"><b><a href="texmf-dist/doc/latex/pb-diagram/">pb-diagram</a></b><small> (<a href="https://ctan.org/pkg/pb-diagram">CTAN</a>): -A commutative diagram package using LAMSTeX or Xy-pic fonts +A commutative diagram package using LAMSTeX or Xy-pic fonts. <a href="texmf-dist/doc/latex/pb-diagram/pb-manual.pdf">pb-manual.pdf</a>. </small></li> -<li id="pbibtex-base"><b><a href="texmf-dist/doc/ptex/pbibtex">pbibtex-base</a></b><small> +<li id="pbibtex-base"><b><a href="texmf-dist/doc/ptex/pbibtex/">pbibtex-base</a></b><small> (<a href="https://ctan.org/pkg/pbibtex-base">CTAN</a>): -Bibliography styles and miscellaneous files for pBibTeX +Bibliography styles and miscellaneous files for pBibTeX. <a href="texmf-dist/doc/ptex/pbibtex/jbibtex.pdf">jbibtex.pdf</a> <a href="texmf-dist/doc/ptex/pbibtex/jbtxdoc.pdf">jbtxdoc.pdf</a> <a href="texmf-dist/doc/ptex/pbibtex/jbtxhak.pdf">jbtxhak.pdf</a>. </small></li> -<li id="pbox"><b><a href="texmf-dist/doc/latex/pbox">pbox</a></b><small> +<li id="pbox"><b><a href="texmf-dist/doc/latex/pbox/">pbox</a></b><small> (<a href="https://ctan.org/pkg/pbox">CTAN</a>): -A variable-width \parbox command +A variable-width \parbox command. <a href="texmf-dist/doc/latex/pbox/pbox.pdf">pbox.pdf</a>. </small></li> -<li id="pbsheet"><b><a href="texmf-dist/doc/latex/pbsheet">pbsheet</a></b><small> +<li id="pbsheet"><b><a href="texmf-dist/doc/latex/pbsheet/">pbsheet</a></b><small> (<a href="https://ctan.org/pkg/pbsheet">CTAN</a>): -Problem sheet class +Problem sheet class. <a href="texmf-dist/doc/latex/pbsheet/pbsheet.pdf">pbsheet.pdf</a> <a href="texmf-dist/doc/latex/pbsheet/xpl/img/simbin.pdf">simbin.pdf</a> <a href="texmf-dist/doc/latex/pbsheet/xpl/xpl-fr.pdf">xpl-fr.pdf</a> (fr). </small></li> -<li id="pdf-trans"><b><a href="texmf-dist/doc/generic/pdf-trans">pdf-trans</a></b><small> +<li id="pdf-trans"><b><a href="texmf-dist/doc/generic/pdf-trans/">pdf-trans</a></b><small> (<a href="https://ctan.org/pkg/pdf-trans">CTAN</a>): -A set of macros for various transformations of TeX boxes +A set of macros for various transformations of TeX boxes. <a href="texmf-dist/doc/generic/pdf-trans/example.pdf">example.pdf</a>. </small></li> -<li id="pdf14"><b><a href="texmf-dist/doc/latex/pdf14">pdf14</a></b><small> +<li id="pdf14"><b><a href="texmf-dist/doc/latex/pdf14/">pdf14</a></b><small> (<a href="https://ctan.org/pkg/pdf14">CTAN</a>): -Restore PDF 1.4 to a TeX live 2010 format +Restore PDF 1.4 to a TeX live 2010 format. <a href="texmf-dist/doc/latex/pdf14/pdf14.pdf">pdf14.pdf</a>. </small></li> -<li id="pdfarticle"><b><a href="texmf-dist/doc/lualatex/pdfarticle">pdfarticle</a></b><small> +<li id="pdfarticle"><b><a href="texmf-dist/doc/lualatex/pdfarticle/">pdfarticle</a></b><small> (<a href="https://ctan.org/pkg/pdfarticle">CTAN</a>): -Class for pdf publications +Class for pdf publications. <a href="texmf-dist/doc/lualatex/pdfarticle/pdfArticle.pdf">pdfArticle.pdf</a>. </small></li> -<li id="pdfbook2"><b><a href="texmf-dist/doc/man/man1">pdfbook2</a></b><small> +<li id="pdfbook2"><b><a href="texmf-dist/doc/man/man1/">pdfbook2</a></b><small> (<a href="https://ctan.org/pkg/pdfbook2">CTAN</a>): -Create booklets from PDF files +Create booklets from PDF files. <a href="texmf-dist/doc/man/man1/pdfbook2.man1.pdf">pdfbook2.man1.pdf</a>. </small></li> -<li id="pdfcomment"><b><a href="texmf-dist/doc/latex/pdfcomment">pdfcomment</a></b><small> +<li id="pdfcomment"><b><a href="texmf-dist/doc/latex/pdfcomment/">pdfcomment</a></b><small> (<a href="https://ctan.org/pkg/pdfcomment">CTAN</a>): -A user-friendly interface to pdf annotations +A user-friendly interface to pdf annotations. <a href="texmf-dist/doc/latex/pdfcomment/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/pdfcomment/example_latex_dvipdfmx.pdf">example_latex_dvipdfmx.pdf</a> <a href="texmf-dist/doc/latex/pdfcomment/example_latex_dvips_ps2pdf.pdf">example_latex_dvips_ps2pdf.pdf</a> @@ -16267,95 +16224,95 @@ A user-friendly interface to pdf annotations <a href="texmf-dist/doc/latex/pdfcomment/pdfcomment_de.pdf">pdfcomment_de.pdf</a> (de). </small></li> -<li id="pdfcprot"><b><a href="texmf-dist/doc/latex/pdfcprot">pdfcprot</a></b><small> +<li id="pdfcprot"><b><a href="texmf-dist/doc/latex/pdfcprot/">pdfcprot</a></b><small> (<a href="https://ctan.org/pkg/pdfcprot">CTAN</a>): -Activating and setting of character protruding using pdfLaTeX +Activating and setting of character protruding using pdfLaTeX. <a href="texmf-dist/doc/latex/pdfcprot/pdfcprot.pdf">pdfcprot.pdf</a>. </small></li> -<li id="pdfescape"><b><a href="texmf-dist/doc/latex/pdfescape">pdfescape</a></b><small> +<li id="pdfescape"><b><a href="texmf-dist/doc/latex/pdfescape/">pdfescape</a></b><small> (<a href="https://ctan.org/pkg/pdfescape">CTAN</a>): -Implements pdfTeX's escape features using TeX or e-TeX +Implements pdfTeX's escape features using TeX or e-TeX. <a href="texmf-dist/doc/latex/pdfescape/pdfescape.pdf">pdfescape.pdf</a>. </small></li> -<li id="pdfjam"><b><a href="texmf-dist/doc/man/man1">pdfjam</a></b><small> +<li id="pdfjam"><b><a href="texmf-dist/doc/man/man1/">pdfjam</a></b><small> (<a href="https://ctan.org/pkg/pdfjam">CTAN</a>): -Shell scripts interfacing to pdfpages +Shell scripts interfacing to pdfpages. <a href="texmf-dist/doc/man/man1/pdfjam.man1.pdf">pdfjam.man1.pdf</a>. </small></li> -<li id="pdflatexpicscale"><b><a href="texmf-dist/doc/support/pdflatexpicscale">pdflatexpicscale</a></b><small> +<li id="pdflatexpicscale"><b><a href="texmf-dist/doc/support/pdflatexpicscale/">pdflatexpicscale</a></b><small> (<a href="https://ctan.org/pkg/pdflatexpicscale">CTAN</a>): -Support software for downscaling graphics to be included by pdfLaTeX +Support software for downscaling graphics to be included by pdfLaTeX. <a href="texmf-dist/doc/support/pdflatexpicscale/pdflatexpicscale.pdf">pdflatexpicscale.pdf</a>. </small></li> -<li id="pdflscape"><b><a href="texmf-dist/doc/latex/pdflscape">pdflscape</a></b><small> +<li id="pdflscape"><b><a href="texmf-dist/doc/latex/pdflscape/">pdflscape</a></b><small> (<a href="https://ctan.org/pkg/pdflscape">CTAN</a>): -Make landscape pages display as landscape +Make landscape pages display as landscape. <a href="texmf-dist/doc/latex/pdflscape/pdflscape.pdf">pdflscape.pdf</a>. </small></li> -<li id="pdfmarginpar"><b><a href="texmf-dist/doc/latex/pdfmarginpar">pdfmarginpar</a></b><small> +<li id="pdfmarginpar"><b><a href="texmf-dist/doc/latex/pdfmarginpar/">pdfmarginpar</a></b><small> (<a href="https://ctan.org/pkg/pdfmarginpar">CTAN</a>): -Generate marginpar-equivalent PDF annotations +Generate marginpar-equivalent PDF annotations. <a href="texmf-dist/doc/latex/pdfmarginpar/pdfmarginpar.pdf">pdfmarginpar.pdf</a> <a href="texmf-dist/doc/latex/pdfmarginpar/pdfmarginparexample.pdf">pdfmarginparexample.pdf</a>. </small></li> -<li id="pdfoverlay"><b><a href="texmf-dist/doc/latex/pdfoverlay">pdfoverlay</a></b><small> +<li id="pdfoverlay"><b><a href="texmf-dist/doc/latex/pdfoverlay/">pdfoverlay</a></b><small> (<a href="https://ctan.org/pkg/pdfoverlay">CTAN</a>): -A LaTeX style for overlaying text on a PDF +A LaTeX style for overlaying text on a PDF. <a href="texmf-dist/doc/latex/pdfoverlay/pdfoverlay.pdf">pdfoverlay.pdf</a>. </small></li> -<li id="pdfpagediff"><b><a href="texmf-dist/doc/latex/pdfpagediff/doc">pdfpagediff</a></b><small> +<li id="pdfpagediff"><b><a href="texmf-dist/doc/latex/pdfpagediff/">pdfpagediff</a></b><small> (<a href="https://ctan.org/pkg/pdfpagediff">CTAN</a>): -Find difference between two PDF's +Find difference between two PDF's. <a href="texmf-dist/doc/latex/pdfpagediff/doc/pdfpagediff-doc.pdf">pdfpagediff-doc.pdf</a> <a href="texmf-dist/doc/latex/pdfpagediff/example/file1.pdf">file1.pdf</a> <a href="texmf-dist/doc/latex/pdfpagediff/example/file2.pdf">file2.pdf</a> <a href="texmf-dist/doc/latex/pdfpagediff/example/ltest.pdf">ltest.pdf</a>. </small></li> -<li id="pdfpages"><b><a href="texmf-dist/doc/latex/pdfpages">pdfpages</a></b><small> +<li id="pdfpages"><b><a href="texmf-dist/doc/latex/pdfpages/">pdfpages</a></b><small> (<a href="https://ctan.org/pkg/pdfpages">CTAN</a>): -Include PDF documents in LaTeX +Include PDF documents in LaTeX. <a href="texmf-dist/doc/latex/pdfpages/dummy-l.pdf">dummy-l.pdf</a> <a href="texmf-dist/doc/latex/pdfpages/dummy.pdf">dummy.pdf</a> <a href="texmf-dist/doc/latex/pdfpages/pdfpages.pdf">pdfpages.pdf</a>. </small></li> -<li id="pdfpc"><b><a href="texmf-dist/doc/latex/pdfpc">pdfpc</a></b><small> +<li id="pdfpc"><b><a href="texmf-dist/doc/latex/pdfpc/">pdfpc</a></b><small> (<a href="https://ctan.org/pkg/pdfpc">CTAN</a>): -Define data for the pdfpc presentation viewer +Define data for the pdfpc presentation viewer. <a href="texmf-dist/doc/latex/pdfpc/pdfpc.pdf">pdfpc.pdf</a>. </small></li> -<li id="pdfpc-movie"><b><a href="texmf-dist/doc/latex/pdfpc-movie">pdfpc-movie</a></b><small> +<li id="pdfpc-movie"><b><a href="texmf-dist/doc/latex/pdfpc-movie/">pdfpc-movie</a></b><small> (<a href="https://ctan.org/pkg/pdfpc-movie">CTAN</a>): -Pdfpc viewer-compatible hyperlinks to movies +Pdfpc viewer-compatible hyperlinks to movies. <a href="texmf-dist/doc/latex/pdfpc-movie/pdfpc-movie-doc.pdf">pdfpc-movie-doc.pdf</a>. </small></li> -<li id="pdfprivacy"><b><a href="texmf-dist/doc/latex/pdfprivacy">pdfprivacy</a></b><small> +<li id="pdfprivacy"><b><a href="texmf-dist/doc/latex/pdfprivacy/">pdfprivacy</a></b><small> (<a href="https://ctan.org/pkg/pdfprivacy">CTAN</a>): -A LaTeX package to remove or suppress pdf meta-data +A LaTeX package to remove or suppress pdf meta-data. <a href="texmf-dist/doc/latex/pdfprivacy/pdfprivacy.pdf">pdfprivacy.pdf</a>. </small></li> -<li id="pdfreview"><b><a href="texmf-dist/doc/latex/pdfreview">pdfreview</a></b><small> +<li id="pdfreview"><b><a href="texmf-dist/doc/latex/pdfreview/">pdfreview</a></b><small> (<a href="https://ctan.org/pkg/pdfreview">CTAN</a>): -Annotate PDF files with margin notes +Annotate PDF files with margin notes. <a href="texmf-dist/doc/latex/pdfreview/lorem-ipsum.pdf">lorem-ipsum.pdf</a> <a href="texmf-dist/doc/latex/pdfreview/pdfreview.pdf">pdfreview.pdf</a> <a href="texmf-dist/doc/latex/pdfreview/sample.pdf">sample.pdf</a>. </small></li> -<li id="pdfscreen"><b><a href="texmf-dist/doc/latex/pdfscreen">pdfscreen</a></b><small> +<li id="pdfscreen"><b><a href="texmf-dist/doc/latex/pdfscreen/">pdfscreen</a></b><small> (<a href="https://ctan.org/pkg/pdfscreen">CTAN</a>): -Support screen-based document design +Support screen-based document design. <a href="texmf-dist/doc/latex/pdfscreen/logo.pdf">logo.pdf</a> <a href="texmf-dist/doc/latex/pdfscreen/manual-print.pdf">manual-print.pdf</a> <a href="texmf-dist/doc/latex/pdfscreen/manual-screen.pdf">manual-screen.pdf</a> @@ -16367,22 +16324,22 @@ Support screen-based document design <a href="texmf-dist/doc/latex/pdfscreen/widepanel.pdf">widepanel.pdf</a>. </small></li> -<li id="pdfslide"><b><a href="texmf-dist/doc/latex/pdfslide">pdfslide</a></b><small> +<li id="pdfslide"><b><a href="texmf-dist/doc/latex/pdfslide/">pdfslide</a></b><small> (<a href="https://ctan.org/pkg/pdfslide">CTAN</a>): -Presentation slides using pdfTeX +Presentation slides using pdfTeX. <a href="texmf-dist/doc/latex/pdfslide/demo.pdf">demo.pdf</a> <a href="texmf-dist/doc/latex/pdfslide/mpgraph.pdf">mpgraph.pdf</a>. </small></li> -<li id="pdfsync"><b><a href="texmf-dist/doc/latex/pdfsync">pdfsync</a></b><small> +<li id="pdfsync"><b><a href="texmf-dist/doc/latex/pdfsync/">pdfsync</a></b><small> (<a href="https://ctan.org/pkg/pdfsync">CTAN</a>): -Provide links between source and PDF +Provide links between source and PDF. <a href="texmf-dist/doc/latex/pdfsync/pdfsync-doc.pdf">pdfsync-doc.pdf</a>. </small></li> -<li id="pdftex"><b><a href="texmf-dist/doc/man/man1">pdftex</a></b><small> +<li id="pdftex"><b><a href="texmf-dist/doc/pdftex/">pdftex</a></b><small> (<a href="https://ctan.org/pkg/pdftex">CTAN</a>): -A TeX extension for direct creation of PDF +A TeX extension for direct creation of PDF. <a href="texmf-dist/doc/man/man1/pdfetex.man1.pdf">pdfetex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/pdftex.man1.pdf">pdftex.man1.pdf</a> <a href="texmf-dist/doc/pdftex/manual/pdftex-a.pdf">pdftex-a.pdf</a> @@ -16391,34 +16348,32 @@ A TeX extension for direct creation of PDF <a href="texmf-dist/doc/pdftex/tests/06-pkmap/prepatch.pdf">prepatch.pdf</a>. </small></li> -<li id="pdftexcmds"><b><a href="texmf-dist/doc/latex/pdftexcmds">pdftexcmds</a></b><small> +<li id="pdftexcmds"><b><a href="texmf-dist/doc/latex/pdftexcmds/">pdftexcmds</a></b><small> (<a href="https://ctan.org/pkg/pdftexcmds">CTAN</a>): -LuaTeX support for pdfTeX utility functions +LuaTeX support for pdfTeX utility functions. <a href="texmf-dist/doc/latex/pdftexcmds/pdftexcmds.pdf">pdftexcmds.pdf</a>. </small></li> -<li id="pdftosrc"><b><a href="texmf-dist/doc/man/man1">pdftosrc</a></b><small> -(<a href="https://ctan.org/pkg/pdftosrc">CTAN</a>): -Extract source file or stream from PDF file +<li id="pdftosrc"><b><a href="texmf-dist/doc/man/man1/">pdftosrc</a></b><small> +Extract source file or stream from PDF file. <a href="texmf-dist/doc/man/man1/pdftosrc.man1.pdf">pdftosrc.man1.pdf</a>. </small></li> -<li id="pdftricks"><b><a href="texmf-dist/doc/latex/pdftricks">pdftricks</a></b><small> +<li id="pdftricks"><b><a href="texmf-dist/doc/latex/pdftricks/">pdftricks</a></b><small> (<a href="https://ctan.org/pkg/pdftricks">CTAN</a>): -Support for PSTricks in pdfTeX +Support for PSTricks in pdfTeX. <a href="texmf-dist/doc/latex/pdftricks/manual.pdf">manual.pdf</a> <a href="texmf-dist/doc/latex/pdftricks/test.pdf">test.pdf</a>. </small></li> -<li id="pdftricks2"><b><a href="texmf-dist/doc/latex/pdftricks2">pdftricks2</a></b><small> +<li id="pdftricks2"><b><a href="texmf-dist/doc/latex/pdftricks2/">pdftricks2</a></b><small> (<a href="https://ctan.org/pkg/pdftricks2">CTAN</a>): -Use PSTricks in pdfTeX +Use PSTricks in pdfTeX. <a href="texmf-dist/doc/latex/pdftricks2/pdftricks2-doc.pdf">pdftricks2-doc.pdf</a>. </small></li> -<li id="pdfwin"><b><a href="texmf-dist/doc/latex/pdfwin">pdfwin</a></b><small> -(<a href="https://ctan.org/pkg/pdfwin">CTAN</a>): -customizable windows for screen viewing of TeX documents +<li id="pdfwin"><b><a href="texmf-dist/doc/latex/pdfwin/">pdfwin</a></b><small> +customizable windows for screen viewing of TeX documents. <a href="texmf-dist/doc/latex/pdfwin/BucResampling.pdf">BucResampling.pdf</a> <a href="texmf-dist/doc/latex/pdfwin/BucSystem1.pdf">BucSystem1.pdf</a> <a href="texmf-dist/doc/latex/pdfwin/BucSystem2.pdf">BucSystem2.pdf</a> @@ -16428,87 +16383,87 @@ customizable windows for screen viewing of TeX documents <a href="texmf-dist/doc/latex/pdfwin/BucSystem6.pdf">BucSystem6.pdf</a>. </small></li> -<li id="pdfx"><b><a href="texmf-dist/doc/latex/pdfx">pdfx</a></b><small> +<li id="pdfx"><b><a href="texmf-dist/doc/latex/pdfx/">pdfx</a></b><small> (<a href="https://ctan.org/pkg/pdfx">CTAN</a>): -PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX +PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX. <a href="texmf-dist/doc/latex/pdfx/pdfx.pdf">pdfx.pdf</a>. </small></li> -<li id="pdfxup"><b><a href="texmf-dist/doc/man/man1">pdfxup</a></b><small> +<li id="pdfxup"><b><a href="texmf-dist/doc/support/pdfxup/">pdfxup</a></b><small> (<a href="https://ctan.org/pkg/pdfxup">CTAN</a>): -Create n-up PDF pages with minimal margins +Create n-up PDF pages with minimal margins. <a href="texmf-dist/doc/man/man1/pdfxup.man1.pdf">pdfxup.man1.pdf</a> <a href="texmf-dist/doc/support/pdfxup/pdfxup.pdf">pdfxup.pdf</a>. </small></li> -<li id="pecha"><b><a href="texmf-dist/doc/latex/pecha">pecha</a></b><small> +<li id="pecha"><b><a href="texmf-dist/doc/latex/pecha/">pecha</a></b><small> (<a href="https://ctan.org/pkg/pecha">CTAN</a>): -Print Tibetan text in the classic pecha layout style +Print Tibetan text in the classic pecha layout style. <a href="texmf-dist/doc/latex/pecha/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/pecha/pecha_docu.pdf">pecha_docu.pdf</a>. </small></li> -<li id="pedigree-perl"><b><a href="texmf-dist/doc/man/man1">pedigree-perl</a></b><small> +<li id="pedigree-perl"><b><a href="texmf-dist/doc/support/pedigree-perl/">pedigree-perl</a></b><small> (<a href="https://ctan.org/pkg/pedigree-perl">CTAN</a>): -Generate TeX pedigree files from CSV files +Generate TeX pedigree files from CSV files. <a href="texmf-dist/doc/man/man1/pedigree.man1.pdf">pedigree.man1.pdf</a> <a href="texmf-dist/doc/support/pedigree-perl/doc/pedigree.pdf">pedigree.pdf</a>. </small></li> -<li id="penrose"><b><a href="texmf-dist/doc/latex/penrose">penrose</a></b><small> +<li id="penrose"><b><a href="texmf-dist/doc/latex/penrose/">penrose</a></b><small> (<a href="https://ctan.org/pkg/penrose">CTAN</a>): -A TikZ library for producing Penrose tilings +A TikZ library for producing Penrose tilings. <a href="texmf-dist/doc/latex/penrose/penrose.pdf">penrose.pdf</a> <a href="texmf-dist/doc/latex/penrose/penrose_code.pdf">penrose_code.pdf</a>. </small></li> -<li id="perfectcut"><b><a href="texmf-dist/doc/latex/perfectcut">perfectcut</a></b><small> +<li id="perfectcut"><b><a href="texmf-dist/doc/latex/perfectcut/">perfectcut</a></b><small> (<a href="https://ctan.org/pkg/perfectcut">CTAN</a>): -Nested delimiters that consistently grow regardless of the contents +Nested delimiters that consistently grow regardless of the contents. <a href="texmf-dist/doc/latex/perfectcut/perfectcut.pdf">perfectcut.pdf</a>. </small></li> -<li id="perltex"><b><a href="texmf-dist/doc/latex/perltex">perltex</a></b><small> +<li id="perltex"><b><a href="texmf-dist/doc/latex/perltex/">perltex</a></b><small> (<a href="https://ctan.org/pkg/perltex">CTAN</a>): -Define LaTeX macros in terms of Perl code +Define LaTeX macros in terms of Perl code. <a href="texmf-dist/doc/latex/perltex/perltex.pdf">perltex.pdf</a> <a href="texmf-dist/doc/man/man1/perltex.man1.pdf">perltex.man1.pdf</a>. </small></li> -<li id="permute"><b><a href="texmf-dist/doc/latex/permute">permute</a></b><small> +<li id="permute"><b><a href="texmf-dist/doc/latex/permute/">permute</a></b><small> (<a href="https://ctan.org/pkg/permute">CTAN</a>): -Support for symmetric groups +Support for symmetric groups. <a href="texmf-dist/doc/latex/permute/permute.pdf">permute.pdf</a>. </small></li> -<li id="persian-bib"><b><a href="texmf-dist/doc/xelatex/persian-bib">persian-bib</a></b><small> +<li id="persian-bib"><b><a href="texmf-dist/doc/xelatex/persian-bib/">persian-bib</a></b><small> (<a href="https://ctan.org/pkg/persian-bib">CTAN</a>): -Persian translations of classic BibTeX styles +Persian translations of classic BibTeX styles. <a href="texmf-dist/doc/xelatex/persian-bib/Persian-bib-userguide.pdf">Persian-bib-userguide.pdf</a> (fa). </small></li> -<li id="petiteannonce"><b><a href="texmf-dist/doc/latex/petiteannonce">petiteannonce</a></b><small> +<li id="petiteannonce"><b><a href="texmf-dist/doc/latex/petiteannonce/">petiteannonce</a></b><small> (<a href="https://ctan.org/pkg/petiteannonce">CTAN</a>): -A class for small advertisements +A class for small advertisements. <a href="texmf-dist/doc/latex/petiteannonce/petiteannonce.doc.pdf">petiteannonce.doc.pdf</a> <a href="texmf-dist/doc/latex/petiteannonce/petiteannonceexample.pdf">petiteannonceexample.pdf</a>. </small></li> -<li id="petri-nets"><b><a href="texmf-dist/doc/generic/petri-nets">petri-nets</a></b><small> +<li id="petri-nets"><b><a href="texmf-dist/doc/generic/petri-nets/">petri-nets</a></b><small> (<a href="https://ctan.org/pkg/petri-nets">CTAN</a>): -A set TeX/LaTeX packages for drawing Petri nets +A set TeX/LaTeX packages for drawing Petri nets. <a href="texmf-dist/doc/generic/petri-nets/pndoc.pdf">pndoc.pdf</a>. </small></li> -<li id="pfarrei"><b><a href="texmf-dist/doc/latex/pfarrei">pfarrei</a></b><small> +<li id="pfarrei"><b><a href="texmf-dist/doc/latex/pfarrei/">pfarrei</a></b><small> (<a href="https://ctan.org/pkg/pfarrei">CTAN</a>): -LaTeX support of pastors' and priests' work +LaTeX support of pastors' and priests' work. <a href="texmf-dist/doc/latex/pfarrei/pfarrei.pdf">pfarrei.pdf</a> (de). </small></li> -<li id="pgf"><b><a href="texmf-dist/doc/generic/pgf/images">pgf</a></b><small> +<li id="pgf"><b><a href="texmf-dist/doc/generic/pgf/">pgf</a></b><small> (<a href="https://ctan.org/pkg/pgf">CTAN</a>): -Create PostScript and PDF graphics in TeX +Create PostScript and PDF graphics in TeX. <a href="texmf-dist/doc/generic/pgf/images/pgfmanual-mindmap-1.pdf">pgfmanual-mindmap-1.pdf</a> <a href="texmf-dist/doc/generic/pgf/images/pgfmanual-mindmap-2.pdf">pgfmanual-mindmap-2.pdf</a> <a href="texmf-dist/doc/generic/pgf/pgfmanual.pdf">pgfmanual.pdf</a> @@ -16516,85 +16471,85 @@ Create PostScript and PDF graphics in TeX <a href="texmf-dist/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual.html">pgfmanual.html</a>. </small></li> -<li id="pgf-blur"><b><a href="texmf-dist/doc/latex/pgf-blur">pgf-blur</a></b><small> +<li id="pgf-blur"><b><a href="texmf-dist/doc/latex/pgf-blur/">pgf-blur</a></b><small> (<a href="https://ctan.org/pkg/pgf-blur">CTAN</a>): -PGF/TikZ package for "blurred" shadows +PGF/TikZ package for "blurred" shadows. <a href="texmf-dist/doc/latex/pgf-blur/pgf-blur.pdf">pgf-blur.pdf</a>. </small></li> -<li id="pgf-cmykshadings"><b><a href="texmf-dist/doc/latex/pgf-cmykshadings">pgf-cmykshadings</a></b><small> +<li id="pgf-cmykshadings"><b><a href="texmf-dist/doc/latex/pgf-cmykshadings/">pgf-cmykshadings</a></b><small> (<a href="https://ctan.org/pkg/pgf-cmykshadings">CTAN</a>): -Support for CMYK and grayscale shadings in PGF/TikZ +Support for CMYK and grayscale shadings in PGF/TikZ. <a href="texmf-dist/doc/latex/pgf-cmykshadings/pgf-cmykshadings.pdf">pgf-cmykshadings.pdf</a>. </small></li> -<li id="pgf-soroban"><b><a href="texmf-dist/doc/latex/pgf-soroban">pgf-soroban</a></b><small> +<li id="pgf-soroban"><b><a href="texmf-dist/doc/latex/pgf-soroban/">pgf-soroban</a></b><small> (<a href="https://ctan.org/pkg/pgf-soroban">CTAN</a>): -Create images of the soroban using TikZ/PGF +Create images of the soroban using TikZ/PGF. <a href="texmf-dist/doc/latex/pgf-soroban/pgf-soroban-doc.pdf">pgf-soroban-doc.pdf</a>. </small></li> -<li id="pgf-spectra"><b><a href="texmf-dist/doc/latex/pgf-spectra">pgf-spectra</a></b><small> +<li id="pgf-spectra"><b><a href="texmf-dist/doc/latex/pgf-spectra/">pgf-spectra</a></b><small> (<a href="https://ctan.org/pkg/pgf-spectra">CTAN</a>): -Draw continuous or discrete spectra using PGF/TikZ +Draw continuous or discrete spectra using PGF/TikZ. <a href="texmf-dist/doc/latex/pgf-spectra/pgf-spectraManual.pdf">pgf-spectraManual.pdf</a>. </small></li> -<li id="pgf-umlcd"><b><a href="texmf-dist/doc/latex/pgf-umlcd">pgf-umlcd</a></b><small> +<li id="pgf-umlcd"><b><a href="texmf-dist/doc/latex/pgf-umlcd/">pgf-umlcd</a></b><small> (<a href="https://ctan.org/pkg/pgf-umlcd">CTAN</a>): -Some LaTeX macros for UML Class Diagrams +Some LaTeX macros for UML Class Diagrams. <a href="texmf-dist/doc/latex/pgf-umlcd/pgf-umlcd-manual.pdf">pgf-umlcd-manual.pdf</a>. </small></li> -<li id="pgf-umlsd"><b><a href="texmf-dist/doc/latex/pgf-umlsd">pgf-umlsd</a></b><small> +<li id="pgf-umlsd"><b><a href="texmf-dist/doc/latex/pgf-umlsd/">pgf-umlsd</a></b><small> (<a href="https://ctan.org/pkg/pgf-umlsd">CTAN</a>): -Draw UML Sequence Diagrams +Draw UML Sequence Diagrams. <a href="texmf-dist/doc/latex/pgf-umlsd/diagrams.pdf">diagrams.pdf</a> <a href="texmf-dist/doc/latex/pgf-umlsd/pgf-umlsd-manual.pdf">pgf-umlsd-manual.pdf</a>. </small></li> -<li id="pgfgantt"><b><a href="texmf-dist/doc/latex/pgfgantt">pgfgantt</a></b><small> +<li id="pgfgantt"><b><a href="texmf-dist/doc/latex/pgfgantt/">pgfgantt</a></b><small> (<a href="https://ctan.org/pkg/pgfgantt">CTAN</a>): -Draw Gantt charts with TikZ +Draw Gantt charts with TikZ. <a href="texmf-dist/doc/latex/pgfgantt/pgfgantt.pdf">pgfgantt.pdf</a>. </small></li> -<li id="pgfmolbio"><b><a href="texmf-dist/doc/lualatex/pgfmolbio">pgfmolbio</a></b><small> +<li id="pgfmolbio"><b><a href="texmf-dist/doc/lualatex/pgfmolbio/">pgfmolbio</a></b><small> (<a href="https://ctan.org/pkg/pgfmolbio">CTAN</a>): -Draw graphs typically found in molecular biology texts +Draw graphs typically found in molecular biology texts. <a href="texmf-dist/doc/lualatex/pgfmolbio/pgfmolbio.pdf">pgfmolbio.pdf</a>. </small></li> -<li id="pgfmorepages"><b><a href="texmf-dist/doc/latex/pgfmorepages">pgfmorepages</a></b><small> +<li id="pgfmorepages"><b><a href="texmf-dist/doc/latex/pgfmorepages/">pgfmorepages</a></b><small> (<a href="https://ctan.org/pkg/pgfmorepages">CTAN</a>): -Assemble multiple logical pages onto a physical page +Assemble multiple logical pages onto a physical page. <a href="texmf-dist/doc/latex/pgfmorepages/pgfmorepages.pdf">pgfmorepages.pdf</a>. </small></li> -<li id="pgfopts"><b><a href="texmf-dist/doc/latex/pgfopts">pgfopts</a></b><small> +<li id="pgfopts"><b><a href="texmf-dist/doc/latex/pgfopts/">pgfopts</a></b><small> (<a href="https://ctan.org/pkg/pgfopts">CTAN</a>): -LaTeX package options with pgfkeys +LaTeX package options with pgfkeys. <a href="texmf-dist/doc/latex/pgfopts/pgfopts.pdf">pgfopts.pdf</a>. </small></li> -<li id="pgfornament"><b><a href="texmf-dist/doc/latex/pgfornament">pgfornament</a></b><small> +<li id="pgfornament"><b><a href="texmf-dist/doc/latex/pgfornament/">pgfornament</a></b><small> (<a href="https://ctan.org/pkg/pgfornament">CTAN</a>): -Drawing of Vectorian ornaments with PGF/TikZ +Drawing of Vectorian ornaments with PGF/TikZ. <a href="texmf-dist/doc/latex/pgfornament/ornaments.pdf">ornaments.pdf</a> <a href="texmf-dist/doc/latex/pgfornament/tikzrput.pdf">tikzrput.pdf</a>. </small></li> -<li id="pgfornament-han"><b><a href="texmf-dist/doc/latex/pgfornament-han">pgfornament-han</a></b><small> +<li id="pgfornament-han"><b><a href="texmf-dist/doc/latex/pgfornament-han/">pgfornament-han</a></b><small> (<a href="https://ctan.org/pkg/pgfornament-han">CTAN</a>): -pgfornament library for Chinese traditional motifs and patterns +pgfornament library for Chinese traditional motifs and patterns. <a href="texmf-dist/doc/latex/pgfornament-han/heavenlyclouds-sample.pdf">heavenlyclouds-sample.pdf</a> (zh) <a href="texmf-dist/doc/latex/pgfornament-han/pgfornament-han_manual.pdf">pgfornament-han_manual.pdf</a> (zh) <a href="texmf-dist/doc/latex/pgfornament-han/xiaoshan-sample.pdf">xiaoshan-sample.pdf</a> (zh). </small></li> -<li id="pgfplots"><b><a href="texmf-dist/doc/context/third/pgfplots">pgfplots</a></b><small> +<li id="pgfplots"><b><a href="texmf-dist/doc/context/third/pgfplots/">pgfplots</a></b><small> (<a href="https://ctan.org/pkg/pgfplots">CTAN</a>): -Create normal/logarithmic plots in two and three dimensions +Create normal/logarithmic plots in two and three dimensions. <a href="texmf-dist/doc/context/third/pgfplots/pgfplotsexample-context.pdf">pgfplotsexample-context.pdf</a> <a href="texmf-dist/doc/latex/pgfplots/TeX-programming-notes.pdf">TeX-programming-notes.pdf</a> <a href="texmf-dist/doc/latex/pgfplots/pgfplots.pdf">pgfplots.pdf</a> @@ -16604,167 +16559,167 @@ Create normal/logarithmic plots in two and three dimensions <a href="texmf-dist/doc/plain/pgfplots/pgfplotsexample-plain.pdf">pgfplotsexample-plain.pdf</a>. </small></li> -<li id="phaistos"><b><a href="texmf-dist/doc/fonts/phaistos">phaistos</a></b><small> +<li id="phaistos"><b><a href="texmf-dist/doc/fonts/phaistos/">phaistos</a></b><small> (<a href="https://ctan.org/pkg/phaistos">CTAN</a>): -Disk of Phaistos font +Disk of Phaistos font. <a href="texmf-dist/doc/fonts/phaistos/glyphTable.pdf">glyphTable.pdf</a>. </small></li> -<li id="phffullpagefigure"><b><a href="texmf-dist/doc/latex/phffullpagefigure">phffullpagefigure</a></b><small> +<li id="phffullpagefigure"><b><a href="texmf-dist/doc/latex/phffullpagefigure/">phffullpagefigure</a></b><small> (<a href="https://ctan.org/pkg/phffullpagefigure">CTAN</a>): -Figures which fill up a whole page +Figures which fill up a whole page. <a href="texmf-dist/doc/latex/phffullpagefigure/phffullpagefigure.pdf">phffullpagefigure.pdf</a>. </small></li> -<li id="phfnote"><b><a href="texmf-dist/doc/latex/phfnote">phfnote</a></b><small> +<li id="phfnote"><b><a href="texmf-dist/doc/latex/phfnote/">phfnote</a></b><small> (<a href="https://ctan.org/pkg/phfnote">CTAN</a>): -Basic formatting for short documents +Basic formatting for short documents. <a href="texmf-dist/doc/latex/phfnote/phfnote.pdf">phfnote.pdf</a>. </small></li> -<li id="phfparen"><b><a href="texmf-dist/doc/latex/phfparen">phfparen</a></b><small> +<li id="phfparen"><b><a href="texmf-dist/doc/latex/phfparen/">phfparen</a></b><small> (<a href="https://ctan.org/pkg/phfparen">CTAN</a>): -Parenthetic math expressions made simpler and less redundant +Parenthetic math expressions made simpler and less redundant. <a href="texmf-dist/doc/latex/phfparen/phfparen.pdf">phfparen.pdf</a>. </small></li> -<li id="phfqit"><b><a href="texmf-dist/doc/latex/phfqit">phfqit</a></b><small> +<li id="phfqit"><b><a href="texmf-dist/doc/latex/phfqit/">phfqit</a></b><small> (<a href="https://ctan.org/pkg/phfqit">CTAN</a>): -Macros for typesetting Quantum Information Theory +Macros for typesetting Quantum Information Theory. <a href="texmf-dist/doc/latex/phfqit/phfqit.pdf">phfqit.pdf</a>. </small></li> -<li id="phfquotetext"><b><a href="texmf-dist/doc/latex/phfquotetext">phfquotetext</a></b><small> +<li id="phfquotetext"><b><a href="texmf-dist/doc/latex/phfquotetext/">phfquotetext</a></b><small> (<a href="https://ctan.org/pkg/phfquotetext">CTAN</a>): -Quote verbatim text without white space formatting +Quote verbatim text without white space formatting. <a href="texmf-dist/doc/latex/phfquotetext/phfquotetext.pdf">phfquotetext.pdf</a>. </small></li> -<li id="phfsvnwatermark"><b><a href="texmf-dist/doc/latex/phfsvnwatermark">phfsvnwatermark</a></b><small> +<li id="phfsvnwatermark"><b><a href="texmf-dist/doc/latex/phfsvnwatermark/">phfsvnwatermark</a></b><small> (<a href="https://ctan.org/pkg/phfsvnwatermark">CTAN</a>): -Watermarks with version control information from SVN +Watermarks with version control information from SVN. <a href="texmf-dist/doc/latex/phfsvnwatermark/phfsvnwatermark.pdf">phfsvnwatermark.pdf</a>. </small></li> -<li id="phfthm"><b><a href="texmf-dist/doc/latex/phfthm">phfthm</a></b><small> +<li id="phfthm"><b><a href="texmf-dist/doc/latex/phfthm/">phfthm</a></b><small> (<a href="https://ctan.org/pkg/phfthm">CTAN</a>): -Goodies for theorems and proofs +Goodies for theorems and proofs. <a href="texmf-dist/doc/latex/phfthm/phfthm.pdf">phfthm.pdf</a>. </small></li> -<li id="philex"><b><a href="texmf-dist/doc/latex/philex">philex</a></b><small> +<li id="philex"><b><a href="texmf-dist/doc/latex/philex/">philex</a></b><small> (<a href="https://ctan.org/pkg/philex">CTAN</a>): -Cross references for named and numbered environments +Cross references for named and numbered environments. <a href="texmf-dist/doc/latex/philex/philexmanual.pdf">philexmanual.pdf</a>. </small></li> -<li id="philokalia"><b><a href="texmf-dist/doc/xelatex/philokalia">philokalia</a></b><small> +<li id="philokalia"><b><a href="texmf-dist/doc/xelatex/philokalia/">philokalia</a></b><small> (<a href="https://ctan.org/pkg/philokalia">CTAN</a>): -A font to typeset the Philokalia Books +A font to typeset the Philokalia Books. <a href="texmf-dist/doc/xelatex/philokalia/philokalia.pdf">philokalia.pdf</a>. </small></li> -<li id="philosophersimprint"><b><a href="texmf-dist/doc/latex/philosophersimprint">philosophersimprint</a></b><small> +<li id="philosophersimprint"><b><a href="texmf-dist/doc/latex/philosophersimprint/">philosophersimprint</a></b><small> (<a href="https://ctan.org/pkg/philosophersimprint">CTAN</a>): -Typesetting articles for "Philosophers' Imprint" +Typesetting articles for "Philosophers' Imprint". <a href="texmf-dist/doc/latex/philosophersimprint/philosophersimprint.pdf">philosophersimprint.pdf</a> <a href="texmf-dist/doc/latex/philosophersimprint/sample.pdf">sample.pdf</a>. </small></li> -<li id="phonenumbers"><b><a href="texmf-dist/doc/latex/phonenumbers">phonenumbers</a></b><small> +<li id="phonenumbers"><b><a href="texmf-dist/doc/latex/phonenumbers/">phonenumbers</a></b><small> (<a href="https://ctan.org/pkg/phonenumbers">CTAN</a>): -Typesetting telephone numbers with LaTeX +Typesetting telephone numbers with LaTeX. <a href="texmf-dist/doc/latex/phonenumbers/phonenumbers-de.pdf">phonenumbers-de.pdf</a> (de) <a href="texmf-dist/doc/latex/phonenumbers/phonenumbers-en.pdf">phonenumbers-en.pdf</a> (en-gb). </small></li> -<li id="phonetic"><b><a href="texmf-dist/doc/fonts/phonetic">phonetic</a></b><small> +<li id="phonetic"><b><a href="texmf-dist/doc/fonts/phonetic/">phonetic</a></b><small> (<a href="https://ctan.org/pkg/phonetic">CTAN</a>): -Metafont Phonetic fonts, based on Computer Modern +Metafont Phonetic fonts, based on Computer Modern. <a href="texmf-dist/doc/fonts/phonetic/phonetic-table.pdf">phonetic-table.pdf</a>. </small></li> -<li id="phonrule"><b><a href="texmf-dist/doc/latex/phonrule">phonrule</a></b><small> +<li id="phonrule"><b><a href="texmf-dist/doc/latex/phonrule/">phonrule</a></b><small> (<a href="https://ctan.org/pkg/phonrule">CTAN</a>): -Typeset linear phonological rules +Typeset linear phonological rules. <a href="texmf-dist/doc/latex/phonrule/phonrule-doc.pdf">phonrule-doc.pdf</a>. </small></li> -<li id="photo"><b><a href="texmf-dist/doc/latex/photo">photo</a></b><small> +<li id="photo"><b><a href="texmf-dist/doc/latex/photo/">photo</a></b><small> (<a href="https://ctan.org/pkg/photo">CTAN</a>): -A float environment for photographs +A float environment for photographs. <a href="texmf-dist/doc/latex/photo/photo.pdf">photo.pdf</a>. </small></li> -<li id="physconst"><b><a href="texmf-dist/doc/latex/physconst">physconst</a></b><small> +<li id="physconst"><b><a href="texmf-dist/doc/latex/physconst/">physconst</a></b><small> (<a href="https://ctan.org/pkg/physconst">CTAN</a>): -Macros for commonly used physical constants +Macros for commonly used physical constants. <a href="texmf-dist/doc/latex/physconst/physconst.pdf">physconst.pdf</a>. </small></li> -<li id="physics"><b><a href="texmf-dist/doc/latex/physics">physics</a></b><small> +<li id="physics"><b><a href="texmf-dist/doc/latex/physics/">physics</a></b><small> (<a href="https://ctan.org/pkg/physics">CTAN</a>): -Macros supporting the Mathematics of Physics +Macros supporting the Mathematics of Physics. <a href="texmf-dist/doc/latex/physics/physics.pdf">physics.pdf</a>. </small></li> -<li id="physunits"><b><a href="texmf-dist/doc/latex/physunits">physunits</a></b><small> +<li id="physunits"><b><a href="texmf-dist/doc/latex/physunits/">physunits</a></b><small> (<a href="https://ctan.org/pkg/physunits">CTAN</a>): -Macros for commonly used physical units +Macros for commonly used physical units. <a href="texmf-dist/doc/latex/physunits/physunits.pdf">physunits.pdf</a>. </small></li> -<li id="picinpar"><b><a href="texmf-dist/doc/latex/picinpar">picinpar</a></b><small> +<li id="picinpar"><b><a href="texmf-dist/doc/latex/picinpar/">picinpar</a></b><small> (<a href="https://ctan.org/pkg/picinpar">CTAN</a>): -Insert pictures into paragraphs +Insert pictures into paragraphs. <a href="texmf-dist/doc/latex/picinpar/picinpar-de.pdf">picinpar-de.pdf</a> (de) <a href="texmf-dist/doc/latex/picinpar/picinpar-en.pdf">picinpar-en.pdf</a>. </small></li> -<li id="pict2e"><b><a href="texmf-dist/doc/latex/pict2e">pict2e</a></b><small> +<li id="pict2e"><b><a href="texmf-dist/doc/latex/pict2e/">pict2e</a></b><small> (<a href="https://ctan.org/pkg/pict2e">CTAN</a>): -New implementation of picture commands +New implementation of picture commands. <a href="texmf-dist/doc/latex/pict2e/p2e-drivers.pdf">p2e-drivers.pdf</a> <a href="texmf-dist/doc/latex/pict2e/pict2e.pdf">pict2e.pdf</a>. </small></li> -<li id="pictexsum"><b><a href="texmf-dist/doc/latex/pictexsum">pictexsum</a></b><small> +<li id="pictexsum"><b><a href="texmf-dist/doc/latex/pictexsum/">pictexsum</a></b><small> (<a href="https://ctan.org/pkg/pictexsum">CTAN</a>): -A summary of PicTeX commands +A summary of PicTeX commands. <a href="texmf-dist/doc/latex/pictexsum/pictexsum.pdf">pictexsum.pdf</a>. </small></li> -<li id="picture"><b><a href="texmf-dist/doc/latex/picture">picture</a></b><small> +<li id="picture"><b><a href="texmf-dist/doc/latex/picture/">picture</a></b><small> (<a href="https://ctan.org/pkg/picture">CTAN</a>): -Dimens for picture macros +Dimens for picture macros. <a href="texmf-dist/doc/latex/picture/picture.pdf">picture.pdf</a>. </small></li> -<li id="piechartmp"><b><a href="texmf-dist/doc/metapost/piechartmp/examples">piechartmp</a></b><small> +<li id="piechartmp"><b><a href="texmf-dist/doc/metapost/piechartmp/">piechartmp</a></b><small> (<a href="https://ctan.org/pkg/piechartmp">CTAN</a>): -Draw pie-charts using MetaPost +Draw pie-charts using MetaPost. <a href="texmf-dist/doc/metapost/piechartmp/examples/wec-mfun.pdf">wec-mfun.pdf</a> <a href="texmf-dist/doc/metapost/piechartmp/examples/wec.pdf">wec.pdf</a>. </small></li> -<li id="piff"><b><a href="texmf-dist/doc/latex/piff">piff</a></b><small> +<li id="piff"><b><a href="texmf-dist/doc/latex/piff/">piff</a></b><small> (<a href="https://ctan.org/pkg/piff">CTAN</a>): -Macro tools by Mike Piff +Macro tools by Mike Piff. <a href="texmf-dist/doc/latex/piff/duplicat-doc.pdf">duplicat-doc.pdf</a> <a href="texmf-dist/doc/latex/piff/newproof-doc.pdf">newproof-doc.pdf</a> <a href="texmf-dist/doc/latex/piff/onepagem-doc.pdf">onepagem-doc.pdf</a> <a href="texmf-dist/doc/latex/piff/time-doc.pdf">time-doc.pdf</a>. </small></li> -<li id="pigpen"><b><a href="texmf-dist/doc/latex/pigpen">pigpen</a></b><small> +<li id="pigpen"><b><a href="texmf-dist/doc/latex/pigpen/">pigpen</a></b><small> (<a href="https://ctan.org/pkg/pigpen">CTAN</a>): -A font for the pigpen (or masonic) cipher +A font for the pigpen (or masonic) cipher. <a href="texmf-dist/doc/latex/pigpen/pigpendoc.pdf">pigpendoc.pdf</a>. </small></li> -<li id="pinlabel"><b><a href="texmf-dist/doc/latex/pinlabel">pinlabel</a></b><small> +<li id="pinlabel"><b><a href="texmf-dist/doc/latex/pinlabel/">pinlabel</a></b><small> (<a href="https://ctan.org/pkg/pinlabel">CTAN</a>): -A TeX labelling package +A TeX labelling package. <a href="texmf-dist/doc/latex/pinlabel/pinlabdoc.pdf">pinlabdoc.pdf</a> <a href="texmf-dist/doc/latex/pinlabel/src/fig3.pdf">fig3.pdf</a> <a href="texmf-dist/doc/latex/pinlabel/src/fig6.pdf">fig6.pdf</a> @@ -16773,96 +16728,96 @@ A TeX labelling package <a href="texmf-dist/doc/latex/pinlabel/src/screen.pdf">screen.pdf</a>. </small></li> -<li id="pinoutikz"><b><a href="texmf-dist/doc/latex/pinoutikz">pinoutikz</a></b><small> +<li id="pinoutikz"><b><a href="texmf-dist/doc/latex/pinoutikz/">pinoutikz</a></b><small> (<a href="https://ctan.org/pkg/pinoutikz">CTAN</a>): -Draw chip pinouts with TikZ +Draw chip pinouts with TikZ. <a href="texmf-dist/doc/latex/pinoutikz/pinoutikz_doc_en.pdf">pinoutikz_doc_en.pdf</a>. </small></li> -<li id="pitex"><b><a href="texmf-dist/doc/plain/pitex">pitex</a></b><small> +<li id="pitex"><b><a href="texmf-dist/doc/plain/pitex/">pitex</a></b><small> (<a href="https://ctan.org/pkg/pitex">CTAN</a>): -Documentation macros +Documentation macros. <a href="texmf-dist/doc/plain/pitex/pitex-doc.pdf">pitex-doc.pdf</a>. </small></li> -<li id="pittetd"><b><a href="texmf-dist/doc/latex/pittetd">pittetd</a></b><small> +<li id="pittetd"><b><a href="texmf-dist/doc/latex/pittetd/">pittetd</a></b><small> (<a href="https://ctan.org/pkg/pittetd">CTAN</a>): -Electronic Theses and Dissertations at Pitt +Electronic Theses and Dissertations at Pitt. <a href="texmf-dist/doc/latex/pittetd/pittetd.pdf">pittetd.pdf</a>. </small></li> -<li id="pixelart"><b><a href="texmf-dist/doc/latex/pixelart">pixelart</a></b><small> +<li id="pixelart"><b><a href="texmf-dist/doc/latex/pixelart/">pixelart</a></b><small> (<a href="https://ctan.org/pkg/pixelart">CTAN</a>): -A package to draw pixel-art pictures +A package to draw pixel-art pictures. <a href="texmf-dist/doc/latex/pixelart/pixelart.pdf">pixelart.pdf</a>. </small></li> -<li id="pkfix-helper"><b><a href="texmf-dist/doc/man/man1">pkfix-helper</a></b><small> +<li id="pkfix-helper"><b><a href="texmf-dist/doc/support/pkfix-helper/">pkfix-helper</a></b><small> (<a href="https://ctan.org/pkg/pkfix-helper">CTAN</a>): -Make PostScript files accessible to pkfix +Make PostScript files accessible to pkfix. <a href="texmf-dist/doc/man/man1/pkfix-helper.man1.pdf">pkfix-helper.man1.pdf</a> <a href="texmf-dist/doc/support/pkfix-helper/encoding-samples.pdf">encoding-samples.pdf</a>. </small></li> -<li id="pkgloader"><b><a href="texmf-dist/doc/latex/pkgloader">pkgloader</a></b><small> +<li id="pkgloader"><b><a href="texmf-dist/doc/latex/pkgloader/">pkgloader</a></b><small> (<a href="https://ctan.org/pkg/pkgloader">CTAN</a>): -Manage the options and loading order of other packages +Manage the options and loading order of other packages. <a href="texmf-dist/doc/latex/pkgloader/pkgloader.pdf">pkgloader.pdf</a>. </small></li> -<li id="pkuthss"><b><a href="texmf-dist/doc/latex/pkuthss">pkuthss</a></b><small> +<li id="pkuthss"><b><a href="texmf-dist/doc/latex/pkuthss/">pkuthss</a></b><small> (<a href="https://ctan.org/pkg/pkuthss">CTAN</a>): -LaTeX template for dissertations in Peking University +LaTeX template for dissertations in Peking University. <a href="texmf-dist/doc/latex/pkuthss/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/pkuthss/pkuthss.pdf">pkuthss.pdf</a> (zh). </small></li> -<li id="placeat"><b><a href="texmf-dist/doc/lualatex/placeat">placeat</a></b><small> +<li id="placeat"><b><a href="texmf-dist/doc/lualatex/placeat/">placeat</a></b><small> (<a href="https://ctan.org/pkg/placeat">CTAN</a>): -Absolute content positioning +Absolute content positioning. <a href="texmf-dist/doc/lualatex/placeat/placeat.pdf">placeat.pdf</a>. </small></li> -<li id="placeins"><b><a href="texmf-dist/doc/latex/placeins">placeins</a></b><small> +<li id="placeins"><b><a href="texmf-dist/doc/latex/placeins/">placeins</a></b><small> (<a href="https://ctan.org/pkg/placeins">CTAN</a>): -Control float placement +Control float placement. <a href="texmf-dist/doc/latex/placeins/placeins-doc.pdf">placeins-doc.pdf</a>. </small></li> -<li id="plainpkg"><b><a href="texmf-dist/doc/generic/plainpkg">plainpkg</a></b><small> +<li id="plainpkg"><b><a href="texmf-dist/doc/generic/plainpkg/">plainpkg</a></b><small> (<a href="https://ctan.org/pkg/plainpkg">CTAN</a>): -A minimal method for making generic packages +A minimal method for making generic packages. <a href="texmf-dist/doc/generic/plainpkg/plainpkg-doc.pdf">plainpkg-doc.pdf</a>. </small></li> -<li id="plantslabels"><b><a href="texmf-dist/doc/latex/plantslabels/doc/pdf">plantslabels</a></b><small> +<li id="plantslabels"><b><a href="texmf-dist/doc/latex/plantslabels/doc/pdf/">plantslabels</a></b><small> (<a href="https://ctan.org/pkg/plantslabels">CTAN</a>): -Write labels for plants +Write labels for plants. <a href="texmf-dist/doc/latex/plantslabels/doc/pdf/plantslabels.pdf">plantslabels.pdf</a> <a href="texmf-dist/doc/latex/plantslabels/example/pdf/example.pdf">example.pdf</a>. </small></li> -<li id="plantuml"><b><a href="texmf-dist/doc/lualatex/plantuml">plantuml</a></b><small> +<li id="plantuml"><b><a href="texmf-dist/doc/lualatex/plantuml/">plantuml</a></b><small> (<a href="https://ctan.org/pkg/plantuml">CTAN</a>): -Support for rendering UML diagrams using the syntax and tool of PlantUML +Support for rendering UML diagrams using the syntax and tool of PlantUML. <a href="texmf-dist/doc/lualatex/plantuml/plantuml.pdf">plantuml.pdf</a>. </small></li> -<li id="plari"><b><a href="texmf-dist/doc/latex/plari">plari</a></b><small> +<li id="plari"><b><a href="texmf-dist/doc/latex/plari/">plari</a></b><small> (<a href="https://ctan.org/pkg/plari">CTAN</a>): -Typesetting stageplay scripts +Typesetting stageplay scripts. <a href="texmf-dist/doc/latex/plari/plari.pdf">plari.pdf</a>. </small></li> -<li id="plates"><b><a href="texmf-dist/doc/latex/plates">plates</a></b><small> +<li id="plates"><b><a href="texmf-dist/doc/latex/plates/">plates</a></b><small> (<a href="https://ctan.org/pkg/plates">CTAN</a>): -Arrange for "plates" sections of documents +Arrange for "plates" sections of documents. <a href="texmf-dist/doc/latex/plates/plates.pdf">plates.pdf</a>. </small></li> -<li id="platex"><b><a href="texmf-dist/doc/man/man1">platex</a></b><small> +<li id="platex"><b><a href="texmf-dist/doc/platex/base/">platex</a></b><small> (<a href="https://ctan.org/pkg/platex">CTAN</a>): -pLaTeX2e and miscellaneous macros for pTeX +pLaTeX2e and miscellaneous macros for pTeX. <a href="texmf-dist/doc/man/man1/platex.man1.pdf">platex.man1.pdf</a> <a href="texmf-dist/doc/platex/base/exppl2e.pdf">exppl2e.pdf</a> <a href="texmf-dist/doc/platex/base/platex-en.pdf">platex-en.pdf</a> @@ -16871,9 +16826,9 @@ pLaTeX2e and miscellaneous macros for pTeX <a href="texmf-dist/doc/platex/base/pldoc.pdf">pldoc.pdf</a>. </small></li> -<li id="platex-tools"><b><a href="texmf-dist/doc/latex/platex-tools">platex-tools</a></b><small> +<li id="platex-tools"><b><a href="texmf-dist/doc/latex/platex-tools/">platex-tools</a></b><small> (<a href="https://ctan.org/pkg/platex-tools">CTAN</a>): -pLaTeX standard tools bundle +pLaTeX standard tools bundle. <a href="texmf-dist/doc/latex/platex-tools/plarray.pdf">plarray.pdf</a> (ja) <a href="texmf-dist/doc/latex/platex-tools/plextarray.pdf">plextarray.pdf</a> (ja) <a href="texmf-dist/doc/latex/platex-tools/plextdelarray.pdf">plextdelarray.pdf</a> (ja) @@ -16885,87 +16840,86 @@ pLaTeX standard tools bundle <a href="texmf-dist/doc/latex/platex-tools/pxxspace.pdf">pxxspace.pdf</a> (ja). </small></li> -<li id="platexcheat"><b><a href="texmf-dist/doc/latex/platexcheat">platexcheat</a></b><small> +<li id="platexcheat"><b><a href="texmf-dist/doc/latex/platexcheat/">platexcheat</a></b><small> (<a href="https://ctan.org/pkg/platexcheat">CTAN</a>): -A LaTeX cheat sheet, in Japanese +A LaTeX cheat sheet, in Japanese. <a href="texmf-dist/doc/latex/platexcheat/platexsheet-jsclasses.pdf">platexsheet-jsclasses.pdf</a> <a href="texmf-dist/doc/latex/platexcheat/platexsheet.pdf">platexsheet.pdf</a> (ja) <a href="texmf-dist/doc/latex/platexcheat/sample-jsclasses.pdf">sample-jsclasses.pdf</a> (ja) <a href="texmf-dist/doc/latex/platexcheat/sample.pdf">sample.pdf</a>. </small></li> -<li id="plautopatch"><b><a href="texmf-dist/doc/latex/plautopatch">plautopatch</a></b><small> +<li id="plautopatch"><b><a href="texmf-dist/doc/latex/plautopatch/">plautopatch</a></b><small> (<a href="https://ctan.org/pkg/plautopatch">CTAN</a>): -Automated patches for pLaTeX/upLaTeX +Automated patches for pLaTeX/upLaTeX. <a href="texmf-dist/doc/latex/plautopatch/plautopatch-ja.pdf">plautopatch-ja.pdf</a> (ja) <a href="texmf-dist/doc/latex/plautopatch/plautopatch.pdf">plautopatch.pdf</a>. </small></li> -<li id="playfair"><b><a href="texmf-dist/doc/fonts/playfair">playfair</a></b><small> +<li id="playfair"><b><a href="texmf-dist/doc/fonts/playfair/">playfair</a></b><small> (<a href="https://ctan.org/pkg/playfair">CTAN</a>): -Playfair Display fonts with LaTeX support +Playfair Display fonts with LaTeX support. <a href="texmf-dist/doc/fonts/playfair/Playfair_Display_A4_specimen.pdf">Playfair_Display_A4_specimen.pdf</a> <a href="texmf-dist/doc/fonts/playfair/playfair-samples.pdf">playfair-samples.pdf</a>. </small></li> -<li id="plex"><b><a href="texmf-dist/doc/fonts/plex">plex</a></b><small> +<li id="plex"><b><a href="texmf-dist/doc/fonts/plex/">plex</a></b><small> (<a href="https://ctan.org/pkg/plex">CTAN</a>): -Support for IBM Plex fonts +Support for IBM Plex fonts. <a href="texmf-dist/doc/fonts/plex/plex-samples.pdf">plex-samples.pdf</a>. </small></li> -<li id="plex-otf"><b><a href="texmf-dist/doc/fonts/plex-otf">plex-otf</a></b><small> +<li id="plex-otf"><b><a href="texmf-dist/doc/fonts/plex-otf/">plex-otf</a></b><small> (<a href="https://ctan.org/pkg/plex-otf">CTAN</a>): -Support for the OpenType font IBM Plex +Support for the OpenType font IBM Plex. <a href="texmf-dist/doc/fonts/plex-otf/plex-otf-doc.pdf">plex-otf-doc.pdf</a>. </small></li> -<li id="plipsum"><b><a href="texmf-dist/doc/plain/plipsum">plipsum</a></b><small> +<li id="plipsum"><b><a href="texmf-dist/doc/plain/plipsum/">plipsum</a></b><small> (<a href="https://ctan.org/pkg/plipsum">CTAN</a>): -'Lorem ipsum' for Plain TeX developers +'Lorem ipsum' for Plain TeX developers. <a href="texmf-dist/doc/plain/plipsum/plipsum-doc.pdf">plipsum-doc.pdf</a>. </small></li> -<li id="plstmary"><b><a href="texmf-dist/doc/plain/plstmary">plstmary</a></b><small> +<li id="plstmary"><b><a href="texmf-dist/doc/plain/plstmary/">plstmary</a></b><small> (<a href="https://ctan.org/pkg/plstmary">CTAN</a>): -St. Mary's Road font support for plain TeX +St. Mary's Road font support for plain TeX. <a href="texmf-dist/doc/plain/plstmary/plstmary-doc.pdf">plstmary-doc.pdf</a>. </small></li> -<li id="plweb"><b><a href="texmf-dist/doc/latex/plweb">plweb</a></b><small> -(<a href="https://ctan.org/pkg/plweb">CTAN</a>): -Literate Programming for Prolog with LaTeX +<li id="plweb"><b><a href="texmf-dist/doc/latex/plweb/">plweb</a></b><small> +Literate Programming for Prolog with LaTeX. <a href="texmf-dist/doc/latex/plweb/pl.pdf">pl.pdf</a>. </small></li> -<li id="pm-isomath"><b><a href="texmf-dist/doc/latex/pm-isomath">pm-isomath</a></b><small> +<li id="pm-isomath"><b><a href="texmf-dist/doc/latex/pm-isomath/">pm-isomath</a></b><small> (<a href="https://ctan.org/pkg/pm-isomath">CTAN</a>): -Poor man ISO math for pdfLaTeX users +Poor man ISO math for pdfLaTeX users. <a href="texmf-dist/doc/latex/pm-isomath/pm-isomath.pdf">pm-isomath.pdf</a>. </small></li> -<li id="pmboxdraw"><b><a href="texmf-dist/doc/latex/pmboxdraw">pmboxdraw</a></b><small> +<li id="pmboxdraw"><b><a href="texmf-dist/doc/latex/pmboxdraw/">pmboxdraw</a></b><small> (<a href="https://ctan.org/pkg/pmboxdraw">CTAN</a>): -Poor man's box drawing characters +Poor man's box drawing characters. <a href="texmf-dist/doc/latex/pmboxdraw/pmboxdraw.pdf">pmboxdraw.pdf</a>. </small></li> -<li id="pmgraph"><b><a href="texmf-dist/doc/latex/pmgraph">pmgraph</a></b><small> +<li id="pmgraph"><b><a href="texmf-dist/doc/latex/pmgraph/">pmgraph</a></b><small> (<a href="https://ctan.org/pkg/pmgraph">CTAN</a>): -"Poor man's" graphics +"Poor man's" graphics. <a href="texmf-dist/doc/latex/pmgraph/pmgraph.pdf">pmgraph.pdf</a>. </small></li> -<li id="pmhanguljamo"><b><a href="texmf-dist/doc/latex/pmhanguljamo">pmhanguljamo</a></b><small> +<li id="pmhanguljamo"><b><a href="texmf-dist/doc/latex/pmhanguljamo/">pmhanguljamo</a></b><small> (<a href="https://ctan.org/pkg/pmhanguljamo">CTAN</a>): -Poor man's Hangul Jamo input method +Poor man's Hangul Jamo input method. <a href="texmf-dist/doc/latex/pmhanguljamo/pmhanguljamo-doc.pdf">pmhanguljamo-doc.pdf</a> <a href="texmf-dist/doc/latex/pmhanguljamo/pmhanguljamo-kdoc.pdf">pmhanguljamo-kdoc.pdf</a> (ko). </small></li> -<li id="pmx"><b><a href="texmf-dist/doc/generic/pmx">pmx</a></b><small> +<li id="pmx"><b><a href="texmf-dist/doc/generic/pmx/">pmx</a></b><small> (<a href="https://ctan.org/pkg/pmx">CTAN</a>): -Preprocessor for MusiXTeX +Preprocessor for MusiXTeX. <a href="texmf-dist/doc/generic/pmx/pmx-install.pdf">pmx-install.pdf</a> <a href="texmf-dist/doc/generic/pmx/pmx294.pdf">pmx294.pdf</a> <a href="texmf-dist/doc/generic/pmx/pmxab.pdf">pmxab.pdf</a> @@ -16975,9 +16929,9 @@ Preprocessor for MusiXTeX <a href="texmf-dist/doc/man/man1/scor2prt.man1.pdf">scor2prt.man1.pdf</a>. </small></li> -<li id="pmxchords"><b><a href="texmf-dist/doc/man/man1">pmxchords</a></b><small> +<li id="pmxchords"><b><a href="texmf-dist/doc/pmxchords/">pmxchords</a></b><small> (<a href="https://ctan.org/pkg/pmxchords">CTAN</a>): -Produce chord information to go with pmx output +Produce chord information to go with pmx output. <a href="texmf-dist/doc/man/man1/pmxchords.man1.pdf">pmxchords.man1.pdf</a> <a href="texmf-dist/doc/pmxchords/chordsRef.pdf">chordsRef.pdf</a> <a href="texmf-dist/doc/pmxchords/chordsRefCZ.pdf">chordsRefCZ.pdf</a> (cs) @@ -16989,47 +16943,47 @@ Produce chord information to go with pmx output <a href="texmf-dist/doc/pmxchords/pmxchords-install.pdf">pmxchords-install.pdf</a>. </small></li> -<li id="poemscol"><b><a href="texmf-dist/doc/latex/poemscol">poemscol</a></b><small> +<li id="poemscol"><b><a href="texmf-dist/doc/latex/poemscol/">poemscol</a></b><small> (<a href="https://ctan.org/pkg/poemscol">CTAN</a>): -Typesetting Critical Editions of Poetry +Typesetting Critical Editions of Poetry. <a href="texmf-dist/doc/latex/poemscol/poemscol.pdf">poemscol.pdf</a> <a href="texmf-dist/doc/latex/poemscol/poemscolcheatsheet.pdf">poemscolcheatsheet.pdf</a>. </small></li> -<li id="poetry"><b><a href="texmf-dist/doc/latex/poetry">poetry</a></b><small> +<li id="poetry"><b><a href="texmf-dist/doc/latex/poetry/">poetry</a></b><small> (<a href="https://ctan.org/pkg/poetry">CTAN</a>): -Facilities for typesetting poetry and poetical structure +Facilities for typesetting poetry and poetical structure. <a href="texmf-dist/doc/latex/poetry/poetry.pdf">poetry.pdf</a>. </small></li> -<li id="poetrytex"><b><a href="texmf-dist/doc/latex/poetrytex">poetrytex</a></b><small> +<li id="poetrytex"><b><a href="texmf-dist/doc/latex/poetrytex/">poetrytex</a></b><small> (<a href="https://ctan.org/pkg/poetrytex">CTAN</a>): -Typeset anthologies of poetry +Typeset anthologies of poetry. <a href="texmf-dist/doc/latex/poetrytex/poetrytex.pdf">poetrytex.pdf</a>. </small></li> -<li id="poiretone"><b><a href="texmf-dist/doc/fonts/poiretone">poiretone</a></b><small> +<li id="poiretone"><b><a href="texmf-dist/doc/fonts/poiretone/">poiretone</a></b><small> (<a href="https://ctan.org/pkg/poiretone">CTAN</a>): -poiretone fonts with LaTeX support +poiretone fonts with LaTeX support. <a href="texmf-dist/doc/fonts/poiretone/poiret-samples.pdf">poiret-samples.pdf</a>. </small></li> -<li id="polexpr"><b><a href="texmf-dist/doc/latex/polexpr">polexpr</a></b><small> +<li id="polexpr"><b><a href="texmf-dist/doc/latex/polexpr/">polexpr</a></b><small> (<a href="https://ctan.org/pkg/polexpr">CTAN</a>): -A parser for polynomial expressions +A parser for polynomial expressions. <a href="texmf-dist/doc/latex/polexpr/polexpr.html">polexpr.html</a>. </small></li> -<li id="polski"><b><a href="texmf-dist/doc/latex/polski">polski</a></b><small> +<li id="polski"><b><a href="texmf-dist/doc/latex/polski/">polski</a></b><small> (<a href="https://ctan.org/pkg/polski">CTAN</a>): -Typeset Polish documents with LaTeX and Polish fonts +Typeset Polish documents with LaTeX and Polish fonts. <a href="texmf-dist/doc/latex/polski/polski.pdf">polski.pdf</a> (pl) <a href="texmf-dist/doc/latex/polski/sample-polski.pdf">sample-polski.pdf</a> (pl). </small></li> -<li id="poltawski"><b><a href="texmf-dist/doc/fonts/poltawski">poltawski</a></b><small> +<li id="poltawski"><b><a href="texmf-dist/doc/fonts/poltawski/">poltawski</a></b><small> (<a href="https://ctan.org/pkg/poltawski">CTAN</a>): -Antykwa Poltawskiego Family of Fonts +Antykwa Poltawskiego Family of Fonts. <a href="texmf-dist/doc/fonts/poltawski/ap-info.pdf">ap-info.pdf</a> <a href="texmf-dist/doc/fonts/poltawski/ap-logo.pdf">ap-logo.pdf</a> <a href="texmf-dist/doc/fonts/poltawski/tstapot1.pdf">tstapot1.pdf</a> @@ -17039,9 +16993,9 @@ Antykwa Poltawskiego Family of Fonts <a href="texmf-dist/doc/fonts/poltawski/tstapts1.pdf">tstapts1.pdf</a>. </small></li> -<li id="polyglossia"><b><a href="texmf-dist/doc/latex/polyglossia">polyglossia</a></b><small> +<li id="polyglossia"><b><a href="texmf-dist/doc/latex/polyglossia/">polyglossia</a></b><small> (<a href="https://ctan.org/pkg/polyglossia">CTAN</a>): -An alternative to babel for XeLaTeX and LuaLaTeX +An alternative to babel for XeLaTeX and LuaLaTeX. <a href="texmf-dist/doc/latex/polyglossia/example-arabic.pdf">example-arabic.pdf</a> <a href="texmf-dist/doc/latex/polyglossia/example-korean.pdf">example-korean.pdf</a> <a href="texmf-dist/doc/latex/polyglossia/example-thai.pdf">example-thai.pdf</a> @@ -17050,77 +17004,77 @@ An alternative to babel for XeLaTeX and LuaLaTeX <a href="texmf-dist/doc/latex/polyglossia/test-welsh.pdf">test-welsh.pdf</a>. </small></li> -<li id="polynom"><b><a href="texmf-dist/doc/latex/polynom">polynom</a></b><small> +<li id="polynom"><b><a href="texmf-dist/doc/latex/polynom/">polynom</a></b><small> (<a href="https://ctan.org/pkg/polynom">CTAN</a>): -Macros for manipulating polynomials +Macros for manipulating polynomials. <a href="texmf-dist/doc/latex/polynom/polydemo.pdf">polydemo.pdf</a> <a href="texmf-dist/doc/latex/polynom/polynom.pdf">polynom.pdf</a>. </small></li> -<li id="polynomial"><b><a href="texmf-dist/doc/latex/polynomial">polynomial</a></b><small> +<li id="polynomial"><b><a href="texmf-dist/doc/latex/polynomial/">polynomial</a></b><small> (<a href="https://ctan.org/pkg/polynomial">CTAN</a>): -Typeset (univariate) polynomials +Typeset (univariate) polynomials. <a href="texmf-dist/doc/latex/polynomial/polynomial.pdf">polynomial.pdf</a>. </small></li> -<li id="polytable"><b><a href="texmf-dist/doc/latex/polytable">polytable</a></b><small> +<li id="polytable"><b><a href="texmf-dist/doc/latex/polytable/">polytable</a></b><small> (<a href="https://ctan.org/pkg/polytable">CTAN</a>): -Tabular-like environments with named columns +Tabular-like environments with named columns. <a href="texmf-dist/doc/latex/polytable/polytable.pdf">polytable.pdf</a>. </small></li> -<li id="postage"><b><a href="texmf-dist/doc/latex/postage">postage</a></b><small> +<li id="postage"><b><a href="texmf-dist/doc/latex/postage/">postage</a></b><small> (<a href="https://ctan.org/pkg/postage">CTAN</a>): -stamp letters with >>Deutsche Post<<'s service >>Internetmarke<< +stamp letters with >>Deutsche Post<<'s service >>Internetmarke<<. <a href="texmf-dist/doc/latex/postage/postage.pdf">postage.pdf</a> <a href="texmf-dist/doc/latex/postage/sample-stamps.pdf">sample-stamps.pdf</a>. </small></li> -<li id="poster-mac"><b><a href="texmf-dist/doc/generic/poster-mac">poster-mac</a></b><small> +<li id="poster-mac"><b><a href="texmf-dist/doc/generic/poster-mac/">poster-mac</a></b><small> (<a href="https://ctan.org/pkg/poster-mac">CTAN</a>): -Make posters and banners with TeX +Make posters and banners with TeX. <a href="texmf-dist/doc/generic/poster-mac/poster-doc.pdf">poster-doc.pdf</a> <a href="texmf-dist/doc/generic/poster-mac/poster1.pdf">poster1.pdf</a> <a href="texmf-dist/doc/generic/poster-mac/poster2.pdf">poster2.pdf</a>. </small></li> -<li id="powerdot"><b><a href="texmf-dist/doc/latex/powerdot">powerdot</a></b><small> +<li id="powerdot"><b><a href="texmf-dist/doc/latex/powerdot/">powerdot</a></b><small> (<a href="https://ctan.org/pkg/powerdot">CTAN</a>): -A presentation class +A presentation class. <a href="texmf-dist/doc/latex/powerdot/powerdot.pdf">powerdot.pdf</a> <a href="texmf-dist/doc/latex/powerdot/powerdotDE.pdf">powerdotDE.pdf</a> (de). </small></li> -<li id="powerdot-fuberlin"><b><a href="texmf-dist/doc/latex/powerdot-fuberlin">powerdot-fuberlin</a></b><small> +<li id="powerdot-fuberlin"><b><a href="texmf-dist/doc/latex/powerdot-fuberlin/">powerdot-fuberlin</a></b><small> (<a href="https://ctan.org/pkg/powerdot-fuberlin">CTAN</a>): -Powerdot, using the style of FU Berlin +Powerdot, using the style of FU Berlin. <a href="texmf-dist/doc/latex/powerdot-fuberlin/demo-powerdotFU.pdf">demo-powerdotFU.pdf</a> <a href="texmf-dist/doc/latex/powerdot-fuberlin/exampleClass.pdf">exampleClass.pdf</a> <a href="texmf-dist/doc/latex/powerdot-fuberlin/exampleStyle.pdf">exampleStyle.pdf</a>. </small></li> -<li id="ppr-prv"><b><a href="texmf-dist/doc/latex/ppr-prv">ppr-prv</a></b><small> +<li id="ppr-prv"><b><a href="texmf-dist/doc/latex/ppr-prv/">ppr-prv</a></b><small> (<a href="https://ctan.org/pkg/ppr-prv">CTAN</a>): -Prosper preview +Prosper preview. <a href="texmf-dist/doc/latex/ppr-prv/ppr-prv.pdf">ppr-prv.pdf</a>. </small></li> -<li id="pracjourn"><b><a href="texmf-dist/doc/latex/pracjourn">pracjourn</a></b><small> +<li id="pracjourn"><b><a href="texmf-dist/doc/latex/pracjourn/">pracjourn</a></b><small> (<a href="https://ctan.org/pkg/pracjourn">CTAN</a>): -Typeset articles for PracTeX +Typeset articles for PracTeX. <a href="texmf-dist/doc/latex/pracjourn/pjsample.pdf">pjsample.pdf</a> <a href="texmf-dist/doc/latex/pracjourn/pracjourn.pdf">pracjourn.pdf</a>. </small></li> -<li id="practicalreports"><b><a href="texmf-dist/doc/latex/practicalreports">practicalreports</a></b><small> +<li id="practicalreports"><b><a href="texmf-dist/doc/latex/practicalreports/">practicalreports</a></b><small> (<a href="https://ctan.org/pkg/practicalreports">CTAN</a>): -Some macros for writing practical reports +Some macros for writing practical reports. <a href="texmf-dist/doc/latex/practicalreports/practicalreports.pdf">practicalreports.pdf</a>. </small></li> -<li id="preprint"><b><a href="texmf-dist/doc/latex/preprint">preprint</a></b><small> +<li id="preprint"><b><a href="texmf-dist/doc/latex/preprint/">preprint</a></b><small> (<a href="https://ctan.org/pkg/preprint">CTAN</a>): -A bundle of packages provided "as is" +A bundle of packages provided "as is". <a href="texmf-dist/doc/latex/preprint/authblk.pdf">authblk.pdf</a> <a href="texmf-dist/doc/latex/preprint/balance.pdf">balance.pdf</a> <a href="texmf-dist/doc/latex/preprint/figcaps.pdf">figcaps.pdf</a> @@ -17128,9 +17082,9 @@ A bundle of packages provided "as is" <a href="texmf-dist/doc/latex/preprint/sublabel.pdf">sublabel.pdf</a>. </small></li> -<li id="prerex"><b><a href="texmf-dist/doc/latex/prerex">prerex</a></b><small> +<li id="prerex"><b><a href="texmf-dist/doc/latex/prerex/">prerex</a></b><small> (<a href="https://ctan.org/pkg/prerex">CTAN</a>): -Interactive editor and macro support for prerequisite charts +Interactive editor and macro support for prerequisite charts. <a href="texmf-dist/doc/latex/prerex/chart.pdf">chart.pdf</a> <a href="texmf-dist/doc/latex/prerex/intro.pdf">intro.pdf</a> <a href="texmf-dist/doc/latex/prerex/prerex.pdf">prerex.pdf</a> @@ -17138,9 +17092,9 @@ Interactive editor and macro support for prerequisite charts <a href="texmf-dist/doc/man/man5/prerex.man5.pdf">prerex.man5.pdf</a>. </small></li> -<li id="present"><b><a href="texmf-dist/doc/plain/present">present</a></b><small> +<li id="present"><b><a href="texmf-dist/doc/plain/present/">present</a></b><small> (<a href="https://ctan.org/pkg/present">CTAN</a>): -Presentations with Plain TeX +Presentations with Plain TeX. <a href="texmf-dist/doc/plain/present/HowToTalkTeX.pdf">HowToTalkTeX.pdf</a> <a href="texmf-dist/doc/plain/present/Pfeil1.pdf">Pfeil1.pdf</a> <a href="texmf-dist/doc/plain/present/Pfeil2.pdf">Pfeil2.pdf</a> @@ -17149,9 +17103,9 @@ Presentations with Plain TeX <a href="texmf-dist/doc/plain/present/Sagnac.pdf">Sagnac.pdf</a>. </small></li> -<li id="presentations"><b><a href="texmf-dist/doc/latex/presentations/images/beamer">presentations</a></b><small> +<li id="presentations"><b><a href="texmf-dist/doc/latex/presentations/images/pd/">presentations</a></b><small> (<a href="https://ctan.org/pkg/presentations">CTAN</a>): -Examples from the book Presentationen mit LaTeX +Examples from the book Presentationen mit LaTeX. <a href="texmf-dist/doc/latex/presentations/images/beamer/FUlogo.pdf">FUlogo.pdf</a> <a href="texmf-dist/doc/latex/presentations/images/beamer/TeX.pdf">TeX.pdf</a> <a href="texmf-dist/doc/latex/presentations/images/beamer/beamer0.pdf">beamer0.pdf</a> @@ -17167,9 +17121,9 @@ Examples from the book Presentationen mit LaTeX <a href="texmf-dist/doc/latex/presentations/images/pdfscreen/pst.pdf">pst.pdf</a>. </small></li> -<li id="presentations-en"><b><a href="texmf-dist/doc/latex/presentations-en/images/beamer">presentations-en</a></b><small> +<li id="presentations-en"><b><a href="texmf-dist/doc/latex/presentations-en/images/beamer/">presentations-en</a></b><small> (<a href="https://ctan.org/pkg/presentations-en">CTAN</a>): -Examples from the book Presentations with LaTeX +Examples from the book Presentations with LaTeX. <a href="texmf-dist/doc/latex/presentations-en/images/beamer/TeX.pdf">TeX.pdf</a> <a href="texmf-dist/doc/latex/presentations-en/images/beamer/beamer0.pdf">beamer0.pdf</a> <a href="texmf-dist/doc/latex/presentations-en/images/beamer/beamer1.pdf">beamer1.pdf</a> @@ -17181,9 +17135,9 @@ Examples from the book Presentations with LaTeX <a href="texmf-dist/doc/latex/presentations-en/images/pdfscreen/pst.pdf">pst.pdf</a>. </small></li> -<li id="pressrelease"><b><a href="texmf-dist/doc/latex/pressrelease">pressrelease</a></b><small> +<li id="pressrelease"><b><a href="texmf-dist/doc/latex/pressrelease/">pressrelease</a></b><small> (<a href="https://ctan.org/pkg/pressrelease">CTAN</a>): -A class for typesetting press releases +A class for typesetting press releases. <a href="texmf-dist/doc/latex/pressrelease/pressrelease.pdf">pressrelease.pdf</a> <a href="texmf-dist/doc/latex/pressrelease/samples/sample-pressrelease.pdf">sample-pressrelease.pdf</a> <a href="texmf-dist/doc/latex/pressrelease/samples/sample-pressrelease2.pdf">sample-pressrelease2.pdf</a> @@ -17194,39 +17148,39 @@ A class for typesetting press releases <a href="texmf-dist/doc/latex/pressrelease/samples/sample-pressrelease7.pdf">sample-pressrelease7.pdf</a>. </small></li> -<li id="prettyref"><b><a href="texmf-dist/doc/latex/prettyref">prettyref</a></b><small> +<li id="prettyref"><b><a href="texmf-dist/doc/latex/prettyref/">prettyref</a></b><small> (<a href="https://ctan.org/pkg/prettyref">CTAN</a>): -Make label references "self-identify" +Make label references "self-identify". <a href="texmf-dist/doc/latex/prettyref/prettyref.pdf">prettyref.pdf</a>. </small></li> -<li id="preview"><b><a href="texmf-dist/doc/latex/preview">preview</a></b><small> +<li id="preview"><b><a href="texmf-dist/doc/latex/preview/">preview</a></b><small> (<a href="https://ctan.org/pkg/preview">CTAN</a>): -Extract bits of a LaTeX source for output +Extract bits of a LaTeX source for output. <a href="texmf-dist/doc/latex/preview/preview.pdf">preview.pdf</a>. </small></li> -<li id="prftree"><b><a href="texmf-dist/doc/latex/prftree">prftree</a></b><small> +<li id="prftree"><b><a href="texmf-dist/doc/latex/prftree/">prftree</a></b><small> (<a href="https://ctan.org/pkg/prftree">CTAN</a>): -Macros for building proof trees +Macros for building proof trees. <a href="texmf-dist/doc/latex/prftree/prftreedoc.pdf">prftreedoc.pdf</a>. </small></li> -<li id="printlen"><b><a href="texmf-dist/doc/latex/printlen">printlen</a></b><small> +<li id="printlen"><b><a href="texmf-dist/doc/latex/printlen/">printlen</a></b><small> (<a href="https://ctan.org/pkg/printlen">CTAN</a>): -Print lengths using specified units +Print lengths using specified units. <a href="texmf-dist/doc/latex/printlen/printlen-doc.pdf">printlen-doc.pdf</a>. </small></li> -<li id="proba"><b><a href="texmf-dist/doc/latex/proba">proba</a></b><small> +<li id="proba"><b><a href="texmf-dist/doc/latex/proba/">proba</a></b><small> (<a href="https://ctan.org/pkg/proba">CTAN</a>): -Shortcuts commands to symbols used in probability texts +Shortcuts commands to symbols used in probability texts. <a href="texmf-dist/doc/latex/proba/proba.pdf">proba.pdf</a>. </small></li> -<li id="probsoln"><b><a href="texmf-dist/doc/latex/probsoln">probsoln</a></b><small> +<li id="probsoln"><b><a href="texmf-dist/doc/latex/probsoln/">probsoln</a></b><small> (<a href="https://ctan.org/pkg/probsoln">CTAN</a>): -Generate problem sheets and their solution sheets +Generate problem sheets and their solution sheets. <a href="texmf-dist/doc/latex/probsoln/probsoln.pdf">probsoln.pdf</a> <a href="texmf-dist/doc/latex/probsoln/samples/sample-exclude.pdf">sample-exclude.pdf</a> <a href="texmf-dist/doc/latex/probsoln/samples/sample.pdf">sample.pdf</a> @@ -17240,60 +17194,60 @@ Generate problem sheets and their solution sheets <a href="texmf-dist/doc/latex/probsoln/samples/sample9.pdf">sample9.pdf</a>. </small></li> -<li id="prodint"><b><a href="texmf-dist/doc/fonts/prodint">prodint</a></b><small> +<li id="prodint"><b><a href="texmf-dist/doc/fonts/prodint/">prodint</a></b><small> (<a href="https://ctan.org/pkg/prodint">CTAN</a>): -A font that provides the product integral symbol +A font that provides the product integral symbol. <a href="texmf-dist/doc/fonts/prodint/prodint.pdf">prodint.pdf</a>. </small></li> -<li id="productbox"><b><a href="texmf-dist/doc/latex/productbox">productbox</a></b><small> +<li id="productbox"><b><a href="texmf-dist/doc/latex/productbox/">productbox</a></b><small> (<a href="https://ctan.org/pkg/productbox">CTAN</a>): -Typeset a three-dimensional product box +Typeset a three-dimensional product box. <a href="texmf-dist/doc/latex/productbox/productbox.pdf">productbox.pdf</a>. </small></li> -<li id="program"><b><a href="texmf-dist/doc/latex/program">program</a></b><small> +<li id="program"><b><a href="texmf-dist/doc/latex/program/">program</a></b><small> (<a href="https://ctan.org/pkg/program">CTAN</a>): -Typesetting programs and algorithms +Typesetting programs and algorithms. <a href="texmf-dist/doc/latex/program/program-doc.pdf">program-doc.pdf</a>. </small></li> -<li id="progress"><b><a href="texmf-dist/doc/latex/progress">progress</a></b><small> +<li id="progress"><b><a href="texmf-dist/doc/latex/progress/">progress</a></b><small> (<a href="https://ctan.org/pkg/progress">CTAN</a>): -Creates an overview of a document's state +Creates an overview of a document's state. <a href="texmf-dist/doc/latex/progress/progress.pdf">progress.pdf</a> <a href="texmf-dist/doc/latex/progress/progress20030701.html">progress20030701.html</a>. </small></li> -<li id="progressbar"><b><a href="texmf-dist/doc/latex/progressbar">progressbar</a></b><small> +<li id="progressbar"><b><a href="texmf-dist/doc/latex/progressbar/">progressbar</a></b><small> (<a href="https://ctan.org/pkg/progressbar">CTAN</a>): -Visualize shares of total amounts in the form of a (progress-)bar +Visualize shares of total amounts in the form of a (progress-)bar. <a href="texmf-dist/doc/latex/progressbar/progressbar.pdf">progressbar.pdf</a>. </small></li> -<li id="proof-at-the-end"><b><a href="texmf-dist/doc/latex/proof-at-the-end">proof-at-the-end</a></b><small> +<li id="proof-at-the-end"><b><a href="texmf-dist/doc/latex/proof-at-the-end/">proof-at-the-end</a></b><small> (<a href="https://ctan.org/pkg/proof-at-the-end">CTAN</a>): -A package to move proofs to appendix +A package to move proofs to appendix. <a href="texmf-dist/doc/latex/proof-at-the-end/proof-at-the-end.pdf">proof-at-the-end.pdf</a> <a href="texmf-dist/doc/latex/proof-at-the-end/proof-at-the-end_demo.pdf">proof-at-the-end_demo.pdf</a>. </small></li> -<li id="proofread"><b><a href="texmf-dist/doc/latex/proofread">proofread</a></b><small> +<li id="proofread"><b><a href="texmf-dist/doc/latex/proofread/">proofread</a></b><small> (<a href="https://ctan.org/pkg/proofread">CTAN</a>): -Commands for inserting annotations +Commands for inserting annotations. <a href="texmf-dist/doc/latex/proofread/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/proofread/proofread.pdf">proofread.pdf</a>. </small></li> -<li id="prooftrees"><b><a href="texmf-dist/doc/latex/prooftrees">prooftrees</a></b><small> +<li id="prooftrees"><b><a href="texmf-dist/doc/latex/prooftrees/">prooftrees</a></b><small> (<a href="https://ctan.org/pkg/prooftrees">CTAN</a>): -Forest-based proof trees (symbolic logic) +Forest-based proof trees (symbolic logic). <a href="texmf-dist/doc/latex/prooftrees/prooftrees.pdf">prooftrees.pdf</a>. </small></li> -<li id="proposal"><b><a href="texmf-dist/doc/latex/proposal/dfg">proposal</a></b><small> +<li id="proposal"><b><a href="texmf-dist/doc/latex/proposal/dfg/proposal/">proposal</a></b><small> (<a href="https://ctan.org/pkg/proposal">CTAN</a>): -A set of LaTeX classes for preparing proposals for collaborative projects +A set of LaTeX classes for preparing proposals for collaborative projects. <a href="texmf-dist/doc/latex/proposal/dfg/dfgproposal.pdf">dfgproposal.pdf</a> <a href="texmf-dist/doc/latex/proposal/dfg/proposal/proposal.pdf">proposal.pdf</a> <a href="texmf-dist/doc/latex/proposal/dfg/proposal/public.pdf">public.pdf</a> @@ -17306,220 +17260,220 @@ A set of LaTeX classes for preparing proposals for collaborative projects <a href="texmf-dist/doc/latex/proposal/eu/strep/submit.pdf">submit.pdf</a>. </small></li> -<li id="prosper"><b><a href="texmf-dist/doc/latex/prosper">prosper</a></b><small> +<li id="prosper"><b><a href="texmf-dist/doc/latex/prosper/">prosper</a></b><small> (<a href="https://ctan.org/pkg/prosper">CTAN</a>): -LaTeX class for high quality slides +LaTeX class for high quality slides. <a href="texmf-dist/doc/latex/prosper/prosper-doc.pdf">prosper-doc.pdf</a> <a href="texmf-dist/doc/latex/prosper/prosper-tour.pdf">prosper-tour.pdf</a>. </small></li> -<li id="protocol"><b><a href="texmf-dist/doc/latex/protocol">protocol</a></b><small> +<li id="protocol"><b><a href="texmf-dist/doc/latex/protocol/">protocol</a></b><small> (<a href="https://ctan.org/pkg/protocol">CTAN</a>): -A class for minutes of meetings +A class for minutes of meetings. <a href="texmf-dist/doc/latex/protocol/protocol.pdf">protocol.pdf</a> (de). </small></li> -<li id="prtec"><b><a href="texmf-dist/doc/latex/prtec">prtec</a></b><small> +<li id="prtec"><b><a href="texmf-dist/doc/latex/prtec/">prtec</a></b><small> (<a href="https://ctan.org/pkg/prtec">CTAN</a>): -A template for PRTEC conference papers +A template for PRTEC conference papers. <a href="texmf-dist/doc/latex/prtec/PRTEC19-template.pdf">PRTEC19-template.pdf</a> <a href="texmf-dist/doc/latex/prtec/sample-figure.pdf">sample-figure.pdf</a>. </small></li> -<li id="przechlewski-book"><b><a href="texmf-dist/doc/latex/przechlewski-book">przechlewski-book</a></b><small> +<li id="przechlewski-book"><b><a href="texmf-dist/doc/latex/przechlewski-book/">przechlewski-book</a></b><small> (<a href="https://ctan.org/pkg/przechlewski-book">CTAN</a>): -Examples from Przechlewski's LaTeX book +Examples from Przechlewski's LaTeX book. <a href="texmf-dist/doc/latex/przechlewski-book/TAM-pl.pdf">TAM-pl.pdf</a> <a href="texmf-dist/doc/latex/przechlewski-book/wkmgr.html">wkmgr.html</a> <a href="texmf-dist/doc/latex/przechlewski-book/wkmgr1.pdf">wkmgr1.pdf</a> <a href="texmf-dist/doc/latex/przechlewski-book/wkmgr2.pdf">wkmgr2.pdf</a>. </small></li> -<li id="ps2eps"><b><a href="texmf-dist/doc/man/man1">ps2eps</a></b><small> +<li id="ps2eps"><b><a href="texmf-dist/doc/man/man1/">ps2eps</a></b><small> (<a href="https://ctan.org/pkg/ps2eps">CTAN</a>): -Produce Encapsulated PostScript from PostScript +Produce Encapsulated PostScript from PostScript. <a href="texmf-dist/doc/man/man1/bbox.man1.pdf">bbox.man1.pdf</a> <a href="texmf-dist/doc/man/man1/ps2eps.man1.pdf">ps2eps.man1.pdf</a>. </small></li> -<li id="ps2pk"><b><a href="texmf-dist/doc/man/man1">ps2pk</a></b><small> +<li id="ps2pk"><b><a href="texmf-dist/doc/man/man1/">ps2pk</a></b><small> (<a href="https://ctan.org/pkg/ps2pk">CTAN</a>): -Generate a PK font from an Adobe Type 1 font +Generate a PK font from an Adobe Type 1 font. <a href="texmf-dist/doc/man/man1/mag.man1.pdf">mag.man1.pdf</a> <a href="texmf-dist/doc/man/man1/pfb2pfa.man1.pdf">pfb2pfa.man1.pdf</a> <a href="texmf-dist/doc/man/man1/pk2bm.man1.pdf">pk2bm.man1.pdf</a> <a href="texmf-dist/doc/man/man1/ps2pk.man1.pdf">ps2pk.man1.pdf</a>. </small></li> -<li id="psbao"><b><a href="texmf-dist/doc/latex/psbao">psbao</a></b><small> +<li id="psbao"><b><a href="texmf-dist/doc/latex/psbao/">psbao</a></b><small> (<a href="https://ctan.org/pkg/psbao">CTAN</a>): -Draw Bao diagrams +Draw Bao diagrams. <a href="texmf-dist/doc/latex/psbao/psbaomanual.pdf">psbaomanual.pdf</a>. </small></li> -<li id="pseudo"><b><a href="texmf-dist/doc/latex/pseudo/doc">pseudo</a></b><small> +<li id="pseudo"><b><a href="texmf-dist/doc/latex/pseudo/">pseudo</a></b><small> (<a href="https://ctan.org/pkg/pseudo">CTAN</a>): -Straightforward pseudocode +Straightforward pseudocode. <a href="texmf-dist/doc/latex/pseudo/doc/pseudo.pdf">pseudo.pdf</a>. </small></li> -<li id="pseudocode"><b><a href="texmf-dist/doc/latex/pseudocode">pseudocode</a></b><small> +<li id="pseudocode"><b><a href="texmf-dist/doc/latex/pseudocode/">pseudocode</a></b><small> (<a href="https://ctan.org/pkg/pseudocode">CTAN</a>): -LaTeX environment for specifying algorithms in a natural way +LaTeX environment for specifying algorithms in a natural way. <a href="texmf-dist/doc/latex/pseudocode/pseudocode.pdf">pseudocode.pdf</a>. </small></li> -<li id="psfrag"><b><a href="texmf-dist/doc/latex/psfrag">psfrag</a></b><small> +<li id="psfrag"><b><a href="texmf-dist/doc/latex/psfrag/">psfrag</a></b><small> (<a href="https://ctan.org/pkg/psfrag">CTAN</a>): -Replace strings in encapsulated PostScript figures +Replace strings in encapsulated PostScript figures. <a href="texmf-dist/doc/latex/psfrag/pfgguide.pdf">pfgguide.pdf</a>. </small></li> -<li id="psfrag-italian"><b><a href="texmf-dist/doc/latex/psfrag-italian">psfrag-italian</a></b><small> +<li id="psfrag-italian"><b><a href="texmf-dist/doc/latex/psfrag-italian/">psfrag-italian</a></b><small> (<a href="https://ctan.org/pkg/psfrag-italian">CTAN</a>): -PSfrag documentation in Italian +PSfrag documentation in Italian. <a href="texmf-dist/doc/latex/psfrag-italian/itpfgguide.pdf">itpfgguide.pdf</a>. </small></li> -<li id="psfragx"><b><a href="texmf-dist/doc/latex/psfragx">psfragx</a></b><small> +<li id="psfragx"><b><a href="texmf-dist/doc/latex/psfragx/">psfragx</a></b><small> (<a href="https://ctan.org/pkg/psfragx">CTAN</a>): -A psfrag eXtension +A psfrag eXtension. <a href="texmf-dist/doc/latex/psfragx/psfragx.pdf">psfragx.pdf</a> <a href="texmf-dist/doc/latex/psfragx/psfragx_example.pdf">psfragx_example.pdf</a>. </small></li> -<li id="psgo"><b><a href="texmf-dist/doc/latex/psgo">psgo</a></b><small> +<li id="psgo"><b><a href="texmf-dist/doc/latex/psgo/">psgo</a></b><small> (<a href="https://ctan.org/pkg/psgo">CTAN</a>): -Typeset go diagrams with PSTricks +Typeset go diagrams with PSTricks. <a href="texmf-dist/doc/latex/psgo/psgomanual.pdf">psgomanual.pdf</a>. </small></li> -<li id="psnfss"><b><a href="texmf-dist/doc/latex/psnfss">psnfss</a></b><small> +<li id="psnfss"><b><a href="texmf-dist/doc/latex/psnfss/">psnfss</a></b><small> (<a href="https://ctan.org/pkg/psnfss">CTAN</a>): -Font support for common PostScript fonts +Font support for common PostScript fonts. <a href="texmf-dist/doc/latex/psnfss/psnfss2e.pdf">psnfss2e.pdf</a>. </small></li> -<li id="pspicture"><b><a href="texmf-dist/doc/latex/pspicture">pspicture</a></b><small> +<li id="pspicture"><b><a href="texmf-dist/doc/latex/pspicture/">pspicture</a></b><small> (<a href="https://ctan.org/pkg/pspicture">CTAN</a>): -PostScript picture support +PostScript picture support. <a href="texmf-dist/doc/latex/pspicture/pspicture.pdf">pspicture.pdf</a>. </small></li> -<li id="pst-2dplot"><b><a href="texmf-dist/doc/generic/pst-2dplot">pst-2dplot</a></b><small> +<li id="pst-2dplot"><b><a href="texmf-dist/doc/generic/pst-2dplot/">pst-2dplot</a></b><small> (<a href="https://ctan.org/pkg/pst-2dplot">CTAN</a>): -A PSTricks package for drawing 2D curves +A PSTricks package for drawing 2D curves. <a href="texmf-dist/doc/generic/pst-2dplot/pst-2dplot-doc.pdf">pst-2dplot-doc.pdf</a>. </small></li> -<li id="pst-3d"><b><a href="texmf-dist/doc/generic/pst-3d">pst-3d</a></b><small> +<li id="pst-3d"><b><a href="texmf-dist/doc/generic/pst-3d/">pst-3d</a></b><small> (<a href="https://ctan.org/pkg/pst-3d">CTAN</a>): -A PSTricks package for tilting and other pseudo-3D tricks +A PSTricks package for tilting and other pseudo-3D tricks. <a href="texmf-dist/doc/generic/pst-3d/pst-3d-doc.pdf">pst-3d-doc.pdf</a>. </small></li> -<li id="pst-3dplot"><b><a href="texmf-dist/doc/generic/pst-3dplot">pst-3dplot</a></b><small> +<li id="pst-3dplot"><b><a href="texmf-dist/doc/generic/pst-3dplot/">pst-3dplot</a></b><small> (<a href="https://ctan.org/pkg/pst-3dplot">CTAN</a>): -Draw 3D objects in parallel projection, using PSTricks +Draw 3D objects in parallel projection, using PSTricks. <a href="texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.pdf">pst-3dplot-doc.pdf</a>. </small></li> -<li id="pst-abspos"><b><a href="texmf-dist/doc/generic/pst-abspos">pst-abspos</a></b><small> +<li id="pst-abspos"><b><a href="texmf-dist/doc/generic/pst-abspos/">pst-abspos</a></b><small> (<a href="https://ctan.org/pkg/pst-abspos">CTAN</a>): -Put objects at an absolute position +Put objects at an absolute position. <a href="texmf-dist/doc/generic/pst-abspos/pst-abspos-doc.pdf">pst-abspos-doc.pdf</a>. </small></li> -<li id="pst-am"><b><a href="texmf-dist/doc/generic/pst-am">pst-am</a></b><small> +<li id="pst-am"><b><a href="texmf-dist/doc/generic/pst-am/">pst-am</a></b><small> (<a href="https://ctan.org/pkg/pst-am">CTAN</a>): -Simulation of modulation and demodulation +Simulation of modulation and demodulation. <a href="texmf-dist/doc/generic/pst-am/pst-am-doc.pdf">pst-am-doc.pdf</a>. </small></li> -<li id="pst-antiprism"><b><a href="texmf-dist/doc/generic/pst-antiprism">pst-antiprism</a></b><small> +<li id="pst-antiprism"><b><a href="texmf-dist/doc/generic/pst-antiprism/">pst-antiprism</a></b><small> (<a href="https://ctan.org/pkg/pst-antiprism">CTAN</a>): -A PSTricks related package which draws an antiprism +A PSTricks related package which draws an antiprism. <a href="texmf-dist/doc/generic/pst-antiprism/pst-antiprism-doc.pdf">pst-antiprism-doc.pdf</a>. </small></li> -<li id="pst-arrow"><b><a href="texmf-dist/doc/generic/pst-arrow">pst-arrow</a></b><small> +<li id="pst-arrow"><b><a href="texmf-dist/doc/generic/pst-arrow/">pst-arrow</a></b><small> (<a href="https://ctan.org/pkg/pst-arrow">CTAN</a>): -Special arrows for PSTricks +Special arrows for PSTricks. <a href="texmf-dist/doc/generic/pst-arrow/pst-arrow-doc.pdf">pst-arrow-doc.pdf</a>. </small></li> -<li id="pst-asr"><b><a href="texmf-dist/doc/generic/pst-asr">pst-asr</a></b><small> +<li id="pst-asr"><b><a href="texmf-dist/doc/generic/pst-asr/">pst-asr</a></b><small> (<a href="https://ctan.org/pkg/pst-asr">CTAN</a>): -Typeset autosegmental representations for linguists +Typeset autosegmental representations for linguists. <a href="texmf-dist/doc/generic/pst-asr/pst-asr-doc.pdf">pst-asr-doc.pdf</a> <a href="texmf-dist/doc/generic/pst-asr/pst-asr-examples.pdf">pst-asr-examples.pdf</a>. </small></li> -<li id="pst-bar"><b><a href="texmf-dist/doc/generic/pst-bar">pst-bar</a></b><small> +<li id="pst-bar"><b><a href="texmf-dist/doc/generic/pst-bar/">pst-bar</a></b><small> (<a href="https://ctan.org/pkg/pst-bar">CTAN</a>): -Produces bar charts using PSTricks +Produces bar charts using PSTricks. <a href="texmf-dist/doc/generic/pst-bar/pst-bar-doc.pdf">pst-bar-doc.pdf</a> <a href="texmf-dist/doc/generic/pst-bar/pst-bar-docDE.pdf">pst-bar-docDE.pdf</a> (de). </small></li> -<li id="pst-barcode"><b><a href="texmf-dist/doc/generic/pst-barcode">pst-barcode</a></b><small> +<li id="pst-barcode"><b><a href="texmf-dist/doc/generic/pst-barcode/">pst-barcode</a></b><small> (<a href="https://ctan.org/pkg/pst-barcode">CTAN</a>): -Print barcodes using PostScript +Print barcodes using PostScript. <a href="texmf-dist/doc/generic/pst-barcode/pst-barcode-doc.pdf">pst-barcode-doc.pdf</a>. </small></li> -<li id="pst-bezier"><b><a href="texmf-dist/doc/generic/pst-bezier">pst-bezier</a></b><small> +<li id="pst-bezier"><b><a href="texmf-dist/doc/generic/pst-bezier/">pst-bezier</a></b><small> (<a href="https://ctan.org/pkg/pst-bezier">CTAN</a>): -Draw Bezier curves +Draw Bezier curves. <a href="texmf-dist/doc/generic/pst-bezier/pst-bezier-doc.pdf">pst-bezier-doc.pdf</a>. </small></li> -<li id="pst-blur"><b><a href="texmf-dist/doc/generic/pst-blur">pst-blur</a></b><small> +<li id="pst-blur"><b><a href="texmf-dist/doc/generic/pst-blur/">pst-blur</a></b><small> (<a href="https://ctan.org/pkg/pst-blur">CTAN</a>): -PSTricks package for "blurred" shadows +PSTricks package for "blurred" shadows. <a href="texmf-dist/doc/generic/pst-blur/pst-blur.pdf">pst-blur.pdf</a>. </small></li> -<li id="pst-bspline"><b><a href="texmf-dist/doc/generic/pst-bspline">pst-bspline</a></b><small> +<li id="pst-bspline"><b><a href="texmf-dist/doc/generic/pst-bspline/">pst-bspline</a></b><small> (<a href="https://ctan.org/pkg/pst-bspline">CTAN</a>): -Draw cubic Bspline curves and interpolations +Draw cubic Bspline curves and interpolations. <a href="texmf-dist/doc/generic/pst-bspline/pst-bspline-doc.pdf">pst-bspline-doc.pdf</a>. </small></li> -<li id="pst-calculate"><b><a href="texmf-dist/doc/generic/pst-calculate">pst-calculate</a></b><small> +<li id="pst-calculate"><b><a href="texmf-dist/doc/generic/pst-calculate/">pst-calculate</a></b><small> (<a href="https://ctan.org/pkg/pst-calculate">CTAN</a>): -Support for floating point operations at LaTeX level +Support for floating point operations at LaTeX level. <a href="texmf-dist/doc/generic/pst-calculate/pst-calculate-doc.pdf">pst-calculate-doc.pdf</a>. </small></li> -<li id="pst-calendar"><b><a href="texmf-dist/doc/latex/pst-calendar">pst-calendar</a></b><small> +<li id="pst-calendar"><b><a href="texmf-dist/doc/latex/pst-calendar/">pst-calendar</a></b><small> (<a href="https://ctan.org/pkg/pst-calendar">CTAN</a>): -Plot calendars in "fancy" ways +Plot calendars in "fancy" ways. <a href="texmf-dist/doc/latex/pst-calendar/pst-calendar-docDE.pdf">pst-calendar-docDE.pdf</a> (de) <a href="texmf-dist/doc/latex/pst-calendar/pst-calendar-docFR.pdf">pst-calendar-docFR.pdf</a> (fr). </small></li> -<li id="pst-cie"><b><a href="texmf-dist/doc/generic/pst-cie">pst-cie</a></b><small> +<li id="pst-cie"><b><a href="texmf-dist/doc/generic/pst-cie/">pst-cie</a></b><small> (<a href="https://ctan.org/pkg/pst-cie">CTAN</a>): -CIE color space +CIE color space. <a href="texmf-dist/doc/generic/pst-cie/pst-cie-doc.pdf">pst-cie-doc.pdf</a>. </small></li> -<li id="pst-circ"><b><a href="texmf-dist/doc/generic/pst-circ">pst-circ</a></b><small> +<li id="pst-circ"><b><a href="texmf-dist/doc/generic/pst-circ/">pst-circ</a></b><small> (<a href="https://ctan.org/pkg/pst-circ">CTAN</a>): -PSTricks package for drawing electric circuits +PSTricks package for drawing electric circuits. <a href="texmf-dist/doc/generic/pst-circ/pst-circ-doc.pdf">pst-circ-doc.pdf</a>. </small></li> -<li id="pst-coil"><b><a href="texmf-dist/doc/generic/pst-coil">pst-coil</a></b><small> +<li id="pst-coil"><b><a href="texmf-dist/doc/generic/pst-coil/">pst-coil</a></b><small> (<a href="https://ctan.org/pkg/pst-coil">CTAN</a>): -A PSTricks package for coils, etc +A PSTricks package for coils, etc. <a href="texmf-dist/doc/generic/pst-coil/pst-coil-doc.pdf">pst-coil-doc.pdf</a>. </small></li> -<li id="pst-contourplot"><b><a href="texmf-dist/doc/generic/pst-contourplot/examples">pst-contourplot</a></b><small> +<li id="pst-contourplot"><b><a href="texmf-dist/doc/generic/pst-contourplot/">pst-contourplot</a></b><small> (<a href="https://ctan.org/pkg/pst-contourplot">CTAN</a>): -Draw implicit functions using the "marching squares" algorithm +Draw implicit functions using the "marching squares" algorithm. <a href="texmf-dist/doc/generic/pst-contourplot/examples/Les-Ovales-de-Descartes.pdf">Les-Ovales-de-Descartes.pdf</a> <a href="texmf-dist/doc/generic/pst-contourplot/examples/bourke.pdf">bourke.pdf</a> <a href="texmf-dist/doc/generic/pst-contourplot/examples/courbe-du-diable.pdf">courbe-du-diable.pdf</a> @@ -17528,212 +17482,211 @@ Draw implicit functions using the "marching squares" algorithm <a href="texmf-dist/doc/generic/pst-contourplot/pst-contourplot-docFR.pdf">pst-contourplot-docFR.pdf</a> (fr). </small></li> -<li id="pst-cox"><b><a href="texmf-dist/doc/generic/pst-cox/pst-coxcoor">pst-cox</a></b><small> +<li id="pst-cox"><b><a href="texmf-dist/doc/generic/pst-cox/">pst-cox</a></b><small> (<a href="https://ctan.org/pkg/pst-cox">CTAN</a>): -Drawing regular complex polytopes with PSTricks +Drawing regular complex polytopes with PSTricks. <a href="texmf-dist/doc/generic/pst-cox/pst-coxcoor/pst-coxcoor_doc.pdf">pst-coxcoor_doc.pdf</a> <a href="texmf-dist/doc/generic/pst-cox/pst-coxeterp/pst-coxeterp_doc.pdf">pst-coxeterp_doc.pdf</a>. </small></li> -<li id="pst-dart"><b><a href="texmf-dist/doc/generic/pst-dart">pst-dart</a></b><small> +<li id="pst-dart"><b><a href="texmf-dist/doc/generic/pst-dart/">pst-dart</a></b><small> (<a href="https://ctan.org/pkg/pst-dart">CTAN</a>): -Plotting dart boards +Plotting dart boards. <a href="texmf-dist/doc/generic/pst-dart/pst-dart-doc.pdf">pst-dart-doc.pdf</a>. </small></li> -<li id="pst-dbicons"><b><a href="texmf-dist/doc/generic/pst-dbicons">pst-dbicons</a></b><small> +<li id="pst-dbicons"><b><a href="texmf-dist/doc/generic/pst-dbicons/">pst-dbicons</a></b><small> (<a href="https://ctan.org/pkg/pst-dbicons">CTAN</a>): -Support for drawing ER diagrams +Support for drawing ER diagrams. <a href="texmf-dist/doc/generic/pst-dbicons/pst-dbicons.pdf">pst-dbicons.pdf</a>. </small></li> -<li id="pst-diffraction"><b><a href="texmf-dist/doc/generic/pst-diffraction">pst-diffraction</a></b><small> +<li id="pst-diffraction"><b><a href="texmf-dist/doc/generic/pst-diffraction/">pst-diffraction</a></b><small> (<a href="https://ctan.org/pkg/pst-diffraction">CTAN</a>): -Print diffraction patterns from various apertures +Print diffraction patterns from various apertures. <a href="texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docDE.pdf">pst-diffraction-docDE.pdf</a> (de) <a href="texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docE.pdf">pst-diffraction-docE.pdf</a> <a href="texmf-dist/doc/generic/pst-diffraction/pst-diffraction-docFR.pdf">pst-diffraction-docFR.pdf</a> (fr). </small></li> -<li id="pst-electricfield"><b><a href="texmf-dist/doc/generic/pst-electricfield">pst-electricfield</a></b><small> +<li id="pst-electricfield"><b><a href="texmf-dist/doc/generic/pst-electricfield/">pst-electricfield</a></b><small> (<a href="https://ctan.org/pkg/pst-electricfield">CTAN</a>): -Draw electric field and equipotential lines with PSTricks +Draw electric field and equipotential lines with PSTricks. <a href="texmf-dist/doc/generic/pst-electricfield/pst-electricfield-docDE.pdf">pst-electricfield-docDE.pdf</a> (de) <a href="texmf-dist/doc/generic/pst-electricfield/pst-electricfield-docEN.pdf">pst-electricfield-docEN.pdf</a> <a href="texmf-dist/doc/generic/pst-electricfield/pst-electricfield-docFR.pdf">pst-electricfield-docFR.pdf</a> (fr). </small></li> -<li id="pst-eps"><b><a href="texmf-dist/doc/generic/pst-eps">pst-eps</a></b><small> +<li id="pst-eps"><b><a href="texmf-dist/doc/generic/pst-eps/">pst-eps</a></b><small> (<a href="https://ctan.org/pkg/pst-eps">CTAN</a>): -Create EPS files from PSTricks figures +Create EPS files from PSTricks figures. <a href="texmf-dist/doc/generic/pst-eps/pst-eps-doc.pdf">pst-eps-doc.pdf</a>. </small></li> -<li id="pst-eucl"><b><a href="texmf-dist/doc/generic/pst-eucl">pst-eucl</a></b><small> +<li id="pst-eucl"><b><a href="texmf-dist/doc/generic/pst-eucl/">pst-eucl</a></b><small> (<a href="https://ctan.org/pkg/pst-eucl">CTAN</a>): -Euclidian geometry with PSTricks +Euclidian geometry with PSTricks. <a href="texmf-dist/doc/generic/pst-eucl/pst-eucl-doc.pdf">pst-eucl-doc.pdf</a>. </small></li> -<li id="pst-eucl-translation-bg"><b><a href="texmf-dist/doc/latex/pst-eucl-translation-bg">pst-eucl-translation-bg</a></b><small> +<li id="pst-eucl-translation-bg"><b><a href="texmf-dist/doc/latex/pst-eucl-translation-bg/">pst-eucl-translation-bg</a></b><small> (<a href="https://ctan.org/pkg/pst-eucl-translation-bg">CTAN</a>): -Bulgarian translation of the pst-eucl documentation +Bulgarian translation of the pst-eucl documentation. <a href="texmf-dist/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.pdf">pst-eucl-docBG.pdf</a> (bg). </small></li> -<li id="pst-exa"><b><a href="texmf-dist/doc/latex/pst-exa">pst-exa</a></b><small> +<li id="pst-exa"><b><a href="texmf-dist/doc/latex/pst-exa/">pst-exa</a></b><small> (<a href="https://ctan.org/pkg/pst-exa">CTAN</a>): -Typeset PSTricks examples, with code +Typeset PSTricks examples, with code. <a href="texmf-dist/doc/latex/pst-exa/pst-exa-doc.pdf">pst-exa-doc.pdf</a>. </small></li> -<li id="pst-feyn"><b><a href="texmf-dist/doc/generic/pst-feyn">pst-feyn</a></b><small> +<li id="pst-feyn"><b><a href="texmf-dist/doc/generic/pst-feyn/">pst-feyn</a></b><small> (<a href="https://ctan.org/pkg/pst-feyn">CTAN</a>): -Draw graphical elements for Feynman diagrams +Draw graphical elements for Feynman diagrams. <a href="texmf-dist/doc/generic/pst-feyn/pst-feyn-doc.pdf">pst-feyn-doc.pdf</a>. </small></li> -<li id="pst-fill"><b><a href="texmf-dist/doc/generic/pst-fill">pst-fill</a></b><small> +<li id="pst-fill"><b><a href="texmf-dist/doc/generic/pst-fill/">pst-fill</a></b><small> (<a href="https://ctan.org/pkg/pst-fill">CTAN</a>): -Fill or tile areas with PSTricks +Fill or tile areas with PSTricks. <a href="texmf-dist/doc/generic/pst-fill/pst-fill.pdf">pst-fill.pdf</a>. </small></li> -<li id="pst-fit"><b><a href="texmf-dist/doc/generic/pst-fit">pst-fit</a></b><small> +<li id="pst-fit"><b><a href="texmf-dist/doc/generic/pst-fit/">pst-fit</a></b><small> (<a href="https://ctan.org/pkg/pst-fit">CTAN</a>): -Macros for curve fitting +Macros for curve fitting. <a href="texmf-dist/doc/generic/pst-fit/pst-fit-doc.pdf">pst-fit-doc.pdf</a>. </small></li> -<li id="pst-fr3d"><b><a href="texmf-dist/doc/generic/pst-fr3d">pst-fr3d</a></b><small> +<li id="pst-fr3d"><b><a href="texmf-dist/doc/generic/pst-fr3d/">pst-fr3d</a></b><small> (<a href="https://ctan.org/pkg/pst-fr3d">CTAN</a>): -Draw 3-dimensional framed boxes using PSTricks +Draw 3-dimensional framed boxes using PSTricks. <a href="texmf-dist/doc/generic/pst-fr3d/pst-fr3d.pdf">pst-fr3d.pdf</a>. </small></li> -<li id="pst-fractal"><b><a href="texmf-dist/doc/generic/pst-fractal">pst-fractal</a></b><small> +<li id="pst-fractal"><b><a href="texmf-dist/doc/generic/pst-fractal/">pst-fractal</a></b><small> (<a href="https://ctan.org/pkg/pst-fractal">CTAN</a>): -Draw fractal sets using PSTricks +Draw fractal sets using PSTricks. <a href="texmf-dist/doc/generic/pst-fractal/pst-fractal-doc.pdf">pst-fractal-doc.pdf</a>. </small></li> -<li id="pst-fun"><b><a href="texmf-dist/doc/generic/pst-fun">pst-fun</a></b><small> +<li id="pst-fun"><b><a href="texmf-dist/doc/generic/pst-fun/">pst-fun</a></b><small> (<a href="https://ctan.org/pkg/pst-fun">CTAN</a>): -Draw "funny" objects with PSTricks +Draw "funny" objects with PSTricks. <a href="texmf-dist/doc/generic/pst-fun/pst-fun-doc.pdf">pst-fun-doc.pdf</a>. </small></li> -<li id="pst-func"><b><a href="texmf-dist/doc/generic/pst-func">pst-func</a></b><small> +<li id="pst-func"><b><a href="texmf-dist/doc/generic/pst-func/">pst-func</a></b><small> (<a href="https://ctan.org/pkg/pst-func">CTAN</a>): -PSTricks package for plotting mathematical functions +PSTricks package for plotting mathematical functions. <a href="texmf-dist/doc/generic/pst-func/pst-func-doc.pdf">pst-func-doc.pdf</a>. </small></li> -<li id="pst-gantt"><b><a href="texmf-dist/doc/generic/pst-gantt">pst-gantt</a></b><small> +<li id="pst-gantt"><b><a href="texmf-dist/doc/generic/pst-gantt/">pst-gantt</a></b><small> (<a href="https://ctan.org/pkg/pst-gantt">CTAN</a>): -Draw GANTT charts with PSTricks +Draw GANTT charts with PSTricks. <a href="texmf-dist/doc/generic/pst-gantt/pst-gantt-doc.pdf">pst-gantt-doc.pdf</a>. </small></li> -<li id="pst-geo"><b><a href="texmf-dist/doc/generic/pst-geo">pst-geo</a></b><small> +<li id="pst-geo"><b><a href="texmf-dist/doc/generic/pst-geo/">pst-geo</a></b><small> (<a href="https://ctan.org/pkg/pst-geo">CTAN</a>): -Geographical Projections +Geographical Projections. <a href="texmf-dist/doc/generic/pst-geo/pst-geo-doc.pdf">pst-geo-doc.pdf</a>. </small></li> -<li id="pst-geometrictools"><b><a href="texmf-dist/doc/generic/pst-geometrictools">pst-geometrictools</a></b><small> +<li id="pst-geometrictools"><b><a href="texmf-dist/doc/generic/pst-geometrictools/">pst-geometrictools</a></b><small> (<a href="https://ctan.org/pkg/pst-geometrictools">CTAN</a>): -A PSTricks package to draw geometric tools +A PSTricks package to draw geometric tools. <a href="texmf-dist/doc/generic/pst-geometrictools/pst-geometrictools-doc.pdf">pst-geometrictools-doc.pdf</a> <a href="texmf-dist/doc/generic/pst-geometrictools/pst-geometrictools-fr-doc.pdf">pst-geometrictools-fr-doc.pdf</a> (fr). </small></li> -<li id="pst-ghsb"><b><a href="texmf-dist/doc/generic/pst-ghsb">pst-ghsb</a></b><small> -(<a href="https://ctan.org/pkg/pst-ghsb">CTAN</a>): -HSB gradients via PSTricks +<li id="pst-ghsb"><b><a href="texmf-dist/doc/generic/pst-ghsb/">pst-ghsb</a></b><small> +HSB gradients via PSTricks. <a href="texmf-dist/doc/generic/pst-ghsb/t-ghsb.pdf">t-ghsb.pdf</a> <a href="texmf-dist/doc/generic/pst-ghsb/t2-ghsb.pdf">t2-ghsb.pdf</a>. </small></li> -<li id="pst-gr3d"><b><a href="texmf-dist/doc/generic/pst-gr3d">pst-gr3d</a></b><small> +<li id="pst-gr3d"><b><a href="texmf-dist/doc/generic/pst-gr3d/">pst-gr3d</a></b><small> (<a href="https://ctan.org/pkg/pst-gr3d">CTAN</a>): -Three dimensional grids with PSTricks +Three dimensional grids with PSTricks. <a href="texmf-dist/doc/generic/pst-gr3d/pst-gr3d.pdf">pst-gr3d.pdf</a>. </small></li> -<li id="pst-grad"><b><a href="texmf-dist/doc/generic/pst-grad">pst-grad</a></b><small> +<li id="pst-grad"><b><a href="texmf-dist/doc/generic/pst-grad/">pst-grad</a></b><small> (<a href="https://ctan.org/pkg/pst-grad">CTAN</a>): -Filling with colour gradients, using PSTricks +Filling with colour gradients, using PSTricks. <a href="texmf-dist/doc/generic/pst-grad/pst-grad-doc.pdf">pst-grad-doc.pdf</a>. </small></li> -<li id="pst-infixplot"><b><a href="texmf-dist/doc/generic/pst-infixplot">pst-infixplot</a></b><small> +<li id="pst-infixplot"><b><a href="texmf-dist/doc/generic/pst-infixplot/">pst-infixplot</a></b><small> (<a href="https://ctan.org/pkg/pst-infixplot">CTAN</a>): -Using PSTricks plotting capacities with infix expressions rather than RPN +Using PSTricks plotting capacities with infix expressions rather than RPN. <a href="texmf-dist/doc/generic/pst-infixplot/pst-infixplot.pdf">pst-infixplot.pdf</a>. </small></li> -<li id="pst-intersect"><b><a href="texmf-dist/doc/latex/pst-intersect">pst-intersect</a></b><small> +<li id="pst-intersect"><b><a href="texmf-dist/doc/latex/pst-intersect/">pst-intersect</a></b><small> (<a href="https://ctan.org/pkg/pst-intersect">CTAN</a>): -Compute intersections of arbitrary curves +Compute intersections of arbitrary curves. <a href="texmf-dist/doc/latex/pst-intersect/pst-intersect-DE.pdf">pst-intersect-DE.pdf</a> (de) <a href="texmf-dist/doc/latex/pst-intersect/pst-intersect.pdf">pst-intersect.pdf</a>. </small></li> -<li id="pst-jtree"><b><a href="texmf-dist/doc/generic/pst-jtree">pst-jtree</a></b><small> +<li id="pst-jtree"><b><a href="texmf-dist/doc/generic/pst-jtree/">pst-jtree</a></b><small> (<a href="https://ctan.org/pkg/pst-jtree">CTAN</a>): -Typeset complex trees for linguists +Typeset complex trees for linguists. <a href="texmf-dist/doc/generic/pst-jtree/pst-jtree-doc-add.pdf">pst-jtree-doc-add.pdf</a> <a href="texmf-dist/doc/generic/pst-jtree/pst-jtree-doc.pdf">pst-jtree-doc.pdf</a>. </small></li> -<li id="pst-knot"><b><a href="texmf-dist/doc/generic/pst-knot">pst-knot</a></b><small> +<li id="pst-knot"><b><a href="texmf-dist/doc/generic/pst-knot/">pst-knot</a></b><small> (<a href="https://ctan.org/pkg/pst-knot">CTAN</a>): -PSTricks package for displaying knots +PSTricks package for displaying knots. <a href="texmf-dist/doc/generic/pst-knot/pst-knot-doc.pdf">pst-knot-doc.pdf</a>. </small></li> -<li id="pst-labo"><b><a href="texmf-dist/doc/generic/pst-labo">pst-labo</a></b><small> +<li id="pst-labo"><b><a href="texmf-dist/doc/generic/pst-labo/">pst-labo</a></b><small> (<a href="https://ctan.org/pkg/pst-labo">CTAN</a>): -Draw objects for Chemistry laboratories +Draw objects for Chemistry laboratories. <a href="texmf-dist/doc/generic/pst-labo/pst-labo-docDE.pdf">pst-labo-docDE.pdf</a> <a href="texmf-dist/doc/generic/pst-labo/pst-labo-docEN.pdf">pst-labo-docEN.pdf</a> <a href="texmf-dist/doc/generic/pst-labo/pst-labo-docFR.pdf">pst-labo-docFR.pdf</a>. </small></li> -<li id="pst-layout"><b><a href="texmf-dist/doc/latex/pst-layout">pst-layout</a></b><small> +<li id="pst-layout"><b><a href="texmf-dist/doc/latex/pst-layout/">pst-layout</a></b><small> (<a href="https://ctan.org/pkg/pst-layout">CTAN</a>): -Page layout macros based on PSTricks packages +Page layout macros based on PSTricks packages. <a href="texmf-dist/doc/latex/pst-layout/pst-layout-doc.pdf">pst-layout-doc.pdf</a>. </small></li> -<li id="pst-lens"><b><a href="texmf-dist/doc/generic/pst-lens">pst-lens</a></b><small> +<li id="pst-lens"><b><a href="texmf-dist/doc/generic/pst-lens/">pst-lens</a></b><small> (<a href="https://ctan.org/pkg/pst-lens">CTAN</a>): -Lenses with PSTricks +Lenses with PSTricks. <a href="texmf-dist/doc/generic/pst-lens/pst-lens.pdf">pst-lens.pdf</a>. </small></li> -<li id="pst-light3d"><b><a href="texmf-dist/doc/generic/pst-light3d">pst-light3d</a></b><small> +<li id="pst-light3d"><b><a href="texmf-dist/doc/generic/pst-light3d/">pst-light3d</a></b><small> (<a href="https://ctan.org/pkg/pst-light3d">CTAN</a>): -Three dimensional lighting effects (PSTricks) +Three dimensional lighting effects (PSTricks). <a href="texmf-dist/doc/generic/pst-light3d/pst-light3d-doc.pdf">pst-light3d-doc.pdf</a>. </small></li> -<li id="pst-lsystem"><b><a href="texmf-dist/doc/generic/pst-lsystem">pst-lsystem</a></b><small> +<li id="pst-lsystem"><b><a href="texmf-dist/doc/generic/pst-lsystem/">pst-lsystem</a></b><small> (<a href="https://ctan.org/pkg/pst-lsystem">CTAN</a>): -Create images based on a L-system +Create images based on a L-system. <a href="texmf-dist/doc/generic/pst-lsystem/pst-lsystem-doc.pdf">pst-lsystem-doc.pdf</a>. </small></li> -<li id="pst-magneticfield"><b><a href="texmf-dist/doc/generic/pst-magneticfield">pst-magneticfield</a></b><small> +<li id="pst-magneticfield"><b><a href="texmf-dist/doc/generic/pst-magneticfield/">pst-magneticfield</a></b><small> (<a href="https://ctan.org/pkg/pst-magneticfield">CTAN</a>): -Plotting a magnetic field with PSTricks +Plotting a magnetic field with PSTricks. <a href="texmf-dist/doc/generic/pst-magneticfield/pst-magneticfield-doc.pdf">pst-magneticfield-doc.pdf</a>. </small></li> -<li id="pst-marble"><b><a href="texmf-dist/doc/generic/pst-marble/examples">pst-marble</a></b><small> +<li id="pst-marble"><b><a href="texmf-dist/doc/generic/pst-marble/">pst-marble</a></b><small> (<a href="https://ctan.org/pkg/pst-marble">CTAN</a>): -A PSTricks package to draw marble-like patterns +A PSTricks package to draw marble-like patterns. <a href="texmf-dist/doc/generic/pst-marble/examples/Bouquet.pdf">Bouquet.pdf</a> <a href="texmf-dist/doc/generic/pst-marble/examples/BurgWave.pdf">BurgWave.pdf</a> <a href="texmf-dist/doc/generic/pst-marble/examples/Contour.pdf">Contour.pdf</a> @@ -17753,22 +17706,22 @@ A PSTricks package to draw marble-like patterns <a href="texmf-dist/doc/generic/pst-marble/pst-marble-doc.pdf">pst-marble-doc.pdf</a>. </small></li> -<li id="pst-math"><b><a href="texmf-dist/doc/generic/pst-math">pst-math</a></b><small> +<li id="pst-math"><b><a href="texmf-dist/doc/generic/pst-math/">pst-math</a></b><small> (<a href="https://ctan.org/pkg/pst-math">CTAN</a>): -Enhancement of PostScript math operators to use with PSTricks +Enhancement of PostScript math operators to use with PSTricks. <a href="texmf-dist/doc/generic/pst-math/pst-math-doc.pdf">pst-math-doc.pdf</a>. </small></li> -<li id="pst-mirror"><b><a href="texmf-dist/doc/generic/pst-mirror/createEPS">pst-mirror</a></b><small> +<li id="pst-mirror"><b><a href="texmf-dist/doc/generic/pst-mirror/">pst-mirror</a></b><small> (<a href="https://ctan.org/pkg/pst-mirror">CTAN</a>): -Images on a spherical mirror +Images on a spherical mirror. <a href="texmf-dist/doc/generic/pst-mirror/createEPS/test.pdf">test.pdf</a> <a href="texmf-dist/doc/generic/pst-mirror/pst-mirror-doc.pdf">pst-mirror-doc.pdf</a> (fr). </small></li> -<li id="pst-moire"><b><a href="texmf-dist/doc/generic/pst-moire/examples">pst-moire</a></b><small> +<li id="pst-moire"><b><a href="texmf-dist/doc/generic/pst-moire/">pst-moire</a></b><small> (<a href="https://ctan.org/pkg/pst-moire">CTAN</a>): -A PSTricks package to draw moire patterns +A PSTricks package to draw moire patterns. <a href="texmf-dist/doc/generic/pst-moire/examples/pattern1.pdf">pattern1.pdf</a> <a href="texmf-dist/doc/generic/pst-moire/examples/pattern2.pdf">pattern2.pdf</a> <a href="texmf-dist/doc/generic/pst-moire/examples/pattern3.pdf">pattern3.pdf</a> @@ -17777,271 +17730,270 @@ A PSTricks package to draw moire patterns <a href="texmf-dist/doc/generic/pst-moire/pst-moire-doc.pdf">pst-moire-doc.pdf</a>. </small></li> -<li id="pst-node"><b><a href="texmf-dist/doc/generic/pst-node">pst-node</a></b><small> +<li id="pst-node"><b><a href="texmf-dist/doc/generic/pst-node/">pst-node</a></b><small> (<a href="https://ctan.org/pkg/pst-node">CTAN</a>): -Nodes and node connections in PSTricks +Nodes and node connections in PSTricks. <a href="texmf-dist/doc/generic/pst-node/pst-node-doc.pdf">pst-node-doc.pdf</a>. </small></li> -<li id="pst-ob3d"><b><a href="texmf-dist/doc/generic/pst-ob3d">pst-ob3d</a></b><small> +<li id="pst-ob3d"><b><a href="texmf-dist/doc/generic/pst-ob3d/">pst-ob3d</a></b><small> (<a href="https://ctan.org/pkg/pst-ob3d">CTAN</a>): -Three dimensional objects using PSTricks +Three dimensional objects using PSTricks. <a href="texmf-dist/doc/generic/pst-ob3d/pst-ob3d.pdf">pst-ob3d.pdf</a>. </small></li> -<li id="pst-ode"><b><a href="texmf-dist/doc/generic/pst-ode">pst-ode</a></b><small> +<li id="pst-ode"><b><a href="texmf-dist/doc/generic/pst-ode/">pst-ode</a></b><small> (<a href="https://ctan.org/pkg/pst-ode">CTAN</a>): -Solving initial value problems for sets of Ordinary Differential Equations +Solving initial value problems for sets of Ordinary Differential Equations. <a href="texmf-dist/doc/generic/pst-ode/pst-ode-doc.pdf">pst-ode-doc.pdf</a>. </small></li> -<li id="pst-optexp"><b><a href="texmf-dist/doc/latex/pst-optexp">pst-optexp</a></b><small> +<li id="pst-optexp"><b><a href="texmf-dist/doc/latex/pst-optexp/">pst-optexp</a></b><small> (<a href="https://ctan.org/pkg/pst-optexp">CTAN</a>): -Drawing optical experimental setups +Drawing optical experimental setups. <a href="texmf-dist/doc/latex/pst-optexp/pst-optexp-DE.pdf">pst-optexp-DE.pdf</a> (de) <a href="texmf-dist/doc/latex/pst-optexp/pst-optexp-quickref.pdf">pst-optexp-quickref.pdf</a> <a href="texmf-dist/doc/latex/pst-optexp/pst-optexp.pdf">pst-optexp.pdf</a>. </small></li> -<li id="pst-optic"><b><a href="texmf-dist/doc/generic/pst-optic">pst-optic</a></b><small> +<li id="pst-optic"><b><a href="texmf-dist/doc/generic/pst-optic/">pst-optic</a></b><small> (<a href="https://ctan.org/pkg/pst-optic">CTAN</a>): -Drawing optics diagrams +Drawing optics diagrams. <a href="texmf-dist/doc/generic/pst-optic/pst-optic-doc.pdf">pst-optic-doc.pdf</a>. </small></li> -<li id="pst-osci"><b><a href="texmf-dist/doc/generic/pst-osci">pst-osci</a></b><small> +<li id="pst-osci"><b><a href="texmf-dist/doc/generic/pst-osci/">pst-osci</a></b><small> (<a href="https://ctan.org/pkg/pst-osci">CTAN</a>): -Oscgons with PSTricks +Oscgons with PSTricks. <a href="texmf-dist/doc/generic/pst-osci/oscilloscope.pdf">oscilloscope.pdf</a> (fr) <a href="texmf-dist/doc/generic/pst-osci/pst-osci-doc.pdf">pst-osci-doc.pdf</a>. </small></li> -<li id="pst-ovl"><b><a href="texmf-dist/doc/generic/pst-ovl">pst-ovl</a></b><small> +<li id="pst-ovl"><b><a href="texmf-dist/doc/generic/pst-ovl/">pst-ovl</a></b><small> (<a href="https://ctan.org/pkg/pst-ovl">CTAN</a>): -Create and manage graphical overlays +Create and manage graphical overlays. <a href="texmf-dist/doc/generic/pst-ovl/pst-ovl-doc.pdf">pst-ovl-doc.pdf</a>. </small></li> -<li id="pst-pad"><b><a href="texmf-dist/doc/generic/pst-pad">pst-pad</a></b><small> +<li id="pst-pad"><b><a href="texmf-dist/doc/generic/pst-pad/">pst-pad</a></b><small> (<a href="https://ctan.org/pkg/pst-pad">CTAN</a>): -Draw simple attachment systems with PSTricks +Draw simple attachment systems with PSTricks. <a href="texmf-dist/doc/generic/pst-pad/pst-pad-doc.pdf">pst-pad-doc.pdf</a> <a href="texmf-dist/doc/generic/pst-pad/pst-pad-docDE.pdf">pst-pad-docDE.pdf</a> (de). </small></li> -<li id="pst-pdf"><b><a href="texmf-dist/doc/latex/pst-pdf">pst-pdf</a></b><small> +<li id="pst-pdf"><b><a href="texmf-dist/doc/latex/pst-pdf/">pst-pdf</a></b><small> (<a href="https://ctan.org/pkg/pst-pdf">CTAN</a>): -Make PDF versions of graphics by processing between runs +Make PDF versions of graphics by processing between runs. <a href="texmf-dist/doc/latex/pst-pdf/pst-pdf-DE.pdf">pst-pdf-DE.pdf</a> (de) <a href="texmf-dist/doc/latex/pst-pdf/pst-pdf-example.pdf">pst-pdf-example.pdf</a> <a href="texmf-dist/doc/latex/pst-pdf/pst-pdf.pdf">pst-pdf.pdf</a>. </small></li> -<li id="pst-pdgr"><b><a href="texmf-dist/doc/generic/pst-pdgr">pst-pdgr</a></b><small> +<li id="pst-pdgr"><b><a href="texmf-dist/doc/generic/pst-pdgr/">pst-pdgr</a></b><small> (<a href="https://ctan.org/pkg/pst-pdgr">CTAN</a>): -Draw medical pedigrees using PSTricks +Draw medical pedigrees using PSTricks. <a href="texmf-dist/doc/generic/pst-pdgr/pst-pdgr.pdf">pst-pdgr.pdf</a>. </small></li> -<li id="pst-perspective"><b><a href="texmf-dist/doc/generic/pst-perspective">pst-perspective</a></b><small> +<li id="pst-perspective"><b><a href="texmf-dist/doc/generic/pst-perspective/">pst-perspective</a></b><small> (<a href="https://ctan.org/pkg/pst-perspective">CTAN</a>): -Draw perspective views using PSTricks +Draw perspective views using PSTricks. <a href="texmf-dist/doc/generic/pst-perspective/Parallelprojektion-Kreis.pdf">Parallelprojektion-Kreis.pdf</a> <a href="texmf-dist/doc/generic/pst-perspective/pst-perspective-doc.pdf">pst-perspective-doc.pdf</a> (de) <a href="texmf-dist/doc/generic/pst-perspective/pst-perspective-docEN.pdf">pst-perspective-docEN.pdf</a>. </small></li> -<li id="pst-platon"><b><a href="texmf-dist/doc/generic/pst-platon">pst-platon</a></b><small> +<li id="pst-platon"><b><a href="texmf-dist/doc/generic/pst-platon/">pst-platon</a></b><small> (<a href="https://ctan.org/pkg/pst-platon">CTAN</a>): -Platonic solids in PSTricks +Platonic solids in PSTricks. <a href="texmf-dist/doc/generic/pst-platon/pst-platon-doc.pdf">pst-platon-doc.pdf</a>. </small></li> -<li id="pst-plot"><b><a href="texmf-dist/doc/generic/pst-plot">pst-plot</a></b><small> +<li id="pst-plot"><b><a href="texmf-dist/doc/generic/pst-plot/">pst-plot</a></b><small> (<a href="https://ctan.org/pkg/pst-plot">CTAN</a>): -Plot data using PSTricks +Plot data using PSTricks. <a href="texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf">pst-plot-doc.pdf</a>. </small></li> -<li id="pst-poker"><b><a href="texmf-dist/doc/latex/pst-poker">pst-poker</a></b><small> +<li id="pst-poker"><b><a href="texmf-dist/doc/latex/pst-poker/">pst-poker</a></b><small> (<a href="https://ctan.org/pkg/pst-poker">CTAN</a>): -Drawing poker cards +Drawing poker cards. <a href="texmf-dist/doc/latex/pst-poker/pst-poker-doc.pdf">pst-poker-doc.pdf</a>. </small></li> -<li id="pst-poly"><b><a href="texmf-dist/doc/generic/pst-poly">pst-poly</a></b><small> +<li id="pst-poly"><b><a href="texmf-dist/doc/generic/pst-poly/">pst-poly</a></b><small> (<a href="https://ctan.org/pkg/pst-poly">CTAN</a>): -Polygons with PSTricks +Polygons with PSTricks. <a href="texmf-dist/doc/generic/pst-poly/pst-poly-doc.pdf">pst-poly-doc.pdf</a>. </small></li> -<li id="pst-pulley"><b><a href="texmf-dist/doc/generic/pst-pulley">pst-pulley</a></b><small> +<li id="pst-pulley"><b><a href="texmf-dist/doc/generic/pst-pulley/">pst-pulley</a></b><small> (<a href="https://ctan.org/pkg/pst-pulley">CTAN</a>): -Plot pulleys, using PSTricks +Plot pulleys, using PSTricks. <a href="texmf-dist/doc/generic/pst-pulley/pst-pulley-doc.pdf">pst-pulley-doc.pdf</a>. </small></li> -<li id="pst-qtree"><b><a href="texmf-dist/doc/generic/pst-qtree">pst-qtree</a></b><small> +<li id="pst-qtree"><b><a href="texmf-dist/doc/generic/pst-qtree/">pst-qtree</a></b><small> (<a href="https://ctan.org/pkg/pst-qtree">CTAN</a>): -Simple syntax for trees +Simple syntax for trees. <a href="texmf-dist/doc/generic/pst-qtree/pst-qtree-manual.pdf">pst-qtree-manual.pdf</a>. </small></li> -<li id="pst-rputover"><b><a href="texmf-dist/doc/generic/pst-rputover">pst-rputover</a></b><small> +<li id="pst-rputover"><b><a href="texmf-dist/doc/generic/pst-rputover/">pst-rputover</a></b><small> (<a href="https://ctan.org/pkg/pst-rputover">CTAN</a>): -Place text over objects without obscuring background colors +Place text over objects without obscuring background colors. <a href="texmf-dist/doc/generic/pst-rputover/pst-rputover-doc.pdf">pst-rputover-doc.pdf</a>. </small></li> -<li id="pst-rubans"><b><a href="texmf-dist/doc/generic/pst-rubans">pst-rubans</a></b><small> +<li id="pst-rubans"><b><a href="texmf-dist/doc/generic/pst-rubans/">pst-rubans</a></b><small> (<a href="https://ctan.org/pkg/pst-rubans">CTAN</a>): -Draw three-dimensional ribbons +Draw three-dimensional ribbons. <a href="texmf-dist/doc/generic/pst-rubans/pst-rubans-doc.pdf">pst-rubans-doc.pdf</a>. </small></li> -<li id="pst-shell"><b><a href="texmf-dist/doc/generic/pst-shell/images">pst-shell</a></b><small> +<li id="pst-shell"><b><a href="texmf-dist/doc/generic/pst-shell/">pst-shell</a></b><small> (<a href="https://ctan.org/pkg/pst-shell">CTAN</a>): -pst-shell: plotting sea shells +pst-shell: plotting sea shells. <a href="texmf-dist/doc/generic/pst-shell/images/shell.pdf">shell.pdf</a> <a href="texmf-dist/doc/generic/pst-shell/pst-shell-doc.pdf">pst-shell-doc.pdf</a>. </small></li> -<li id="pst-sigsys"><b><a href="texmf-dist/doc/generic/pst-sigsys">pst-sigsys</a></b><small> +<li id="pst-sigsys"><b><a href="texmf-dist/doc/generic/pst-sigsys/">pst-sigsys</a></b><small> (<a href="https://ctan.org/pkg/pst-sigsys">CTAN</a>): -Support of signal processing-related disciplines +Support of signal processing-related disciplines. <a href="texmf-dist/doc/generic/pst-sigsys/pst-sigsys-doc.pdf">pst-sigsys-doc.pdf</a>. </small></li> -<li id="pst-slpe"><b><a href="texmf-dist/doc/generic/pst-slpe">pst-slpe</a></b><small> +<li id="pst-slpe"><b><a href="texmf-dist/doc/generic/pst-slpe/">pst-slpe</a></b><small> (<a href="https://ctan.org/pkg/pst-slpe">CTAN</a>): -Sophisticated colour gradients +Sophisticated colour gradients. <a href="texmf-dist/doc/generic/pst-slpe/pst-slpe.pdf">pst-slpe.pdf</a>. </small></li> -<li id="pst-solarsystem"><b><a href="texmf-dist/doc/generic/pst-solarsystem">pst-solarsystem</a></b><small> +<li id="pst-solarsystem"><b><a href="texmf-dist/doc/generic/pst-solarsystem/">pst-solarsystem</a></b><small> (<a href="https://ctan.org/pkg/pst-solarsystem">CTAN</a>): -Plot the solar system for a specific date +Plot the solar system for a specific date. <a href="texmf-dist/doc/generic/pst-solarsystem/pst-solarsystem-doc.pdf">pst-solarsystem-doc.pdf</a>. </small></li> -<li id="pst-solides3d"><b><a href="texmf-dist/doc/generic/pst-solides3d">pst-solides3d</a></b><small> +<li id="pst-solides3d"><b><a href="texmf-dist/doc/generic/pst-solides3d/">pst-solides3d</a></b><small> (<a href="https://ctan.org/pkg/pst-solides3d">CTAN</a>): -Draw perspective views of 3D solids +Draw perspective views of 3D solids. <a href="texmf-dist/doc/generic/pst-solides3d/pst-solides3d-doc.pdf">pst-solides3d-doc.pdf</a>. </small></li> -<li id="pst-soroban"><b><a href="texmf-dist/doc/generic/pst-soroban">pst-soroban</a></b><small> +<li id="pst-soroban"><b><a href="texmf-dist/doc/generic/pst-soroban/">pst-soroban</a></b><small> (<a href="https://ctan.org/pkg/pst-soroban">CTAN</a>): -Draw a Soroban using PSTricks +Draw a Soroban using PSTricks. <a href="texmf-dist/doc/generic/pst-soroban/pst-soroban-doc.pdf">pst-soroban-doc.pdf</a>. </small></li> -<li id="pst-spectra"><b><a href="texmf-dist/doc/generic/pst-spectra">pst-spectra</a></b><small> +<li id="pst-spectra"><b><a href="texmf-dist/doc/generic/pst-spectra/">pst-spectra</a></b><small> (<a href="https://ctan.org/pkg/pst-spectra">CTAN</a>): -Draw continuum, emission and absorption spectra with PSTricks +Draw continuum, emission and absorption spectra with PSTricks. <a href="texmf-dist/doc/generic/pst-spectra/pst-spectra.pdf">pst-spectra.pdf</a> (fr) <a href="texmf-dist/doc/generic/pst-spectra/pst-spectraEN.pdf">pst-spectraEN.pdf</a>. </small></li> -<li id="pst-spinner"><b><a href="texmf-dist/doc/generic/pst-spinner">pst-spinner</a></b><small> +<li id="pst-spinner"><b><a href="texmf-dist/doc/generic/pst-spinner/">pst-spinner</a></b><small> (<a href="https://ctan.org/pkg/pst-spinner">CTAN</a>): -Drawing a fidget spinner +Drawing a fidget spinner. <a href="texmf-dist/doc/generic/pst-spinner/pst-spinner-doc.pdf">pst-spinner-doc.pdf</a>. </small></li> -<li id="pst-stru"><b><a href="texmf-dist/doc/generic/pst-stru">pst-stru</a></b><small> +<li id="pst-stru"><b><a href="texmf-dist/doc/generic/pst-stru/">pst-stru</a></b><small> (<a href="https://ctan.org/pkg/pst-stru">CTAN</a>): -Civil engineering diagrams, using PSTricks +Civil engineering diagrams, using PSTricks. <a href="texmf-dist/doc/generic/pst-stru/pst-stru-doc.pdf">pst-stru-doc.pdf</a>. </small></li> -<li id="pst-text"><b><a href="texmf-dist/doc/generic/pst-text">pst-text</a></b><small> +<li id="pst-text"><b><a href="texmf-dist/doc/generic/pst-text/">pst-text</a></b><small> (<a href="https://ctan.org/pkg/pst-text">CTAN</a>): -Text and character manipulation in PSTricks +Text and character manipulation in PSTricks. <a href="texmf-dist/doc/generic/pst-text/pst-text-doc.pdf">pst-text-doc.pdf</a>. </small></li> -<li id="pst-thick"><b><a href="texmf-dist/doc/generic/pst-thick">pst-thick</a></b><small> +<li id="pst-thick"><b><a href="texmf-dist/doc/generic/pst-thick/">pst-thick</a></b><small> (<a href="https://ctan.org/pkg/pst-thick">CTAN</a>): -Drawing very thick lines and curves +Drawing very thick lines and curves. <a href="texmf-dist/doc/generic/pst-thick/pst-thick-doc.pdf">pst-thick-doc.pdf</a> (fr). </small></li> -<li id="pst-tools"><b><a href="texmf-dist/doc/generic/pst-tools">pst-tools</a></b><small> +<li id="pst-tools"><b><a href="texmf-dist/doc/generic/pst-tools/">pst-tools</a></b><small> (<a href="https://ctan.org/pkg/pst-tools">CTAN</a>): -PSTricks support functions +PSTricks support functions. <a href="texmf-dist/doc/generic/pst-tools/pst-tools-doc.pdf">pst-tools-doc.pdf</a>. </small></li> -<li id="pst-tree"><b><a href="texmf-dist/doc/generic/pst-tree">pst-tree</a></b><small> +<li id="pst-tree"><b><a href="texmf-dist/doc/generic/pst-tree/">pst-tree</a></b><small> (<a href="https://ctan.org/pkg/pst-tree">CTAN</a>): -Trees, using PSTricks +Trees, using PSTricks. <a href="texmf-dist/doc/generic/pst-tree/pst-tree-doc.pdf">pst-tree-doc.pdf</a>. </small></li> -<li id="pst-turtle"><b><a href="texmf-dist/doc/generic/pst-turtle">pst-turtle</a></b><small> +<li id="pst-turtle"><b><a href="texmf-dist/doc/generic/pst-turtle/">pst-turtle</a></b><small> (<a href="https://ctan.org/pkg/pst-turtle">CTAN</a>): -Commands for "turtle operations" +Commands for "turtle operations". <a href="texmf-dist/doc/generic/pst-turtle/pst-turtle-doc.pdf">pst-turtle-doc.pdf</a>. </small></li> -<li id="pst-tvz"><b><a href="texmf-dist/doc/generic/pst-tvz">pst-tvz</a></b><small> +<li id="pst-tvz"><b><a href="texmf-dist/doc/generic/pst-tvz/">pst-tvz</a></b><small> (<a href="https://ctan.org/pkg/pst-tvz">CTAN</a>): -Draw trees with more than one root node, using PSTricks +Draw trees with more than one root node, using PSTricks. <a href="texmf-dist/doc/generic/pst-tvz/pst-tvz-doc.pdf">pst-tvz-doc.pdf</a>. </small></li> -<li id="pst-uml"><b><a href="texmf-dist/doc/generic/pst-uml">pst-uml</a></b><small> +<li id="pst-uml"><b><a href="texmf-dist/doc/generic/pst-uml/">pst-uml</a></b><small> (<a href="https://ctan.org/pkg/pst-uml">CTAN</a>): -UML diagrams with PSTricks +UML diagrams with PSTricks. <a href="texmf-dist/doc/generic/pst-uml/pst-uml-doc.pdf">pst-uml-doc.pdf</a> (fr) <a href="texmf-dist/doc/generic/pst-uml/pst-uml-encapsuled-pdf-fig.pdf">pst-uml-encapsuled-pdf-fig.pdf</a> <a href="texmf-dist/doc/generic/pst-uml/pst-uml-exemples.pdf">pst-uml-exemples.pdf</a> (fr). </small></li> -<li id="pst-vectorian"><b><a href="texmf-dist/doc/latex/pst-vectorian">pst-vectorian</a></b><small> +<li id="pst-vectorian"><b><a href="texmf-dist/doc/latex/pst-vectorian/">pst-vectorian</a></b><small> (<a href="https://ctan.org/pkg/pst-vectorian">CTAN</a>): -Printing ornaments +Printing ornaments. <a href="texmf-dist/doc/latex/pst-vectorian/psvectorian.pdf">psvectorian.pdf</a> (fr). </small></li> -<li id="pst-vehicle"><b><a href="texmf-dist/doc/generic/pst-vehicle">pst-vehicle</a></b><small> +<li id="pst-vehicle"><b><a href="texmf-dist/doc/generic/pst-vehicle/">pst-vehicle</a></b><small> (<a href="https://ctan.org/pkg/pst-vehicle">CTAN</a>): -A PSTricks package for rolling vehicles on graphs of mathematical functions +A PSTricks package for rolling vehicles on graphs of mathematical functions. <a href="texmf-dist/doc/generic/pst-vehicle/pst-vehicle-doc-fr.pdf">pst-vehicle-doc-fr.pdf</a> (fr) <a href="texmf-dist/doc/generic/pst-vehicle/pst-vehicle-doc.pdf">pst-vehicle-doc.pdf</a>. </small></li> -<li id="pst-venn"><b><a href="texmf-dist/doc/generic/pst-venn">pst-venn</a></b><small> +<li id="pst-venn"><b><a href="texmf-dist/doc/generic/pst-venn/">pst-venn</a></b><small> (<a href="https://ctan.org/pkg/pst-venn">CTAN</a>): -A PSTricks package for drawing Venn sets +A PSTricks package for drawing Venn sets. <a href="texmf-dist/doc/generic/pst-venn/pst-venn-doc.pdf">pst-venn-doc.pdf</a>. </small></li> -<li id="pst-vowel"><b><a href="texmf-dist/doc/latex/pst-vowel">pst-vowel</a></b><small> +<li id="pst-vowel"><b><a href="texmf-dist/doc/latex/pst-vowel/">pst-vowel</a></b><small> (<a href="https://ctan.org/pkg/pst-vowel">CTAN</a>): -Enable arrows showing diphthongs on vowel charts +Enable arrows showing diphthongs on vowel charts. <a href="texmf-dist/doc/latex/pst-vowel/pst-vowel.pdf">pst-vowel.pdf</a>. </small></li> -<li id="pst2pdf"><b><a href="texmf-dist/doc/latex/pst2pdf">pst2pdf</a></b><small> +<li id="pst2pdf"><b><a href="texmf-dist/doc/latex/pst2pdf/">pst2pdf</a></b><small> (<a href="https://ctan.org/pkg/pst2pdf">CTAN</a>): -A script to compile PSTricks documents via pdfTeX +A script to compile PSTricks documents via pdfTeX. <a href="texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf">pst2pdf-doc.pdf</a> <a href="texmf-dist/doc/latex/pst2pdf/test1-pdf.pdf">test1-pdf.pdf</a> <a href="texmf-dist/doc/latex/pst2pdf/test2-pdf.pdf">test2-pdf.pdf</a> <a href="texmf-dist/doc/latex/pst2pdf/test3-pdf.pdf">test3-pdf.pdf</a>. </small></li> -<li id="pstool"><b><a href="texmf-dist/doc/latex/pstool">pstool</a></b><small> +<li id="pstool"><b><a href="texmf-dist/doc/latex/pstool/">pstool</a></b><small> (<a href="https://ctan.org/pkg/pstool">CTAN</a>): -Support for psfrag within pdfLaTeX +Support for psfrag within pdfLaTeX. <a href="texmf-dist/doc/latex/pstool/pstool.pdf">pstool.pdf</a>. </small></li> -<li id="pstricks"><b><a href="texmf-dist/doc/generic/pstricks/images">pstricks</a></b><small> -(<a href="https://ctan.org/pkg/pstricks">CTAN</a>): -PostScript macros for TeX +<li id="pstricks"><b><a href="texmf-dist/doc/generic/pstricks/">pstricks</a></b><small> +PostScript macros for TeX. <a href="texmf-dist/doc/generic/pstricks/images/tiger.pdf">tiger.pdf</a> <a href="texmf-dist/doc/generic/pstricks/pst-doc.pdf">pst-doc.pdf</a> <a href="texmf-dist/doc/generic/pstricks/pst-news05.pdf">pst-news05.pdf</a> @@ -18063,16 +18015,15 @@ PostScript macros for TeX <a href="texmf-dist/doc/generic/pstricks/test-pst.pdf">test-pst.pdf</a>. </small></li> -<li id="pstricks-add"><b><a href="texmf-dist/doc/generic/pstricks-add/data">pstricks-add</a></b><small> +<li id="pstricks-add"><b><a href="texmf-dist/doc/generic/pstricks-add/">pstricks-add</a></b><small> (<a href="https://ctan.org/pkg/pstricks-add">CTAN</a>): -A collection of add-ons and bugfixes for PSTricks +A collection of add-ons and bugfixes for PSTricks. <a href="texmf-dist/doc/generic/pstricks-add/data/olympic.pdf">olympic.pdf</a> <a href="texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.pdf">pstricks-add-doc.pdf</a>. </small></li> -<li id="pstricks_calcnotes"><b><a href="texmf-dist/doc/latex/pstricks_calcnotes">pstricks_calcnotes</a></b><small> -(<a href="https://ctan.org/pkg/pstricks_calcnotes">CTAN</a>): -Use of PSTricks in calculus lecture notes +<li id="pstricks_calcnotes"><b><a href="texmf-dist/doc/latex/pstricks_calcnotes/">pstricks_calcnotes</a></b><small> +Use of PSTricks in calculus lecture notes. <a href="texmf-dist/doc/latex/pstricks_calcnotes/AppThreePDF.pdf">AppThreePDF.pdf</a> <a href="texmf-dist/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/test.pdf">test.pdf</a> <a href="texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/BZ1.pdf">BZ1.pdf</a> @@ -18112,15 +18063,15 @@ Use of PSTricks in calculus lecture notes <a href="texmf-dist/doc/latex/pstricks_calcnotes/ThreeAppsPDF.pdf">ThreeAppsPDF.pdf</a>. </small></li> -<li id="pstring"><b><a href="texmf-dist/doc/latex/pstring">pstring</a></b><small> +<li id="pstring"><b><a href="texmf-dist/doc/latex/pstring/">pstring</a></b><small> (<a href="https://ctan.org/pkg/pstring">CTAN</a>): -Typeset sequences with justification pointers +Typeset sequences with justification pointers. <a href="texmf-dist/doc/latex/pstring/pstring-doc.pdf">pstring-doc.pdf</a>. </small></li> -<li id="psutils"><b><a href="texmf-dist/doc/man/man1">psutils</a></b><small> +<li id="psutils"><b><a href="texmf-dist/doc/man/man1/">psutils</a></b><small> (<a href="https://ctan.org/pkg/psutils">CTAN</a>): -PostScript utilities +PostScript utilities. <a href="texmf-dist/doc/man/man1/epsffit.man1.pdf">epsffit.man1.pdf</a> <a href="texmf-dist/doc/man/man1/extractres.man1.pdf">extractres.man1.pdf</a> <a href="texmf-dist/doc/man/man1/includeres.man1.pdf">includeres.man1.pdf</a> @@ -18133,9 +18084,9 @@ PostScript utilities <a href="texmf-dist/doc/man/man1/psutils.man1.pdf">psutils.man1.pdf</a>. </small></li> -<li id="ptex"><b><a href="texmf-dist/doc/man/man1">ptex</a></b><small> +<li id="ptex"><b><a href="texmf-dist/doc/man/man1/">ptex</a></b><small> (<a href="https://ctan.org/pkg/ptex">CTAN</a>): -A TeX system for publishing in Japanese +A TeX system for publishing in Japanese. <a href="texmf-dist/doc/man/man1/eptex.man1.pdf">eptex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/makejvf.man1.pdf">makejvf.man1.pdf</a> <a href="texmf-dist/doc/man/man1/mendex.man1.pdf">mendex.man1.pdf</a> @@ -18144,15 +18095,15 @@ A TeX system for publishing in Japanese <a href="texmf-dist/doc/man/man1/ptftopl.man1.pdf">ptftopl.man1.pdf</a>. </small></li> -<li id="ptex-fontmaps"><b><a href="texmf-dist/doc/fonts/ptex-fontmaps">ptex-fontmaps</a></b><small> +<li id="ptex-fontmaps"><b><a href="texmf-dist/doc/fonts/ptex-fontmaps/">ptex-fontmaps</a></b><small> (<a href="https://ctan.org/pkg/ptex-fontmaps">CTAN</a>): -Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex +Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex. <a href="texmf-dist/doc/fonts/ptex-fontmaps/kanji-config-updmap.pdf">kanji-config-updmap.pdf</a>. </small></li> -<li id="ptex-manual"><b><a href="texmf-dist/doc/ptex/ptex-manual">ptex-manual</a></b><small> +<li id="ptex-manual"><b><a href="texmf-dist/doc/ptex/ptex-manual/">ptex-manual</a></b><small> (<a href="https://ctan.org/pkg/ptex-manual">CTAN</a>): -Japanese pTeX manual +Japanese pTeX manual. <a href="texmf-dist/doc/ptex/ptex-manual/eptex_resume.pdf">eptex_resume.pdf</a> <a href="texmf-dist/doc/ptex/ptex-manual/eptexdoc.pdf">eptexdoc.pdf</a> (ja) <a href="texmf-dist/doc/ptex/ptex-manual/jfm.pdf">jfm.pdf</a> (ja) @@ -18164,91 +18115,91 @@ Japanese pTeX manual <a href="texmf-dist/doc/ptex/ptex-manual/ptexskip_asciimw.pdf">ptexskip_asciimw.pdf</a>. </small></li> -<li id="ptext"><b><a href="texmf-dist/doc/xelatex/ptext">ptext</a></b><small> +<li id="ptext"><b><a href="texmf-dist/doc/xelatex/ptext/">ptext</a></b><small> (<a href="https://ctan.org/pkg/ptext">CTAN</a>): -A 'lipsum' for Persian +A 'lipsum' for Persian. <a href="texmf-dist/doc/xelatex/ptext/ptext.pdf">ptext.pdf</a> (fa). </small></li> -<li id="ptolemaicastronomy"><b><a href="texmf-dist/doc/latex/ptolemaicastronomy">ptolemaicastronomy</a></b><small> +<li id="ptolemaicastronomy"><b><a href="texmf-dist/doc/latex/ptolemaicastronomy/">ptolemaicastronomy</a></b><small> (<a href="https://ctan.org/pkg/ptolemaicastronomy">CTAN</a>): -Diagrams of sphere models for variably strict conditionals (Lewis counterfactuals) +Diagrams of sphere models for variably strict conditionals (Lewis counterfactuals). <a href="texmf-dist/doc/latex/ptolemaicastronomy/ptolemaicastronomy.pdf">ptolemaicastronomy.pdf</a>. </small></li> -<li id="ptptex"><b><a href="texmf-dist/doc/latex/ptptex">ptptex</a></b><small> +<li id="ptptex"><b><a href="texmf-dist/doc/latex/ptptex/">ptptex</a></b><small> (<a href="https://ctan.org/pkg/ptptex">CTAN</a>): -Macros for 'Progress of Theoretical Physics' +Macros for 'Progress of Theoretical Physics'. <a href="texmf-dist/doc/latex/ptptex/manptp.pdf">manptp.pdf</a>. </small></li> -<li id="punk-latex"><b><a href="texmf-dist/doc/latex/punk-latex">punk-latex</a></b><small> +<li id="punk-latex"><b><a href="texmf-dist/doc/latex/punk-latex/">punk-latex</a></b><small> (<a href="https://ctan.org/pkg/punk-latex">CTAN</a>): -LaTeX support for punk fonts +LaTeX support for punk fonts. <a href="texmf-dist/doc/latex/punk-latex/punk.pdf">punk.pdf</a>. </small></li> -<li id="punknova"><b><a href="texmf-dist/doc/fonts/punknova/documentation">punknova</a></b><small> +<li id="punknova"><b><a href="texmf-dist/doc/fonts/punknova/">punknova</a></b><small> (<a href="https://ctan.org/pkg/punknova">CTAN</a>): -OpenType version of Knuth's Punk font +OpenType version of Knuth's Punk font. <a href="texmf-dist/doc/fonts/punknova/documentation/sample.pdf">sample.pdf</a>. </small></li> -<li id="purifyeps"><b><a href="texmf-dist/doc/man/man1">purifyeps</a></b><small> +<li id="purifyeps"><b><a href="texmf-dist/doc/man/man1/">purifyeps</a></b><small> (<a href="https://ctan.org/pkg/purifyeps">CTAN</a>): -Make EPS work with both LaTeX/dvips and pdfLaTeX +Make EPS work with both LaTeX/dvips and pdfLaTeX. <a href="texmf-dist/doc/man/man1/purifyeps.man1.pdf">purifyeps.man1.pdf</a>. </small></li> -<li id="pxbase"><b><a href="texmf-dist/doc/platex/pxbase">pxbase</a></b><small> +<li id="pxbase"><b><a href="texmf-dist/doc/platex/pxbase/">pxbase</a></b><small> (<a href="https://ctan.org/pkg/pxbase">CTAN</a>): -Tools for use with (u)pLaTeX +Tools for use with (u)pLaTeX. <a href="texmf-dist/doc/platex/pxbase/pxbabel.pdf">pxbabel.pdf</a>. </small></li> -<li id="pxchfon"><b><a href="texmf-dist/doc/platex/pxchfon">pxchfon</a></b><small> +<li id="pxchfon"><b><a href="texmf-dist/doc/platex/pxchfon/">pxchfon</a></b><small> (<a href="https://ctan.org/pkg/pxchfon">CTAN</a>): -Japanese font setup for pLaTeX and upLaTeX +Japanese font setup for pLaTeX and upLaTeX. <a href="texmf-dist/doc/platex/pxchfon/pxchfon.pdf">pxchfon.pdf</a> (ja) <a href="texmf-dist/doc/platex/pxchfon/sample-2000jis.pdf">sample-2000jis.pdf</a> <a href="texmf-dist/doc/platex/pxchfon/sample-2004jis.pdf">sample-2004jis.pdf</a> <a href="texmf-dist/doc/platex/pxchfon/sample-pxchfon.pdf">sample-pxchfon.pdf</a>. </small></li> -<li id="pxcjkcat"><b><a href="texmf-dist/doc/latex/pxcjkcat">pxcjkcat</a></b><small> +<li id="pxcjkcat"><b><a href="texmf-dist/doc/latex/pxcjkcat/">pxcjkcat</a></b><small> (<a href="https://ctan.org/pkg/pxcjkcat">CTAN</a>): -LaTeX interface for the CJK category codes of upTeX +LaTeX interface for the CJK category codes of upTeX. <a href="texmf-dist/doc/latex/pxcjkcat/pxcjkcat.pdf">pxcjkcat.pdf</a>. </small></li> -<li id="pxfonts"><b><a href="texmf-dist/doc/fonts/pxfonts">pxfonts</a></b><small> +<li id="pxfonts"><b><a href="texmf-dist/doc/fonts/pxfonts/">pxfonts</a></b><small> (<a href="https://ctan.org/pkg/pxfonts">CTAN</a>): -Palatino-like fonts in support of mathematics +Palatino-like fonts in support of mathematics. <a href="texmf-dist/doc/fonts/pxfonts/pxfontsdoc.pdf">pxfontsdoc.pdf</a> <a href="texmf-dist/doc/fonts/pxfonts/pxfontsdocA4.pdf">pxfontsdocA4.pdf</a>. </small></li> -<li id="pxgreeks"><b><a href="texmf-dist/doc/latex/pxgreeks">pxgreeks</a></b><small> +<li id="pxgreeks"><b><a href="texmf-dist/doc/latex/pxgreeks/">pxgreeks</a></b><small> (<a href="https://ctan.org/pkg/pxgreeks">CTAN</a>): -Shape selection for PX fonts Greek letters +Shape selection for PX fonts Greek letters. <a href="texmf-dist/doc/latex/pxgreeks/pxgreeks.pdf">pxgreeks.pdf</a>. </small></li> -<li id="pxjahyper"><b><a href="texmf-dist/doc/platex/pxjahyper">pxjahyper</a></b><small> +<li id="pxjahyper"><b><a href="texmf-dist/doc/platex/pxjahyper/">pxjahyper</a></b><small> (<a href="https://ctan.org/pkg/pxjahyper">CTAN</a>): -Hyperref support for pLaTeX +Hyperref support for pLaTeX. <a href="texmf-dist/doc/platex/pxjahyper/pxjahyper.pdf">pxjahyper.pdf</a> (ja). </small></li> -<li id="pxjodel"><b><a href="texmf-dist/doc/latex/pxjodel">pxjodel</a></b><small> +<li id="pxjodel"><b><a href="texmf-dist/doc/latex/pxjodel/">pxjodel</a></b><small> (<a href="https://ctan.org/pkg/pxjodel">CTAN</a>): -Help change metrics of fonts from japanese-otf +Help change metrics of fonts from japanese-otf. <a href="texmf-dist/doc/latex/pxjodel/pxjodel.pdf">pxjodel.pdf</a>. </small></li> -<li id="pxrubrica"><b><a href="texmf-dist/doc/platex/pxrubrica">pxrubrica</a></b><small> +<li id="pxrubrica"><b><a href="texmf-dist/doc/platex/pxrubrica/">pxrubrica</a></b><small> (<a href="https://ctan.org/pkg/pxrubrica">CTAN</a>): -Ruby annotations according to JIS X 4051 +Ruby annotations according to JIS X 4051. <a href="texmf-dist/doc/platex/pxrubrica/pxrubrica-en.pdf">pxrubrica-en.pdf</a> <a href="texmf-dist/doc/platex/pxrubrica/pxrubrica.pdf">pxrubrica.pdf</a> (ja) <a href="texmf-dist/doc/platex/pxrubrica/sample/test-jlreq.pdf">test-jlreq.pdf</a> @@ -18257,21 +18208,21 @@ Ruby annotations according to JIS X 4051 <a href="texmf-dist/doc/platex/pxrubrica/sample/test-toc.pdf">test-toc.pdf</a>. </small></li> -<li id="pxtxalfa"><b><a href="texmf-dist/doc/fonts/pxtxalfa">pxtxalfa</a></b><small> +<li id="pxtxalfa"><b><a href="texmf-dist/doc/fonts/pxtxalfa/">pxtxalfa</a></b><small> (<a href="https://ctan.org/pkg/pxtxalfa">CTAN</a>): -Virtual maths alphabets based on pxfonts and txfonts +Virtual maths alphabets based on pxfonts and txfonts. <a href="texmf-dist/doc/fonts/pxtxalfa/pxtxalfa.pdf">pxtxalfa.pdf</a>. </small></li> -<li id="pygmentex"><b><a href="texmf-dist/doc/latex/pygmentex">pygmentex</a></b><small> +<li id="pygmentex"><b><a href="texmf-dist/doc/latex/pygmentex/">pygmentex</a></b><small> (<a href="https://ctan.org/pkg/pygmentex">CTAN</a>): -Use Pygments to format code listings in documents +Use Pygments to format code listings in documents. <a href="texmf-dist/doc/latex/pygmentex/demo.pdf">demo.pdf</a>. </small></li> -<li id="pythontex"><b><a href="texmf-dist/doc/latex/pythontex">pythontex</a></b><small> +<li id="pythontex"><b><a href="texmf-dist/doc/latex/pythontex/">pythontex</a></b><small> (<a href="https://ctan.org/pkg/pythontex">CTAN</a>): -Run Python from within a document, typesetting the results +Run Python from within a document, typesetting the results. <a href="texmf-dist/doc/latex/pythontex/pythontex.pdf">pythontex.pdf</a> <a href="texmf-dist/doc/latex/pythontex/pythontex_gallery.pdf">pythontex_gallery.pdf</a> <a href="texmf-dist/doc/latex/pythontex/pythontex_quickstart.pdf">pythontex_quickstart.pdf</a>. @@ -18281,124 +18232,124 @@ Run Python from within a document, typesetting the results <h2 id="letter-Q">Q</h2> -<ol start="2418"> +<ol start="2419"> -<li id="qcircuit"><b><a href="texmf-dist/doc/latex/qcircuit">qcircuit</a></b><small> +<li id="qcircuit"><b><a href="texmf-dist/doc/latex/qcircuit/">qcircuit</a></b><small> (<a href="https://ctan.org/pkg/qcircuit">CTAN</a>): -Macros to generate quantum ciruits +Macros to generate quantum ciruits. <a href="texmf-dist/doc/latex/qcircuit/qcircuit.pdf">qcircuit.pdf</a>. </small></li> -<li id="qcm"><b><a href="texmf-dist/doc/latex/qcm">qcm</a></b><small> +<li id="qcm"><b><a href="texmf-dist/doc/latex/qcm/">qcm</a></b><small> (<a href="https://ctan.org/pkg/qcm">CTAN</a>): -A LaTeX2e class for making multiple choice questionnaires +A LaTeX2e class for making multiple choice questionnaires. <a href="texmf-dist/doc/latex/qcm/qcm.pdf">qcm.pdf</a>. </small></li> -<li id="qrcode"><b><a href="texmf-dist/doc/latex/qrcode">qrcode</a></b><small> +<li id="qrcode"><b><a href="texmf-dist/doc/latex/qrcode/">qrcode</a></b><small> (<a href="https://ctan.org/pkg/qrcode">CTAN</a>): -Generate QR codes in LaTeX +Generate QR codes in LaTeX. <a href="texmf-dist/doc/latex/qrcode/qrcode.pdf">qrcode.pdf</a>. </small></li> -<li id="qstest"><b><a href="texmf-dist/doc/latex/qstest">qstest</a></b><small> +<li id="qstest"><b><a href="texmf-dist/doc/latex/qstest/">qstest</a></b><small> (<a href="https://ctan.org/pkg/qstest">CTAN</a>): -Bundle for unit tests and pattern matching +Bundle for unit tests and pattern matching. <a href="texmf-dist/doc/latex/qstest/makematch.pdf">makematch.pdf</a> <a href="texmf-dist/doc/latex/qstest/qstest.pdf">qstest.pdf</a>. </small></li> -<li id="qsymbols"><b><a href="texmf-dist/doc/latex/qsymbols">qsymbols</a></b><small> +<li id="qsymbols"><b><a href="texmf-dist/doc/latex/qsymbols/">qsymbols</a></b><small> (<a href="https://ctan.org/pkg/qsymbols">CTAN</a>): -Maths symbol abbreviations +Maths symbol abbreviations. <a href="texmf-dist/doc/latex/qsymbols/qsymbols.pdf">qsymbols.pdf</a>. </small></li> -<li id="qtree"><b><a href="texmf-dist/doc/latex/qtree">qtree</a></b><small> +<li id="qtree"><b><a href="texmf-dist/doc/latex/qtree/">qtree</a></b><small> (<a href="https://ctan.org/pkg/qtree">CTAN</a>): -Draw tree structures +Draw tree structures. <a href="texmf-dist/doc/latex/qtree/qarrows.pdf">qarrows.pdf</a> <a href="texmf-dist/doc/latex/qtree/qtreenotes.pdf">qtreenotes.pdf</a>. </small></li> -<li id="qualitype"><b><a href="texmf-dist/doc/fonts/qualitype">qualitype</a></b><small> +<li id="qualitype"><b><a href="texmf-dist/doc/fonts/qualitype/">qualitype</a></b><small> (<a href="https://ctan.org/pkg/qualitype">CTAN</a>): -The QualiType font collection +The QualiType font collection. <a href="texmf-dist/doc/fonts/qualitype/qualitype-doc.pdf">qualitype-doc.pdf</a>. </small></li> -<li id="quantikz"><b><a href="texmf-dist/doc/latex/quantikz">quantikz</a></b><small> +<li id="quantikz"><b><a href="texmf-dist/doc/latex/quantikz/">quantikz</a></b><small> (<a href="https://ctan.org/pkg/quantikz">CTAN</a>): -Draw quantum circuit diagrams +Draw quantum circuit diagrams. <a href="texmf-dist/doc/latex/quantikz/quantikz.pdf">quantikz.pdf</a>. </small></li> -<li id="quantumarticle"><b><a href="texmf-dist/doc/latex/quantumarticle">quantumarticle</a></b><small> +<li id="quantumarticle"><b><a href="texmf-dist/doc/latex/quantumarticle/">quantumarticle</a></b><small> (<a href="https://ctan.org/pkg/quantumarticle">CTAN</a>): -Document class for submissions to the Quantum journal +Document class for submissions to the Quantum journal. <a href="texmf-dist/doc/latex/quantumarticle/quantum-template.pdf">quantum-template.pdf</a> <a href="texmf-dist/doc/latex/quantumarticle/quantumarticle.pdf">quantumarticle.pdf</a>. </small></li> -<li id="quattrocento"><b><a href="texmf-dist/doc/fonts/quattrocento">quattrocento</a></b><small> +<li id="quattrocento"><b><a href="texmf-dist/doc/fonts/quattrocento/">quattrocento</a></b><small> (<a href="https://ctan.org/pkg/quattrocento">CTAN</a>): -LaTeX support for Quattrocento and Quattrocento Sans fonts +LaTeX support for Quattrocento and Quattrocento Sans fonts. <a href="texmf-dist/doc/fonts/quattrocento/quattrocento-samples.pdf">quattrocento-samples.pdf</a>. </small></li> -<li id="quicktype"><b><a href="texmf-dist/doc/latex/quicktype">quicktype</a></b><small> +<li id="quicktype"><b><a href="texmf-dist/doc/latex/quicktype/">quicktype</a></b><small> (<a href="https://ctan.org/pkg/quicktype">CTAN</a>): -LaTeX package for quick typesetting +LaTeX package for quick typesetting. <a href="texmf-dist/doc/latex/quicktype/Quicktype.pdf">Quicktype.pdf</a> <a href="texmf-dist/doc/latex/quicktype/QuicktypeSample.pdf">QuicktypeSample.pdf</a>. </small></li> -<li id="quiz2socrative"><b><a href="texmf-dist/doc/latex/quiz2socrative">quiz2socrative</a></b><small> +<li id="quiz2socrative"><b><a href="texmf-dist/doc/latex/quiz2socrative/">quiz2socrative</a></b><small> (<a href="https://ctan.org/pkg/quiz2socrative">CTAN</a>): -Prepare questions for socrative quizzes +Prepare questions for socrative quizzes. <a href="texmf-dist/doc/latex/quiz2socrative/quiz2socrative-IT.pdf">quiz2socrative-IT.pdf</a> (it) <a href="texmf-dist/doc/latex/quiz2socrative/sample-quiz2socrative-pdfQuiz.pdf">sample-quiz2socrative-pdfQuiz.pdf</a> (it) <a href="texmf-dist/doc/latex/quiz2socrative/sample-quiz2socrative-socrativeQuiz+standalone.pdf">sample-quiz2socrative-socrativeQuiz+standalone.pdf</a>. </small></li> -<li id="quotchap"><b><a href="texmf-dist/doc/latex/quotchap">quotchap</a></b><small> +<li id="quotchap"><b><a href="texmf-dist/doc/latex/quotchap/">quotchap</a></b><small> (<a href="https://ctan.org/pkg/quotchap">CTAN</a>): -Decorative chapter headings +Decorative chapter headings. <a href="texmf-dist/doc/latex/quotchap/document.pdf">document.pdf</a> <a href="texmf-dist/doc/latex/quotchap/quotchap.pdf">quotchap.pdf</a>. </small></li> -<li id="quoting"><b><a href="texmf-dist/doc/latex/quoting">quoting</a></b><small> +<li id="quoting"><b><a href="texmf-dist/doc/latex/quoting/">quoting</a></b><small> (<a href="https://ctan.org/pkg/quoting">CTAN</a>): -Consolidated environment for displayed text +Consolidated environment for displayed text. <a href="texmf-dist/doc/latex/quoting/quoting.pdf">quoting.pdf</a>. </small></li> -<li id="quotmark"><b><a href="texmf-dist/doc/latex/quotmark">quotmark</a></b><small> +<li id="quotmark"><b><a href="texmf-dist/doc/latex/quotmark/">quotmark</a></b><small> (<a href="https://ctan.org/pkg/quotmark">CTAN</a>): -Consistent quote marks +Consistent quote marks. <a href="texmf-dist/doc/latex/quotmark/quotmark.pdf">quotmark.pdf</a>. </small></li> -<li id="quran"><b><a href="texmf-dist/doc/xelatex/quran">quran</a></b><small> +<li id="quran"><b><a href="texmf-dist/doc/xelatex/quran/">quran</a></b><small> (<a href="https://ctan.org/pkg/quran">CTAN</a>): -An easy way to typeset any part of The Holy Quran +An easy way to typeset any part of The Holy Quran. <a href="texmf-dist/doc/xelatex/quran/quran-doc.pdf">quran-doc.pdf</a> <a href="texmf-dist/doc/xelatex/quran/quran-test.pdf">quran-test.pdf</a> <a href="texmf-dist/doc/xelatex/quran/quran-test1.pdf">quran-test1.pdf</a> <a href="texmf-dist/doc/xelatex/quran/quran-test2.pdf">quran-test2.pdf</a>. </small></li> -<li id="quran-de"><b><a href="texmf-dist/doc/xelatex/quran-de">quran-de</a></b><small> +<li id="quran-de"><b><a href="texmf-dist/doc/xelatex/quran-de/">quran-de</a></b><small> (<a href="https://ctan.org/pkg/quran-de">CTAN</a>): -German translations to the quran package +German translations to the quran package. <a href="texmf-dist/doc/xelatex/quran-de/quran-de-doc.pdf">quran-de-doc.pdf</a> <a href="texmf-dist/doc/xelatex/quran-de/quran-de-test.pdf">quran-de-test.pdf</a>. </small></li> -<li id="quran-ur"><b><a href="texmf-dist/doc/xelatex/quran-ur/doc">quran-ur</a></b><small> +<li id="quran-ur"><b><a href="texmf-dist/doc/xelatex/quran-ur/">quran-ur</a></b><small> (<a href="https://ctan.org/pkg/quran-ur">CTAN</a>): -Urdu translations to the quran package +Urdu translations to the quran package. <a href="texmf-dist/doc/xelatex/quran-ur/doc/quran-ur-doc.pdf">quran-ur-doc.pdf</a> <a href="texmf-dist/doc/xelatex/quran-ur/doc/quran-ur-test.pdf">quran-ur-test.pdf</a>. </small></li> @@ -18407,218 +18358,218 @@ Urdu translations to the quran package <h2 id="letter-R">R</h2> -<ol start="2436"> +<ol start="2437"> -<li id="ragged2e"><b><a href="texmf-dist/doc/latex/ragged2e">ragged2e</a></b><small> +<li id="ragged2e"><b><a href="texmf-dist/doc/latex/ragged2e/">ragged2e</a></b><small> (<a href="https://ctan.org/pkg/ragged2e">CTAN</a>): -Alternative versions of "ragged"-type commands +Alternative versions of "ragged"-type commands. <a href="texmf-dist/doc/latex/ragged2e/ragged2e.pdf">ragged2e.pdf</a>. </small></li> -<li id="raleway"><b><a href="texmf-dist/doc/latex/raleway">raleway</a></b><small> +<li id="raleway"><b><a href="texmf-dist/doc/latex/raleway/">raleway</a></b><small> (<a href="https://ctan.org/pkg/raleway">CTAN</a>): -Use Raleway with TeX(-alike) systems +Use Raleway with TeX(-alike) systems. <a href="texmf-dist/doc/latex/raleway/raleway-otf-specimen.pdf">raleway-otf-specimen.pdf</a> <a href="texmf-dist/doc/latex/raleway/raleway-type1-specimen.pdf">raleway-type1-specimen.pdf</a> <a href="texmf-dist/doc/latex/raleway/raleway.pdf">raleway.pdf</a>. </small></li> -<li id="ran_toks"><b><a href="texmf-dist/doc/latex/ran_toks/docs">ran_toks</a></b><small> +<li id="ran_toks"><b><a href="texmf-dist/doc/latex/ran_toks/">ran_toks</a></b><small> (<a href="https://ctan.org/pkg/ran_toks">CTAN</a>): -Randomise token strings +Randomise token strings. <a href="texmf-dist/doc/latex/ran_toks/docs/ran_toks.pdf">ran_toks.pdf</a> <a href="texmf-dist/doc/latex/ran_toks/docs/rantoks_man.pdf">rantoks_man.pdf</a>. </small></li> -<li id="randbild"><b><a href="texmf-dist/doc/latex/randbild">randbild</a></b><small> +<li id="randbild"><b><a href="texmf-dist/doc/latex/randbild/">randbild</a></b><small> (<a href="https://ctan.org/pkg/randbild">CTAN</a>): -Marginal pictures +Marginal pictures. <a href="texmf-dist/doc/latex/randbild/randbild.pdf">randbild.pdf</a> (de). </small></li> -<li id="random"><b><a href="texmf-dist/doc/generic/random">random</a></b><small> +<li id="random"><b><a href="texmf-dist/doc/generic/random/">random</a></b><small> (<a href="https://ctan.org/pkg/random">CTAN</a>): -Generating "random" numbers in TeX +Generating "random" numbers in TeX. <a href="texmf-dist/doc/generic/random/random-doc.pdf">random-doc.pdf</a>. </small></li> -<li id="randomlist"><b><a href="texmf-dist/doc/generic/randomlist">randomlist</a></b><small> +<li id="randomlist"><b><a href="texmf-dist/doc/generic/randomlist/">randomlist</a></b><small> (<a href="https://ctan.org/pkg/randomlist">CTAN</a>): -Deal with database, loop, and random in order to build personalized exercises +Deal with database, loop, and random in order to build personalized exercises. <a href="texmf-dist/doc/generic/randomlist/randomlist.pdf">randomlist.pdf</a> <a href="texmf-dist/doc/generic/randomlist/test-fr.pdf">test-fr.pdf</a> <a href="texmf-dist/doc/generic/randomlist/test.pdf">test.pdf</a> <a href="texmf-dist/doc/generic/randomlist/testtex.pdf">testtex.pdf</a>. </small></li> -<li id="randomwalk"><b><a href="texmf-dist/doc/latex/randomwalk">randomwalk</a></b><small> +<li id="randomwalk"><b><a href="texmf-dist/doc/latex/randomwalk/">randomwalk</a></b><small> (<a href="https://ctan.org/pkg/randomwalk">CTAN</a>): -Random walks using TikZ +Random walks using TikZ. <a href="texmf-dist/doc/latex/randomwalk/randomwalk.pdf">randomwalk.pdf</a>. </small></li> -<li id="rank-2-roots"><b><a href="texmf-dist/doc/latex/rank-2-roots">rank-2-roots</a></b><small> +<li id="rank-2-roots"><b><a href="texmf-dist/doc/latex/rank-2-roots/">rank-2-roots</a></b><small> (<a href="https://ctan.org/pkg/rank-2-roots">CTAN</a>): -Draw (mathematical) rank 2 root systems +Draw (mathematical) rank 2 root systems. <a href="texmf-dist/doc/latex/rank-2-roots/rank-2-roots.pdf">rank-2-roots.pdf</a>. </small></li> -<li id="rccol"><b><a href="texmf-dist/doc/latex/rccol">rccol</a></b><small> +<li id="rccol"><b><a href="texmf-dist/doc/latex/rccol/">rccol</a></b><small> (<a href="https://ctan.org/pkg/rccol">CTAN</a>): -Decimal-centered optionally rounded numbers in tabular +Decimal-centered optionally rounded numbers in tabular. <a href="texmf-dist/doc/latex/rccol/rccol.pdf">rccol.pdf</a>. </small></li> -<li id="rcs"><b><a href="texmf-dist/doc/latex/rcs">rcs</a></b><small> +<li id="rcs"><b><a href="texmf-dist/doc/latex/rcs/">rcs</a></b><small> (<a href="https://ctan.org/pkg/rcs">CTAN</a>): -Use RCS (revision control system) tags in LaTeX documents +Use RCS (revision control system) tags in LaTeX documents. <a href="texmf-dist/doc/latex/rcs/rcs-conf.pdf">rcs-conf.pdf</a> <a href="texmf-dist/doc/latex/rcs/rcs-user.pdf">rcs-user.pdf</a>. </small></li> -<li id="rcs-multi"><b><a href="texmf-dist/doc/latex/rcs-multi">rcs-multi</a></b><small> +<li id="rcs-multi"><b><a href="texmf-dist/doc/latex/rcs-multi/">rcs-multi</a></b><small> (<a href="https://ctan.org/pkg/rcs-multi">CTAN</a>): -Typeset RCS version control in multiple-file documents +Typeset RCS version control in multiple-file documents. <a href="texmf-dist/doc/latex/rcs-multi/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/rcs-multi/rcs-multi.pdf">rcs-multi.pdf</a>. </small></li> -<li id="rcsinfo"><b><a href="texmf-dist/doc/latex/rcsinfo">rcsinfo</a></b><small> +<li id="rcsinfo"><b><a href="texmf-dist/doc/latex/rcsinfo/">rcsinfo</a></b><small> (<a href="https://ctan.org/pkg/rcsinfo">CTAN</a>): -Support for the revision control system +Support for the revision control system. <a href="texmf-dist/doc/latex/rcsinfo/rcsinfo.pdf">rcsinfo.pdf</a>. </small></li> -<li id="readablecv"><b><a href="texmf-dist/doc/latex/readablecv">readablecv</a></b><small> +<li id="readablecv"><b><a href="texmf-dist/doc/latex/readablecv/">readablecv</a></b><small> (<a href="https://ctan.org/pkg/readablecv">CTAN</a>): -A highly readable and good looking CV and letter class +A highly readable and good looking CV and letter class. <a href="texmf-dist/doc/latex/readablecv/ReadableCV.pdf">ReadableCV.pdf</a>. </small></li> -<li id="readarray"><b><a href="texmf-dist/doc/latex/readarray">readarray</a></b><small> +<li id="readarray"><b><a href="texmf-dist/doc/latex/readarray/">readarray</a></b><small> (<a href="https://ctan.org/pkg/readarray">CTAN</a>): -Read, store and recall array-formatted data +Read, store and recall array-formatted data. <a href="texmf-dist/doc/latex/readarray/readarray.pdf">readarray.pdf</a>. </small></li> -<li id="realboxes"><b><a href="texmf-dist/doc/latex/realboxes">realboxes</a></b><small> +<li id="realboxes"><b><a href="texmf-dist/doc/latex/realboxes/">realboxes</a></b><small> (<a href="https://ctan.org/pkg/realboxes">CTAN</a>): -Variants of common box-commands that read their content as real box and not as macro argument +Variants of common box-commands that read their content as real box and not as macro argument. <a href="texmf-dist/doc/latex/realboxes/realboxes.pdf">realboxes.pdf</a>. </small></li> -<li id="realhats"><b><a href="texmf-dist/doc/latex/realhats">realhats</a></b><small> +<li id="realhats"><b><a href="texmf-dist/doc/latex/realhats/">realhats</a></b><small> (<a href="https://ctan.org/pkg/realhats">CTAN</a>): -Put real hats on symbols instead of ^ +Put real hats on symbols instead of ^. <a href="texmf-dist/doc/latex/realhats/realhats.pdf">realhats.pdf</a>. </small></li> -<li id="realscripts"><b><a href="texmf-dist/doc/latex/realscripts">realscripts</a></b><small> +<li id="realscripts"><b><a href="texmf-dist/doc/latex/realscripts/">realscripts</a></b><small> (<a href="https://ctan.org/pkg/realscripts">CTAN</a>): -Access OpenType subscript and superscript glyphs +Access OpenType subscript and superscript glyphs. <a href="texmf-dist/doc/latex/realscripts/realscripts.pdf">realscripts.pdf</a>. </small></li> -<li id="rec-thy"><b><a href="texmf-dist/doc/latex/rec-thy">rec-thy</a></b><small> +<li id="rec-thy"><b><a href="texmf-dist/doc/latex/rec-thy/">rec-thy</a></b><small> (<a href="https://ctan.org/pkg/rec-thy">CTAN</a>): -Commands to typeset recursion theory papers +Commands to typeset recursion theory papers. <a href="texmf-dist/doc/latex/rec-thy/rec-thy.pdf">rec-thy.pdf</a>. </small></li> -<li id="recipe"><b><a href="texmf-dist/doc/latex/recipe">recipe</a></b><small> +<li id="recipe"><b><a href="texmf-dist/doc/latex/recipe/">recipe</a></b><small> (<a href="https://ctan.org/pkg/recipe">CTAN</a>): -A LaTeX class to typeset recipes +A LaTeX class to typeset recipes. <a href="texmf-dist/doc/latex/recipe/sample.pdf">sample.pdf</a> (it). </small></li> -<li id="recipebook"><b><a href="texmf-dist/doc/latex/recipebook">recipebook</a></b><small> +<li id="recipebook"><b><a href="texmf-dist/doc/latex/recipebook/">recipebook</a></b><small> (<a href="https://ctan.org/pkg/recipebook">CTAN</a>): -Typeset 5.5" x 8" recipes for browsing or printing +Typeset 5.5" x 8" recipes for browsing or printing. <a href="texmf-dist/doc/latex/recipebook/LongSample.pdf">LongSample.pdf</a> <a href="texmf-dist/doc/latex/recipebook/ShortSample.pdf">ShortSample.pdf</a>. </small></li> -<li id="recipecard"><b><a href="texmf-dist/doc/latex/recipecard">recipecard</a></b><small> +<li id="recipecard"><b><a href="texmf-dist/doc/latex/recipecard/">recipecard</a></b><small> (<a href="https://ctan.org/pkg/recipecard">CTAN</a>): -Typeset recipes in note-card-sized boxes +Typeset recipes in note-card-sized boxes. <a href="texmf-dist/doc/latex/recipecard/recipecard.pdf">recipecard.pdf</a> <a href="texmf-dist/doc/latex/recipecard/test2.pdf">test2.pdf</a>. </small></li> -<li id="rectopma"><b><a href="texmf-dist/doc/latex/rectopma">rectopma</a></b><small> +<li id="rectopma"><b><a href="texmf-dist/doc/latex/rectopma/">rectopma</a></b><small> (<a href="https://ctan.org/pkg/rectopma">CTAN</a>): -Recycle top matter +Recycle top matter. <a href="texmf-dist/doc/latex/rectopma/TestTitle.pdf">TestTitle.pdf</a>. </small></li> -<li id="refcheck"><b><a href="texmf-dist/doc/latex/refcheck">refcheck</a></b><small> +<li id="refcheck"><b><a href="texmf-dist/doc/latex/refcheck/">refcheck</a></b><small> (<a href="https://ctan.org/pkg/refcheck">CTAN</a>): -Check references (in figures, table, equations, etc) +Check references (in figures, table, equations, etc). <a href="texmf-dist/doc/latex/refcheck/refdemo.pdf">refdemo.pdf</a>. </small></li> -<li id="refcount"><b><a href="texmf-dist/doc/latex/refcount">refcount</a></b><small> +<li id="refcount"><b><a href="texmf-dist/doc/latex/refcount/">refcount</a></b><small> (<a href="https://ctan.org/pkg/refcount">CTAN</a>): -Counter operations with label references +Counter operations with label references. <a href="texmf-dist/doc/latex/refcount/refcount.pdf">refcount.pdf</a>. </small></li> -<li id="refenums"><b><a href="texmf-dist/doc/latex/refenums">refenums</a></b><small> +<li id="refenums"><b><a href="texmf-dist/doc/latex/refenums/">refenums</a></b><small> (<a href="https://ctan.org/pkg/refenums">CTAN</a>): -Define named items and provide back-references with that name +Define named items and provide back-references with that name. <a href="texmf-dist/doc/latex/refenums/README.pdf">README.pdf</a> <a href="texmf-dist/doc/latex/refenums/demo.pdf">demo.pdf</a>. </small></li> -<li id="reflectgraphics"><b><a href="texmf-dist/doc/latex/reflectgraphics">reflectgraphics</a></b><small> +<li id="reflectgraphics"><b><a href="texmf-dist/doc/latex/reflectgraphics/">reflectgraphics</a></b><small> (<a href="https://ctan.org/pkg/reflectgraphics">CTAN</a>): -Techniques for reflecting graphics +Techniques for reflecting graphics. <a href="texmf-dist/doc/latex/reflectgraphics/reflectgraphics.pdf">reflectgraphics.pdf</a>. </small></li> -<li id="refman"><b><a href="texmf-dist/doc/latex/refman">refman</a></b><small> +<li id="refman"><b><a href="texmf-dist/doc/latex/refman/">refman</a></b><small> (<a href="https://ctan.org/pkg/refman">CTAN</a>): -Format technical reference manuals +Format technical reference manuals. <a href="texmf-dist/doc/latex/refman/layout_d.pdf">layout_d.pdf</a> (de) <a href="texmf-dist/doc/latex/refman/layout_e.pdf">layout_e.pdf</a> <a href="texmf-dist/doc/latex/refman/refman.pdf">refman.pdf</a>. </small></li> -<li id="refstyle"><b><a href="texmf-dist/doc/latex/refstyle">refstyle</a></b><small> +<li id="refstyle"><b><a href="texmf-dist/doc/latex/refstyle/">refstyle</a></b><small> (<a href="https://ctan.org/pkg/refstyle">CTAN</a>): -Advanced formatting of cross references +Advanced formatting of cross references. <a href="texmf-dist/doc/latex/refstyle/refconfig.pdf">refconfig.pdf</a> <a href="texmf-dist/doc/latex/refstyle/refstyle.pdf">refstyle.pdf</a>. </small></li> -<li id="regcount"><b><a href="texmf-dist/doc/latex/regcount">regcount</a></b><small> +<li id="regcount"><b><a href="texmf-dist/doc/latex/regcount/">regcount</a></b><small> (<a href="https://ctan.org/pkg/regcount">CTAN</a>): -Display the allocation status of the TeX registers +Display the allocation status of the TeX registers. <a href="texmf-dist/doc/latex/regcount/regcount.pdf">regcount.pdf</a>. </small></li> -<li id="regexpatch"><b><a href="texmf-dist/doc/latex/regexpatch">regexpatch</a></b><small> +<li id="regexpatch"><b><a href="texmf-dist/doc/latex/regexpatch/">regexpatch</a></b><small> (<a href="https://ctan.org/pkg/regexpatch">CTAN</a>): -High level patching of commands +High level patching of commands. <a href="texmf-dist/doc/latex/regexpatch/regexpatch.pdf">regexpatch.pdf</a>. </small></li> -<li id="register"><b><a href="texmf-dist/doc/latex/register">register</a></b><small> +<li id="register"><b><a href="texmf-dist/doc/latex/register/">register</a></b><small> (<a href="https://ctan.org/pkg/register">CTAN</a>): -Typeset programmable elements in digital hardware (registers) +Typeset programmable elements in digital hardware (registers). <a href="texmf-dist/doc/latex/register/register.pdf">register.pdf</a>. </small></li> -<li id="regstats"><b><a href="texmf-dist/doc/latex/regstats">regstats</a></b><small> +<li id="regstats"><b><a href="texmf-dist/doc/latex/regstats/">regstats</a></b><small> (<a href="https://ctan.org/pkg/regstats">CTAN</a>): -Information about register use +Information about register use. <a href="texmf-dist/doc/latex/regstats/regstats-example.pdf">regstats-example.pdf</a> <a href="texmf-dist/doc/latex/regstats/regstats.pdf">regstats.pdf</a>. </small></li> -<li id="reledmac"><b><a href="texmf-dist/doc/latex/reledmac/doc-more">reledmac</a></b><small> +<li id="reledmac"><b><a href="texmf-dist/doc/latex/reledmac/">reledmac</a></b><small> (<a href="https://ctan.org/pkg/reledmac">CTAN</a>): -Typeset scholarly editions +Typeset scholarly editions. <a href="texmf-dist/doc/latex/reledmac/doc-more/page-typesetting-columns.pdf">page-typesetting-columns.pdf</a> <a href="texmf-dist/doc/latex/reledmac/examples/1-criticalendnotes.pdf">1-criticalendnotes.pdf</a> <a href="texmf-dist/doc/latex/reledmac/examples/1-criticalnotes.pdf">1-criticalnotes.pdf</a> @@ -18669,79 +18620,79 @@ Typeset scholarly editions <a href="texmf-dist/doc/latex/reledmac/reledpar.pdf">reledpar.pdf</a>. </small></li> -<li id="relsize"><b><a href="texmf-dist/doc/latex/relsize">relsize</a></b><small> +<li id="relsize"><b><a href="texmf-dist/doc/latex/relsize/">relsize</a></b><small> (<a href="https://ctan.org/pkg/relsize">CTAN</a>): -Set the font size relative to the current font size +Set the font size relative to the current font size. <a href="texmf-dist/doc/latex/relsize/relsize-doc.pdf">relsize-doc.pdf</a>. </small></li> -<li id="reotex"><b><a href="texmf-dist/doc/latex/reotex">reotex</a></b><small> +<li id="reotex"><b><a href="texmf-dist/doc/latex/reotex/">reotex</a></b><small> (<a href="https://ctan.org/pkg/reotex">CTAN</a>): -Draw Reo Channels and Circuits +Draw Reo Channels and Circuits. <a href="texmf-dist/doc/latex/reotex/reotex.pdf">reotex.pdf</a>. </small></li> -<li id="repere"><b><a href="texmf-dist/doc/metapost/repere">repere</a></b><small> +<li id="repere"><b><a href="texmf-dist/doc/metapost/repere/">repere</a></b><small> (<a href="https://ctan.org/pkg/repere">CTAN</a>): -Diagrams for school mathematics +Diagrams for school mathematics. <a href="texmf-dist/doc/metapost/repere/repere-doc.pdf">repere-doc.pdf</a> (fr). </small></li> -<li id="repltext"><b><a href="texmf-dist/doc/latex/repltext">repltext</a></b><small> +<li id="repltext"><b><a href="texmf-dist/doc/latex/repltext/">repltext</a></b><small> (<a href="https://ctan.org/pkg/repltext">CTAN</a>): -Control how text gets copied from a PDF file +Control how text gets copied from a PDF file. <a href="texmf-dist/doc/latex/repltext/repltext.pdf">repltext.pdf</a>. </small></li> -<li id="rerunfilecheck"><b><a href="texmf-dist/doc/latex/rerunfilecheck">rerunfilecheck</a></b><small> +<li id="rerunfilecheck"><b><a href="texmf-dist/doc/latex/rerunfilecheck/">rerunfilecheck</a></b><small> (<a href="https://ctan.org/pkg/rerunfilecheck">CTAN</a>): -Checksum based rerun checks on auxiliary files +Checksum based rerun checks on auxiliary files. <a href="texmf-dist/doc/latex/rerunfilecheck/rerunfilecheck.pdf">rerunfilecheck.pdf</a>. </small></li> -<li id="resphilosophica"><b><a href="texmf-dist/doc/latex/resphilosophica">resphilosophica</a></b><small> +<li id="resphilosophica"><b><a href="texmf-dist/doc/latex/resphilosophica/">resphilosophica</a></b><small> (<a href="https://ctan.org/pkg/resphilosophica">CTAN</a>): -Typeset articles for the journal Res Philosophica +Typeset articles for the journal Res Philosophica. <a href="texmf-dist/doc/latex/resphilosophica/resphilosophica.pdf">resphilosophica.pdf</a> <a href="texmf-dist/doc/latex/resphilosophica/rpsample.pdf">rpsample.pdf</a>. </small></li> -<li id="rest-api"><b><a href="texmf-dist/doc/latex/rest-api">rest-api</a></b><small> +<li id="rest-api"><b><a href="texmf-dist/doc/latex/rest-api/">rest-api</a></b><small> (<a href="https://ctan.org/pkg/rest-api">CTAN</a>): -Describing a rest api +Describing a rest api. <a href="texmf-dist/doc/latex/rest-api/rest-api.pdf">rest-api.pdf</a>. </small></li> -<li id="resumecls"><b><a href="texmf-dist/doc/xelatex/resumecls/example">resumecls</a></b><small> +<li id="resumecls"><b><a href="texmf-dist/doc/xelatex/resumecls/">resumecls</a></b><small> (<a href="https://ctan.org/pkg/resumecls">CTAN</a>): -Typeset a resume both in English and Chinese +Typeset a resume both in English and Chinese. <a href="texmf-dist/doc/xelatex/resumecls/example/resume-en.pdf">resume-en.pdf</a> <a href="texmf-dist/doc/xelatex/resumecls/example/resume-zh.pdf">resume-zh.pdf</a> <a href="texmf-dist/doc/xelatex/resumecls/resumecls.pdf">resumecls.pdf</a>. </small></li> -<li id="returntogrid"><b><a href="texmf-dist/doc/latex/returntogrid">returntogrid</a></b><small> +<li id="returntogrid"><b><a href="texmf-dist/doc/latex/returntogrid/">returntogrid</a></b><small> (<a href="https://ctan.org/pkg/returntogrid">CTAN</a>): -Semi-automatic grid typesetting +Semi-automatic grid typesetting. <a href="texmf-dist/doc/latex/returntogrid/returntogrid.pdf">returntogrid.pdf</a>. </small></li> -<li id="reverxii"><b><a href="texmf-dist/doc/plain/reverxii">reverxii</a></b><small> +<li id="reverxii"><b><a href="texmf-dist/doc/plain/reverxii/">reverxii</a></b><small> (<a href="https://ctan.org/pkg/reverxii">CTAN</a>): -Playing Reversi in TeX +Playing Reversi in TeX. <a href="texmf-dist/doc/plain/reverxii/reverxii.pdf">reverxii.pdf</a>. </small></li> -<li id="revquantum"><b><a href="texmf-dist/doc/latex/revquantum">revquantum</a></b><small> +<li id="revquantum"><b><a href="texmf-dist/doc/latex/revquantum/">revquantum</a></b><small> (<a href="https://ctan.org/pkg/revquantum">CTAN</a>): -Hacks to make writing quantum papers for revtex4-1 less painful +Hacks to make writing quantum papers for revtex4-1 less painful. <a href="texmf-dist/doc/latex/revquantum/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/revquantum/revquantum.pdf">revquantum.pdf</a>. </small></li> -<li id="revtex"><b><a href="texmf-dist/doc/latex/revtex/aip">revtex</a></b><small> +<li id="revtex"><b><a href="texmf-dist/doc/latex/revtex/">revtex</a></b><small> (<a href="https://ctan.org/pkg/revtex">CTAN</a>): -Styles for various Physics Journals +Styles for various Physics Journals. <a href="texmf-dist/doc/latex/revtex/aip/aipguide4-2.pdf">aipguide4-2.pdf</a> <a href="texmf-dist/doc/latex/revtex/aps/apsguide4-2.pdf">apsguide4-2.pdf</a> <a href="texmf-dist/doc/latex/revtex/auguide/auguide4-2.pdf">auguide4-2.pdf</a> @@ -18758,165 +18709,163 @@ Styles for various Physics Journals <a href="texmf-dist/doc/latex/revtex/source/revtex4-2.pdf">revtex4-2.pdf</a>. </small></li> -<li id="revtex4"><b><a href="texmf-dist/doc/latex/revtex4">revtex4</a></b><small> -(<a href="https://ctan.org/pkg/revtex4">CTAN</a>): -Styles for various Physics Journals (old version) +<li id="revtex4"><b><a href="texmf-dist/doc/latex/revtex4/">revtex4</a></b><small> +Styles for various Physics Journals (old version). <a href="texmf-dist/doc/latex/revtex4/ltxdocext.pdf">ltxdocext.pdf</a> <a href="texmf-dist/doc/latex/revtex4/ltxgrid.pdf">ltxgrid.pdf</a> <a href="texmf-dist/doc/latex/revtex4/ltxutil.pdf">ltxutil.pdf</a> <a href="texmf-dist/doc/latex/revtex4/revtex4.pdf">revtex4.pdf</a>. </small></li> -<li id="rgltxdoc"><b><a href="texmf-dist/doc/latex/rgltxdoc">rgltxdoc</a></b><small> +<li id="rgltxdoc"><b><a href="texmf-dist/doc/latex/rgltxdoc/">rgltxdoc</a></b><small> (<a href="https://ctan.org/pkg/rgltxdoc">CTAN</a>): -Common code for documentation of the author's packages +Common code for documentation of the author's packages. <a href="texmf-dist/doc/latex/rgltxdoc/rgltxdoc.pdf">rgltxdoc.pdf</a>. </small></li> -<li id="ribbonproofs"><b><a href="texmf-dist/doc/latex/ribbonproofs">ribbonproofs</a></b><small> +<li id="ribbonproofs"><b><a href="texmf-dist/doc/latex/ribbonproofs/">ribbonproofs</a></b><small> (<a href="https://ctan.org/pkg/ribbonproofs">CTAN</a>): -Drawing ribbon proofs +Drawing ribbon proofs. <a href="texmf-dist/doc/latex/ribbonproofs/ribbonproofsmanual.pdf">ribbonproofsmanual.pdf</a>. </small></li> -<li id="rjlparshap"><b><a href="texmf-dist/doc/latex/rjlparshap">rjlparshap</a></b><small> +<li id="rjlparshap"><b><a href="texmf-dist/doc/latex/rjlparshap/">rjlparshap</a></b><small> (<a href="https://ctan.org/pkg/rjlparshap">CTAN</a>): -Support for use of \parshape in LaTeX +Support for use of \parshape in LaTeX. <a href="texmf-dist/doc/latex/rjlparshap/rjlpshap.pdf">rjlpshap.pdf</a>. </small></li> -<li id="rmathbr"><b><a href="texmf-dist/doc/latex/rmathbr">rmathbr</a></b><small> +<li id="rmathbr"><b><a href="texmf-dist/doc/latex/rmathbr/">rmathbr</a></b><small> (<a href="https://ctan.org/pkg/rmathbr">CTAN</a>): -Repeating of math operator at the broken line and the new line in inline equations +Repeating of math operator at the broken line and the new line in inline equations. <a href="texmf-dist/doc/latex/rmathbr/rmathbr.pdf">rmathbr.pdf</a>. </small></li> -<li id="rmpage"><b><a href="texmf-dist/doc/latex/rmpage">rmpage</a></b><small> +<li id="rmpage"><b><a href="texmf-dist/doc/latex/rmpage/">rmpage</a></b><small> (<a href="https://ctan.org/pkg/rmpage">CTAN</a>): -A package to help change page layout parameters in LaTeX +A package to help change page layout parameters in LaTeX. <a href="texmf-dist/doc/latex/rmpage/rmpage-doc.pdf">rmpage-doc.pdf</a>. </small></li> -<li id="roboto"><b><a href="texmf-dist/doc/fonts/roboto">roboto</a></b><small> +<li id="roboto"><b><a href="texmf-dist/doc/fonts/roboto/">roboto</a></b><small> (<a href="https://ctan.org/pkg/roboto">CTAN</a>): -Support for the Roboto family of fonts +Support for the Roboto family of fonts. <a href="texmf-dist/doc/fonts/roboto/DESCRIPTION.en_us.html">DESCRIPTION.en_us.html</a> <a href="texmf-dist/doc/fonts/roboto/RobotoSpecimenBook.pdf">RobotoSpecimenBook.pdf</a> <a href="texmf-dist/doc/fonts/roboto/roboto-samples.pdf">roboto-samples.pdf</a>. </small></li> -<li id="robustcommand"><b><a href="texmf-dist/doc/latex/robustcommand">robustcommand</a></b><small> +<li id="robustcommand"><b><a href="texmf-dist/doc/latex/robustcommand/">robustcommand</a></b><small> (<a href="https://ctan.org/pkg/robustcommand">CTAN</a>): -Declare robust command, with \newcommand checks +Declare robust command, with \newcommand checks. <a href="texmf-dist/doc/latex/robustcommand/robustcommand.pdf">robustcommand.pdf</a> (de). </small></li> -<li id="robustindex"><b><a href="texmf-dist/doc/latex/robustindex">robustindex</a></b><small> +<li id="robustindex"><b><a href="texmf-dist/doc/latex/robustindex/">robustindex</a></b><small> (<a href="https://ctan.org/pkg/robustindex">CTAN</a>): -Create index with pagerefs +Create index with pagerefs. <a href="texmf-dist/doc/latex/robustindex/multisample.pdf">multisample.pdf</a> <a href="texmf-dist/doc/latex/robustindex/robustmanual.pdf">robustmanual.pdf</a> <a href="texmf-dist/doc/latex/robustindex/robustsample.pdf">robustsample.pdf</a> <a href="texmf-dist/doc/latex/robustindex/stind.html">stind.html</a>. </small></li> -<li id="romanbar"><b><a href="texmf-dist/doc/latex/romanbar">romanbar</a></b><small> +<li id="romanbar"><b><a href="texmf-dist/doc/latex/romanbar/">romanbar</a></b><small> (<a href="https://ctan.org/pkg/romanbar">CTAN</a>): -Write roman number with "bars" +Write roman number with "bars". <a href="texmf-dist/doc/latex/romanbar/romanbar-example.pdf">romanbar-example.pdf</a> <a href="texmf-dist/doc/latex/romanbar/romanbar.pdf">romanbar.pdf</a>. </small></li> -<li id="romanbarpagenumber"><b><a href="texmf-dist/doc/latex/romanbarpagenumber">romanbarpagenumber</a></b><small> +<li id="romanbarpagenumber"><b><a href="texmf-dist/doc/latex/romanbarpagenumber/">romanbarpagenumber</a></b><small> (<a href="https://ctan.org/pkg/romanbarpagenumber">CTAN</a>): -Typesetting roman page numbers +Typesetting roman page numbers. <a href="texmf-dist/doc/latex/romanbarpagenumber/romanbarpagenumber.pdf">romanbarpagenumber.pdf</a>. </small></li> -<li id="romande"><b><a href="texmf-dist/doc/fonts/romande">romande</a></b><small> -(<a href="https://ctan.org/pkg/romande">CTAN</a>): -Romande ADF fonts and LaTeX support +<li id="romande"><b><a href="texmf-dist/doc/fonts/romande/">romande</a></b><small> +Romande ADF fonts and LaTeX support. <a href="texmf-dist/doc/fonts/romande/romandeadf.pdf">romandeadf.pdf</a>. </small></li> -<li id="romanneg"><b><a href="texmf-dist/doc/latex/romanneg">romanneg</a></b><small> +<li id="romanneg"><b><a href="texmf-dist/doc/latex/romanneg/">romanneg</a></b><small> (<a href="https://ctan.org/pkg/romanneg">CTAN</a>): -Roman page numbers negative +Roman page numbers negative. <a href="texmf-dist/doc/latex/romanneg/romanneg.pdf">romanneg.pdf</a>. </small></li> -<li id="romannum"><b><a href="texmf-dist/doc/latex/romannum">romannum</a></b><small> +<li id="romannum"><b><a href="texmf-dist/doc/latex/romannum/">romannum</a></b><small> (<a href="https://ctan.org/pkg/romannum">CTAN</a>): -Generate roman numerals instead of arabic digits +Generate roman numerals instead of arabic digits. <a href="texmf-dist/doc/latex/romannum/romannum.pdf">romannum.pdf</a>. </small></li> -<li id="rosario"><b><a href="texmf-dist/doc/fonts/rosario">rosario</a></b><small> +<li id="rosario"><b><a href="texmf-dist/doc/fonts/rosario/">rosario</a></b><small> (<a href="https://ctan.org/pkg/rosario">CTAN</a>): -Using the free Rosario fonts with LaTeX +Using the free Rosario fonts with LaTeX. <a href="texmf-dist/doc/fonts/rosario/Rosario.pdf">Rosario.pdf</a>. </small></li> -<li id="rotfloat"><b><a href="texmf-dist/doc/latex/rotfloat">rotfloat</a></b><small> +<li id="rotfloat"><b><a href="texmf-dist/doc/latex/rotfloat/">rotfloat</a></b><small> (<a href="https://ctan.org/pkg/rotfloat">CTAN</a>): -Rotate floats +Rotate floats. <a href="texmf-dist/doc/latex/rotfloat/rotfloat.pdf">rotfloat.pdf</a>. </small></li> -<li id="rotpages"><b><a href="texmf-dist/doc/latex/rotpages/Documentation">rotpages</a></b><small> +<li id="rotpages"><b><a href="texmf-dist/doc/latex/rotpages/">rotpages</a></b><small> (<a href="https://ctan.org/pkg/rotpages">CTAN</a>): -Typeset sets of pages upside-down and backwards +Typeset sets of pages upside-down and backwards. <a href="texmf-dist/doc/latex/rotpages/Documentation/rotpages-doc.pdf">rotpages-doc.pdf</a> <a href="texmf-dist/doc/latex/rotpages/Examples/rotpages-doublecolumn-ex.pdf">rotpages-doublecolumn-ex.pdf</a> <a href="texmf-dist/doc/latex/rotpages/Examples/rotpages-fancy-ex.pdf">rotpages-fancy-ex.pdf</a> <a href="texmf-dist/doc/latex/rotpages/Examples/rotpages-singlecolumn-ex.pdf">rotpages-singlecolumn-ex.pdf</a>. </small></li> -<li id="roundrect"><b><a href="texmf-dist/doc/metapost/roundrect">roundrect</a></b><small> +<li id="roundrect"><b><a href="texmf-dist/doc/metapost/roundrect/">roundrect</a></b><small> (<a href="https://ctan.org/pkg/roundrect">CTAN</a>): -MetaPost macros for highly configurable rounded rectangles (optionally with text) +MetaPost macros for highly configurable rounded rectangles (optionally with text). <a href="texmf-dist/doc/metapost/roundrect/roundrect.pdf">roundrect.pdf</a>. </small></li> -<li id="rrgtrees"><b><a href="texmf-dist/doc/latex/rrgtrees">rrgtrees</a></b><small> +<li id="rrgtrees"><b><a href="texmf-dist/doc/latex/rrgtrees/">rrgtrees</a></b><small> (<a href="https://ctan.org/pkg/rrgtrees">CTAN</a>): -Linguistic tree diagrams for Role and Reference Grammar (RRG) with LaTeX +Linguistic tree diagrams for Role and Reference Grammar (RRG) with LaTeX. <a href="texmf-dist/doc/latex/rrgtrees/rrgtrees.pdf">rrgtrees.pdf</a>. </small></li> -<li id="rsc"><b><a href="texmf-dist/doc/latex/rsc">rsc</a></b><small> +<li id="rsc"><b><a href="texmf-dist/doc/latex/rsc/">rsc</a></b><small> (<a href="https://ctan.org/pkg/rsc">CTAN</a>): -BibTeX style for use with RSC journals +BibTeX style for use with RSC journals. <a href="texmf-dist/doc/latex/rsc/rsc.pdf">rsc.pdf</a>. </small></li> -<li id="rsfso"><b><a href="texmf-dist/doc/fonts/rsfso">rsfso</a></b><small> +<li id="rsfso"><b><a href="texmf-dist/doc/fonts/rsfso/">rsfso</a></b><small> (<a href="https://ctan.org/pkg/rsfso">CTAN</a>): -A mathematical calligraphic font based on rsfs +A mathematical calligraphic font based on rsfs. <a href="texmf-dist/doc/fonts/rsfso/rsfso-doc.pdf">rsfso-doc.pdf</a>. </small></li> -<li id="rterface"><b><a href="texmf-dist/doc/latex/rterface">rterface</a></b><small> +<li id="rterface"><b><a href="texmf-dist/doc/latex/rterface/">rterface</a></b><small> (<a href="https://ctan.org/pkg/rterface">CTAN</a>): -Access to R analysis from within a document +Access to R analysis from within a document. <a href="texmf-dist/doc/latex/rterface/rterface.pdf">rterface.pdf</a>. </small></li> -<li id="rtkinenc"><b><a href="texmf-dist/doc/latex/rtkinenc">rtkinenc</a></b><small> +<li id="rtkinenc"><b><a href="texmf-dist/doc/latex/rtkinenc/">rtkinenc</a></b><small> (<a href="https://ctan.org/pkg/rtkinenc">CTAN</a>): -Input encoding with fallback procedures +Input encoding with fallback procedures. <a href="texmf-dist/doc/latex/rtkinenc/rtkinenc-doc.pdf">rtkinenc-doc.pdf</a>. </small></li> -<li id="rtklage"><b><a href="texmf-dist/doc/latex/rtklage">rtklage</a></b><small> +<li id="rtklage"><b><a href="texmf-dist/doc/latex/rtklage/">rtklage</a></b><small> (<a href="https://ctan.org/pkg/rtklage">CTAN</a>): -A package for German lawyers +A package for German lawyers. <a href="texmf-dist/doc/latex/rtklage/rtklage.pdf">rtklage.pdf</a> (de). </small></li> -<li id="rubik"><b><a href="texmf-dist/doc/latex/rubik">rubik</a></b><small> +<li id="rubik"><b><a href="texmf-dist/doc/latex/rubik/">rubik</a></b><small> (<a href="https://ctan.org/pkg/rubik">CTAN</a>): -Document Rubik cube configurations and rotation sequences +Document Rubik cube configurations and rotation sequences. <a href="texmf-dist/doc/latex/rubik/rubik-doc-figA.pdf">rubik-doc-figA.pdf</a> <a href="texmf-dist/doc/latex/rubik/rubik-doc-figB.pdf">rubik-doc-figB.pdf</a> <a href="texmf-dist/doc/latex/rubik/rubik-doc-figC.pdf">rubik-doc-figC.pdf</a> @@ -18939,52 +18888,52 @@ Document Rubik cube configurations and rotation sequences <a href="texmf-dist/doc/man/man1/rubikrotation.man1.pdf">rubikrotation.man1.pdf</a>. </small></li> -<li id="rulerbox"><b><a href="texmf-dist/doc/latex/rulerbox">rulerbox</a></b><small> +<li id="rulerbox"><b><a href="texmf-dist/doc/latex/rulerbox/">rulerbox</a></b><small> (<a href="https://ctan.org/pkg/rulerbox">CTAN</a>): -Draw rulers around a box +Draw rulers around a box. <a href="texmf-dist/doc/latex/rulerbox/rulerbox.pdf">rulerbox.pdf</a>. </small></li> -<li id="rulercompass"><b><a href="texmf-dist/doc/latex/rulercompass">rulercompass</a></b><small> +<li id="rulercompass"><b><a href="texmf-dist/doc/latex/rulercompass/">rulercompass</a></b><small> (<a href="https://ctan.org/pkg/rulercompass">CTAN</a>): -A TikZ library for straight-edge and compass diagrams +A TikZ library for straight-edge and compass diagrams. <a href="texmf-dist/doc/latex/rulercompass/rulercompass.pdf">rulercompass.pdf</a> <a href="texmf-dist/doc/latex/rulercompass/rulercompass_doc.pdf">rulercompass_doc.pdf</a>. </small></li> -<li id="russ"><b><a href="texmf-dist/doc/latex/russ">russ</a></b><small> +<li id="russ"><b><a href="texmf-dist/doc/latex/russ/">russ</a></b><small> (<a href="https://ctan.org/pkg/russ">CTAN</a>): -LaTeX in Russian, without babel +LaTeX in Russian, without babel. <a href="texmf-dist/doc/latex/russ/russ_doc.pdf">russ_doc.pdf</a> (ru). </small></li> -<li id="rutitlepage"><b><a href="texmf-dist/doc/latex/rutitlepage">rutitlepage</a></b><small> +<li id="rutitlepage"><b><a href="texmf-dist/doc/latex/rutitlepage/">rutitlepage</a></b><small> (<a href="https://ctan.org/pkg/rutitlepage">CTAN</a>): -Radboud University Titlepage Package +Radboud University Titlepage Package. <a href="texmf-dist/doc/latex/rutitlepage/rutitlepage.pdf">rutitlepage.pdf</a>. </small></li> -<li id="rviewport"><b><a href="texmf-dist/doc/latex/rviewport">rviewport</a></b><small> +<li id="rviewport"><b><a href="texmf-dist/doc/latex/rviewport/">rviewport</a></b><small> (<a href="https://ctan.org/pkg/rviewport">CTAN</a>): -Relative Viewport for Graphics Inclusion +Relative Viewport for Graphics Inclusion. <a href="texmf-dist/doc/latex/rviewport/rviewport.pdf">rviewport.pdf</a>. </small></li> -<li id="rvwrite"><b><a href="texmf-dist/doc/latex/rvwrite">rvwrite</a></b><small> +<li id="rvwrite"><b><a href="texmf-dist/doc/latex/rvwrite/">rvwrite</a></b><small> (<a href="https://ctan.org/pkg/rvwrite">CTAN</a>): -Increase the number of available output streams in LaTeX +Increase the number of available output streams in LaTeX. <a href="texmf-dist/doc/latex/rvwrite/rvwrite-doc.pdf">rvwrite-doc.pdf</a>. </small></li> -<li id="ryersonsgsthesis"><b><a href="texmf-dist/doc/latex/ryersonsgsthesis">ryersonsgsthesis</a></b><small> +<li id="ryersonsgsthesis"><b><a href="texmf-dist/doc/latex/ryersonsgsthesis/">ryersonsgsthesis</a></b><small> (<a href="https://ctan.org/pkg/ryersonsgsthesis">CTAN</a>): -Ryerson School of Graduate Studies thesis template +Ryerson School of Graduate Studies thesis template. <a href="texmf-dist/doc/latex/ryersonsgsthesis/rsgs-example.pdf">rsgs-example.pdf</a>. </small></li> -<li id="ryethesis"><b><a href="texmf-dist/doc/latex/ryethesis">ryethesis</a></b><small> +<li id="ryethesis"><b><a href="texmf-dist/doc/latex/ryethesis/">ryethesis</a></b><small> (<a href="https://ctan.org/pkg/ryethesis">CTAN</a>): -Class for Ryerson Unversity Graduate School requirements +Class for Ryerson Unversity Graduate School requirements. <a href="texmf-dist/doc/latex/ryethesis/figure1.pdf">figure1.pdf</a> <a href="texmf-dist/doc/latex/ryethesis/ryesample.pdf">ryesample.pdf</a> <a href="texmf-dist/doc/latex/ryethesis/ryethesis.pdf">ryethesis.pdf</a>. @@ -18994,73 +18943,73 @@ Class for Ryerson Unversity Graduate School requirements <h2 id="letter-S">S</h2> -<ol start="2514"> +<ol start="2515"> -<li id="sa-tikz"><b><a href="texmf-dist/doc/latex/sa-tikz">sa-tikz</a></b><small> +<li id="sa-tikz"><b><a href="texmf-dist/doc/latex/sa-tikz/">sa-tikz</a></b><small> (<a href="https://ctan.org/pkg/sa-tikz">CTAN</a>): -TikZ library to draw switching architectures +TikZ library to draw switching architectures. <a href="texmf-dist/doc/latex/sa-tikz/sa-tikz-doc.pdf">sa-tikz-doc.pdf</a>. </small></li> -<li id="sageep"><b><a href="texmf-dist/doc/latex/sageep">sageep</a></b><small> +<li id="sageep"><b><a href="texmf-dist/doc/latex/sageep/">sageep</a></b><small> (<a href="https://ctan.org/pkg/sageep">CTAN</a>): -Format papers for the annual meeting of EEGS +Format papers for the annual meeting of EEGS. <a href="texmf-dist/doc/latex/sageep/sageep.pdf">sageep.pdf</a> <a href="texmf-dist/doc/latex/sageep/sample.pdf">sample.pdf</a>. </small></li> -<li id="sanitize-umlaut"><b><a href="texmf-dist/doc/latex/sanitize-umlaut">sanitize-umlaut</a></b><small> +<li id="sanitize-umlaut"><b><a href="texmf-dist/doc/latex/sanitize-umlaut/">sanitize-umlaut</a></b><small> (<a href="https://ctan.org/pkg/sanitize-umlaut">CTAN</a>): -Sanitize umlauts for MakeIndex and pdfLaTeX +Sanitize umlauts for MakeIndex and pdfLaTeX. <a href="texmf-dist/doc/latex/sanitize-umlaut/sanitize-umlaut.pdf">sanitize-umlaut.pdf</a>. </small></li> -<li id="sanskrit"><b><a href="texmf-dist/doc/latex/sanskrit">sanskrit</a></b><small> +<li id="sanskrit"><b><a href="texmf-dist/doc/latex/sanskrit/">sanskrit</a></b><small> (<a href="https://ctan.org/pkg/sanskrit">CTAN</a>): -Sanskrit support +Sanskrit support. <a href="texmf-dist/doc/latex/sanskrit/README.pdf">README.pdf</a> <a href="texmf-dist/doc/latex/sanskrit/sktdoc.pdf">sktdoc.pdf</a>. </small></li> -<li id="sanskrit-t1"><b><a href="texmf-dist/doc/fonts/sanskrit-t1">sanskrit-t1</a></b><small> +<li id="sanskrit-t1"><b><a href="texmf-dist/doc/fonts/sanskrit-t1/">sanskrit-t1</a></b><small> (<a href="https://ctan.org/pkg/sanskrit-t1">CTAN</a>): -Type 1 version of 'skt' fonts for Sanskrit +Type 1 version of 'skt' fonts for Sanskrit. <a href="texmf-dist/doc/fonts/sanskrit-t1/sktdoc.pdf">sktdoc.pdf</a>. </small></li> -<li id="sansmath"><b><a href="texmf-dist/doc/latex/sansmath">sansmath</a></b><small> +<li id="sansmath"><b><a href="texmf-dist/doc/latex/sansmath/">sansmath</a></b><small> (<a href="https://ctan.org/pkg/sansmath">CTAN</a>): -Maths in a sans font +Maths in a sans font. <a href="texmf-dist/doc/latex/sansmath/sansmath.pdf">sansmath.pdf</a>. </small></li> -<li id="sansmathaccent"><b><a href="texmf-dist/doc/fonts/sansmathaccent">sansmathaccent</a></b><small> +<li id="sansmathaccent"><b><a href="texmf-dist/doc/fonts/sansmathaccent/">sansmathaccent</a></b><small> (<a href="https://ctan.org/pkg/sansmathaccent">CTAN</a>): -Correct placement of accents in sans-serif maths +Correct placement of accents in sans-serif maths. <a href="texmf-dist/doc/fonts/sansmathaccent/sansmathaccent.pdf">sansmathaccent.pdf</a>. </small></li> -<li id="sansmathfonts"><b><a href="texmf-dist/doc/fonts/sansmathfonts">sansmathfonts</a></b><small> +<li id="sansmathfonts"><b><a href="texmf-dist/doc/fonts/sansmathfonts/">sansmathfonts</a></b><small> (<a href="https://ctan.org/pkg/sansmathfonts">CTAN</a>): -Correct placement of accents in sans-serif maths +Correct placement of accents in sans-serif maths. <a href="texmf-dist/doc/fonts/sansmathfonts/sansmathfonts.pdf">sansmathfonts.pdf</a>. </small></li> -<li id="sapthesis"><b><a href="texmf-dist/doc/latex/sapthesis">sapthesis</a></b><small> +<li id="sapthesis"><b><a href="texmf-dist/doc/latex/sapthesis/">sapthesis</a></b><small> (<a href="https://ctan.org/pkg/sapthesis">CTAN</a>): -Typeset theses for Sapienza-University, Rome +Typeset theses for Sapienza-University, Rome. <a href="texmf-dist/doc/latex/sapthesis/sapthesis-doc.pdf">sapthesis-doc.pdf</a>. </small></li> -<li id="sasnrdisplay"><b><a href="texmf-dist/doc/latex/sasnrdisplay">sasnrdisplay</a></b><small> +<li id="sasnrdisplay"><b><a href="texmf-dist/doc/latex/sasnrdisplay/">sasnrdisplay</a></b><small> (<a href="https://ctan.org/pkg/sasnrdisplay">CTAN</a>): -Typeset SAS or R code or output +Typeset SAS or R code or output. <a href="texmf-dist/doc/latex/sasnrdisplay/SASnRdisplay.pdf">SASnRdisplay.pdf</a>. </small></li> -<li id="sauerj"><b><a href="texmf-dist/doc/latex/sauerj">sauerj</a></b><small> +<li id="sauerj"><b><a href="texmf-dist/doc/latex/sauerj/">sauerj</a></b><small> (<a href="https://ctan.org/pkg/sauerj">CTAN</a>): -A bundle of utilities by Jonathan Sauer +A bundle of utilities by Jonathan Sauer. <a href="texmf-dist/doc/latex/sauerj/collect.pdf">collect.pdf</a> <a href="texmf-dist/doc/latex/sauerj/metainfo.pdf">metainfo.pdf</a> <a href="texmf-dist/doc/latex/sauerj/optparams.pdf">optparams.pdf</a> @@ -19069,66 +19018,66 @@ A bundle of utilities by Jonathan Sauer <a href="texmf-dist/doc/latex/sauerj/zahl2string.pdf">zahl2string.pdf</a>. </small></li> -<li id="savefnmark"><b><a href="texmf-dist/doc/latex/savefnmark">savefnmark</a></b><small> +<li id="savefnmark"><b><a href="texmf-dist/doc/latex/savefnmark/">savefnmark</a></b><small> (<a href="https://ctan.org/pkg/savefnmark">CTAN</a>): -Save name of the footnote mark for reuse +Save name of the footnote mark for reuse. <a href="texmf-dist/doc/latex/savefnmark/savefnmark.pdf">savefnmark.pdf</a>. </small></li> -<li id="savetrees"><b><a href="texmf-dist/doc/latex/savetrees">savetrees</a></b><small> +<li id="savetrees"><b><a href="texmf-dist/doc/latex/savetrees/">savetrees</a></b><small> (<a href="https://ctan.org/pkg/savetrees">CTAN</a>): -Optimise the use of each page of a LaTeX document +Optimise the use of each page of a LaTeX document. <a href="texmf-dist/doc/latex/savetrees/savetrees.pdf">savetrees.pdf</a> <a href="texmf-dist/doc/latex/savetrees/st-sample2e.pdf">st-sample2e.pdf</a>. </small></li> -<li id="scalebar"><b><a href="texmf-dist/doc/latex/scalebar">scalebar</a></b><small> +<li id="scalebar"><b><a href="texmf-dist/doc/latex/scalebar/">scalebar</a></b><small> (<a href="https://ctan.org/pkg/scalebar">CTAN</a>): -Create scalebars for maps, diagrams or photos +Create scalebars for maps, diagrams or photos. <a href="texmf-dist/doc/latex/scalebar/scalebar_examples.pdf">scalebar_examples.pdf</a>. </small></li> -<li id="scalerel"><b><a href="texmf-dist/doc/latex/scalerel">scalerel</a></b><small> +<li id="scalerel"><b><a href="texmf-dist/doc/latex/scalerel/">scalerel</a></b><small> (<a href="https://ctan.org/pkg/scalerel">CTAN</a>): -Constrained scaling and stretching of objects +Constrained scaling and stretching of objects. <a href="texmf-dist/doc/latex/scalerel/scalerel.pdf">scalerel.pdf</a>. </small></li> -<li id="scanpages"><b><a href="texmf-dist/doc/latex/scanpages">scanpages</a></b><small> +<li id="scanpages"><b><a href="texmf-dist/doc/latex/scanpages/">scanpages</a></b><small> (<a href="https://ctan.org/pkg/scanpages">CTAN</a>): -Support importing and embellishing scanned documents +Support importing and embellishing scanned documents. <a href="texmf-dist/doc/latex/scanpages/pic1.pdf">pic1.pdf</a> <a href="texmf-dist/doc/latex/scanpages/pic2.pdf">pic2.pdf</a> <a href="texmf-dist/doc/latex/scanpages/scanpages-doc.pdf">scanpages-doc.pdf</a>. </small></li> -<li id="schedule"><b><a href="texmf-dist/doc/latex/schedule">schedule</a></b><small> +<li id="schedule"><b><a href="texmf-dist/doc/latex/schedule/">schedule</a></b><small> (<a href="https://ctan.org/pkg/schedule">CTAN</a>): -Weekly schedules +Weekly schedules. <a href="texmf-dist/doc/latex/schedule/schedule.pdf">schedule.pdf</a>. </small></li> -<li id="schemabloc"><b><a href="texmf-dist/doc/latex/schemabloc">schemabloc</a></b><small> +<li id="schemabloc"><b><a href="texmf-dist/doc/latex/schemabloc/">schemabloc</a></b><small> (<a href="https://ctan.org/pkg/schemabloc">CTAN</a>): -Draw block diagrams, using TikZ +Draw block diagrams, using TikZ. <a href="texmf-dist/doc/latex/schemabloc/schemabloc.pdf">schemabloc.pdf</a> (fr). </small></li> -<li id="schemata"><b><a href="texmf-dist/doc/generic/schemata">schemata</a></b><small> +<li id="schemata"><b><a href="texmf-dist/doc/generic/schemata/">schemata</a></b><small> (<a href="https://ctan.org/pkg/schemata">CTAN</a>): -Print topical diagrams +Print topical diagrams. <a href="texmf-dist/doc/generic/schemata/schemata.pdf">schemata.pdf</a>. </small></li> -<li id="scholax"><b><a href="texmf-dist/doc/fonts/scholax">scholax</a></b><small> +<li id="scholax"><b><a href="texmf-dist/doc/fonts/scholax/">scholax</a></b><small> (<a href="https://ctan.org/pkg/scholax">CTAN</a>): -Extension of TeXGyreSchola (New Century Schoolbook) with math support +Extension of TeXGyreSchola (New Century Schoolbook) with math support. <a href="texmf-dist/doc/fonts/scholax/scholax-doc.pdf">scholax-doc.pdf</a>. </small></li> -<li id="schule"><b><a href="texmf-dist/doc/latex/schule/Abbildungen">schule</a></b><small> +<li id="schule"><b><a href="texmf-dist/doc/latex/schule/">schule</a></b><small> (<a href="https://ctan.org/pkg/schule">CTAN</a>): -Support for teachers at German schools +Support for teachers at German schools. <a href="texmf-dist/doc/latex/schule/Abbildungen/table02600-026FF.pdf">table02600-026FF.pdf</a> <a href="texmf-dist/doc/latex/schule/Abbildungen/table02700-027BF.pdf">table02700-027BF.pdf</a> <a href="texmf-dist/doc/latex/schule/Abbildungen/table1F000-1F02F.pdf">table1F000-1F02F.pdf</a> @@ -19160,33 +19109,33 @@ Support for teachers at German schools <a href="texmf-dist/doc/latex/schule/schule.pdf">schule.pdf</a> (de). </small></li> -<li id="schulmathematik"><b><a href="texmf-dist/doc/latex/schulmathematik">schulmathematik</a></b><small> +<li id="schulmathematik"><b><a href="texmf-dist/doc/latex/schulmathematik/">schulmathematik</a></b><small> (<a href="https://ctan.org/pkg/schulmathematik">CTAN</a>): -Commands and document classes for German-speaking teachers of mathematics and physics +Commands and document classes for German-speaking teachers of mathematics and physics. <a href="texmf-dist/doc/latex/schulmathematik/schulmathematik.pdf">schulmathematik.pdf</a>. </small></li> -<li id="schulschriften"><b><a href="texmf-dist/doc/fonts/schulschriften">schulschriften</a></b><small> +<li id="schulschriften"><b><a href="texmf-dist/doc/fonts/schulschriften/">schulschriften</a></b><small> (<a href="https://ctan.org/pkg/schulschriften">CTAN</a>): -German "school scripts" from Suetterlin to the present day +German "school scripts" from Suetterlin to the present day. <a href="texmf-dist/doc/fonts/schulschriften/schulschriften.pdf">schulschriften.pdf</a>. </small></li> -<li id="schwalbe-chess"><b><a href="texmf-dist/doc/latex/schwalbe-chess">schwalbe-chess</a></b><small> +<li id="schwalbe-chess"><b><a href="texmf-dist/doc/latex/schwalbe-chess/">schwalbe-chess</a></b><small> (<a href="https://ctan.org/pkg/schwalbe-chess">CTAN</a>): -Typeset the German chess magazine "Die Schwalbe" +Typeset the German chess magazine "Die Schwalbe". <a href="texmf-dist/doc/latex/schwalbe-chess/schwalbe.pdf">schwalbe.pdf</a> (de). </small></li> -<li id="scientific-thesis-cover"><b><a href="texmf-dist/doc/latex/scientific-thesis-cover">scientific-thesis-cover</a></b><small> +<li id="scientific-thesis-cover"><b><a href="texmf-dist/doc/latex/scientific-thesis-cover/">scientific-thesis-cover</a></b><small> (<a href="https://ctan.org/pkg/scientific-thesis-cover">CTAN</a>): -Provides cover page and affirmation at the end of a thesis +Provides cover page and affirmation at the end of a thesis. <a href="texmf-dist/doc/latex/scientific-thesis-cover/scientific-thesis-cover.pdf">scientific-thesis-cover.pdf</a>. </small></li> -<li id="sciposter"><b><a href="texmf-dist/doc/latex/sciposter/sciposterexample">sciposter</a></b><small> +<li id="sciposter"><b><a href="texmf-dist/doc/latex/sciposter/">sciposter</a></b><small> (<a href="https://ctan.org/pkg/sciposter">CTAN</a>): -Make posters of ISO A3 size and larger +Make posters of ISO A3 size and larger. <a href="texmf-dist/doc/latex/sciposter/sciposterexample/blocks1.pdf">blocks1.pdf</a> <a href="texmf-dist/doc/latex/sciposter/sciposterexample/blocks1a.pdf">blocks1a.pdf</a> <a href="texmf-dist/doc/latex/sciposter/sciposterexample/blocks1mx.pdf">blocks1mx.pdf</a> @@ -19204,75 +19153,75 @@ Make posters of ISO A3 size and larger <a href="texmf-dist/doc/latex/sciposter/scipostermanual.pdf">scipostermanual.pdf</a>. </small></li> -<li id="sclang-prettifier"><b><a href="texmf-dist/doc/latex/sclang-prettifier">sclang-prettifier</a></b><small> +<li id="sclang-prettifier"><b><a href="texmf-dist/doc/latex/sclang-prettifier/">sclang-prettifier</a></b><small> (<a href="https://ctan.org/pkg/sclang-prettifier">CTAN</a>): -Prettyprinting SuperCollider source code +Prettyprinting SuperCollider source code. <a href="texmf-dist/doc/latex/sclang-prettifier/sclang-prettifier.pdf">sclang-prettifier.pdf</a>. </small></li> -<li id="scontents"><b><a href="texmf-dist/doc/latex/scontents">scontents</a></b><small> +<li id="scontents"><b><a href="texmf-dist/doc/latex/scontents/">scontents</a></b><small> (<a href="https://ctan.org/pkg/scontents">CTAN</a>): -Stores LaTeX contents in memory or files +Stores LaTeX contents in memory or files. <a href="texmf-dist/doc/latex/scontents/scontents.pdf">scontents.pdf</a>. </small></li> -<li id="scratch"><b><a href="texmf-dist/doc/latex/scratch">scratch</a></b><small> +<li id="scratch"><b><a href="texmf-dist/doc/latex/scratch/">scratch</a></b><small> (<a href="https://ctan.org/pkg/scratch">CTAN</a>): -Draw programs like "scratch" +Draw programs like "scratch". <a href="texmf-dist/doc/latex/scratch/scratch-fr.pdf">scratch-fr.pdf</a> (fr). </small></li> -<li id="scratch3"><b><a href="texmf-dist/doc/latex/scratch3">scratch3</a></b><small> +<li id="scratch3"><b><a href="texmf-dist/doc/latex/scratch3/">scratch3</a></b><small> (<a href="https://ctan.org/pkg/scratch3">CTAN</a>): -Draw programs like "scratch" +Draw programs like "scratch". <a href="texmf-dist/doc/latex/scratch3/scratch3-fr.pdf">scratch3-fr.pdf</a> (fr). </small></li> -<li id="scratchx"><b><a href="texmf-dist/doc/latex/scratchx">scratchx</a></b><small> +<li id="scratchx"><b><a href="texmf-dist/doc/latex/scratchx/">scratchx</a></b><small> (<a href="https://ctan.org/pkg/scratchx">CTAN</a>): -Include Scratch programs in LaTeX documents +Include Scratch programs in LaTeX documents. <a href="texmf-dist/doc/latex/scratchx/Explanations_ScratchX.pdf">Explanations_ScratchX.pdf</a> <a href="texmf-dist/doc/latex/scratchx/Explications_ScratchX.pdf">Explications_ScratchX.pdf</a> (fr). </small></li> -<li id="screenplay"><b><a href="texmf-dist/doc/latex/screenplay">screenplay</a></b><small> +<li id="screenplay"><b><a href="texmf-dist/doc/latex/screenplay/">screenplay</a></b><small> (<a href="https://ctan.org/pkg/screenplay">CTAN</a>): -A class file to typeset screenplays +A class file to typeset screenplays. <a href="texmf-dist/doc/latex/screenplay/screenplay.pdf">screenplay.pdf</a> <a href="texmf-dist/doc/latex/screenplay/test.pdf">test.pdf</a>. </small></li> -<li id="screenplay-pkg"><b><a href="texmf-dist/doc/latex/screenplay-pkg">screenplay-pkg</a></b><small> +<li id="screenplay-pkg"><b><a href="texmf-dist/doc/latex/screenplay-pkg/">screenplay-pkg</a></b><small> (<a href="https://ctan.org/pkg/screenplay-pkg">CTAN</a>): -Package version of the screenplay document class +Package version of the screenplay document class. <a href="texmf-dist/doc/latex/screenplay-pkg/screenplay-pkg-example.pdf">screenplay-pkg-example.pdf</a> <a href="texmf-dist/doc/latex/screenplay-pkg/screenplay-pkg.pdf">screenplay-pkg.pdf</a>. </small></li> -<li id="scrjrnl"><b><a href="texmf-dist/doc/latex/scrjrnl">scrjrnl</a></b><small> +<li id="scrjrnl"><b><a href="texmf-dist/doc/latex/scrjrnl/">scrjrnl</a></b><small> (<a href="https://ctan.org/pkg/scrjrnl">CTAN</a>): -Typeset diaries or journals +Typeset diaries or journals. <a href="texmf-dist/doc/latex/scrjrnl/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/scrjrnl/scrjrnl.pdf">scrjrnl.pdf</a>. </small></li> -<li id="scrlttr2copy"><b><a href="texmf-dist/doc/latex/scrlttr2copy">scrlttr2copy</a></b><small> +<li id="scrlttr2copy"><b><a href="texmf-dist/doc/latex/scrlttr2copy/">scrlttr2copy</a></b><small> (<a href="https://ctan.org/pkg/scrlttr2copy">CTAN</a>): -A letter class option file for the automatic creation of copies +A letter class option file for the automatic creation of copies. <a href="texmf-dist/doc/latex/scrlttr2copy/letter-copy-test.pdf">letter-copy-test.pdf</a>. </small></li> -<li id="scsnowman"><b><a href="texmf-dist/doc/latex/scsnowman">scsnowman</a></b><small> +<li id="scsnowman"><b><a href="texmf-dist/doc/latex/scsnowman/">scsnowman</a></b><small> (<a href="https://ctan.org/pkg/scsnowman">CTAN</a>): -Snowman variants using TikZ +Snowman variants using TikZ. <a href="texmf-dist/doc/latex/scsnowman/scsnowman-sample.pdf">scsnowman-sample.pdf</a> (ja) <a href="texmf-dist/doc/latex/scsnowman/scsnowman-zrtest.pdf">scsnowman-zrtest.pdf</a> <a href="texmf-dist/doc/latex/scsnowman/scsnowman.pdf">scsnowman.pdf</a>. </small></li> -<li id="sdaps"><b><a href="texmf-dist/doc/latex/sdaps">sdaps</a></b><small> +<li id="sdaps"><b><a href="texmf-dist/doc/latex/sdaps/">sdaps</a></b><small> (<a href="https://ctan.org/pkg/sdaps">CTAN</a>): -LaTeX support files for SDAPS +LaTeX support files for SDAPS. <a href="texmf-dist/doc/latex/sdaps/sdapsarray.pdf">sdapsarray.pdf</a> <a href="texmf-dist/doc/latex/sdaps/sdapsbase.pdf">sdapsbase.pdf</a> <a href="texmf-dist/doc/latex/sdaps/sdapsclassic.pdf">sdapsclassic.pdf</a> @@ -19280,198 +19229,197 @@ LaTeX support files for SDAPS <a href="texmf-dist/doc/latex/sdaps/sdapspdf.pdf">sdapspdf.pdf</a>. </small></li> -<li id="sdrt"><b><a href="texmf-dist/doc/latex/sdrt">sdrt</a></b><small> +<li id="sdrt"><b><a href="texmf-dist/doc/latex/sdrt/">sdrt</a></b><small> (<a href="https://ctan.org/pkg/sdrt">CTAN</a>): -Macros for Segmented Discourse Representation Theory +Macros for Segmented Discourse Representation Theory. <a href="texmf-dist/doc/latex/sdrt/sdrt-doc.pdf">sdrt-doc.pdf</a>. </small></li> -<li id="sduthesis"><b><a href="texmf-dist/doc/latex/sduthesis">sduthesis</a></b><small> +<li id="sduthesis"><b><a href="texmf-dist/doc/latex/sduthesis/">sduthesis</a></b><small> (<a href="https://ctan.org/pkg/sduthesis">CTAN</a>): -Thesis Template of Shandong University +Thesis Template of Shandong University. <a href="texmf-dist/doc/latex/sduthesis/sduthesis-demo.pdf">sduthesis-demo.pdf</a> (zh) <a href="texmf-dist/doc/latex/sduthesis/sduthesis.pdf">sduthesis.pdf</a> (zh). </small></li> -<li id="secdot"><b><a href="texmf-dist/doc/latex/secdot">secdot</a></b><small> +<li id="secdot"><b><a href="texmf-dist/doc/latex/secdot/">secdot</a></b><small> (<a href="https://ctan.org/pkg/secdot">CTAN</a>): -Section numbers with trailing dots +Section numbers with trailing dots. <a href="texmf-dist/doc/latex/secdot/secdot.pdf">secdot.pdf</a>. </small></li> -<li id="secnum"><b><a href="texmf-dist/doc/latex/secnum">secnum</a></b><small> +<li id="secnum"><b><a href="texmf-dist/doc/latex/secnum/">secnum</a></b><small> (<a href="https://ctan.org/pkg/secnum">CTAN</a>): -A macro to format section numbering intuitively +A macro to format section numbering intuitively. <a href="texmf-dist/doc/latex/secnum/secnum.pdf">secnum.pdf</a>. </small></li> -<li id="section"><b><a href="texmf-dist/doc/latex/section">section</a></b><small> +<li id="section"><b><a href="texmf-dist/doc/latex/section/">section</a></b><small> (<a href="https://ctan.org/pkg/section">CTAN</a>): -Modifying section commands in LaTeX +Modifying section commands in LaTeX. <a href="texmf-dist/doc/latex/section/section-doc.pdf">section-doc.pdf</a>. </small></li> -<li id="sectionbox"><b><a href="texmf-dist/doc/latex/sectionbox">sectionbox</a></b><small> +<li id="sectionbox"><b><a href="texmf-dist/doc/latex/sectionbox/">sectionbox</a></b><small> (<a href="https://ctan.org/pkg/sectionbox">CTAN</a>): -Create fancy boxed ((sub)sub)sections +Create fancy boxed ((sub)sub)sections. <a href="texmf-dist/doc/latex/sectionbox/sectionboxmanual.pdf">sectionboxmanual.pdf</a>. </small></li> -<li id="sectionbreak"><b><a href="texmf-dist/doc/latex/sectionbreak">sectionbreak</a></b><small> +<li id="sectionbreak"><b><a href="texmf-dist/doc/latex/sectionbreak/">sectionbreak</a></b><small> (<a href="https://ctan.org/pkg/sectionbreak">CTAN</a>): -LaTeX support for section breaks +LaTeX support for section breaks. <a href="texmf-dist/doc/latex/sectionbreak/sectionbreak-doc.pdf">sectionbreak-doc.pdf</a>. </small></li> -<li id="sectsty"><b><a href="texmf-dist/doc/latex/sectsty">sectsty</a></b><small> +<li id="sectsty"><b><a href="texmf-dist/doc/latex/sectsty/">sectsty</a></b><small> (<a href="https://ctan.org/pkg/sectsty">CTAN</a>): -Control sectional headers +Control sectional headers. <a href="texmf-dist/doc/latex/sectsty/sectsty.pdf">sectsty.pdf</a>. </small></li> -<li id="seealso"><b><a href="texmf-dist/doc/latex/seealso">seealso</a></b><small> +<li id="seealso"><b><a href="texmf-dist/doc/latex/seealso/">seealso</a></b><small> (<a href="https://ctan.org/pkg/seealso">CTAN</a>): -Improve the performance of \see macros with makeindex +Improve the performance of \see macros with makeindex. <a href="texmf-dist/doc/latex/seealso/seealso.pdf">seealso.pdf</a>. </small></li> -<li id="seetexk"><b><a href="texmf-dist/doc/man/man1">seetexk</a></b><small> -(<a href="https://ctan.org/pkg/seetexk">CTAN</a>): -Utilities for manipulating DVI files +<li id="seetexk"><b><a href="texmf-dist/doc/man/man1/">seetexk</a></b><small> +Utilities for manipulating DVI files. <a href="texmf-dist/doc/man/man1/dvibook.man1.pdf">dvibook.man1.pdf</a> <a href="texmf-dist/doc/man/man1/dviconcat.man1.pdf">dviconcat.man1.pdf</a> <a href="texmf-dist/doc/man/man1/dviselect.man1.pdf">dviselect.man1.pdf</a> <a href="texmf-dist/doc/man/man1/dvitodvi.man1.pdf">dvitodvi.man1.pdf</a>. </small></li> -<li id="selectp"><b><a href="texmf-dist/doc/latex/selectp">selectp</a></b><small> +<li id="selectp"><b><a href="texmf-dist/doc/latex/selectp/">selectp</a></b><small> (<a href="https://ctan.org/pkg/selectp">CTAN</a>): -Select pages to be output +Select pages to be output. <a href="texmf-dist/doc/latex/selectp/selectp-doc.pdf">selectp-doc.pdf</a>. </small></li> -<li id="selinput"><b><a href="texmf-dist/doc/latex/selinput">selinput</a></b><small> +<li id="selinput"><b><a href="texmf-dist/doc/latex/selinput/">selinput</a></b><small> (<a href="https://ctan.org/pkg/selinput">CTAN</a>): -Semi-automatic detection of input encoding +Semi-automatic detection of input encoding. <a href="texmf-dist/doc/latex/selinput/selinput.pdf">selinput.pdf</a>. </small></li> -<li id="selnolig"><b><a href="texmf-dist/doc/lualatex/selnolig">selnolig</a></b><small> +<li id="selnolig"><b><a href="texmf-dist/doc/lualatex/selnolig/">selnolig</a></b><small> (<a href="https://ctan.org/pkg/selnolig">CTAN</a>): -Selectively disable typographic ligatures +Selectively disable typographic ligatures. <a href="texmf-dist/doc/lualatex/selnolig/selnolig-english-test.pdf">selnolig-english-test.pdf</a> <a href="texmf-dist/doc/lualatex/selnolig/selnolig-german-test.pdf">selnolig-german-test.pdf</a> <a href="texmf-dist/doc/lualatex/selnolig/selnolig.pdf">selnolig.pdf</a>. </small></li> -<li id="semantic"><b><a href="texmf-dist/doc/latex/semantic">semantic</a></b><small> +<li id="semantic"><b><a href="texmf-dist/doc/latex/semantic/">semantic</a></b><small> (<a href="https://ctan.org/pkg/semantic">CTAN</a>): -Help for writing programming language semantics +Help for writing programming language semantics. <a href="texmf-dist/doc/latex/semantic/semantic.pdf">semantic.pdf</a>. </small></li> -<li id="semantic-markup"><b><a href="texmf-dist/doc/latex/semantic-markup">semantic-markup</a></b><small> +<li id="semantic-markup"><b><a href="texmf-dist/doc/latex/semantic-markup/">semantic-markup</a></b><small> (<a href="https://ctan.org/pkg/semantic-markup">CTAN</a>): -Meaningful semantic markup in the spirit of the Text Encoding Initiative +Meaningful semantic markup in the spirit of the Text Encoding Initiative. <a href="texmf-dist/doc/latex/semantic-markup/semantic-markup.pdf">semantic-markup.pdf</a>. </small></li> -<li id="semaphor"><b><a href="texmf-dist/doc/fonts/semaphor">semaphor</a></b><small> +<li id="semaphor"><b><a href="texmf-dist/doc/fonts/semaphor/">semaphor</a></b><small> (<a href="https://ctan.org/pkg/semaphor">CTAN</a>): -Semaphore alphabet font +Semaphore alphabet font. <a href="texmf-dist/doc/fonts/semaphor/example.pdf">example.pdf</a> <a href="texmf-dist/doc/fonts/semaphor/test-context.pdf">test-context.pdf</a>. </small></li> -<li id="seminar"><b><a href="texmf-dist/doc/latex/seminar">seminar</a></b><small> +<li id="seminar"><b><a href="texmf-dist/doc/latex/seminar/">seminar</a></b><small> (<a href="https://ctan.org/pkg/seminar">CTAN</a>): -Make overhead slides +Make overhead slides. <a href="texmf-dist/doc/latex/seminar/seminar-doc.pdf">seminar-doc.pdf</a> <a href="texmf-dist/doc/latex/seminar/semsamp1.pdf">semsamp1.pdf</a> <a href="texmf-dist/doc/latex/seminar/semsamp2.pdf">semsamp2.pdf</a> <a href="texmf-dist/doc/latex/seminar/semsamp3.pdf">semsamp3.pdf</a>. </small></li> -<li id="semioneside"><b><a href="texmf-dist/doc/latex/semioneside">semioneside</a></b><small> +<li id="semioneside"><b><a href="texmf-dist/doc/latex/semioneside/">semioneside</a></b><small> (<a href="https://ctan.org/pkg/semioneside">CTAN</a>): -Put only special contents on left-hand pages in two sided layout +Put only special contents on left-hand pages in two sided layout. <a href="texmf-dist/doc/latex/semioneside/semioneside.pdf">semioneside.pdf</a>. </small></li> -<li id="semproc"><b><a href="texmf-dist/doc/latex/semproc">semproc</a></b><small> +<li id="semproc"><b><a href="texmf-dist/doc/latex/semproc/">semproc</a></b><small> (<a href="https://ctan.org/pkg/semproc">CTAN</a>): -Seminar proceedings +Seminar proceedings. <a href="texmf-dist/doc/latex/semproc/semproc.pdf">semproc.pdf</a>. </small></li> -<li id="sepfootnotes"><b><a href="texmf-dist/doc/latex/sepfootnotes">sepfootnotes</a></b><small> +<li id="sepfootnotes"><b><a href="texmf-dist/doc/latex/sepfootnotes/">sepfootnotes</a></b><small> (<a href="https://ctan.org/pkg/sepfootnotes">CTAN</a>): -Support footnotes and endnotes from separate files +Support footnotes and endnotes from separate files. <a href="texmf-dist/doc/latex/sepfootnotes/sepfootnotes.pdf">sepfootnotes.pdf</a>. </small></li> -<li id="sepnum"><b><a href="texmf-dist/doc/latex/sepnum">sepnum</a></b><small> +<li id="sepnum"><b><a href="texmf-dist/doc/latex/sepnum/">sepnum</a></b><small> (<a href="https://ctan.org/pkg/sepnum">CTAN</a>): -Print numbers in a "friendly" format +Print numbers in a "friendly" format. <a href="texmf-dist/doc/latex/sepnum/sepnum-doc.pdf">sepnum-doc.pdf</a>. </small></li> -<li id="seqsplit"><b><a href="texmf-dist/doc/latex/seqsplit">seqsplit</a></b><small> +<li id="seqsplit"><b><a href="texmf-dist/doc/latex/seqsplit/">seqsplit</a></b><small> (<a href="https://ctan.org/pkg/seqsplit">CTAN</a>): -Split long sequences of characters in a neutral way +Split long sequences of characters in a neutral way. <a href="texmf-dist/doc/latex/seqsplit/seqsplit.pdf">seqsplit.pdf</a>. </small></li> -<li id="serbian-apostrophe"><b><a href="texmf-dist/doc/latex/serbian-apostrophe">serbian-apostrophe</a></b><small> +<li id="serbian-apostrophe"><b><a href="texmf-dist/doc/latex/serbian-apostrophe/">serbian-apostrophe</a></b><small> (<a href="https://ctan.org/pkg/serbian-apostrophe">CTAN</a>): -Commands for Serbian words with apostrophes +Commands for Serbian words with apostrophes. <a href="texmf-dist/doc/latex/serbian-apostrophe/apostrophe-list.pdf">apostrophe-list.pdf</a> <a href="texmf-dist/doc/latex/serbian-apostrophe/serbian-apostrophe.pdf">serbian-apostrophe.pdf</a>. </small></li> -<li id="serbian-date-lat"><b><a href="texmf-dist/doc/latex/serbian-date-lat">serbian-date-lat</a></b><small> +<li id="serbian-date-lat"><b><a href="texmf-dist/doc/latex/serbian-date-lat/">serbian-date-lat</a></b><small> (<a href="https://ctan.org/pkg/serbian-date-lat">CTAN</a>): -Updated date typesetting for Serbian +Updated date typesetting for Serbian. <a href="texmf-dist/doc/latex/serbian-date-lat/SerbianDateLat.pdf">SerbianDateLat.pdf</a> <a href="texmf-dist/doc/latex/serbian-date-lat/TestDateLat.pdf">TestDateLat.pdf</a>. </small></li> -<li id="serbian-def-cyr"><b><a href="texmf-dist/doc/latex/serbian-def-cyr">serbian-def-cyr</a></b><small> +<li id="serbian-def-cyr"><b><a href="texmf-dist/doc/latex/serbian-def-cyr/">serbian-def-cyr</a></b><small> (<a href="https://ctan.org/pkg/serbian-def-cyr">CTAN</a>): -Serbian cyrillic localization +Serbian cyrillic localization. <a href="texmf-dist/doc/latex/serbian-def-cyr/proba.pdf">proba.pdf</a> <a href="texmf-dist/doc/latex/serbian-def-cyr/usage.pdf">usage.pdf</a>. </small></li> -<li id="serbian-lig"><b><a href="texmf-dist/doc/latex/serbian-lig">serbian-lig</a></b><small> +<li id="serbian-lig"><b><a href="texmf-dist/doc/latex/serbian-lig/">serbian-lig</a></b><small> (<a href="https://ctan.org/pkg/serbian-lig">CTAN</a>): -Control ligatures in Serbian +Control ligatures in Serbian. <a href="texmf-dist/doc/latex/serbian-lig/lig-list.pdf">lig-list.pdf</a> <a href="texmf-dist/doc/latex/serbian-lig/serbian-lig.pdf">serbian-lig.pdf</a>. </small></li> -<li id="sesamanuel"><b><a href="texmf-dist/doc/latex/sesamanuel">sesamanuel</a></b><small> +<li id="sesamanuel"><b><a href="texmf-dist/doc/latex/sesamanuel/">sesamanuel</a></b><small> (<a href="https://ctan.org/pkg/sesamanuel">CTAN</a>): -Class and package for sesamath books or paper +Class and package for sesamath books or paper. <a href="texmf-dist/doc/latex/sesamanuel/sesamanuel.pdf">sesamanuel.pdf</a> (fr) <a href="texmf-dist/doc/latex/sesamanuel/sesamath-doc-fr.pdf">sesamath-doc-fr.pdf</a> (fr). </small></li> -<li id="sesstime"><b><a href="texmf-dist/doc/latex/sesstime">sesstime</a></b><small> +<li id="sesstime"><b><a href="texmf-dist/doc/latex/sesstime/">sesstime</a></b><small> (<a href="https://ctan.org/pkg/sesstime">CTAN</a>): -Session and timing information in lecture notes +Session and timing information in lecture notes. <a href="texmf-dist/doc/latex/sesstime/sesstime.pdf">sesstime.pdf</a>. </small></li> -<li id="setdeck"><b><a href="texmf-dist/doc/latex/setdeck">setdeck</a></b><small> +<li id="setdeck"><b><a href="texmf-dist/doc/latex/setdeck/">setdeck</a></b><small> (<a href="https://ctan.org/pkg/setdeck">CTAN</a>): -Typeset cards for Set +Typeset cards for Set. <a href="texmf-dist/doc/latex/setdeck/setdeck.pdf">setdeck.pdf</a>. </small></li> -<li id="seuthesis"><b><a href="texmf-dist/doc/latex/seuthesis/figures">seuthesis</a></b><small> +<li id="seuthesis"><b><a href="texmf-dist/doc/latex/seuthesis/">seuthesis</a></b><small> (<a href="https://ctan.org/pkg/seuthesis">CTAN</a>): -LaTeX template for theses at Southeastern University +LaTeX template for theses at Southeastern University. <a href="texmf-dist/doc/latex/seuthesis/figures/doctor-hwzs.pdf">doctor-hwzs.pdf</a> <a href="texmf-dist/doc/latex/seuthesis/figures/master-hwzs.pdf">master-hwzs.pdf</a> <a href="texmf-dist/doc/latex/seuthesis/figures/seu-badge-logo.pdf">seu-badge-logo.pdf</a> @@ -19481,9 +19429,9 @@ LaTeX template for theses at Southeastern University <a href="texmf-dist/doc/latex/seuthesis/seuthesis.pdf">seuthesis.pdf</a> (zh). </small></li> -<li id="seuthesix"><b><a href="texmf-dist/doc/latex/seuthesix/figures">seuthesix</a></b><small> +<li id="seuthesix"><b><a href="texmf-dist/doc/latex/seuthesix/">seuthesix</a></b><small> (<a href="https://ctan.org/pkg/seuthesix">CTAN</a>): -LaTeX class for theses at Southeast University, Nanjing, China +LaTeX class for theses at Southeast University, Nanjing, China. <a href="texmf-dist/doc/latex/seuthesix/figures/doctor-hwzs.pdf">doctor-hwzs.pdf</a> <a href="texmf-dist/doc/latex/seuthesix/figures/master-hwzs.pdf">master-hwzs.pdf</a> <a href="texmf-dist/doc/latex/seuthesix/figures/seu-badge-logo.pdf">seu-badge-logo.pdf</a> @@ -19494,85 +19442,85 @@ LaTeX class for theses at Southeast University, Nanjing, China <a href="texmf-dist/doc/latex/seuthesix/seuthesix.pdf">seuthesix.pdf</a> (zh). </small></li> -<li id="sexam"><b><a href="texmf-dist/doc/xelatex/sexam">sexam</a></b><small> +<li id="sexam"><b><a href="texmf-dist/doc/xelatex/sexam/">sexam</a></b><small> (<a href="https://ctan.org/pkg/sexam">CTAN</a>): -Package for typesetting arabic exam scripts +Package for typesetting arabic exam scripts. <a href="texmf-dist/doc/xelatex/sexam/bac_template-DZ.pdf">bac_template-DZ.pdf</a> <a href="texmf-dist/doc/xelatex/sexam/exam_with_sexam_ar-DZ.pdf">exam_with_sexam_ar-DZ.pdf</a> <a href="texmf-dist/doc/xelatex/sexam/exam_with_wexam_ar-DZ.pdf">exam_with_wexam_ar-DZ.pdf</a> <a href="texmf-dist/doc/xelatex/sexam/sexam_wexam_doc_ar.pdf">sexam_wexam_doc_ar.pdf</a> (ar-dz). </small></li> -<li id="sf298"><b><a href="texmf-dist/doc/latex/sf298">sf298</a></b><small> +<li id="sf298"><b><a href="texmf-dist/doc/latex/sf298/">sf298</a></b><small> (<a href="https://ctan.org/pkg/sf298">CTAN</a>): -Standard form 298 +Standard form 298. <a href="texmf-dist/doc/latex/sf298/sf298.pdf">sf298.pdf</a>. </small></li> -<li id="sffms"><b><a href="texmf-dist/doc/latex/sffms">sffms</a></b><small> +<li id="sffms"><b><a href="texmf-dist/doc/latex/sffms/">sffms</a></b><small> (<a href="https://ctan.org/pkg/sffms">CTAN</a>): -Typesetting science fiction/fantasy manuscripts +Typesetting science fiction/fantasy manuscripts. <a href="texmf-dist/doc/latex/sffms/sffms_manual.pdf">sffms_manual.pdf</a>. </small></li> -<li id="sfg"><b><a href="texmf-dist/doc/latex/sfg">sfg</a></b><small> +<li id="sfg"><b><a href="texmf-dist/doc/latex/sfg/">sfg</a></b><small> (<a href="https://ctan.org/pkg/sfg">CTAN</a>): -Draw signal flow graphs +Draw signal flow graphs. <a href="texmf-dist/doc/latex/sfg/sfg-doc.pdf">sfg-doc.pdf</a>. </small></li> -<li id="sgame"><b><a href="texmf-dist/doc/latex/sgame">sgame</a></b><small> +<li id="sgame"><b><a href="texmf-dist/doc/latex/sgame/">sgame</a></b><small> (<a href="https://ctan.org/pkg/sgame">CTAN</a>): -LaTeX style for typesetting strategic games +LaTeX style for typesetting strategic games. <a href="texmf-dist/doc/latex/sgame/sgame.pdf">sgame.pdf</a>. </small></li> -<li id="shade"><b><a href="texmf-dist/doc/generic/shade">shade</a></b><small> +<li id="shade"><b><a href="texmf-dist/doc/generic/shade/">shade</a></b><small> (<a href="https://ctan.org/pkg/shade">CTAN</a>): -Shade pieces of text +Shade pieces of text. <a href="texmf-dist/doc/generic/shade/description.pdf">description.pdf</a>. </small></li> -<li id="shadethm"><b><a href="texmf-dist/doc/latex/shadethm">shadethm</a></b><small> +<li id="shadethm"><b><a href="texmf-dist/doc/latex/shadethm/">shadethm</a></b><small> (<a href="https://ctan.org/pkg/shadethm">CTAN</a>): -Theorem environments that are shaded +Theorem environments that are shaded. <a href="texmf-dist/doc/latex/shadethm/shadetest.pdf">shadetest.pdf</a> <a href="texmf-dist/doc/latex/shadethm/shadethm-doc.pdf">shadethm-doc.pdf</a>. </small></li> -<li id="shadow"><b><a href="texmf-dist/doc/latex/shadow">shadow</a></b><small> +<li id="shadow"><b><a href="texmf-dist/doc/latex/shadow/">shadow</a></b><small> (<a href="https://ctan.org/pkg/shadow">CTAN</a>): -Shadow boxes +Shadow boxes. <a href="texmf-dist/doc/latex/shadow/shadow-doc.pdf">shadow-doc.pdf</a>. </small></li> -<li id="shadowtext"><b><a href="texmf-dist/doc/latex/shadowtext">shadowtext</a></b><small> +<li id="shadowtext"><b><a href="texmf-dist/doc/latex/shadowtext/">shadowtext</a></b><small> (<a href="https://ctan.org/pkg/shadowtext">CTAN</a>): -Produce text with a shadow behind it +Produce text with a shadow behind it. <a href="texmf-dist/doc/latex/shadowtext/shadowtext.pdf">shadowtext.pdf</a>. </small></li> -<li id="shapepar"><b><a href="texmf-dist/doc/generic/shapepar">shapepar</a></b><small> +<li id="shapepar"><b><a href="texmf-dist/doc/generic/shapepar/">shapepar</a></b><small> (<a href="https://ctan.org/pkg/shapepar">CTAN</a>): -A macro to typeset paragraphs in specific shapes +A macro to typeset paragraphs in specific shapes. <a href="texmf-dist/doc/generic/shapepar/shapepar.pdf">shapepar.pdf</a>. </small></li> -<li id="shapes"><b><a href="texmf-dist/doc/metapost/shapes">shapes</a></b><small> +<li id="shapes"><b><a href="texmf-dist/doc/metapost/shapes/">shapes</a></b><small> (<a href="https://ctan.org/pkg/shapes">CTAN</a>): -Draw polygons, reentrant stars, and fractions in circles with MetaPost +Draw polygons, reentrant stars, and fractions in circles with MetaPost. <a href="texmf-dist/doc/metapost/shapes/shapes.pdf">shapes.pdf</a>. </small></li> -<li id="shdoc"><b><a href="texmf-dist/doc/latex/shdoc">shdoc</a></b><small> +<li id="shdoc"><b><a href="texmf-dist/doc/latex/shdoc/">shdoc</a></b><small> (<a href="https://ctan.org/pkg/shdoc">CTAN</a>): -Float environment to document the shell commands of a terminal session +Float environment to document the shell commands of a terminal session. <a href="texmf-dist/doc/latex/shdoc/shdoc.pdf">shdoc.pdf</a>. </small></li> -<li id="shipunov"><b><a href="texmf-dist/doc/latex/shipunov">shipunov</a></b><small> +<li id="shipunov"><b><a href="texmf-dist/doc/latex/shipunov/">shipunov</a></b><small> (<a href="https://ctan.org/pkg/shipunov">CTAN</a>): -A collection of LaTeX packages and classes +A collection of LaTeX packages and classes. <a href="texmf-dist/doc/latex/shipunov/add2-ex.pdf">add2-ex.pdf</a> <a href="texmf-dist/doc/latex/shipunov/altverse-ex-en.pdf">altverse-ex-en.pdf</a> <a href="texmf-dist/doc/latex/shipunov/altverse-ex1-ru.pdf">altverse-ex1-ru.pdf</a> @@ -19613,229 +19561,227 @@ A collection of LaTeX packages and classes <a href="texmf-dist/doc/latex/shipunov/textfrac-ex.pdf">textfrac-ex.pdf</a>. </small></li> -<li id="shobhika"><b><a href="texmf-dist/doc/fonts/shobhika">shobhika</a></b><small> +<li id="shobhika"><b><a href="texmf-dist/doc/fonts/shobhika/">shobhika</a></b><small> (<a href="https://ctan.org/pkg/shobhika">CTAN</a>): -An OpenType Devanagari font designed for scholars +An OpenType Devanagari font designed for scholars. <a href="texmf-dist/doc/fonts/shobhika/shobhika.pdf">shobhika.pdf</a>. </small></li> -<li id="short-math-guide"><b><a href="texmf-dist/doc/latex/short-math-guide">short-math-guide</a></b><small> +<li id="short-math-guide"><b><a href="texmf-dist/doc/latex/short-math-guide/">short-math-guide</a></b><small> (<a href="https://ctan.org/pkg/short-math-guide">CTAN</a>): -Guide to using amsmath and related packages to typeset mathematical notation with LaTeX +Guide to using amsmath and related packages to typeset mathematical notation with LaTeX. <a href="texmf-dist/doc/latex/short-math-guide/short-math-guide.pdf">short-math-guide.pdf</a>. </small></li> -<li id="shortmathj"><b><a href="texmf-dist/doc/latex/shortmathj">shortmathj</a></b><small> +<li id="shortmathj"><b><a href="texmf-dist/doc/latex/shortmathj/">shortmathj</a></b><small> (<a href="https://ctan.org/pkg/shortmathj">CTAN</a>): -Automatically shortify titles of mathematical journals +Automatically shortify titles of mathematical journals. <a href="texmf-dist/doc/latex/shortmathj/shortmathj-biblatex-mwe.pdf">shortmathj-biblatex-mwe.pdf</a>. </small></li> -<li id="shorttoc"><b><a href="texmf-dist/doc/latex/shorttoc">shorttoc</a></b><small> +<li id="shorttoc"><b><a href="texmf-dist/doc/latex/shorttoc/">shorttoc</a></b><small> (<a href="https://ctan.org/pkg/shorttoc">CTAN</a>): -Table of contents with different depths +Table of contents with different depths. <a href="texmf-dist/doc/latex/shorttoc/shorttoc.pdf">shorttoc.pdf</a>. </small></li> -<li id="show2e"><b><a href="texmf-dist/doc/latex/show2e">show2e</a></b><small> +<li id="show2e"><b><a href="texmf-dist/doc/latex/show2e/">show2e</a></b><small> (<a href="https://ctan.org/pkg/show2e">CTAN</a>): -Variants of \show for LaTeX2e +Variants of \show for LaTeX2e. <a href="texmf-dist/doc/latex/show2e/show2e-fr.pdf">show2e-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/show2e/show2e.pdf">show2e.pdf</a>. </small></li> -<li id="showcharinbox"><b><a href="texmf-dist/doc/latex/showcharinbox">showcharinbox</a></b><small> +<li id="showcharinbox"><b><a href="texmf-dist/doc/latex/showcharinbox/">showcharinbox</a></b><small> (<a href="https://ctan.org/pkg/showcharinbox">CTAN</a>): -Show characters inside a box +Show characters inside a box. <a href="texmf-dist/doc/latex/showcharinbox/showcharinbox.pdf">showcharinbox.pdf</a>. </small></li> -<li id="showexpl"><b><a href="texmf-dist/doc/latex/showexpl">showexpl</a></b><small> +<li id="showexpl"><b><a href="texmf-dist/doc/latex/showexpl/">showexpl</a></b><small> (<a href="https://ctan.org/pkg/showexpl">CTAN</a>): -Typesetting LaTeX source code +Typesetting LaTeX source code. <a href="texmf-dist/doc/latex/showexpl/result-picture.pdf">result-picture.pdf</a> <a href="texmf-dist/doc/latex/showexpl/showexpl-test.pdf">showexpl-test.pdf</a> <a href="texmf-dist/doc/latex/showexpl/showexpl.pdf">showexpl.pdf</a>. </small></li> -<li id="showhyphens"><b><a href="texmf-dist/doc/lualatex/showhyphens">showhyphens</a></b><small> +<li id="showhyphens"><b><a href="texmf-dist/doc/lualatex/showhyphens/">showhyphens</a></b><small> (<a href="https://ctan.org/pkg/showhyphens">CTAN</a>): -Show all possible hyphenations in LuaLaTeX +Show all possible hyphenations in LuaLaTeX. <a href="texmf-dist/doc/lualatex/showhyphens/showhyphens-doc.pdf">showhyphens-doc.pdf</a> <a href="texmf-dist/doc/lualatex/showhyphens/showhyphens-sample.pdf">showhyphens-sample.pdf</a>. </small></li> -<li id="showlabels"><b><a href="texmf-dist/doc/latex/showlabels">showlabels</a></b><small> +<li id="showlabels"><b><a href="texmf-dist/doc/latex/showlabels/">showlabels</a></b><small> (<a href="https://ctan.org/pkg/showlabels">CTAN</a>): -Show label commands in the margin +Show label commands in the margin. <a href="texmf-dist/doc/latex/showlabels/showlabels.html">showlabels.html</a> <a href="texmf-dist/doc/latex/showlabels/showlabels.pdf">showlabels.pdf</a>. </small></li> -<li id="showtags"><b><a href="texmf-dist/doc/latex/showtags">showtags</a></b><small> +<li id="showtags"><b><a href="texmf-dist/doc/latex/showtags/">showtags</a></b><small> (<a href="https://ctan.org/pkg/showtags">CTAN</a>): -Print the tags of bibliography entries +Print the tags of bibliography entries. <a href="texmf-dist/doc/latex/showtags/showtags-doc.pdf">showtags-doc.pdf</a>. </small></li> -<li id="shuffle"><b><a href="texmf-dist/doc/latex/shuffle">shuffle</a></b><small> +<li id="shuffle"><b><a href="texmf-dist/doc/latex/shuffle/">shuffle</a></b><small> (<a href="https://ctan.org/pkg/shuffle">CTAN</a>): -A symbol for the shuffle product +A symbol for the shuffle product. <a href="texmf-dist/doc/latex/shuffle/shuffle.pdf">shuffle.pdf</a>. </small></li> -<li id="sidecap"><b><a href="texmf-dist/doc/latex/sidecap">sidecap</a></b><small> +<li id="sidecap"><b><a href="texmf-dist/doc/latex/sidecap/">sidecap</a></b><small> (<a href="https://ctan.org/pkg/sidecap">CTAN</a>): -Typeset captions sideways +Typeset captions sideways. <a href="texmf-dist/doc/latex/sidecap/sidecap.pdf">sidecap.pdf</a>. </small></li> -<li id="sidenotes"><b><a href="texmf-dist/doc/latex/sidenotes">sidenotes</a></b><small> +<li id="sidenotes"><b><a href="texmf-dist/doc/latex/sidenotes/">sidenotes</a></b><small> (<a href="https://ctan.org/pkg/sidenotes">CTAN</a>): -Typeset notes containing rich content, in the margin +Typeset notes containing rich content, in the margin. <a href="texmf-dist/doc/latex/sidenotes/caesar_example.pdf">caesar_example.pdf</a> <a href="texmf-dist/doc/latex/sidenotes/sidenotes.pdf">sidenotes.pdf</a>. </small></li> -<li id="sides"><b><a href="texmf-dist/doc/latex/sides">sides</a></b><small> +<li id="sides"><b><a href="texmf-dist/doc/latex/sides/">sides</a></b><small> (<a href="https://ctan.org/pkg/sides">CTAN</a>): -A LaTeX class for typesetting stage plays +A LaTeX class for typesetting stage plays. <a href="texmf-dist/doc/latex/sides/sides-sample.pdf">sides-sample.pdf</a>. </small></li> -<li id="signchart"><b><a href="texmf-dist/doc/latex/signchart">signchart</a></b><small> +<li id="signchart"><b><a href="texmf-dist/doc/latex/signchart/">signchart</a></b><small> (<a href="https://ctan.org/pkg/signchart">CTAN</a>): -Create beautifully typeset sign charts +Create beautifully typeset sign charts. <a href="texmf-dist/doc/latex/signchart/signchart.pdf">signchart.pdf</a>. </small></li> -<li id="silence"><b><a href="texmf-dist/doc/latex/silence">silence</a></b><small> +<li id="silence"><b><a href="texmf-dist/doc/latex/silence/">silence</a></b><small> (<a href="https://ctan.org/pkg/silence">CTAN</a>): -Selective filtering of error messages and warnings +Selective filtering of error messages and warnings. <a href="texmf-dist/doc/latex/silence/silence-doc.pdf">silence-doc.pdf</a>. </small></li> -<li id="simple-resume-cv"><b><a href="texmf-dist/doc/xelatex/simple-resume-cv">simple-resume-cv</a></b><small> +<li id="simple-resume-cv"><b><a href="texmf-dist/doc/xelatex/simple-resume-cv/">simple-resume-cv</a></b><small> (<a href="https://ctan.org/pkg/simple-resume-cv">CTAN</a>): -Template for a simple resume or curriculum vitae (CV), in XeLaTeX +Template for a simple resume or curriculum vitae (CV), in XeLaTeX. <a href="texmf-dist/doc/xelatex/simple-resume-cv/CV.pdf">CV.pdf</a>. </small></li> -<li id="simple-thesis-dissertation"><b><a href="texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures">simple-thesis-dissertation</a></b><small> +<li id="simple-thesis-dissertation"><b><a href="texmf-dist/doc/xelatex/simple-thesis-dissertation/">simple-thesis-dissertation</a></b><small> (<a href="https://ctan.org/pkg/simple-thesis-dissertation">CTAN</a>): -Template for a simple thesis or dissertation (Ph.D. or master's degree) or technical report, in XeLaTeX +Template for a simple thesis or dissertation (Ph.D. or master's degree) or technical report, in XeLaTeX. <a href="texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.pdf">Figure-SampleVectorGraphic.pdf</a> <a href="texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis.pdf">Thesis.pdf</a>. </small></li> -<li id="simplebnf"><b><a href="texmf-dist/doc/latex/simplebnf">simplebnf</a></b><small> +<li id="simplebnf"><b><a href="texmf-dist/doc/latex/simplebnf/">simplebnf</a></b><small> (<a href="https://ctan.org/pkg/simplebnf">CTAN</a>): -A simple package to format Backus-Naur form (BNF) +A simple package to format Backus-Naur form (BNF). <a href="texmf-dist/doc/latex/simplebnf/simplebnf-doc.pdf">simplebnf-doc.pdf</a>. </small></li> -<li id="simplecd"><b><a href="texmf-dist/doc/latex/simplecd">simplecd</a></b><small> +<li id="simplecd"><b><a href="texmf-dist/doc/latex/simplecd/">simplecd</a></b><small> (<a href="https://ctan.org/pkg/simplecd">CTAN</a>): -Simple CD, DVD covers for printing +Simple CD, DVD covers for printing. <a href="texmf-dist/doc/latex/simplecd/examples.pdf">examples.pdf</a> <a href="texmf-dist/doc/latex/simplecd/simplecd.pdf">simplecd.pdf</a>. </small></li> -<li id="simplecv"><b><a href="texmf-dist/doc/latex/simplecv">simplecv</a></b><small> +<li id="simplecv"><b><a href="texmf-dist/doc/latex/simplecv/">simplecv</a></b><small> (<a href="https://ctan.org/pkg/simplecv">CTAN</a>): -A simple class for writing curricula vitae +A simple class for writing curricula vitae. <a href="texmf-dist/doc/latex/simplecv/simplecv.pdf">simplecv.pdf</a> <a href="texmf-dist/doc/latex/simplecv/testcv.pdf">testcv.pdf</a>. </small></li> -<li id="simpleinvoice"><b><a href="texmf-dist/doc/latex/simpleinvoice/doc/examples">simpleinvoice</a></b><small> +<li id="simpleinvoice"><b><a href="texmf-dist/doc/latex/simpleinvoice/">simpleinvoice</a></b><small> (<a href="https://ctan.org/pkg/simpleinvoice">CTAN</a>): -Easy typesetting of invoices +Easy typesetting of invoices. <a href="texmf-dist/doc/latex/simpleinvoice/doc/examples/english.pdf">english.pdf</a> <a href="texmf-dist/doc/latex/simpleinvoice/doc/examples/norwegian.pdf">norwegian.pdf</a> <a href="texmf-dist/doc/latex/simpleinvoice/doc/simpleinvoice.pdf">simpleinvoice.pdf</a>. </small></li> -<li id="simplekv"><b><a href="texmf-dist/doc/generic/simplekv">simplekv</a></b><small> +<li id="simplekv"><b><a href="texmf-dist/doc/generic/simplekv/">simplekv</a></b><small> (<a href="https://ctan.org/pkg/simplekv">CTAN</a>): -A simple key/value system for TeX and LaTeX +A simple key/value system for TeX and LaTeX. <a href="texmf-dist/doc/generic/simplekv/simplekv-fr.pdf">simplekv-fr.pdf</a> (fr). </small></li> -<li id="simpleoptics"><b><a href="texmf-dist/doc/latex/simpleoptics">simpleoptics</a></b><small> +<li id="simpleoptics"><b><a href="texmf-dist/doc/latex/simpleoptics/">simpleoptics</a></b><small> (<a href="https://ctan.org/pkg/simpleoptics">CTAN</a>): -Drawing lenses and mirrors for optical diagrams +Drawing lenses and mirrors for optical diagrams. <a href="texmf-dist/doc/latex/simpleoptics/simpleoptics.pdf">simpleoptics.pdf</a>. </small></li> -<li id="simpler-wick"><b><a href="texmf-dist/doc/latex/simpler-wick">simpler-wick</a></b><small> +<li id="simpler-wick"><b><a href="texmf-dist/doc/latex/simpler-wick/">simpler-wick</a></b><small> (<a href="https://ctan.org/pkg/simpler-wick">CTAN</a>): -Simpler Wick contractions +Simpler Wick contractions. <a href="texmf-dist/doc/latex/simpler-wick/simpler-wick.pdf">simpler-wick.pdf</a>. </small></li> -<li id="simplewick"><b><a href="texmf-dist/doc/latex/simplewick">simplewick</a></b><small> +<li id="simplewick"><b><a href="texmf-dist/doc/latex/simplewick/">simplewick</a></b><small> (<a href="https://ctan.org/pkg/simplewick">CTAN</a>): -Simple Wick contractions +Simple Wick contractions. <a href="texmf-dist/doc/latex/simplewick/simplewick.pdf">simplewick.pdf</a>. </small></li> -<li id="simplified-latex"><b><a href="texmf-dist/doc/latex/simplified-latex">simplified-latex</a></b><small> +<li id="simplified-latex"><b><a href="texmf-dist/doc/latex/simplified-latex/">simplified-latex</a></b><small> (<a href="https://ctan.org/pkg/simplified-latex">CTAN</a>): -A Simplified Introduction to LaTeX +A Simplified Introduction to LaTeX. <a href="texmf-dist/doc/latex/simplified-latex/simplified-intro.pdf">simplified-intro.pdf</a>. </small></li> -<li id="simurgh"><b><a href="texmf-dist/doc/lualatex/simurgh">simurgh</a></b><small> +<li id="simurgh"><b><a href="texmf-dist/doc/lualatex/simurgh/">simurgh</a></b><small> (<a href="https://ctan.org/pkg/simurgh">CTAN</a>): -Typeset Parsi in LuaLaTeX +Typeset Parsi in LuaLaTeX. <a href="texmf-dist/doc/lualatex/simurgh/simurgh-doc.pdf">simurgh-doc.pdf</a> <a href="texmf-dist/doc/lualatex/simurgh/simurgh-logo.pdf">simurgh-logo.pdf</a>. </small></li> -<li id="SIstyle"><b><a href="texmf-dist/doc/latex/SIstyle">SIstyle</a></b><small> -(<a href="https://ctan.org/pkg/SIstyle">CTAN</a>): -Package to typeset SI units, numbers and angles +<li id="SIstyle"><b><a href="texmf-dist/doc/latex/SIstyle/">SIstyle</a></b><small> +Package to typeset SI units, numbers and angles. <a href="texmf-dist/doc/latex/SIstyle/SIstyle-2.3a.pdf">SIstyle-2.3a.pdf</a>. </small></li> -<li id="sitem"><b><a href="texmf-dist/doc/latex/sitem">sitem</a></b><small> +<li id="sitem"><b><a href="texmf-dist/doc/latex/sitem/">sitem</a></b><small> (<a href="https://ctan.org/pkg/sitem">CTAN</a>): -Save the optional argument of \item +Save the optional argument of \item. <a href="texmf-dist/doc/latex/sitem/sitem.pdf">sitem.pdf</a>. </small></li> -<li id="SIunits"><b><a href="texmf-dist/doc/latex/SIunits">SIunits</a></b><small> -(<a href="https://ctan.org/pkg/SIunits">CTAN</a>): -International System of Units +<li id="SIunits"><b><a href="texmf-dist/doc/latex/SIunits/">SIunits</a></b><small> +International System of Units. <a href="texmf-dist/doc/latex/SIunits/SIunits.pdf">SIunits.pdf</a>. </small></li> -<li id="siunitx"><b><a href="texmf-dist/doc/latex/siunitx">siunitx</a></b><small> +<li id="siunitx"><b><a href="texmf-dist/doc/latex/siunitx/">siunitx</a></b><small> (<a href="https://ctan.org/pkg/siunitx">CTAN</a>): -A comprehensive (SI) units package +A comprehensive (SI) units package. <a href="texmf-dist/doc/latex/siunitx/siunitx.pdf">siunitx.pdf</a>. </small></li> -<li id="skak"><b><a href="texmf-dist/doc/latex/skak">skak</a></b><small> +<li id="skak"><b><a href="texmf-dist/doc/latex/skak/">skak</a></b><small> (<a href="https://ctan.org/pkg/skak">CTAN</a>): -Fonts and macros for typesetting chess games +Fonts and macros for typesetting chess games. <a href="texmf-dist/doc/latex/skak/informator.pdf">informator.pdf</a> <a href="texmf-dist/doc/latex/skak/refman.pdf">refman.pdf</a> <a href="texmf-dist/doc/latex/skak/skakdoc.pdf">skakdoc.pdf</a> <a href="texmf-dist/doc/latex/skak/tuggame.pdf">tuggame.pdf</a>. </small></li> -<li id="skaknew"><b><a href="texmf-dist/doc/fonts/skaknew">skaknew</a></b><small> +<li id="skaknew"><b><a href="texmf-dist/doc/fonts/skaknew/">skaknew</a></b><small> (<a href="https://ctan.org/pkg/skaknew">CTAN</a>): -The skak chess fonts redone in Adobe Type 1 +The skak chess fonts redone in Adobe Type 1. <a href="texmf-dist/doc/fonts/skaknew/SkakNew.pdf">SkakNew.pdf</a> <a href="texmf-dist/doc/fonts/skaknew/fonttables.pdf">fonttables.pdf</a>. </small></li> -<li id="skb"><b><a href="texmf-dist/doc/latex/skb">skb</a></b><small> +<li id="skb"><b><a href="texmf-dist/doc/latex/skb/">skb</a></b><small> (<a href="https://ctan.org/pkg/skb">CTAN</a>): -Tools for a repository of long-living documents +Tools for a repository of long-living documents. <a href="texmf-dist/doc/latex/skb/skb.pdf">skb.pdf</a> <a href="texmf-dist/doc/latex/skb/user-guide.pdf">user-guide.pdf</a> <a href="texmf-dist/doc/latex/skb/user-guide/figures/multiexample/dpe-0.pdf">dpe-0.pdf</a> @@ -19855,92 +19801,92 @@ Tools for a repository of long-living documents <a href="texmf-dist/doc/latex/skb/user-guide/figures/multiexample/dpe-9.pdf">dpe-9.pdf</a>. </small></li> -<li id="skdoc"><b><a href="texmf-dist/doc/latex/skdoc">skdoc</a></b><small> +<li id="skdoc"><b><a href="texmf-dist/doc/latex/skdoc/">skdoc</a></b><small> (<a href="https://ctan.org/pkg/skdoc">CTAN</a>): -Documentation and extraction for packages and document classes +Documentation and extraction for packages and document classes. <a href="texmf-dist/doc/latex/skdoc/skdoc.pdf">skdoc.pdf</a>. </small></li> -<li id="skeycommand"><b><a href="texmf-dist/doc/latex/skeycommand">skeycommand</a></b><small> +<li id="skeycommand"><b><a href="texmf-dist/doc/latex/skeycommand/">skeycommand</a></b><small> (<a href="https://ctan.org/pkg/skeycommand">CTAN</a>): -Create commands using parameters and keyval in parallel +Create commands using parameters and keyval in parallel. <a href="texmf-dist/doc/latex/skeycommand/skeycommand-guide.pdf">skeycommand-guide.pdf</a>. </small></li> -<li id="skeyval"><b><a href="texmf-dist/doc/latex/skeyval">skeyval</a></b><small> +<li id="skeyval"><b><a href="texmf-dist/doc/latex/skeyval/">skeyval</a></b><small> (<a href="https://ctan.org/pkg/skeyval">CTAN</a>): -Key-value parsing combining features of xkeyval and pgfkeys +Key-value parsing combining features of xkeyval and pgfkeys. <a href="texmf-dist/doc/latex/skeyval/skeyval-pokayoke1.pdf">skeyval-pokayoke1.pdf</a> <a href="texmf-dist/doc/latex/skeyval/skeyval-pokayoke2.pdf">skeyval-pokayoke2.pdf</a> <a href="texmf-dist/doc/latex/skeyval/skeyval-view-pokayoke1.pdf">skeyval-view-pokayoke1.pdf</a>. </small></li> -<li id="skmath"><b><a href="texmf-dist/doc/latex/skmath">skmath</a></b><small> +<li id="skmath"><b><a href="texmf-dist/doc/latex/skmath/">skmath</a></b><small> (<a href="https://ctan.org/pkg/skmath">CTAN</a>): -Extensions to the maths command repertoir +Extensions to the maths command repertoir. <a href="texmf-dist/doc/latex/skmath/skmath.pdf">skmath.pdf</a>. </small></li> -<li id="skrapport"><b><a href="texmf-dist/doc/latex/skrapport">skrapport</a></b><small> +<li id="skrapport"><b><a href="texmf-dist/doc/latex/skrapport/">skrapport</a></b><small> (<a href="https://ctan.org/pkg/skrapport">CTAN</a>): -'Simple' class for reports, etc. +'Simple' class for reports, etc. <a href="texmf-dist/doc/latex/skrapport/skrapport.pdf">skrapport.pdf</a>. </small></li> -<li id="slantsc"><b><a href="texmf-dist/doc/latex/slantsc">slantsc</a></b><small> +<li id="slantsc"><b><a href="texmf-dist/doc/latex/slantsc/">slantsc</a></b><small> (<a href="https://ctan.org/pkg/slantsc">CTAN</a>): -Access different-shaped small-caps fonts +Access different-shaped small-caps fonts. <a href="texmf-dist/doc/latex/slantsc/slantsc.pdf">slantsc.pdf</a>. </small></li> -<li id="slideshow"><b><a href="texmf-dist/doc/metapost/slideshow">slideshow</a></b><small> +<li id="slideshow"><b><a href="texmf-dist/doc/metapost/slideshow/">slideshow</a></b><small> (<a href="https://ctan.org/pkg/slideshow">CTAN</a>): -Generate slideshow with MetaPost +Generate slideshow with MetaPost. <a href="texmf-dist/doc/metapost/slideshow/sshowex.pdf">sshowex.pdf</a> <a href="texmf-dist/doc/metapost/slideshow/sshowex2.pdf">sshowex2.pdf</a> <a href="texmf-dist/doc/metapost/slideshow/sshowex3.pdf">sshowex3.pdf</a> <a href="texmf-dist/doc/metapost/slideshow/sshowintro.pdf">sshowintro.pdf</a>. </small></li> -<li id="smalltableof"><b><a href="texmf-dist/doc/latex/smalltableof">smalltableof</a></b><small> +<li id="smalltableof"><b><a href="texmf-dist/doc/latex/smalltableof/">smalltableof</a></b><small> (<a href="https://ctan.org/pkg/smalltableof">CTAN</a>): -Create listoffigures etc. in a single chapter +Create listoffigures etc. in a single chapter. <a href="texmf-dist/doc/latex/smalltableof/smalltableof-doc-fr.pdf">smalltableof-doc-fr.pdf</a> (fr). </small></li> -<li id="smartdiagram"><b><a href="texmf-dist/doc/latex/smartdiagram">smartdiagram</a></b><small> +<li id="smartdiagram"><b><a href="texmf-dist/doc/latex/smartdiagram/">smartdiagram</a></b><small> (<a href="https://ctan.org/pkg/smartdiagram">CTAN</a>): -Generate diagrams from lists +Generate diagrams from lists. <a href="texmf-dist/doc/latex/smartdiagram/smartdiagram.pdf">smartdiagram.pdf</a>. </small></li> -<li id="smartref"><b><a href="texmf-dist/doc/latex/smartref">smartref</a></b><small> +<li id="smartref"><b><a href="texmf-dist/doc/latex/smartref/">smartref</a></b><small> (<a href="https://ctan.org/pkg/smartref">CTAN</a>): -Extend LaTeX's \ref capability +Extend LaTeX's \ref capability. <a href="texmf-dist/doc/latex/smartref/smartref-doc.pdf">smartref-doc.pdf</a>. </small></li> -<li id="smartunits"><b><a href="texmf-dist/doc/latex/smartunits">smartunits</a></b><small> +<li id="smartunits"><b><a href="texmf-dist/doc/latex/smartunits/">smartunits</a></b><small> (<a href="https://ctan.org/pkg/smartunits">CTAN</a>): -Converting between common metric and Imperial units +Converting between common metric and Imperial units. <a href="texmf-dist/doc/latex/smartunits/smartunits.pdf">smartunits.pdf</a>. </small></li> -<li id="snapshot"><b><a href="texmf-dist/doc/latex/snapshot">snapshot</a></b><small> +<li id="snapshot"><b><a href="texmf-dist/doc/latex/snapshot/">snapshot</a></b><small> (<a href="https://ctan.org/pkg/snapshot">CTAN</a>): -List the external dependencies of a LaTeX document +List the external dependencies of a LaTeX document. <a href="texmf-dist/doc/latex/snapshot/snapshot.pdf">snapshot.pdf</a>. </small></li> -<li id="snotez"><b><a href="texmf-dist/doc/latex/snotez">snotez</a></b><small> +<li id="snotez"><b><a href="texmf-dist/doc/latex/snotez/">snotez</a></b><small> (<a href="https://ctan.org/pkg/snotez">CTAN</a>): -Typeset notes, in the margin +Typeset notes, in the margin. <a href="texmf-dist/doc/latex/snotez/snotez_en.pdf">snotez_en.pdf</a>. </small></li> -<li id="songbook"><b><a href="texmf-dist/doc/latex/songbook/contrib/CarolBook">songbook</a></b><small> +<li id="songbook"><b><a href="texmf-dist/doc/latex/songbook/">songbook</a></b><small> (<a href="https://ctan.org/pkg/songbook">CTAN</a>): -Package for typesetting song lyrics and chord books +Package for typesetting song lyrics and chord books. <a href="texmf-dist/doc/latex/songbook/contrib/CarolBook/CarolBookOH.pdf">CarolBookOH.pdf</a> <a href="texmf-dist/doc/latex/songbook/contrib/CarolBook/CarolBookWB.pdf">CarolBookWB.pdf</a> <a href="texmf-dist/doc/latex/songbook/sampleAdx.pdf">sampleAdx.pdf</a> @@ -19954,95 +19900,95 @@ Package for typesetting song lyrics and chord books <a href="texmf-dist/doc/latex/songbook/songbook.pdf">songbook.pdf</a>. </small></li> -<li id="songs"><b><a href="texmf-dist/doc/latex/songs">songs</a></b><small> +<li id="songs"><b><a href="texmf-dist/doc/latex/songs/">songs</a></b><small> (<a href="https://ctan.org/pkg/songs">CTAN</a>): -Produce song books for church or fellowship +Produce song books for church or fellowship. <a href="texmf-dist/doc/latex/songs/songs.pdf">songs.pdf</a>. </small></li> -<li id="soul"><b><a href="texmf-dist/doc/latex/soul">soul</a></b><small> +<li id="soul"><b><a href="texmf-dist/doc/latex/soul/">soul</a></b><small> (<a href="https://ctan.org/pkg/soul">CTAN</a>): -Hyphenation for letterspacing, underlining, and more +Hyphenation for letterspacing, underlining, and more. <a href="texmf-dist/doc/latex/soul/soul.pdf">soul.pdf</a>. </small></li> -<li id="soulpos"><b><a href="texmf-dist/doc/latex/soulpos">soulpos</a></b><small> +<li id="soulpos"><b><a href="texmf-dist/doc/latex/soulpos/">soulpos</a></b><small> (<a href="https://ctan.org/pkg/soulpos">CTAN</a>): -A fancy means of underlining +A fancy means of underlining. <a href="texmf-dist/doc/latex/soulpos/soulpos.pdf">soulpos.pdf</a>. </small></li> -<li id="soulutf8"><b><a href="texmf-dist/doc/latex/soulutf8">soulutf8</a></b><small> +<li id="soulutf8"><b><a href="texmf-dist/doc/latex/soulutf8/">soulutf8</a></b><small> (<a href="https://ctan.org/pkg/soulutf8">CTAN</a>): -Permit use of UTF-8 characters in soul +Permit use of UTF-8 characters in soul. <a href="texmf-dist/doc/latex/soulutf8/soulutf8.pdf">soulutf8.pdf</a>. </small></li> -<li id="soup"><b><a href="texmf-dist/doc/latex/soup">soup</a></b><small> +<li id="soup"><b><a href="texmf-dist/doc/latex/soup/">soup</a></b><small> (<a href="https://ctan.org/pkg/soup">CTAN</a>): -Generate alphabet soup puzzles +Generate alphabet soup puzzles. <a href="texmf-dist/doc/latex/soup/soup.pdf">soup.pdf</a>. </small></li> -<li id="sourcecodepro"><b><a href="texmf-dist/doc/latex/sourcecodepro">sourcecodepro</a></b><small> +<li id="sourcecodepro"><b><a href="texmf-dist/doc/latex/sourcecodepro/">sourcecodepro</a></b><small> (<a href="https://ctan.org/pkg/sourcecodepro">CTAN</a>): -Use SourceCodePro with TeX(-alike) systems +Use SourceCodePro with TeX(-alike) systems. <a href="texmf-dist/doc/latex/sourcecodepro/sourcecodepro-otf-specimen.pdf">sourcecodepro-otf-specimen.pdf</a> <a href="texmf-dist/doc/latex/sourcecodepro/sourcecodepro-type1-specimen.pdf">sourcecodepro-type1-specimen.pdf</a> <a href="texmf-dist/doc/latex/sourcecodepro/sourcecodepro.pdf">sourcecodepro.pdf</a>. </small></li> -<li id="sourcesanspro"><b><a href="texmf-dist/doc/latex/sourcesanspro">sourcesanspro</a></b><small> +<li id="sourcesanspro"><b><a href="texmf-dist/doc/latex/sourcesanspro/">sourcesanspro</a></b><small> (<a href="https://ctan.org/pkg/sourcesanspro">CTAN</a>): -Use SourceSansPro with TeX(-alike) systems +Use SourceSansPro with TeX(-alike) systems. <a href="texmf-dist/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.pdf">sourcesanspro-otf-specimen.pdf</a> <a href="texmf-dist/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.pdf">sourcesanspro-type1-specimen.pdf</a> <a href="texmf-dist/doc/latex/sourcesanspro/sourcesanspro.pdf">sourcesanspro.pdf</a>. </small></li> -<li id="sourceserifpro"><b><a href="texmf-dist/doc/latex/sourceserifpro">sourceserifpro</a></b><small> +<li id="sourceserifpro"><b><a href="texmf-dist/doc/latex/sourceserifpro/">sourceserifpro</a></b><small> (<a href="https://ctan.org/pkg/sourceserifpro">CTAN</a>): -Use SourceSerifPro with TeX(-alike) systems +Use SourceSerifPro with TeX(-alike) systems. <a href="texmf-dist/doc/latex/sourceserifpro/sourceserifpro-otf-specimen.pdf">sourceserifpro-otf-specimen.pdf</a> <a href="texmf-dist/doc/latex/sourceserifpro/sourceserifpro-type1-specimen.pdf">sourceserifpro-type1-specimen.pdf</a> <a href="texmf-dist/doc/latex/sourceserifpro/sourceserifpro.pdf">sourceserifpro.pdf</a>. </small></li> -<li id="spacingtricks"><b><a href="texmf-dist/doc/latex/spacingtricks">spacingtricks</a></b><small> +<li id="spacingtricks"><b><a href="texmf-dist/doc/latex/spacingtricks/">spacingtricks</a></b><small> (<a href="https://ctan.org/pkg/spacingtricks">CTAN</a>): -Dealing with some spacing issues +Dealing with some spacing issues. <a href="texmf-dist/doc/latex/spacingtricks/spacingtricks.pdf">spacingtricks.pdf</a>. </small></li> -<li id="spalign"><b><a href="texmf-dist/doc/latex/spalign">spalign</a></b><small> +<li id="spalign"><b><a href="texmf-dist/doc/latex/spalign/">spalign</a></b><small> (<a href="https://ctan.org/pkg/spalign">CTAN</a>): -Typeset matrices and arrays with spaces and semicolons as delimiters +Typeset matrices and arrays with spaces and semicolons as delimiters. <a href="texmf-dist/doc/latex/spalign/spalign.pdf">spalign.pdf</a>. </small></li> -<li id="spark-otf"><b><a href="texmf-dist/doc/fonts/spark-otf">spark-otf</a></b><small> +<li id="spark-otf"><b><a href="texmf-dist/doc/fonts/spark-otf/">spark-otf</a></b><small> (<a href="https://ctan.org/pkg/spark-otf">CTAN</a>): -Support OpenType Spark fonts +Support OpenType Spark fonts. <a href="texmf-dist/doc/fonts/spark-otf/spark-otf-doc.pdf">spark-otf-doc.pdf</a>. </small></li> -<li id="sparklines"><b><a href="texmf-dist/doc/latex/sparklines">sparklines</a></b><small> +<li id="sparklines"><b><a href="texmf-dist/doc/latex/sparklines/">sparklines</a></b><small> (<a href="https://ctan.org/pkg/sparklines">CTAN</a>): -Drawing sparklines: intense, simple, wordlike graphics +Drawing sparklines: intense, simple, wordlike graphics. <a href="texmf-dist/doc/latex/sparklines/sparklines.pdf">sparklines.pdf</a>. </small></li> -<li id="spath3"><b><a href="texmf-dist/doc/latex/spath3">spath3</a></b><small> +<li id="spath3"><b><a href="texmf-dist/doc/latex/spath3/">spath3</a></b><small> (<a href="https://ctan.org/pkg/spath3">CTAN</a>): -Manipulate "soft paths" in PGF +Manipulate "soft paths" in PGF. <a href="texmf-dist/doc/latex/spath3/calligraphy_doc.pdf">calligraphy_doc.pdf</a> <a href="texmf-dist/doc/latex/spath3/knots_doc.pdf">knots_doc.pdf</a> <a href="texmf-dist/doc/latex/spath3/spath3_code.pdf">spath3_code.pdf</a>. </small></li> -<li id="spectralsequences"><b><a href="texmf-dist/doc/latex/spectralsequences/examples">spectralsequences</a></b><small> +<li id="spectralsequences"><b><a href="texmf-dist/doc/latex/spectralsequences/">spectralsequences</a></b><small> (<a href="https://ctan.org/pkg/spectralsequences">CTAN</a>): -Print spectral sequence diagrams using PGF/TikZ +Print spectral sequence diagrams using PGF/TikZ. <a href="texmf-dist/doc/latex/spectralsequences/examples/ANSS-S_2.pdf">ANSS-S_2.pdf</a> <a href="texmf-dist/doc/latex/spectralsequences/examples/ANSS-S_3.pdf">ANSS-S_3.pdf</a> <a href="texmf-dist/doc/latex/spectralsequences/examples/ASS-S_2.pdf">ASS-S_2.pdf</a> @@ -20062,99 +20008,98 @@ Print spectral sequence diagrams using PGF/TikZ <a href="texmf-dist/doc/latex/spectralsequences/manual/spectralsequencesmanual.pdf">spectralsequencesmanual.pdf</a>. </small></li> -<li id="spelling"><b><a href="texmf-dist/doc/luatex/spelling">spelling</a></b><small> +<li id="spelling"><b><a href="texmf-dist/doc/luatex/spelling/">spelling</a></b><small> (<a href="https://ctan.org/pkg/spelling">CTAN</a>): -Support for spell-checking of LuaTeX documents +Support for spell-checking of LuaTeX documents. <a href="texmf-dist/doc/luatex/spelling/spelling-doc.pdf">spelling-doc.pdf</a>. </small></li> -<li id="sphack"><b><a href="texmf-dist/doc/latex/sphack">sphack</a></b><small> +<li id="sphack"><b><a href="texmf-dist/doc/latex/sphack/">sphack</a></b><small> (<a href="https://ctan.org/pkg/sphack">CTAN</a>): -Patch LaTeX kernel spacing macros +Patch LaTeX kernel spacing macros. <a href="texmf-dist/doc/latex/sphack/sphack-doc.pdf">sphack-doc.pdf</a>. </small></li> -<li id="sphdthesis"><b><a href="texmf-dist/doc/latex/sphdthesis">sphdthesis</a></b><small> +<li id="sphdthesis"><b><a href="texmf-dist/doc/latex/sphdthesis/">sphdthesis</a></b><small> (<a href="https://ctan.org/pkg/sphdthesis">CTAN</a>): -LaTeX template for writing PhD Thesis +LaTeX template for writing PhD Thesis. <a href="texmf-dist/doc/latex/sphdthesis/SPhdThesis.pdf">SPhdThesis.pdf</a> <a href="texmf-dist/doc/latex/sphdthesis/example/border.pdf">border.pdf</a> <a href="texmf-dist/doc/latex/sphdthesis/example/thesis.pdf">thesis.pdf</a>. </small></li> -<li id="spie"><b><a href="texmf-dist/doc/latex/spie">spie</a></b><small> +<li id="spie"><b><a href="texmf-dist/doc/latex/spie/">spie</a></b><small> (<a href="https://ctan.org/pkg/spie">CTAN</a>): -Support for formatting SPIE Proceedings manuscripts +Support for formatting SPIE Proceedings manuscripts. <a href="texmf-dist/doc/latex/spie/article.pdf">article.pdf</a>. </small></li> -<li id="splines"><b><a href="texmf-dist/doc/metapost/splines">splines</a></b><small> +<li id="splines"><b><a href="texmf-dist/doc/metapost/splines/">splines</a></b><small> (<a href="https://ctan.org/pkg/splines">CTAN</a>): -MetaPost macros for drawing cubic spline interpolants +MetaPost macros for drawing cubic spline interpolants. <a href="texmf-dist/doc/metapost/splines/splines.pdf">splines.pdf</a>. </small></li> -<li id="splitbib"><b><a href="texmf-dist/doc/latex/splitbib">splitbib</a></b><small> +<li id="splitbib"><b><a href="texmf-dist/doc/latex/splitbib/">splitbib</a></b><small> (<a href="https://ctan.org/pkg/splitbib">CTAN</a>): -Split and reorder your bibliography +Split and reorder your bibliography. <a href="texmf-dist/doc/latex/splitbib/splitbib.pdf">splitbib.pdf</a>. </small></li> -<li id="splitindex"><b><a href="texmf-dist/doc/latex/splitindex">splitindex</a></b><small> +<li id="splitindex"><b><a href="texmf-dist/doc/latex/splitindex/">splitindex</a></b><small> (<a href="https://ctan.org/pkg/splitindex">CTAN</a>): -Unlimited number of indexes +Unlimited number of indexes. <a href="texmf-dist/doc/latex/splitindex/splitidx.pdf">splitidx.pdf</a> <a href="texmf-dist/doc/man/man1/splitindex.man1.pdf">splitindex.man1.pdf</a>. </small></li> -<li id="spot"><b><a href="texmf-dist/doc/latex/spot">spot</a></b><small> +<li id="spot"><b><a href="texmf-dist/doc/latex/spot/">spot</a></b><small> (<a href="https://ctan.org/pkg/spot">CTAN</a>): -Spotlight highlighting for Beamer +Spotlight highlighting for Beamer. <a href="texmf-dist/doc/latex/spot/spot.pdf">spot.pdf</a>. </small></li> -<li id="spotcolor"><b><a href="texmf-dist/doc/latex/spotcolor">spotcolor</a></b><small> +<li id="spotcolor"><b><a href="texmf-dist/doc/latex/spotcolor/">spotcolor</a></b><small> (<a href="https://ctan.org/pkg/spotcolor">CTAN</a>): -Spot colours for pdfLaTeX +Spot colours for pdfLaTeX. <a href="texmf-dist/doc/latex/spotcolor/readme.pdf">readme.pdf</a>. </small></li> -<li id="spreadtab"><b><a href="texmf-dist/doc/latex/spreadtab">spreadtab</a></b><small> +<li id="spreadtab"><b><a href="texmf-dist/doc/latex/spreadtab/">spreadtab</a></b><small> (<a href="https://ctan.org/pkg/spreadtab">CTAN</a>): -Spreadsheet features for LaTeX tabular environments +Spreadsheet features for LaTeX tabular environments. <a href="texmf-dist/doc/latex/spreadtab/spreadtab-en.pdf">spreadtab-en.pdf</a> <a href="texmf-dist/doc/latex/spreadtab/spreadtab-fr.pdf">spreadtab-fr.pdf</a> (fr). </small></li> -<li id="spverbatim"><b><a href="texmf-dist/doc/latex/spverbatim">spverbatim</a></b><small> +<li id="spverbatim"><b><a href="texmf-dist/doc/latex/spverbatim/">spverbatim</a></b><small> (<a href="https://ctan.org/pkg/spverbatim">CTAN</a>): -Allow line breaks within \verb and verbatim output +Allow line breaks within \verb and verbatim output. <a href="texmf-dist/doc/latex/spverbatim/spverbatim.pdf">spverbatim.pdf</a>. </small></li> -<li id="sr-vorl"><b><a href="texmf-dist/doc/latex/sr-vorl">sr-vorl</a></b><small> +<li id="sr-vorl"><b><a href="texmf-dist/doc/latex/sr-vorl/">sr-vorl</a></b><small> (<a href="https://ctan.org/pkg/sr-vorl">CTAN</a>): -Class for Springer books +Class for Springer books. <a href="texmf-dist/doc/latex/sr-vorl/sr-vorl.pdf">sr-vorl.pdf</a>. </small></li> -<li id="srbook-mem"><b><a href="texmf-dist/doc/latex/srbook-mem">srbook-mem</a></b><small> -(<a href="https://ctan.org/pkg/srbook-mem">CTAN</a>): -Support for use of memoir in Serbian +<li id="srbook-mem"><b><a href="texmf-dist/doc/latex/srbook-mem/">srbook-mem</a></b><small> +Support for use of memoir in Serbian. <a href="texmf-dist/doc/latex/srbook-mem/SerbianBookMem.pdf">SerbianBookMem.pdf</a> <a href="texmf-dist/doc/latex/srbook-mem/Test.pdf">Test.pdf</a> <a href="texmf-dist/doc/latex/srbook-mem/TestLight.pdf">TestLight.pdf</a>. </small></li> -<li id="srcltx"><b><a href="texmf-dist/doc/latex/srcltx">srcltx</a></b><small> +<li id="srcltx"><b><a href="texmf-dist/doc/latex/srcltx/">srcltx</a></b><small> (<a href="https://ctan.org/pkg/srcltx">CTAN</a>): -Jump between DVI and TeX files +Jump between DVI and TeX files. <a href="texmf-dist/doc/latex/srcltx/srcltx.pdf">srcltx.pdf</a>. </small></li> -<li id="srcredact"><b><a href="texmf-dist/doc/man/man1">srcredact</a></b><small> +<li id="srcredact"><b><a href="texmf-dist/doc/support/srcredact/">srcredact</a></b><small> (<a href="https://ctan.org/pkg/srcredact">CTAN</a>): -A tool for redacting sources +A tool for redacting sources. <a href="texmf-dist/doc/man/man1/srcredact.man1.pdf">srcredact.man1.pdf</a> <a href="texmf-dist/doc/support/srcredact/srcredact.pdf">srcredact.pdf</a> <a href="texmf-dist/doc/support/srcredact/twain1-default.pdf">twain1-default.pdf</a> @@ -20165,129 +20110,129 @@ A tool for redacting sources <a href="texmf-dist/doc/support/srcredact/twain2-uppercase.pdf">twain2-uppercase.pdf</a>. </small></li> -<li id="srdp-mathematik"><b><a href="texmf-dist/doc/latex/srdp-mathematik">srdp-mathematik</a></b><small> +<li id="srdp-mathematik"><b><a href="texmf-dist/doc/latex/srdp-mathematik/">srdp-mathematik</a></b><small> (<a href="https://ctan.org/pkg/srdp-mathematik">CTAN</a>): -Typeset Austrian SRDP in mathematics +Typeset Austrian SRDP in mathematics. <a href="texmf-dist/doc/latex/srdp-mathematik/srdp-mathematik.pdf">srdp-mathematik.pdf</a>. </small></li> -<li id="sseq"><b><a href="texmf-dist/doc/latex/sseq">sseq</a></b><small> +<li id="sseq"><b><a href="texmf-dist/doc/latex/sseq/">sseq</a></b><small> (<a href="https://ctan.org/pkg/sseq">CTAN</a>): -Typesetting spectral sequence charts +Typesetting spectral sequence charts. <a href="texmf-dist/doc/latex/sseq/sseq.pdf">sseq.pdf</a>. </small></li> -<li id="sslides"><b><a href="texmf-dist/doc/latex/sslides">sslides</a></b><small> +<li id="sslides"><b><a href="texmf-dist/doc/latex/sslides/">sslides</a></b><small> (<a href="https://ctan.org/pkg/sslides">CTAN</a>): -Slides with headers and footers +Slides with headers and footers. <a href="texmf-dist/doc/latex/sslides/land-sample-slide.pdf">land-sample-slide.pdf</a> <a href="texmf-dist/doc/latex/sslides/port-sample-slide.pdf">port-sample-slide.pdf</a>. </small></li> -<li id="stackengine"><b><a href="texmf-dist/doc/latex/stackengine">stackengine</a></b><small> +<li id="stackengine"><b><a href="texmf-dist/doc/latex/stackengine/">stackengine</a></b><small> (<a href="https://ctan.org/pkg/stackengine">CTAN</a>): -Highly customised stacking of objects, insets, baseline changes, etc +Highly customised stacking of objects, insets, baseline changes, etc. <a href="texmf-dist/doc/latex/stackengine/stackengine.pdf">stackengine.pdf</a>. </small></li> -<li id="stage"><b><a href="texmf-dist/doc/latex/stage">stage</a></b><small> +<li id="stage"><b><a href="texmf-dist/doc/latex/stage/">stage</a></b><small> (<a href="https://ctan.org/pkg/stage">CTAN</a>): -A LaTeX class for stage plays +A LaTeX class for stage plays. <a href="texmf-dist/doc/latex/stage/stage-documentation.pdf">stage-documentation.pdf</a>. </small></li> -<li id="standalone"><b><a href="texmf-dist/doc/latex/standalone">standalone</a></b><small> +<li id="standalone"><b><a href="texmf-dist/doc/latex/standalone/">standalone</a></b><small> (<a href="https://ctan.org/pkg/standalone">CTAN</a>): -Compile TeX pictures stand-alone or as part of a document +Compile TeX pictures stand-alone or as part of a document. <a href="texmf-dist/doc/latex/standalone/standalone.pdf">standalone.pdf</a>. </small></li> -<li id="stanli"><b><a href="texmf-dist/doc/latex/stanli">stanli</a></b><small> +<li id="stanli"><b><a href="texmf-dist/doc/latex/stanli/">stanli</a></b><small> (<a href="https://ctan.org/pkg/stanli">CTAN</a>): -TikZ Library for Structural Analysis +TikZ Library for Structural Analysis. <a href="texmf-dist/doc/latex/stanli/stanli.pdf">stanli.pdf</a>. </small></li> -<li id="starfont"><b><a href="texmf-dist/doc/fonts/starfont">starfont</a></b><small> +<li id="starfont"><b><a href="texmf-dist/doc/fonts/starfont/">starfont</a></b><small> (<a href="https://ctan.org/pkg/starfont">CTAN</a>): -The StarFont Sans astrological font +The StarFont Sans astrological font. <a href="texmf-dist/doc/fonts/starfont/starfont.pdf">starfont.pdf</a> <a href="texmf-dist/doc/fonts/starfont/table.pdf">table.pdf</a>. </small></li> -<li id="startex"><b><a href="texmf-dist/doc/otherformats/startex">startex</a></b><small> +<li id="startex"><b><a href="texmf-dist/doc/otherformats/startex/">startex</a></b><small> (<a href="https://ctan.org/pkg/startex">CTAN</a>): -An XML-inspired format for student use +An XML-inspired format for student use. <a href="texmf-dist/doc/otherformats/startex/guide.pdf">guide.pdf</a> <a href="texmf-dist/doc/otherformats/startex/ideas.pdf">ideas.pdf</a> <a href="texmf-dist/doc/otherformats/startex/startex.pdf">startex.pdf</a>. </small></li> -<li id="statex"><b><a href="texmf-dist/doc/latex/statex">statex</a></b><small> +<li id="statex"><b><a href="texmf-dist/doc/latex/statex/">statex</a></b><small> (<a href="https://ctan.org/pkg/statex">CTAN</a>): -Statistics style +Statistics style. <a href="texmf-dist/doc/latex/statex/statex-example.pdf">statex-example.pdf</a>. </small></li> -<li id="statex2"><b><a href="texmf-dist/doc/latex/statex2">statex2</a></b><small> +<li id="statex2"><b><a href="texmf-dist/doc/latex/statex2/">statex2</a></b><small> (<a href="https://ctan.org/pkg/statex2">CTAN</a>): -Statistics style +Statistics style. <a href="texmf-dist/doc/latex/statex2/statex2-example.pdf">statex2-example.pdf</a>. </small></li> -<li id="statistics"><b><a href="texmf-dist/doc/latex/statistics">statistics</a></b><small> +<li id="statistics"><b><a href="texmf-dist/doc/latex/statistics/">statistics</a></b><small> (<a href="https://ctan.org/pkg/statistics">CTAN</a>): -Compute and typeset statistics tables and graphics +Compute and typeset statistics tables and graphics. <a href="texmf-dist/doc/latex/statistics/statistics.pdf">statistics.pdf</a>. </small></li> -<li id="statistik"><b><a href="texmf-dist/doc/latex/statistik">statistik</a></b><small> +<li id="statistik"><b><a href="texmf-dist/doc/latex/statistik/">statistik</a></b><small> (<a href="https://ctan.org/pkg/statistik">CTAN</a>): -Store statistics of a document +Store statistics of a document. <a href="texmf-dist/doc/latex/statistik/statistik.pdf">statistik.pdf</a>. </small></li> -<li id="statmath"><b><a href="texmf-dist/doc/latex/statmath">statmath</a></b><small> +<li id="statmath"><b><a href="texmf-dist/doc/latex/statmath/">statmath</a></b><small> (<a href="https://ctan.org/pkg/statmath">CTAN</a>): -A LaTeX package for simple use of statistical notation +A LaTeX package for simple use of statistical notation. <a href="texmf-dist/doc/latex/statmath/statmath.pdf">statmath.pdf</a>. </small></li> -<li id="staves"><b><a href="texmf-dist/doc/fonts/staves">staves</a></b><small> +<li id="staves"><b><a href="texmf-dist/doc/fonts/staves/">staves</a></b><small> (<a href="https://ctan.org/pkg/staves">CTAN</a>): -Typeset Icelandic staves and runic letters +Typeset Icelandic staves and runic letters. <a href="texmf-dist/doc/fonts/staves/staves.pdf">staves.pdf</a> <a href="texmf-dist/doc/fonts/staves/symbols.pdf">symbols.pdf</a>. </small></li> -<li id="stdclsdv"><b><a href="texmf-dist/doc/latex/stdclsdv">stdclsdv</a></b><small> +<li id="stdclsdv"><b><a href="texmf-dist/doc/latex/stdclsdv/">stdclsdv</a></b><small> (<a href="https://ctan.org/pkg/stdclsdv">CTAN</a>): -Provide sectioning information for package writers +Provide sectioning information for package writers. <a href="texmf-dist/doc/latex/stdclsdv/stdclsdv.pdf">stdclsdv.pdf</a>. </small></li> -<li id="stdpage"><b><a href="texmf-dist/doc/latex/stdpage">stdpage</a></b><small> +<li id="stdpage"><b><a href="texmf-dist/doc/latex/stdpage/">stdpage</a></b><small> (<a href="https://ctan.org/pkg/stdpage">CTAN</a>): -Standard pages with n lines of at most m characters each +Standard pages with n lines of at most m characters each. <a href="texmf-dist/doc/latex/stdpage/stdpage.pdf">stdpage.pdf</a>. </small></li> -<li id="stealcaps"><b><a href="texmf-dist/doc/latex/stealcaps">stealcaps</a></b><small> +<li id="stealcaps"><b><a href="texmf-dist/doc/latex/stealcaps/">stealcaps</a></b><small> (<a href="https://ctan.org/pkg/stealcaps">CTAN</a>): -"Steal" small capitals +"Steal" small capitals. <a href="texmf-dist/doc/latex/stealcaps/stealcaps.pdf">stealcaps.pdf</a> <a href="texmf-dist/doc/latex/stealcaps/testfile/stealcapitals-test.pdf">stealcapitals-test.pdf</a>. </small></li> -<li id="steinmetz"><b><a href="texmf-dist/doc/latex/steinmetz">steinmetz</a></b><small> +<li id="steinmetz"><b><a href="texmf-dist/doc/latex/steinmetz/">steinmetz</a></b><small> (<a href="https://ctan.org/pkg/steinmetz">CTAN</a>): -Print Steinmetz notation +Print Steinmetz notation. <a href="texmf-dist/doc/latex/steinmetz/steinmetz.pdf">steinmetz.pdf</a>. </small></li> -<li id="stellenbosch"><b><a href="texmf-dist/doc/latex/stellenbosch">stellenbosch</a></b><small> +<li id="stellenbosch"><b><a href="texmf-dist/doc/latex/stellenbosch/">stellenbosch</a></b><small> (<a href="https://ctan.org/pkg/stellenbosch">CTAN</a>): -Stellenbosch thesis bundle +Stellenbosch thesis bundle. <a href="texmf-dist/doc/latex/stellenbosch/USbib-1.0.pdf">USbib-1.0.pdf</a> <a href="texmf-dist/doc/latex/stellenbosch/USlogos-4.0.pdf">USlogos-4.0.pdf</a> <a href="texmf-dist/doc/latex/stellenbosch/USnomencl-1.1.pdf">USnomencl-1.1.pdf</a> @@ -20296,15 +20241,15 @@ Stellenbosch thesis bundle <a href="texmf-dist/doc/latex/stellenbosch/UStitle-1.0.pdf">UStitle-1.0.pdf</a>. </small></li> -<li id="step"><b><a href="texmf-dist/doc/fonts/step">step</a></b><small> +<li id="step"><b><a href="texmf-dist/doc/fonts/step/">step</a></b><small> (<a href="https://ctan.org/pkg/step">CTAN</a>): -A free Times-like font +A free Times-like font. <a href="texmf-dist/doc/fonts/step/step-fonts.pdf">step-fonts.pdf</a>. </small></li> -<li id="stex"><b><a href="texmf-dist/doc/latex/stex/cmath">stex</a></b><small> +<li id="stex"><b><a href="texmf-dist/doc/latex/stex/stex/">stex</a></b><small> (<a href="https://ctan.org/pkg/stex">CTAN</a>): -An Infrastructure for Semantic Preloading of LaTeX Documents +An Infrastructure for Semantic Preloading of LaTeX Documents. <a href="texmf-dist/doc/latex/stex/cmath/cmath.pdf">cmath.pdf</a> <a href="texmf-dist/doc/latex/stex/dcm/dcm.pdf">dcm.pdf</a> <a href="texmf-dist/doc/latex/stex/example/background/all.pdf">all.pdf</a> @@ -20337,23 +20282,23 @@ An Infrastructure for Semantic Preloading of LaTeX Documents <a href="texmf-dist/doc/latex/stex/workaddress/workaddress.pdf">workaddress.pdf</a>. </small></li> -<li id="stickstoo"><b><a href="texmf-dist/doc/fonts/stickstoo">stickstoo</a></b><small> +<li id="stickstoo"><b><a href="texmf-dist/doc/fonts/stickstoo/">stickstoo</a></b><small> (<a href="https://ctan.org/pkg/stickstoo">CTAN</a>): -A reworking of STIX2 +A reworking of STIX2. <a href="texmf-dist/doc/fonts/stickstoo/stickstoo-doc.pdf">stickstoo-doc.pdf</a>. </small></li> -<li id="stix"><b><a href="texmf-dist/doc/fonts/stix">stix</a></b><small> +<li id="stix"><b><a href="texmf-dist/doc/fonts/stix/">stix</a></b><small> (<a href="https://ctan.org/pkg/stix">CTAN</a>): -OpenType Unicode maths fonts +OpenType Unicode maths fonts. <a href="texmf-dist/doc/fonts/stix/STIX_Font_1.1.1-latex_Release_Documentation.pdf">STIX_Font_1.1.1-latex_Release_Documentation.pdf</a> <a href="texmf-dist/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.pdf">STIX_Font_1.1.1_Release_Documentation.pdf</a> <a href="texmf-dist/doc/fonts/stix/stix.pdf">stix.pdf</a>. </small></li> -<li id="stix2-otf"><b><a href="texmf-dist/doc/fonts/stix2-otf">stix2-otf</a></b><small> +<li id="stix2-otf"><b><a href="texmf-dist/doc/fonts/stix2-otf/">stix2-otf</a></b><small> (<a href="https://ctan.org/pkg/stix2-otf">CTAN</a>): -OpenType Unicode text and maths fonts +OpenType Unicode text and maths fonts. <a href="texmf-dist/doc/fonts/stix2-otf/STIX_2.0.1_license.pdf">STIX_2.0.1_license.pdf</a> <a href="texmf-dist/doc/fonts/stix2-otf/StixTwoBold.pdf">StixTwoBold.pdf</a> <a href="texmf-dist/doc/fonts/stix2-otf/StixTwoBoldItalic.pdf">StixTwoBoldItalic.pdf</a> @@ -20362,58 +20307,58 @@ OpenType Unicode text and maths fonts <a href="texmf-dist/doc/fonts/stix2-otf/StixTwoRegular.pdf">StixTwoRegular.pdf</a>. </small></li> -<li id="stix2-type1"><b><a href="texmf-dist/doc/latex/stix2">stix2-type1</a></b><small> +<li id="stix2-type1"><b><a href="texmf-dist/doc/latex/stix2/">stix2-type1</a></b><small> (<a href="https://ctan.org/pkg/stix2-type1">CTAN</a>): -Type1 versions of the STIX Two OpenType fonts +Type1 versions of the STIX Two OpenType fonts. <a href="texmf-dist/doc/latex/stix2/stix2.pdf">stix2.pdf</a>. </small></li> -<li id="stmaryrd"><b><a href="texmf-dist/doc/fonts/stmaryrd">stmaryrd</a></b><small> +<li id="stmaryrd"><b><a href="texmf-dist/doc/fonts/stmaryrd/">stmaryrd</a></b><small> (<a href="https://ctan.org/pkg/stmaryrd">CTAN</a>): -St Mary Road symbols for theoretical computer science +St Mary Road symbols for theoretical computer science. <a href="texmf-dist/doc/fonts/stmaryrd/stmaryrd.pdf">stmaryrd.pdf</a>. </small></li> -<li id="storebox"><b><a href="texmf-dist/doc/latex/storebox">storebox</a></b><small> +<li id="storebox"><b><a href="texmf-dist/doc/latex/storebox/">storebox</a></b><small> (<a href="https://ctan.org/pkg/storebox">CTAN</a>): -Storing information for reuse +Storing information for reuse. <a href="texmf-dist/doc/latex/storebox/storebox.pdf">storebox.pdf</a>. </small></li> -<li id="storecmd"><b><a href="texmf-dist/doc/latex/storecmd">storecmd</a></b><small> +<li id="storecmd"><b><a href="texmf-dist/doc/latex/storecmd/">storecmd</a></b><small> (<a href="https://ctan.org/pkg/storecmd">CTAN</a>): -Store the name of a defined command in a container +Store the name of a defined command in a container. <a href="texmf-dist/doc/latex/storecmd/storecmd-guide.pdf">storecmd-guide.pdf</a>. </small></li> -<li id="stringenc"><b><a href="texmf-dist/doc/latex/stringenc">stringenc</a></b><small> +<li id="stringenc"><b><a href="texmf-dist/doc/latex/stringenc/">stringenc</a></b><small> (<a href="https://ctan.org/pkg/stringenc">CTAN</a>): -Converting a string between different encodings +Converting a string between different encodings. <a href="texmf-dist/doc/latex/stringenc/stringenc.pdf">stringenc.pdf</a>. </small></li> -<li id="stringstrings"><b><a href="texmf-dist/doc/latex/stringstrings">stringstrings</a></b><small> +<li id="stringstrings"><b><a href="texmf-dist/doc/latex/stringstrings/">stringstrings</a></b><small> (<a href="https://ctan.org/pkg/stringstrings">CTAN</a>): -String manipulation for cosmetic and programming application +String manipulation for cosmetic and programming application. <a href="texmf-dist/doc/latex/stringstrings/stringstrings.pdf">stringstrings.pdf</a>. </small></li> -<li id="structmech"><b><a href="texmf-dist/doc/latex/structmech/doc">structmech</a></b><small> +<li id="structmech"><b><a href="texmf-dist/doc/latex/structmech/">structmech</a></b><small> (<a href="https://ctan.org/pkg/structmech">CTAN</a>): -A TikZ command set for structural mechanics drawings +A TikZ command set for structural mechanics drawings. <a href="texmf-dist/doc/latex/structmech/doc/structmech.pdf">structmech.pdf</a>. </small></li> -<li id="struktex"><b><a href="texmf-dist/doc/latex/struktex">struktex</a></b><small> +<li id="struktex"><b><a href="texmf-dist/doc/latex/struktex/">struktex</a></b><small> (<a href="https://ctan.org/pkg/struktex">CTAN</a>): -Draw Nassi-Shneiderman charts +Draw Nassi-Shneiderman charts. <a href="texmf-dist/doc/latex/struktex/struktex.de.pdf">struktex.de.pdf</a> (de) <a href="texmf-dist/doc/latex/struktex/struktex.en.pdf">struktex.en.pdf</a>. </small></li> -<li id="sttools"><b><a href="texmf-dist/doc/latex/sttools">sttools</a></b><small> +<li id="sttools"><b><a href="texmf-dist/doc/latex/sttools/">sttools</a></b><small> (<a href="https://ctan.org/pkg/sttools">CTAN</a>): -Various macros +Various macros. <a href="texmf-dist/doc/latex/sttools/cuted.pdf">cuted.pdf</a> <a href="texmf-dist/doc/latex/sttools/floatpag.pdf">floatpag.pdf</a> <a href="texmf-dist/doc/latex/sttools/flushend.pdf">flushend.pdf</a> @@ -20424,82 +20369,82 @@ Various macros <a href="texmf-dist/doc/latex/sttools/texsort.pdf">texsort.pdf</a>. </small></li> -<li id="stubs"><b><a href="texmf-dist/doc/latex/stubs">stubs</a></b><small> +<li id="stubs"><b><a href="texmf-dist/doc/latex/stubs/">stubs</a></b><small> (<a href="https://ctan.org/pkg/stubs">CTAN</a>): -Create tear-off stubs at the bottom of a page +Create tear-off stubs at the bottom of a page. <a href="texmf-dist/doc/latex/stubs/stubs_ex.pdf">stubs_ex.pdf</a>. </small></li> -<li id="studenthandouts"><b><a href="texmf-dist/doc/latex/studenthandouts">studenthandouts</a></b><small> +<li id="studenthandouts"><b><a href="texmf-dist/doc/latex/studenthandouts/">studenthandouts</a></b><small> (<a href="https://ctan.org/pkg/studenthandouts">CTAN</a>): -Management and styling of student handout projects +Management and styling of student handout projects. <a href="texmf-dist/doc/latex/studenthandouts/studenthandouts-doc.pdf">studenthandouts-doc.pdf</a>. </small></li> -<li id="sty2dtx"><b><a href="texmf-dist/doc/man/man1">sty2dtx</a></b><small> +<li id="sty2dtx"><b><a href="texmf-dist/doc/support/sty2dtx/">sty2dtx</a></b><small> (<a href="https://ctan.org/pkg/sty2dtx">CTAN</a>): -Create a .dtx file from a .sty file +Create a .dtx file from a .sty file. <a href="texmf-dist/doc/man/man1/sty2dtx.man1.pdf">sty2dtx.man1.pdf</a> <a href="texmf-dist/doc/support/sty2dtx/sty2dtx.pdf">sty2dtx.pdf</a>. </small></li> -<li id="subdepth"><b><a href="texmf-dist/doc/latex/subdepth">subdepth</a></b><small> +<li id="subdepth"><b><a href="texmf-dist/doc/latex/subdepth/">subdepth</a></b><small> (<a href="https://ctan.org/pkg/subdepth">CTAN</a>): -Unify maths subscript height +Unify maths subscript height. <a href="texmf-dist/doc/latex/subdepth/subdepth.pdf">subdepth.pdf</a>. </small></li> -<li id="subeqn"><b><a href="texmf-dist/doc/latex/subeqn">subeqn</a></b><small> +<li id="subeqn"><b><a href="texmf-dist/doc/latex/subeqn/">subeqn</a></b><small> (<a href="https://ctan.org/pkg/subeqn">CTAN</a>): -Package for subequation numbering +Package for subequation numbering. <a href="texmf-dist/doc/latex/subeqn/subeqn.pdf">subeqn.pdf</a>. </small></li> -<li id="subeqnarray"><b><a href="texmf-dist/doc/latex/subeqnarray">subeqnarray</a></b><small> +<li id="subeqnarray"><b><a href="texmf-dist/doc/latex/subeqnarray/">subeqnarray</a></b><small> (<a href="https://ctan.org/pkg/subeqnarray">CTAN</a>): -Equation array with sub numbering +Equation array with sub numbering. <a href="texmf-dist/doc/latex/subeqnarray/subeqnarray.pdf">subeqnarray.pdf</a>. </small></li> -<li id="subfig"><b><a href="texmf-dist/doc/latex/subfig">subfig</a></b><small> +<li id="subfig"><b><a href="texmf-dist/doc/latex/subfig/">subfig</a></b><small> (<a href="https://ctan.org/pkg/subfig">CTAN</a>): -Figures broken into subfigures +Figures broken into subfigures. <a href="texmf-dist/doc/latex/subfig/subfig.pdf">subfig.pdf</a>. </small></li> -<li id="subfigmat"><b><a href="texmf-dist/doc/latex/subfigmat">subfigmat</a></b><small> +<li id="subfigmat"><b><a href="texmf-dist/doc/latex/subfigmat/">subfigmat</a></b><small> (<a href="https://ctan.org/pkg/subfigmat">CTAN</a>): -Automates layout when using the subfigure package +Automates layout when using the subfigure package. <a href="texmf-dist/doc/latex/subfigmat/subfigmat-doc.pdf">subfigmat-doc.pdf</a>. </small></li> -<li id="subfigure"><b><a href="texmf-dist/doc/latex/subfigure">subfigure</a></b><small> +<li id="subfigure"><b><a href="texmf-dist/doc/latex/subfigure/">subfigure</a></b><small> (<a href="https://ctan.org/pkg/subfigure">CTAN</a>): -Deprecated: Figures divided into subfigures +Deprecated: Figures divided into subfigures. <a href="texmf-dist/doc/latex/subfigure/subfigure.pdf">subfigure.pdf</a>. </small></li> -<li id="subfiles"><b><a href="texmf-dist/doc/latex/subfiles">subfiles</a></b><small> +<li id="subfiles"><b><a href="texmf-dist/doc/latex/subfiles/">subfiles</a></b><small> (<a href="https://ctan.org/pkg/subfiles">CTAN</a>): -Individual typesetting of subfiles of a "main" document +Individual typesetting of subfiles of a "main" document. <a href="texmf-dist/doc/latex/subfiles/subfiles.pdf">subfiles.pdf</a>. </small></li> -<li id="subfloat"><b><a href="texmf-dist/doc/latex/subfloat">subfloat</a></b><small> +<li id="subfloat"><b><a href="texmf-dist/doc/latex/subfloat/">subfloat</a></b><small> (<a href="https://ctan.org/pkg/subfloat">CTAN</a>): -Sub-numbering for figures and tables +Sub-numbering for figures and tables. <a href="texmf-dist/doc/latex/subfloat/subfloat.pdf">subfloat.pdf</a>. </small></li> -<li id="substances"><b><a href="texmf-dist/doc/latex/substances">substances</a></b><small> +<li id="substances"><b><a href="texmf-dist/doc/latex/substances/">substances</a></b><small> (<a href="https://ctan.org/pkg/substances">CTAN</a>): -A database of chemicals +A database of chemicals. <a href="texmf-dist/doc/latex/substances/substances_en.pdf">substances_en.pdf</a>. </small></li> -<li id="substitutefont"><b><a href="texmf-dist/doc/latex/substitutefont">substitutefont</a></b><small> +<li id="substitutefont"><b><a href="texmf-dist/doc/latex/substitutefont/">substitutefont</a></b><small> (<a href="https://ctan.org/pkg/substitutefont">CTAN</a>): -Easy font substitution +Easy font substitution. <a href="texmf-dist/doc/latex/substitutefont/cyrillic-lm-lgc.pdf">cyrillic-lm-lgc.pdf</a> <a href="texmf-dist/doc/latex/substitutefont/cyrillic-paratype.pdf">cyrillic-paratype.pdf</a> <a href="texmf-dist/doc/latex/substitutefont/greek-palatino-didot.pdf">greek-palatino-didot.pdf</a> @@ -20509,52 +20454,52 @@ Easy font substitution <a href="texmf-dist/doc/latex/substitutefont/substitutefont.sty.html">substitutefont.sty.html</a>. </small></li> -<li id="substr"><b><a href="texmf-dist/doc/latex/substr">substr</a></b><small> +<li id="substr"><b><a href="texmf-dist/doc/latex/substr/">substr</a></b><small> (<a href="https://ctan.org/pkg/substr">CTAN</a>): -Deal with substrings in strings +Deal with substrings in strings. <a href="texmf-dist/doc/latex/substr/testsubstr.pdf">testsubstr.pdf</a>. </small></li> -<li id="subsupscripts"><b><a href="texmf-dist/doc/latex/subsupscripts">subsupscripts</a></b><small> +<li id="subsupscripts"><b><a href="texmf-dist/doc/latex/subsupscripts/">subsupscripts</a></b><small> (<a href="https://ctan.org/pkg/subsupscripts">CTAN</a>): -A range of sub- and superscript commands +A range of sub- and superscript commands. <a href="texmf-dist/doc/latex/subsupscripts/SubSupScripts.pdf">SubSupScripts.pdf</a>. </small></li> -<li id="subtext"><b><a href="texmf-dist/doc/latex/subtext">subtext</a></b><small> +<li id="subtext"><b><a href="texmf-dist/doc/latex/subtext/">subtext</a></b><small> (<a href="https://ctan.org/pkg/subtext">CTAN</a>): -Easy text-style subscripts in math mode +Easy text-style subscripts in math mode. <a href="texmf-dist/doc/latex/subtext/subtext.pdf">subtext.pdf</a>. </small></li> -<li id="sudoku"><b><a href="texmf-dist/doc/latex/sudoku">sudoku</a></b><small> +<li id="sudoku"><b><a href="texmf-dist/doc/latex/sudoku/">sudoku</a></b><small> (<a href="https://ctan.org/pkg/sudoku">CTAN</a>): -Create sudoku grids +Create sudoku grids. <a href="texmf-dist/doc/latex/sudoku/sudoku.pdf">sudoku.pdf</a>. </small></li> -<li id="sudokubundle"><b><a href="texmf-dist/doc/latex/sudokubundle">sudokubundle</a></b><small> +<li id="sudokubundle"><b><a href="texmf-dist/doc/latex/sudokubundle/">sudokubundle</a></b><small> (<a href="https://ctan.org/pkg/sudokubundle">CTAN</a>): -A set of sudoku-related packages +A set of sudoku-related packages. <a href="texmf-dist/doc/latex/sudokubundle/sudokubundle.pdf">sudokubundle.pdf</a>. </small></li> -<li id="suftesi"><b><a href="texmf-dist/doc/latex/suftesi">suftesi</a></b><small> +<li id="suftesi"><b><a href="texmf-dist/doc/latex/suftesi/">suftesi</a></b><small> (<a href="https://ctan.org/pkg/suftesi">CTAN</a>): -A document class for typesetting theses, books and articles +A document class for typesetting theses, books and articles. <a href="texmf-dist/doc/latex/suftesi/suftesi.pdf">suftesi.pdf</a>. </small></li> -<li id="sugconf"><b><a href="texmf-dist/doc/latex/sugconf">sugconf</a></b><small> +<li id="sugconf"><b><a href="texmf-dist/doc/latex/sugconf/">sugconf</a></b><small> (<a href="https://ctan.org/pkg/sugconf">CTAN</a>): -SAS(R) user group conference proceedings document class +SAS(R) user group conference proceedings document class. <a href="texmf-dist/doc/latex/sugconf/article-example.pdf">article-example.pdf</a> <a href="texmf-dist/doc/latex/sugconf/sugconf-example.pdf">sugconf-example.pdf</a>. </small></li> -<li id="superiors"><b><a href="texmf-dist/doc/fonts/superiors">superiors</a></b><small> +<li id="superiors"><b><a href="texmf-dist/doc/fonts/superiors/">superiors</a></b><small> (<a href="https://ctan.org/pkg/superiors">CTAN</a>): -Attach superior figures to a font family +Attach superior figures to a font family. <a href="texmf-dist/doc/fonts/superiors/libfoot0-crop.pdf">libfoot0-crop.pdf</a> <a href="texmf-dist/doc/fonts/superiors/libfoot1-crop.pdf">libfoot1-crop.pdf</a> <a href="texmf-dist/doc/fonts/superiors/stempelfoot0-crop.pdf">stempelfoot0-crop.pdf</a> @@ -20562,109 +20507,107 @@ Attach superior figures to a font family <a href="texmf-dist/doc/fonts/superiors/superiors-doc.pdf">superiors-doc.pdf</a>. </small></li> -<li id="supertabular"><b><a href="texmf-dist/doc/latex/supertabular">supertabular</a></b><small> +<li id="supertabular"><b><a href="texmf-dist/doc/latex/supertabular/">supertabular</a></b><small> (<a href="https://ctan.org/pkg/supertabular">CTAN</a>): -A multi-page tables package +A multi-page tables package. <a href="texmf-dist/doc/latex/supertabular/supertabular.pdf">supertabular.pdf</a>. </small></li> -<li id="svg"><b><a href="texmf-dist/doc/latex/svg">svg</a></b><small> +<li id="svg"><b><a href="texmf-dist/doc/latex/svg/">svg</a></b><small> (<a href="https://ctan.org/pkg/svg">CTAN</a>): -Include and extract SVG pictures in LaTeX documents +Include and extract SVG pictures in LaTeX documents. <a href="texmf-dist/doc/latex/svg/svg.pdf">svg.pdf</a>. </small></li> -<li id="svg-inkscape"><b><a href="texmf-dist/doc/latex/svg-inkscape">svg-inkscape</a></b><small> +<li id="svg-inkscape"><b><a href="texmf-dist/doc/latex/svg-inkscape/">svg-inkscape</a></b><small> (<a href="https://ctan.org/pkg/svg-inkscape">CTAN</a>): -How to include an SVG image in LaTeX using Inkscape +How to include an SVG image in LaTeX using Inkscape. <a href="texmf-dist/doc/latex/svg-inkscape/InkscapePDFLaTeX.pdf">InkscapePDFLaTeX.pdf</a> <a href="texmf-dist/doc/latex/svg-inkscape/image-normal.pdf">image-normal.pdf</a> <a href="texmf-dist/doc/latex/svg-inkscape/image.pdf">image.pdf</a> <a href="texmf-dist/doc/latex/svg-inkscape/image.pdf_tex">image.pdf_tex</a>. </small></li> -<li id="svn"><b><a href="texmf-dist/doc/latex/svn">svn</a></b><small> +<li id="svn"><b><a href="texmf-dist/doc/latex/svn/">svn</a></b><small> (<a href="https://ctan.org/pkg/svn">CTAN</a>): -Typeset Subversion keywords +Typeset Subversion keywords. <a href="texmf-dist/doc/latex/svn/svn.pdf">svn.pdf</a>. </small></li> -<li id="svn-multi"><b><a href="texmf-dist/doc/latex/svn-multi">svn-multi</a></b><small> +<li id="svn-multi"><b><a href="texmf-dist/doc/latex/svn-multi/">svn-multi</a></b><small> (<a href="https://ctan.org/pkg/svn-multi">CTAN</a>): -Subversion keywords in multi-file LaTeX documents +Subversion keywords in multi-file LaTeX documents. <a href="texmf-dist/doc/latex/svn-multi/svn-multi.pdf">svn-multi.pdf</a> <a href="texmf-dist/doc/support/svn-multi/svn-multi-pl.pdf">svn-multi-pl.pdf</a>. </small></li> -<li id="svn-prov"><b><a href="texmf-dist/doc/latex/svn-prov">svn-prov</a></b><small> +<li id="svn-prov"><b><a href="texmf-dist/doc/latex/svn-prov/">svn-prov</a></b><small> (<a href="https://ctan.org/pkg/svn-prov">CTAN</a>): -Subversion variants of \Provides... macros +Subversion variants of \Provides... macros. <a href="texmf-dist/doc/latex/svn-prov/svn-prov.pdf">svn-prov.pdf</a>. </small></li> -<li id="svninfo"><b><a href="texmf-dist/doc/latex/svninfo">svninfo</a></b><small> +<li id="svninfo"><b><a href="texmf-dist/doc/latex/svninfo/">svninfo</a></b><small> (<a href="https://ctan.org/pkg/svninfo">CTAN</a>): -Typeset Subversion keywords +Typeset Subversion keywords. <a href="texmf-dist/doc/latex/svninfo/svninfo.pdf">svninfo.pdf</a>. </small></li> -<li id="svrsymbols"><b><a href="texmf-dist/doc/fonts/svrsymbols">svrsymbols</a></b><small> +<li id="svrsymbols"><b><a href="texmf-dist/doc/fonts/svrsymbols/">svrsymbols</a></b><small> (<a href="https://ctan.org/pkg/svrsymbols">CTAN</a>): -A font with symbols for use in physics texts +A font with symbols for use in physics texts. <a href="texmf-dist/doc/fonts/svrsymbols/svrsymbols.pdf">svrsymbols.pdf</a>. </small></li> -<li id="swimgraf"><b><a href="texmf-dist/doc/latex/swimgraf">swimgraf</a></b><small> +<li id="swimgraf"><b><a href="texmf-dist/doc/latex/swimgraf/">swimgraf</a></b><small> (<a href="https://ctan.org/pkg/swimgraf">CTAN</a>): -Graphical/textual representations of swimming performances +Graphical/textual representations of swimming performances. <a href="texmf-dist/doc/latex/swimgraf/100br1.pdf">100br1.pdf</a> <a href="texmf-dist/doc/latex/swimgraf/100br2.pdf">100br2.pdf</a> <a href="texmf-dist/doc/latex/swimgraf/text1.pdf">text1.pdf</a> <a href="texmf-dist/doc/latex/swimgraf/text2.pdf">text2.pdf</a>. </small></li> -<li id="syllogism"><b><a href="texmf-dist/doc/latex/syllogism">syllogism</a></b><small> +<li id="syllogism"><b><a href="texmf-dist/doc/latex/syllogism/">syllogism</a></b><small> (<a href="https://ctan.org/pkg/syllogism">CTAN</a>): -Typeset syllogisms in LaTeX +Typeset syllogisms in LaTeX. <a href="texmf-dist/doc/latex/syllogism/Examples.pdf">Examples.pdf</a> <a href="texmf-dist/doc/latex/syllogism/syllogism.pdf">syllogism.pdf</a>. </small></li> -<li id="synctex"><b><a href="texmf-dist/doc/man/man1">synctex</a></b><small> -(<a href="https://ctan.org/pkg/synctex">CTAN</a>): -engine-level feature synchronizing output and source +<li id="synctex"><b><a href="texmf-dist/doc/man/man1/">synctex</a></b><small> +engine-level feature synchronizing output and source. <a href="texmf-dist/doc/man/man1/synctex.man1.pdf">synctex.man1.pdf</a> <a href="texmf-dist/doc/man/man5/synctex.man5.pdf">synctex.man5.pdf</a>. </small></li> -<li id="synproof"><b><a href="texmf-dist/doc/latex/synproof">synproof</a></b><small> +<li id="synproof"><b><a href="texmf-dist/doc/latex/synproof/">synproof</a></b><small> (<a href="https://ctan.org/pkg/synproof">CTAN</a>): -Easy drawing of syntactic proofs +Easy drawing of syntactic proofs. <a href="texmf-dist/doc/latex/synproof/synproof-doc.pdf">synproof-doc.pdf</a>. </small></li> -<li id="syntax"><b><a href="texmf-dist/doc/latex/syntax">syntax</a></b><small> -(<a href="https://ctan.org/pkg/syntax">CTAN</a>): -Creation of syntax diagrams +<li id="syntax"><b><a href="texmf-dist/doc/latex/syntax/">syntax</a></b><small> +Creation of syntax diagrams. <a href="texmf-dist/doc/latex/syntax/syntaxintro.pdf">syntaxintro.pdf</a> (de) <a href="texmf-dist/doc/latex/syntax/syntaxtest.pdf">syntaxtest.pdf</a>. </small></li> -<li id="syntrace"><b><a href="texmf-dist/doc/latex/syntrace">syntrace</a></b><small> +<li id="syntrace"><b><a href="texmf-dist/doc/latex/syntrace/">syntrace</a></b><small> (<a href="https://ctan.org/pkg/syntrace">CTAN</a>): -Labels for tracing in a syntax tree +Labels for tracing in a syntax tree. <a href="texmf-dist/doc/latex/syntrace/syntrace.pdf">syntrace.pdf</a>. </small></li> -<li id="synttree"><b><a href="texmf-dist/doc/latex/synttree">synttree</a></b><small> +<li id="synttree"><b><a href="texmf-dist/doc/latex/synttree/">synttree</a></b><small> (<a href="https://ctan.org/pkg/synttree">CTAN</a>): -Typeset syntactic trees +Typeset syntactic trees. <a href="texmf-dist/doc/latex/synttree/synttree.pdf">synttree.pdf</a>. </small></li> -<li id="systeme"><b><a href="texmf-dist/doc/generic/systeme">systeme</a></b><small> +<li id="systeme"><b><a href="texmf-dist/doc/generic/systeme/">systeme</a></b><small> (<a href="https://ctan.org/pkg/systeme">CTAN</a>): -Format systems of equations +Format systems of equations. <a href="texmf-dist/doc/generic/systeme/systeme_fr.pdf">systeme_fr.pdf</a> (fr). </small></li> @@ -20672,17 +20615,17 @@ Format systems of equations <h2 id="letter-T">T</h2> -<ol start="2744"> +<ol start="2745"> -<li id="t-angles"><b><a href="texmf-dist/doc/latex/t-angles">t-angles</a></b><small> +<li id="t-angles"><b><a href="texmf-dist/doc/latex/t-angles/">t-angles</a></b><small> (<a href="https://ctan.org/pkg/t-angles">CTAN</a>): -Draw tangles, trees, Hopf algebra operations and other pictures +Draw tangles, trees, Hopf algebra operations and other pictures. <a href="texmf-dist/doc/latex/t-angles/t-manual.pdf">t-manual.pdf</a>. </small></li> -<li id="t1utils"><b><a href="texmf-dist/doc/man/man1">t1utils</a></b><small> +<li id="t1utils"><b><a href="texmf-dist/doc/man/man1/">t1utils</a></b><small> (<a href="https://ctan.org/pkg/t1utils">CTAN</a>): -Simple Type 1 font manipulation programs +Simple Type 1 font manipulation programs. <a href="texmf-dist/doc/man/man1/t1ascii.man1.pdf">t1ascii.man1.pdf</a> <a href="texmf-dist/doc/man/man1/t1asm.man1.pdf">t1asm.man1.pdf</a> <a href="texmf-dist/doc/man/man1/t1binary.man1.pdf">t1binary.man1.pdf</a> @@ -20691,144 +20634,143 @@ Simple Type 1 font manipulation programs <a href="texmf-dist/doc/man/man1/t1unmac.man1.pdf">t1unmac.man1.pdf</a>. </small></li> -<li id="Tabbing"><b><a href="texmf-dist/doc/latex/Tabbing">Tabbing</a></b><small> -(<a href="https://ctan.org/pkg/Tabbing">CTAN</a>): -Tabbing with accented letters +<li id="Tabbing"><b><a href="texmf-dist/doc/latex/Tabbing/">Tabbing</a></b><small> +Tabbing with accented letters. <a href="texmf-dist/doc/latex/Tabbing/Tabbing.pdf">Tabbing.pdf</a>. </small></li> -<li id="tabfigures"><b><a href="texmf-dist/doc/latex/tabfigures">tabfigures</a></b><small> +<li id="tabfigures"><b><a href="texmf-dist/doc/latex/tabfigures/">tabfigures</a></b><small> (<a href="https://ctan.org/pkg/tabfigures">CTAN</a>): -Maintain vertical alignment of figures +Maintain vertical alignment of figures. <a href="texmf-dist/doc/latex/tabfigures/tabfigures.pdf">tabfigures.pdf</a>. </small></li> -<li id="tableaux"><b><a href="texmf-dist/doc/latex/tableaux">tableaux</a></b><small> +<li id="tableaux"><b><a href="texmf-dist/doc/latex/tableaux/">tableaux</a></b><small> (<a href="https://ctan.org/pkg/tableaux">CTAN</a>): -Construct tables of signs and variations +Construct tables of signs and variations. <a href="texmf-dist/doc/latex/tableaux/exemples.pdf">exemples.pdf</a> (fr) <a href="texmf-dist/doc/latex/tableaux/tableau.pdf">tableau.pdf</a> (fr). </small></li> -<li id="tablefootnote"><b><a href="texmf-dist/doc/latex/tablefootnote">tablefootnote</a></b><small> +<li id="tablefootnote"><b><a href="texmf-dist/doc/latex/tablefootnote/">tablefootnote</a></b><small> (<a href="https://ctan.org/pkg/tablefootnote">CTAN</a>): -Permit footnotes in tables +Permit footnotes in tables. <a href="texmf-dist/doc/latex/tablefootnote/tablefootnote-example.pdf">tablefootnote-example.pdf</a> <a href="texmf-dist/doc/latex/tablefootnote/tablefootnote.pdf">tablefootnote.pdf</a>. </small></li> -<li id="tableof"><b><a href="texmf-dist/doc/latex/tableof">tableof</a></b><small> +<li id="tableof"><b><a href="texmf-dist/doc/latex/tableof/">tableof</a></b><small> (<a href="https://ctan.org/pkg/tableof">CTAN</a>): -Tagging tables of contents +Tagging tables of contents. <a href="texmf-dist/doc/latex/tableof/tableof.pdf">tableof.pdf</a>. </small></li> -<li id="tablestyles"><b><a href="texmf-dist/doc/latex/tablestyles">tablestyles</a></b><small> +<li id="tablestyles"><b><a href="texmf-dist/doc/latex/tablestyles/">tablestyles</a></b><small> (<a href="https://ctan.org/pkg/tablestyles">CTAN</a>): -Styles for tables with new commands +Styles for tables with new commands. <a href="texmf-dist/doc/latex/tablestyles/tablestyles.pdf">tablestyles.pdf</a>. </small></li> -<li id="tablists"><b><a href="texmf-dist/doc/latex/tablists">tablists</a></b><small> +<li id="tablists"><b><a href="texmf-dist/doc/latex/tablists/">tablists</a></b><small> (<a href="https://ctan.org/pkg/tablists">CTAN</a>): -Tabulated lists of short items +Tabulated lists of short items. <a href="texmf-dist/doc/latex/tablists/tablists-rus.pdf">tablists-rus.pdf</a> <a href="texmf-dist/doc/latex/tablists/tablists.pdf">tablists.pdf</a>. </small></li> -<li id="tablor"><b><a href="texmf-dist/doc/latex/tablor">tablor</a></b><small> +<li id="tablor"><b><a href="texmf-dist/doc/latex/tablor/">tablor</a></b><small> (<a href="https://ctan.org/pkg/tablor">CTAN</a>): -Create tables of signs and of variations +Create tables of signs and of variations. <a href="texmf-dist/doc/latex/tablor/tablor.html">tablor.html</a> <a href="texmf-dist/doc/latex/tablor/tablor.pdf">tablor.pdf</a> (fr). </small></li> -<li id="tabls"><b><a href="texmf-dist/doc/latex/tabls">tabls</a></b><small> +<li id="tabls"><b><a href="texmf-dist/doc/latex/tabls/">tabls</a></b><small> (<a href="https://ctan.org/pkg/tabls">CTAN</a>): -Better vertical spacing in tables and arrays +Better vertical spacing in tables and arrays. <a href="texmf-dist/doc/latex/tabls/tabls.pdf">tabls.pdf</a>. </small></li> -<li id="tablvar"><b><a href="texmf-dist/doc/latex/tablvar">tablvar</a></b><small> +<li id="tablvar"><b><a href="texmf-dist/doc/latex/tablvar/">tablvar</a></b><small> (<a href="https://ctan.org/pkg/tablvar">CTAN</a>): -Typesetting pretty tables of signs and variations according to French usage +Typesetting pretty tables of signs and variations according to French usage. <a href="texmf-dist/doc/latex/tablvar/tablvar.pdf">tablvar.pdf</a> (fr). </small></li> -<li id="tabriz-thesis"><b><a href="texmf-dist/doc/latex/tabriz-thesis">tabriz-thesis</a></b><small> +<li id="tabriz-thesis"><b><a href="texmf-dist/doc/latex/tabriz-thesis/">tabriz-thesis</a></b><small> (<a href="https://ctan.org/pkg/tabriz-thesis">CTAN</a>): -A template for the University of Tabriz +A template for the University of Tabriz. <a href="texmf-dist/doc/latex/tabriz-thesis/tabriz-thesis.pdf">tabriz-thesis.pdf</a> (fa) <a href="texmf-dist/doc/xelatex/tabriz-thesis/tabriz-thesis.pdf">tabriz-thesis.pdf</a> (fa). </small></li> -<li id="tabstackengine"><b><a href="texmf-dist/doc/latex/tabstackengine">tabstackengine</a></b><small> +<li id="tabstackengine"><b><a href="texmf-dist/doc/latex/tabstackengine/">tabstackengine</a></b><small> (<a href="https://ctan.org/pkg/tabstackengine">CTAN</a>): -"Tabbing" front-end to stackengine +"Tabbing" front-end to stackengine. <a href="texmf-dist/doc/latex/tabstackengine/tabstackengine.pdf">tabstackengine.pdf</a>. </small></li> -<li id="tabto-ltx"><b><a href="texmf-dist/doc/latex/tabto-ltx">tabto-ltx</a></b><small> +<li id="tabto-ltx"><b><a href="texmf-dist/doc/latex/tabto-ltx/">tabto-ltx</a></b><small> (<a href="https://ctan.org/pkg/tabto-ltx">CTAN</a>): -"Tab" to a measured position in the line +"Tab" to a measured position in the line. <a href="texmf-dist/doc/latex/tabto-ltx/tabto-doc.pdf">tabto-doc.pdf</a>. </small></li> -<li id="tabu"><b><a href="texmf-dist/doc/latex/tabu">tabu</a></b><small> +<li id="tabu"><b><a href="texmf-dist/doc/latex/tabu/">tabu</a></b><small> (<a href="https://ctan.org/pkg/tabu">CTAN</a>): -Flexible LaTeX tabulars +Flexible LaTeX tabulars. <a href="texmf-dist/doc/latex/tabu/tabu.pdf">tabu.pdf</a>. </small></li> -<li id="tabularborder"><b><a href="texmf-dist/doc/latex/tabularborder">tabularborder</a></b><small> +<li id="tabularborder"><b><a href="texmf-dist/doc/latex/tabularborder/">tabularborder</a></b><small> (<a href="https://ctan.org/pkg/tabularborder">CTAN</a>): -Remove excess space at left and right of tabular +Remove excess space at left and right of tabular. <a href="texmf-dist/doc/latex/tabularborder/tabularborder.pdf">tabularborder.pdf</a>. </small></li> -<li id="tabularcalc"><b><a href="texmf-dist/doc/latex/tabularcalc">tabularcalc</a></b><small> +<li id="tabularcalc"><b><a href="texmf-dist/doc/latex/tabularcalc/">tabularcalc</a></b><small> (<a href="https://ctan.org/pkg/tabularcalc">CTAN</a>): -Calculate formulas in a tabular environment +Calculate formulas in a tabular environment. <a href="texmf-dist/doc/latex/tabularcalc/tabularcalc_doc_en.pdf">tabularcalc_doc_en.pdf</a> <a href="texmf-dist/doc/latex/tabularcalc/tabularcalc_doc_fr.pdf">tabularcalc_doc_fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/tabularcalc/tabularcalc_doc_vn.pdf">tabularcalc_doc_vn.pdf</a>. </small></li> -<li id="tabularew"><b><a href="texmf-dist/doc/latex/tabularew">tabularew</a></b><small> +<li id="tabularew"><b><a href="texmf-dist/doc/latex/tabularew/">tabularew</a></b><small> (<a href="https://ctan.org/pkg/tabularew">CTAN</a>): -A variation on the tabular environment +A variation on the tabular environment. <a href="texmf-dist/doc/latex/tabularew/tabularew.pdf">tabularew.pdf</a>. </small></li> -<li id="tabulary"><b><a href="texmf-dist/doc/latex/tabulary">tabulary</a></b><small> +<li id="tabulary"><b><a href="texmf-dist/doc/latex/tabulary/">tabulary</a></b><small> (<a href="https://ctan.org/pkg/tabulary">CTAN</a>): -Tabular with variable width columns balanced +Tabular with variable width columns balanced. <a href="texmf-dist/doc/latex/tabulary/tabulary.pdf">tabulary.pdf</a>. </small></li> -<li id="tabvar"><b><a href="texmf-dist/doc/latex/tabvar">tabvar</a></b><small> +<li id="tabvar"><b><a href="texmf-dist/doc/latex/tabvar/">tabvar</a></b><small> (<a href="https://ctan.org/pkg/tabvar">CTAN</a>): -Typesetting tables showing variations of functions +Typesetting tables showing variations of functions. <a href="texmf-dist/doc/latex/tabvar/demo.pdf">demo.pdf</a> <a href="texmf-dist/doc/latex/tabvar/tabvar.pdf">tabvar.pdf</a> (fr). </small></li> -<li id="tagging"><b><a href="texmf-dist/doc/latex/tagging">tagging</a></b><small> +<li id="tagging"><b><a href="texmf-dist/doc/latex/tagging/">tagging</a></b><small> (<a href="https://ctan.org/pkg/tagging">CTAN</a>): -Document configuration with tags +Document configuration with tags. <a href="texmf-dist/doc/latex/tagging/tagging.pdf">tagging.pdf</a>. </small></li> -<li id="tagpair"><b><a href="texmf-dist/doc/latex/tagpair">tagpair</a></b><small> +<li id="tagpair"><b><a href="texmf-dist/doc/latex/tagpair/">tagpair</a></b><small> (<a href="https://ctan.org/pkg/tagpair">CTAN</a>): -Word-by-word glosses, translations, and bibliographic attributions +Word-by-word glosses, translations, and bibliographic attributions. <a href="texmf-dist/doc/latex/tagpair/sample.pdf">sample.pdf</a> <a href="texmf-dist/doc/latex/tagpair/tagpair.pdf">tagpair.pdf</a>. </small></li> -<li id="tagpdf"><b><a href="texmf-dist/doc/latex/tagpdf">tagpdf</a></b><small> +<li id="tagpdf"><b><a href="texmf-dist/doc/latex/tagpdf/">tagpdf</a></b><small> (<a href="https://ctan.org/pkg/tagpdf">CTAN</a>): -Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX +Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX. <a href="texmf-dist/doc/latex/tagpdf/ex-alt-actualtext-luatex.pdf">ex-alt-actualtext-luatex.pdf</a> <a href="texmf-dist/doc/latex/tagpdf/ex-attribute.pdf">ex-attribute.pdf</a> <a href="texmf-dist/doc/latex/tagpdf/ex-formula-problem-luatex.pdf">ex-formula-problem-luatex.pdf</a> @@ -20844,149 +20786,148 @@ Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX <a href="texmf-dist/doc/latex/tagpdf/tagpdf.pdf">tagpdf.pdf</a>. </small></li> -<li id="talk"><b><a href="texmf-dist/doc/latex/talk">talk</a></b><small> +<li id="talk"><b><a href="texmf-dist/doc/latex/talk/">talk</a></b><small> (<a href="https://ctan.org/pkg/talk">CTAN</a>): -A LaTeX class for presentations +A LaTeX class for presentations. <a href="texmf-dist/doc/latex/talk/talkdoc.pdf">talkdoc.pdf</a>. </small></li> -<li id="tamethebeast"><b><a href="texmf-dist/doc/bibtex/tamethebeast">tamethebeast</a></b><small> +<li id="tamethebeast"><b><a href="texmf-dist/doc/bibtex/tamethebeast/">tamethebeast</a></b><small> (<a href="https://ctan.org/pkg/tamethebeast">CTAN</a>): -A manual about bibliographies and especially BibTeX +A manual about bibliographies and especially BibTeX. <a href="texmf-dist/doc/bibtex/tamethebeast/ttb_en.pdf">ttb_en.pdf</a>. </small></li> -<li id="tapir"><b><a href="texmf-dist/doc/fonts/tapir">tapir</a></b><small> +<li id="tapir"><b><a href="texmf-dist/doc/fonts/tapir/">tapir</a></b><small> (<a href="https://ctan.org/pkg/tapir">CTAN</a>): -A simple geometrical font +A simple geometrical font. <a href="texmf-dist/doc/fonts/tapir/readme.pdf">readme.pdf</a>. </small></li> -<li id="tasks"><b><a href="texmf-dist/doc/latex/tasks">tasks</a></b><small> +<li id="tasks"><b><a href="texmf-dist/doc/latex/tasks/">tasks</a></b><small> (<a href="https://ctan.org/pkg/tasks">CTAN</a>): -Horizontally columned lists +Horizontally columned lists. <a href="texmf-dist/doc/latex/tasks/tasks-manual.pdf">tasks-manual.pdf</a>. </small></li> -<li id="tcldoc"><b><a href="texmf-dist/doc/latex/tcldoc">tcldoc</a></b><small> -(<a href="https://ctan.org/pkg/tcldoc">CTAN</a>): -Doc/docstrip for tcl +<li id="tcldoc"><b><a href="texmf-dist/doc/latex/tcldoc/">tcldoc</a></b><small> +Doc/docstrip for tcl. <a href="texmf-dist/doc/latex/tcldoc/tclldoc.pdf">tclldoc.pdf</a>. </small></li> -<li id="tcolorbox"><b><a href="texmf-dist/doc/latex/tcolorbox">tcolorbox</a></b><small> +<li id="tcolorbox"><b><a href="texmf-dist/doc/latex/tcolorbox/">tcolorbox</a></b><small> (<a href="https://ctan.org/pkg/tcolorbox">CTAN</a>): -Coloured boxes, for LaTeX examples and theorems, etc +Coloured boxes, for LaTeX examples and theorems, etc. <a href="texmf-dist/doc/latex/tcolorbox/tcolorbox-example-poster.pdf">tcolorbox-example-poster.pdf</a> <a href="texmf-dist/doc/latex/tcolorbox/tcolorbox-example.pdf">tcolorbox-example.pdf</a> <a href="texmf-dist/doc/latex/tcolorbox/tcolorbox-tutorial-poster.pdf">tcolorbox-tutorial-poster.pdf</a> <a href="texmf-dist/doc/latex/tcolorbox/tcolorbox.pdf">tcolorbox.pdf</a>. </small></li> -<li id="tdclock"><b><a href="texmf-dist/doc/latex/tdclock">tdclock</a></b><small> +<li id="tdclock"><b><a href="texmf-dist/doc/latex/tdclock/">tdclock</a></b><small> (<a href="https://ctan.org/pkg/tdclock">CTAN</a>): -A ticking digital clock package for PDF output +A ticking digital clock package for PDF output. <a href="texmf-dist/doc/latex/tdclock/tdclock-beamer-example.pdf">tdclock-beamer-example.pdf</a> <a href="texmf-dist/doc/latex/tdclock/tdclock-doc.pdf">tdclock-doc.pdf</a>. </small></li> -<li id="tds"><b><a href="texmf-dist/doc/generic/tds">tds</a></b><small> +<li id="tds"><b><a href="texmf-dist/doc/generic/tds/">tds</a></b><small> (<a href="https://ctan.org/pkg/tds">CTAN</a>): -The TeX Directory Structure standard +The TeX Directory Structure standard. <a href="texmf-dist/doc/generic/tds/index.html">index.html</a>. </small></li> -<li id="tdsfrmath"><b><a href="texmf-dist/doc/latex/tdsfrmath">tdsfrmath</a></b><small> +<li id="tdsfrmath"><b><a href="texmf-dist/doc/latex/tdsfrmath/">tdsfrmath</a></b><small> (<a href="https://ctan.org/pkg/tdsfrmath">CTAN</a>): -Macros for French teachers of mathematics +Macros for French teachers of mathematics. <a href="texmf-dist/doc/latex/tdsfrmath/tdsfrmath.pdf">tdsfrmath.pdf</a> (fr). </small></li> -<li id="technics"><b><a href="texmf-dist/doc/latex/technics">technics</a></b><small> +<li id="technics"><b><a href="texmf-dist/doc/latex/technics/">technics</a></b><small> (<a href="https://ctan.org/pkg/technics">CTAN</a>): -A package to format technical documents +A package to format technical documents. <a href="texmf-dist/doc/latex/technics/technics.pdf">technics.pdf</a>. </small></li> -<li id="technion-thesis-template"><b><a href="texmf-dist/doc/xelatex/technion-thesis-template/Example">technion-thesis-template</a></b><small> +<li id="technion-thesis-template"><b><a href="texmf-dist/doc/xelatex/technion-thesis-template/">technion-thesis-template</a></b><small> (<a href="https://ctan.org/pkg/technion-thesis-template">CTAN</a>): -Template for theses on the Technion graduate school +Template for theses on the Technion graduate school. <a href="texmf-dist/doc/xelatex/technion-thesis-template/Example/main.pdf">main.pdf</a>. </small></li> -<li id="ted"><b><a href="texmf-dist/doc/latex/ted">ted</a></b><small> +<li id="ted"><b><a href="texmf-dist/doc/latex/ted/">ted</a></b><small> (<a href="https://ctan.org/pkg/ted">CTAN</a>): -A (primitive) token list editor +A (primitive) token list editor. <a href="texmf-dist/doc/latex/ted/ted-fr.pdf">ted-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/ted/ted.pdf">ted.pdf</a>. </small></li> -<li id="templatetools"><b><a href="texmf-dist/doc/latex/templatetools">templatetools</a></b><small> +<li id="templatetools"><b><a href="texmf-dist/doc/latex/templatetools/">templatetools</a></b><small> (<a href="https://ctan.org/pkg/templatetools">CTAN</a>): -Commands useful in LaTeX templates +Commands useful in LaTeX templates. <a href="texmf-dist/doc/latex/templatetools/templatetools.pdf">templatetools.pdf</a>. </small></li> -<li id="tempora"><b><a href="texmf-dist/doc/fonts/tempora">tempora</a></b><small> +<li id="tempora"><b><a href="texmf-dist/doc/fonts/tempora/">tempora</a></b><small> (<a href="https://ctan.org/pkg/tempora">CTAN</a>): -Greek and Cyrillic to accompany Times +Greek and Cyrillic to accompany Times. <a href="texmf-dist/doc/fonts/tempora/tempora-doc.pdf">tempora-doc.pdf</a>. </small></li> -<li id="tengwarscript"><b><a href="texmf-dist/doc/latex/tengwarscript">tengwarscript</a></b><small> +<li id="tengwarscript"><b><a href="texmf-dist/doc/latex/tengwarscript/">tengwarscript</a></b><small> (<a href="https://ctan.org/pkg/tengwarscript">CTAN</a>): -LaTeX support for using Tengwar fonts +LaTeX support for using Tengwar fonts. <a href="texmf-dist/doc/latex/tengwarscript/quetta.pdf">quetta.pdf</a> <a href="texmf-dist/doc/latex/tengwarscript/tengfonts.pdf">tengfonts.pdf</a> <a href="texmf-dist/doc/latex/tengwarscript/tengtest.pdf">tengtest.pdf</a> <a href="texmf-dist/doc/latex/tengwarscript/tengwarscript.pdf">tengwarscript.pdf</a>. </small></li> -<li id="tensind"><b><a href="texmf-dist/doc/latex/tensind">tensind</a></b><small> +<li id="tensind"><b><a href="texmf-dist/doc/latex/tensind/">tensind</a></b><small> (<a href="https://ctan.org/pkg/tensind">CTAN</a>): -Typeset tensors +Typeset tensors. <a href="texmf-dist/doc/latex/tensind/tensind.pdf">tensind.pdf</a>. </small></li> -<li id="tensor"><b><a href="texmf-dist/doc/latex/tensor">tensor</a></b><small> +<li id="tensor"><b><a href="texmf-dist/doc/latex/tensor/">tensor</a></b><small> (<a href="https://ctan.org/pkg/tensor">CTAN</a>): -Typeset tensors +Typeset tensors. <a href="texmf-dist/doc/latex/tensor/tensor.pdf">tensor.pdf</a>. </small></li> -<li id="termcal"><b><a href="texmf-dist/doc/latex/termcal">termcal</a></b><small> +<li id="termcal"><b><a href="texmf-dist/doc/latex/termcal/">termcal</a></b><small> (<a href="https://ctan.org/pkg/termcal">CTAN</a>): -Print a class calendar +Print a class calendar. <a href="texmf-dist/doc/latex/termcal/termcal.pdf">termcal.pdf</a>. </small></li> -<li id="termcal-de"><b><a href="texmf-dist/doc/latex/termcal-de">termcal-de</a></b><small> +<li id="termcal-de"><b><a href="texmf-dist/doc/latex/termcal-de/">termcal-de</a></b><small> (<a href="https://ctan.org/pkg/termcal-de">CTAN</a>): -German localization for termcal +German localization for termcal. <a href="texmf-dist/doc/latex/termcal-de/termcal-de-doc.pdf">termcal-de-doc.pdf</a>. </small></li> -<li id="termlist"><b><a href="texmf-dist/doc/latex/termlist">termlist</a></b><small> +<li id="termlist"><b><a href="texmf-dist/doc/latex/termlist/">termlist</a></b><small> (<a href="https://ctan.org/pkg/termlist">CTAN</a>): -Label any kind of term with a continuous counter +Label any kind of term with a continuous counter. <a href="texmf-dist/doc/latex/termlist/termlist.pdf">termlist.pdf</a>. </small></li> -<li id="termmenu"><b><a href="texmf-dist/doc/generic/termmenu">termmenu</a></b><small> +<li id="termmenu"><b><a href="texmf-dist/doc/generic/termmenu/">termmenu</a></b><small> (<a href="https://ctan.org/pkg/termmenu">CTAN</a>): -The package provides support for terminal-based menus using expl3 +The package provides support for terminal-based menus using expl3. <a href="texmf-dist/doc/generic/termmenu/termmenu.pdf">termmenu.pdf</a>. </small></li> -<li id="testhyphens"><b><a href="texmf-dist/doc/latex/testhyphens">testhyphens</a></b><small> +<li id="testhyphens"><b><a href="texmf-dist/doc/latex/testhyphens/">testhyphens</a></b><small> (<a href="https://ctan.org/pkg/testhyphens">CTAN</a>): -Testing hyphenation patterns +Testing hyphenation patterns. <a href="texmf-dist/doc/latex/testhyphens/testhyphens.pdf">testhyphens.pdf</a>. </small></li> -<li id="testidx"><b><a href="texmf-dist/doc/latex/testidx/samples">testidx</a></b><small> +<li id="testidx"><b><a href="texmf-dist/doc/latex/testidx/">testidx</a></b><small> (<a href="https://ctan.org/pkg/testidx">CTAN</a>): -Dummy text for testing index styles and indexing applications +Dummy text for testing index styles and indexing applications. <a href="texmf-dist/doc/latex/testidx/samples/sample-idx-a4.pdf">sample-idx-a4.pdf</a> <a href="texmf-dist/doc/latex/testidx/samples/sample-idx-amsmath.pdf">sample-idx-amsmath.pdf</a> <a href="texmf-dist/doc/latex/testidx/samples/sample-idx-babel-german.pdf">sample-idx-babel-german.pdf</a> @@ -21011,35 +20952,35 @@ Dummy text for testing index styles and indexing applications <a href="texmf-dist/doc/latex/testidx/testidx-manual.pdf">testidx-manual.pdf</a>. </small></li> -<li id="tetragonos"><b><a href="texmf-dist/doc/xelatex/tetragonos">tetragonos</a></b><small> +<li id="tetragonos"><b><a href="texmf-dist/doc/xelatex/tetragonos/">tetragonos</a></b><small> (<a href="https://ctan.org/pkg/tetragonos">CTAN</a>): -Four-Corner codes of Chinese characters +Four-Corner codes of Chinese characters. <a href="texmf-dist/doc/xelatex/tetragonos/tetragonos.pdf">tetragonos.pdf</a> (zh). </small></li> -<li id="teubner"><b><a href="texmf-dist/doc/latex/teubner">teubner</a></b><small> +<li id="teubner"><b><a href="texmf-dist/doc/latex/teubner/">teubner</a></b><small> (<a href="https://ctan.org/pkg/teubner">CTAN</a>): -Philological typesetting of classical Greek +Philological typesetting of classical Greek. <a href="texmf-dist/doc/latex/teubner/teubner-doc.pdf">teubner-doc.pdf</a> <a href="texmf-dist/doc/latex/teubner/teubner.pdf">teubner.pdf</a>. </small></li> -<li id="tex"><b><a href="texmf-dist/doc/man/man1">tex</a></b><small> +<li id="tex"><b><a href="texmf-dist/doc/man/man1/">tex</a></b><small> (<a href="https://ctan.org/pkg/tex">CTAN</a>): -A sophisticated typesetting engine +A sophisticated typesetting engine. <a href="texmf-dist/doc/man/man1/initex.man1.pdf">initex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/tex.man1.pdf">tex.man1.pdf</a>. </small></li> -<li id="tex-font-errors-cheatsheet"><b><a href="texmf-dist/doc/latex/tex-font-errors-cheatsheet">tex-font-errors-cheatsheet</a></b><small> +<li id="tex-font-errors-cheatsheet"><b><a href="texmf-dist/doc/latex/tex-font-errors-cheatsheet/">tex-font-errors-cheatsheet</a></b><small> (<a href="https://ctan.org/pkg/tex-font-errors-cheatsheet">CTAN</a>): -Cheat sheet outlining the most common TeX font errors +Cheat sheet outlining the most common TeX font errors. <a href="texmf-dist/doc/latex/tex-font-errors-cheatsheet/tex-font-cheatsheet.pdf">tex-font-cheatsheet.pdf</a>. </small></li> -<li id="tex-gyre"><b><a href="texmf-dist/doc/fonts/tex-gyre">tex-gyre</a></b><small> +<li id="tex-gyre"><b><a href="texmf-dist/doc/fonts/tex-gyre/">tex-gyre</a></b><small> (<a href="https://ctan.org/pkg/tex-gyre">CTAN</a>): -TeX Fonts extending freely available URW fonts +TeX Fonts extending freely available URW fonts. <a href="texmf-dist/doc/fonts/tex-gyre/qag-info.pdf">qag-info.pdf</a> <a href="texmf-dist/doc/fonts/tex-gyre/qbk-info.pdf">qbk-info.pdf</a> <a href="texmf-dist/doc/fonts/tex-gyre/qbk-test.pdf">qbk-test.pdf</a> @@ -21056,9 +20997,9 @@ TeX Fonts extending freely available URW fonts <a href="texmf-dist/doc/fonts/tex-gyre/qzc-test.pdf">qzc-test.pdf</a>. </small></li> -<li id="tex-gyre-math"><b><a href="texmf-dist/doc/fonts/tex-gyre-math">tex-gyre-math</a></b><small> +<li id="tex-gyre-math"><b><a href="texmf-dist/doc/fonts/tex-gyre-math/">tex-gyre-math</a></b><small> (<a href="https://ctan.org/pkg/tex-gyre-math">CTAN</a>): -Maths fonts to match tex-gyre text fonts +Maths fonts to match tex-gyre text fonts. <a href="texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.pdf">test-context-texgyre_bonum_math.pdf</a> <a href="texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_dejavu_math.pdf">test-context-texgyre_dejavu_math.pdf</a> <a href="texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.pdf">test-context-texgyre_pagella_math.pdf</a> @@ -21081,16 +21022,16 @@ Maths fonts to match tex-gyre text fonts <a href="texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.pdf">test-xelatex-texgyre_termes_math.pdf</a>. </small></li> -<li id="tex-label"><b><a href="texmf-dist/doc/latex/tex-label">tex-label</a></b><small> +<li id="tex-label"><b><a href="texmf-dist/doc/latex/tex-label/">tex-label</a></b><small> (<a href="https://ctan.org/pkg/tex-label">CTAN</a>): -Place a classification on each page of a document +Place a classification on each page of a document. <a href="texmf-dist/doc/latex/tex-label/tex-label-demo.pdf">tex-label-demo.pdf</a> <a href="texmf-dist/doc/latex/tex-label/tex-label-doc.pdf">tex-label-doc.pdf</a>. </small></li> -<li id="tex-locale"><b><a href="texmf-dist/doc/generic/tex-locale/samples">tex-locale</a></b><small> +<li id="tex-locale"><b><a href="texmf-dist/doc/generic/tex-locale/">tex-locale</a></b><small> (<a href="https://ctan.org/pkg/tex-locale">CTAN</a>): -Localisation support for TeX and LaTeX documents +Localisation support for TeX and LaTeX documents. <a href="texmf-dist/doc/generic/tex-locale/samples/sample-locale-xe.pdf">sample-locale-xe.pdf</a> <a href="texmf-dist/doc/generic/tex-locale/samples/sample-locale-xeltx.pdf">sample-locale-xeltx.pdf</a> <a href="texmf-dist/doc/generic/tex-locale/samples/sample-locale-xeltx2.pdf">sample-locale-xeltx2.pdf</a> @@ -21100,33 +21041,32 @@ Localisation support for TeX and LaTeX documents <a href="texmf-dist/doc/generic/tex-locale/tex-locale.pdf">tex-locale.pdf</a>. </small></li> -<li id="tex-nutshell"><b><a href="texmf-dist/doc/plain/tex-nutshell">tex-nutshell</a></b><small> +<li id="tex-nutshell"><b><a href="texmf-dist/doc/plain/tex-nutshell/">tex-nutshell</a></b><small> (<a href="https://ctan.org/pkg/tex-nutshell">CTAN</a>): -A short document about TeX principles +A short document about TeX principles. <a href="texmf-dist/doc/plain/tex-nutshell/tex-nutshell.pdf">tex-nutshell.pdf</a>. </small></li> -<li id="tex-overview"><b><a href="texmf-dist/doc/latex/tex-overview">tex-overview</a></b><small> +<li id="tex-overview"><b><a href="texmf-dist/doc/latex/tex-overview/">tex-overview</a></b><small> (<a href="https://ctan.org/pkg/tex-overview">CTAN</a>): -An overview of the development of TeX +An overview of the development of TeX. <a href="texmf-dist/doc/latex/tex-overview/tex-overview.pdf">tex-overview.pdf</a>. </small></li> -<li id="tex-ps"><b><a href="texmf-dist/doc/generic/tex-ps/cmyk-hax">tex-ps</a></b><small> +<li id="tex-ps"><b><a href="texmf-dist/doc/generic/tex-ps/">tex-ps</a></b><small> (<a href="https://ctan.org/pkg/tex-ps">CTAN</a>): -TeX to PostScript generic macros and add-ons +TeX to PostScript generic macros and add-ons. <a href="texmf-dist/doc/generic/tex-ps/cmyk-hax/cmyk-doc.pdf">cmyk-doc.pdf</a>. </small></li> -<li id="tex-refs"><b><a href="texmf-dist/doc/generic/tex-refs">tex-refs</a></b><small> -(<a href="https://ctan.org/pkg/tex-refs">CTAN</a>): -References for TeX and Friends +<li id="tex-refs"><b><a href="texmf-dist/doc/generic/tex-refs/">tex-refs</a></b><small> +References for TeX and Friends. <a href="texmf-dist/doc/generic/tex-refs/tex-refs.html">tex-refs.html</a>. </small></li> -<li id="tex-virtual-academy-pl"><b><a href="texmf-dist/doc/generic/tex-virtual-academy-pl/context">tex-virtual-academy-pl</a></b><small> +<li id="tex-virtual-academy-pl"><b><a href="texmf-dist/doc/generic/tex-virtual-academy-pl/">tex-virtual-academy-pl</a></b><small> (<a href="https://ctan.org/pkg/tex-virtual-academy-pl">CTAN</a>): -TeX usage web pages, in Polish +TeX usage web pages, in Polish. <a href="texmf-dist/doc/generic/tex-virtual-academy-pl/context/context.html">context.html</a> <a href="texmf-dist/doc/generic/tex-virtual-academy-pl/context/tytuly.html">tytuly.html</a> <a href="texmf-dist/doc/generic/tex-virtual-academy-pl/cototex.html">cototex.html</a> @@ -21379,125 +21319,114 @@ TeX usage web pages, in Polish <a href="texmf-dist/doc/generic/tex-virtual-academy-pl/tex/tryby.html">tryby.html</a>. </small></li> -<li id="tex4ebook"><b><a href="texmf-dist/doc/support/tex4ebook">tex4ebook</a></b><small> +<li id="tex4ebook"><b><a href="texmf-dist/doc/support/tex4ebook/">tex4ebook</a></b><small> (<a href="https://ctan.org/pkg/tex4ebook">CTAN</a>): -Convertor from LaTeX to ebook formats +Convertor from LaTeX to ebook formats. <a href="texmf-dist/doc/support/tex4ebook/tex4ebook-doc.pdf">tex4ebook-doc.pdf</a>. </small></li> -<li id="tex4ht"><b><a href="texmf-dist/doc/generic/tex4ht">tex4ht</a></b><small> +<li id="tex4ht"><b><a href="texmf-dist/doc/generic/tex4ht/">tex4ht</a></b><small> (<a href="https://ctan.org/pkg/tex4ht">CTAN</a>): -Convert (La)TeX to HTML/XML +Convert (La)TeX to HTML/XML. <a href="texmf-dist/doc/generic/tex4ht/index.html">index.html</a>. </small></li> -<li id="texapi"><b><a href="texmf-dist/doc/generic/texapi">texapi</a></b><small> +<li id="texapi"><b><a href="texmf-dist/doc/generic/texapi/">texapi</a></b><small> (<a href="https://ctan.org/pkg/texapi">CTAN</a>): -Macros to write format-independent packages +Macros to write format-independent packages. <a href="texmf-dist/doc/generic/texapi/texapi-doc.pdf">texapi-doc.pdf</a>. </small></li> -<li id="texbytopic"><b><a href="texmf-dist/doc/plain/texbytopic">texbytopic</a></b><small> +<li id="texbytopic"><b><a href="texmf-dist/doc/plain/texbytopic/">texbytopic</a></b><small> (<a href="https://ctan.org/pkg/texbytopic">CTAN</a>): -Freed version of the book TeX by Topic +Freed version of the book TeX by Topic. <a href="texmf-dist/doc/plain/texbytopic/TeXbyTopic.pdf">TeXbyTopic.pdf</a>. </small></li> -<li id="texcount"><b><a href="texmf-dist/doc/support/texcount/doc">texcount</a></b><small> +<li id="texcount"><b><a href="texmf-dist/doc/support/texcount/">texcount</a></b><small> (<a href="https://ctan.org/pkg/texcount">CTAN</a>): -Count words in a LaTeX document +Count words in a LaTeX document. <a href="texmf-dist/doc/support/texcount/doc/QuickReference.pdf">QuickReference.pdf</a> <a href="texmf-dist/doc/support/texcount/doc/TeXcount.pdf">TeXcount.pdf</a> <a href="texmf-dist/doc/support/texcount/doc/TechDoc.pdf">TechDoc.pdf</a>. </small></li> -<li id="texdate"><b><a href="texmf-dist/doc/generic/texdate">texdate</a></b><small> +<li id="texdate"><b><a href="texmf-dist/doc/generic/texdate/">texdate</a></b><small> (<a href="https://ctan.org/pkg/texdate">CTAN</a>): -Date printing, formatting, and manipulation in TeX +Date printing, formatting, and manipulation in TeX. <a href="texmf-dist/doc/generic/texdate/texdate.pdf">texdate.pdf</a>. </small></li> -<li id="texdef"><b><a href="texmf-dist/doc/support/texdef">texdef</a></b><small> +<li id="texdef"><b><a href="texmf-dist/doc/support/texdef/">texdef</a></b><small> (<a href="https://ctan.org/pkg/texdef">CTAN</a>): -Display the definitions of TeX commands +Display the definitions of TeX commands. <a href="texmf-dist/doc/support/texdef/texdef.pdf">texdef.pdf</a>. </small></li> -<li id="texdiff"><b><a href="texmf-dist/doc/man/man1">texdiff</a></b><small> +<li id="texdiff"><b><a href="texmf-dist/doc/man/man1/">texdiff</a></b><small> (<a href="https://ctan.org/pkg/texdiff">CTAN</a>): -Compare documents and produce tagged merge +Compare documents and produce tagged merge. <a href="texmf-dist/doc/man/man1/texdiff.man1.pdf">texdiff.man1.pdf</a>. </small></li> -<li id="texdirflatten"><b><a href="texmf-dist/doc/man/man1">texdirflatten</a></b><small> +<li id="texdirflatten"><b><a href="texmf-dist/doc/man/man1/">texdirflatten</a></b><small> (<a href="https://ctan.org/pkg/texdirflatten">CTAN</a>): -Collect files related to a LaTeX job in a single directory +Collect files related to a LaTeX job in a single directory. <a href="texmf-dist/doc/man/man1/texdirflatten.man1.pdf">texdirflatten.man1.pdf</a>. </small></li> -<li id="texdoc"><b><a href="texmf-dist/doc/man/man1">texdoc</a></b><small> +<li id="texdoc"><b><a href="texmf-dist/doc/support/texdoc/">texdoc</a></b><small> (<a href="https://ctan.org/pkg/texdoc">CTAN</a>): -Documentation access for TeX Live +Documentation access for TeX Live. <a href="texmf-dist/doc/man/man1/texdoc.man1.pdf">texdoc.man1.pdf</a> <a href="texmf-dist/doc/support/texdoc/texdoc.pdf">texdoc.pdf</a>. </small></li> -<li id="texdoctk"><b><a href="texmf-dist/doc/man/man1">texdoctk</a></b><small> +<li id="texdoctk"><b><a href="texmf-dist/doc/man/man1/">texdoctk</a></b><small> (<a href="https://ctan.org/pkg/texdoctk">CTAN</a>): -Easy access to package documentation +Easy access to package documentation. <a href="texmf-dist/doc/man/man1/texdoctk.man1.pdf">texdoctk.man1.pdf</a>. </small></li> -<li id="texdraw"><b><a href="texmf-dist/doc/support/texdraw">texdraw</a></b><small> +<li id="texdraw"><b><a href="texmf-dist/doc/support/texdraw/">texdraw</a></b><small> (<a href="https://ctan.org/pkg/texdraw">CTAN</a>): -Graphical macros, using embedded PostScript +Graphical macros, using embedded PostScript. <a href="texmf-dist/doc/support/texdraw/texdraw.pdf">texdraw.pdf</a>. </small></li> -<li id="texfot"><b><a href="texmf-dist/doc/man/man1">texfot</a></b><small> +<li id="texfot"><b><a href="texmf-dist/doc/man/man1/">texfot</a></b><small> (<a href="https://ctan.org/pkg/texfot">CTAN</a>): -Filter clutter from the output of a TeX run +Filter clutter from the output of a TeX run. <a href="texmf-dist/doc/man/man1/texfot.man1.pdf">texfot.man1.pdf</a>. </small></li> -<li id="texlive-common"><b><a href="texmf-dist/doc/texlive">texlive-common</a></b><small> -(<a href="https://ctan.org/pkg/texlive-common">CTAN</a>): -TeX Live documentation (common elements) +<li id="texlive-common"><b><a href="texmf-dist/doc/texlive/">texlive-common</a></b><small> +TeX Live documentation (common elements). <a href="texmf-dist/doc/texlive/index.html">index.html</a>. </small></li> -<li id="texlive-cz"><b><a href="texmf-dist/doc/texlive/texlive-cz">texlive-cz</a></b><small> -(<a href="https://ctan.org/pkg/texlive-cz">CTAN</a>): -TeX Live manual (Czech/Slovak) +<li id="texlive-cz"><b><a href="texmf-dist/doc/texlive/texlive-cz/">texlive-cz</a></b><small> +TeX Live manual (Czech/Slovak). <a href="texmf-dist/doc/texlive/texlive-cz/texlive-cz.html">texlive-cz.html</a> <a href="texmf-dist/doc/texlive/texlive-cz/texlive-cz.pdf">texlive-cz.pdf</a>. </small></li> -<li id="texlive-de"><b><a href="texmf-dist/doc/texlive/texlive-de">texlive-de</a></b><small> -(<a href="https://ctan.org/pkg/texlive-de">CTAN</a>): -TeX Live manual (German) +<li id="texlive-de"><b><a href="texmf-dist/doc/texlive/texlive-de/">texlive-de</a></b><small> +TeX Live manual (German). <a href="texmf-dist/doc/texlive/texlive-de/texlive-de.html">texlive-de.html</a> <a href="texmf-dist/doc/texlive/texlive-de/texlive-de.pdf">texlive-de.pdf</a>. </small></li> -<li id="texlive-docindex"><b><a href=".">texlive-docindex</a></b><small> -(<a href="https://ctan.org/pkg/texlive-docindex">CTAN</a>): -top-level TeX Live doc.html, etc. -<a href="doc.html">doc.html</a>. -</small></li> - -<li id="texlive-en"><b><a href="texmf-dist/doc/texlive/texlive-en">texlive-en</a></b><small> -(<a href="https://ctan.org/pkg/texlive-en">CTAN</a>): -TeX Live manual (English) +<li id="texlive-en"><b><a href="texmf-dist/doc/texlive/texlive-en/">texlive-en</a></b><small> +TeX Live manual (English). <a href="texmf-dist/doc/texlive/texlive-en/texlive-en.html">texlive-en.html</a> <a href="texmf-dist/doc/texlive/texlive-en/texlive-en.pdf">texlive-en.pdf</a> <a href="texmf-dist/doc/texlive/tlbuild/tlbuild.html">tlbuild.html</a> <a href="texmf-dist/doc/texlive/tlbuild/tlbuild.pdf">tlbuild.pdf</a>. </small></li> -<li id="texlive-es"><b><a href="texmf-dist/doc/texlive/texlive-es/archive/2017">texlive-es</a></b><small> -(<a href="https://ctan.org/pkg/texlive-es">CTAN</a>): -TeX Live manual (Spanish) +<li id="texlive-es"><b><a href="texmf-dist/doc/texlive/texlive-es/">texlive-es</a></b><small> +TeX Live manual (Spanish). <a href="texmf-dist/doc/texlive/texlive-es/archive/2017/texlive-es.html">texlive-es.html</a> <a href="texmf-dist/doc/texlive/texlive-es/archive/2017/texlive-es.pdf">texlive-es.pdf</a> <a href="texmf-dist/doc/texlive/texlive-es/archive/2018/texlive-es.html">texlive-es.html</a> @@ -21508,43 +21437,37 @@ TeX Live manual (Spanish) <a href="texmf-dist/doc/texlive/texlive-es/texlive-es.pdf">texlive-es.pdf</a>. </small></li> -<li id="texlive-fr"><b><a href="texmf-dist/doc/texlive/texlive-fr">texlive-fr</a></b><small> -(<a href="https://ctan.org/pkg/texlive-fr">CTAN</a>): -TeX Live manual (French) +<li id="texlive-fr"><b><a href="texmf-dist/doc/texlive/texlive-fr/">texlive-fr</a></b><small> +TeX Live manual (French). <a href="texmf-dist/doc/texlive/texlive-fr/texlive-fr.html">texlive-fr.html</a> <a href="texmf-dist/doc/texlive/texlive-fr/texlive-fr.pdf">texlive-fr.pdf</a>. </small></li> -<li id="texlive-it"><b><a href="texmf-dist/doc/texlive/texlive-it">texlive-it</a></b><small> -(<a href="https://ctan.org/pkg/texlive-it">CTAN</a>): -TeX Live manual (Italian) +<li id="texlive-it"><b><a href="texmf-dist/doc/texlive/texlive-it/">texlive-it</a></b><small> +TeX Live manual (Italian). <a href="texmf-dist/doc/texlive/texlive-it/texlive-it.html">texlive-it.html</a> <a href="texmf-dist/doc/texlive/texlive-it/texlive-it.pdf">texlive-it.pdf</a>. </small></li> -<li id="texlive-ja"><b><a href="texmf-dist/doc/texlive/texlive-ja">texlive-ja</a></b><small> -(<a href="https://ctan.org/pkg/texlive-ja">CTAN</a>): -TeX Live manual (Japanese) +<li id="texlive-ja"><b><a href="texmf-dist/doc/texlive/texlive-ja/">texlive-ja</a></b><small> +TeX Live manual (Japanese). <a href="texmf-dist/doc/texlive/texlive-ja/texlive-ja.pdf">texlive-ja.pdf</a>. </small></li> -<li id="texlive-pl"><b><a href="texmf-dist/doc/texlive/texlive-pl">texlive-pl</a></b><small> -(<a href="https://ctan.org/pkg/texlive-pl">CTAN</a>): -TeX Live manual (Polish) +<li id="texlive-pl"><b><a href="texmf-dist/doc/texlive/texlive-pl/">texlive-pl</a></b><small> +TeX Live manual (Polish). <a href="texmf-dist/doc/texlive/texlive-pl/texlive-pl.html">texlive-pl.html</a> <a href="texmf-dist/doc/texlive/texlive-pl/texlive-pl.pdf">texlive-pl.pdf</a>. </small></li> -<li id="texlive-ru"><b><a href="texmf-dist/doc/texlive/texlive-ru">texlive-ru</a></b><small> -(<a href="https://ctan.org/pkg/texlive-ru">CTAN</a>): -TeX Live manual (Russian) +<li id="texlive-ru"><b><a href="texmf-dist/doc/texlive/texlive-ru/">texlive-ru</a></b><small> +TeX Live manual (Russian). <a href="texmf-dist/doc/texlive/texlive-ru/texlive-ru.html">texlive-ru.html</a> <a href="texmf-dist/doc/texlive/texlive-ru/texlive-ru.pdf">texlive-ru.pdf</a>. </small></li> -<li id="texlive-scripts"><b><a href="texmf-dist/doc/man/man1">texlive-scripts</a></b><small> -(<a href="https://ctan.org/pkg/texlive-scripts">CTAN</a>): -TeX Live infrastructure programs +<li id="texlive-scripts"><b><a href="texmf-dist/doc/man/man1/">texlive-scripts</a></b><small> +TeX Live infrastructure programs. <a href="texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf">fmtutil-sys.man1.pdf</a> <a href="texmf-dist/doc/man/man1/fmtutil-user.man1.pdf">fmtutil-user.man1.pdf</a> <a href="texmf-dist/doc/man/man1/fmtutil.man1.pdf">fmtutil.man1.pdf</a> @@ -21561,9 +21484,8 @@ TeX Live infrastructure programs <a href="texmf-dist/doc/man/man5/updmap.cfg.man5.pdf">updmap.cfg.man5.pdf</a>. </small></li> -<li id="texlive-scripts-extra"><b><a href="texmf-dist/doc/man/man1">texlive-scripts-extra</a></b><small> -(<a href="https://ctan.org/pkg/texlive-scripts-extra">CTAN</a>): -TeX Live scripts +<li id="texlive-scripts-extra"><b><a href="texmf-dist/doc/man/man1/">texlive-scripts-extra</a></b><small> +TeX Live scripts. <a href="texmf-dist/doc/man/man1/allcm.man1.pdf">allcm.man1.pdf</a> <a href="texmf-dist/doc/man/man1/allec.man1.pdf">allec.man1.pdf</a> <a href="texmf-dist/doc/man/man1/allneeded.man1.pdf">allneeded.man1.pdf</a> @@ -21583,22 +21505,19 @@ TeX Live scripts <a href="texmf-dist/doc/man/man1/texlinks.man1.pdf">texlinks.man1.pdf</a>. </small></li> -<li id="texlive-sr"><b><a href="texmf-dist/doc/texlive/texlive-sr">texlive-sr</a></b><small> -(<a href="https://ctan.org/pkg/texlive-sr">CTAN</a>): -TeX Live manual (Serbian) +<li id="texlive-sr"><b><a href="texmf-dist/doc/texlive/texlive-sr/">texlive-sr</a></b><small> +TeX Live manual (Serbian). <a href="texmf-dist/doc/texlive/texlive-sr/texlive-sr.html">texlive-sr.html</a> <a href="texmf-dist/doc/texlive/texlive-sr/texlive-sr.pdf">texlive-sr.pdf</a>. </small></li> -<li id="texlive-zh-cn"><b><a href="texmf-dist/doc/texlive/texlive-zh-cn">texlive-zh-cn</a></b><small> -(<a href="https://ctan.org/pkg/texlive-zh-cn">CTAN</a>): -TeX Live manual (Chinese) +<li id="texlive-zh-cn"><b><a href="texmf-dist/doc/texlive/texlive-zh-cn/">texlive-zh-cn</a></b><small> +TeX Live manual (Chinese). <a href="texmf-dist/doc/texlive/texlive-zh-cn/texlive-zh-cn.pdf">texlive-zh-cn.pdf</a>. </small></li> -<li id="texlive.infra"><b><a href=".">texlive.infra</a></b><small> -(<a href="https://ctan.org/pkg/texlive.infra">CTAN</a>): -basic TeX Live infrastructure +<li id="texlive.infra"><b><a href="/">texlive.infra</a></b><small> +basic TeX Live infrastructure. <a href="index.html">index.html</a> <a href="readme-html.dir/readme.cs.html">readme.cs.html</a> <a href="readme-html.dir/readme.de.html">readme.de.html</a> @@ -21618,45 +21537,45 @@ basic TeX Live infrastructure <a href="texmf-dist/doc/man/man1/tlmgr.man1.pdf">tlmgr.man1.pdf</a>. </small></li> -<li id="texmate"><b><a href="texmf-dist/doc/latex/texmate">texmate</a></b><small> +<li id="texmate"><b><a href="texmf-dist/doc/latex/texmate/">texmate</a></b><small> (<a href="https://ctan.org/pkg/texmate">CTAN</a>): -Comprehensive chess annotation in LaTeX +Comprehensive chess annotation in LaTeX. <a href="texmf-dist/doc/latex/texmate/texmate2manual.pdf">texmate2manual.pdf</a>. </small></li> -<li id="texments"><b><a href="texmf-dist/doc/latex/texments">texments</a></b><small> +<li id="texments"><b><a href="texmf-dist/doc/latex/texments/">texments</a></b><small> (<a href="https://ctan.org/pkg/texments">CTAN</a>): -Using the Pygments highlighter in LaTeX +Using the Pygments highlighter in LaTeX. <a href="texmf-dist/doc/latex/texments/texments.pdf">texments.pdf</a>. </small></li> -<li id="texonly"><b><a href="texmf-dist/doc/plain/texonly">texonly</a></b><small> +<li id="texonly"><b><a href="texmf-dist/doc/plain/texonly/">texonly</a></b><small> (<a href="https://ctan.org/pkg/texonly">CTAN</a>): -A sample document in Plain TeX +A sample document in Plain TeX. <a href="texmf-dist/doc/plain/texonly/texonly2.pdf">texonly2.pdf</a> (de-de). </small></li> -<li id="texosquery"><b><a href="texmf-dist/doc/support/texosquery">texosquery</a></b><small> +<li id="texosquery"><b><a href="texmf-dist/doc/support/texosquery/">texosquery</a></b><small> (<a href="https://ctan.org/pkg/texosquery">CTAN</a>): -Cross-platform Java application to query OS information +Cross-platform Java application to query OS information. <a href="texmf-dist/doc/support/texosquery/texosquery.pdf">texosquery.pdf</a>. </small></li> -<li id="texplate"><b><a href="texmf-dist/doc/support/texplate">texplate</a></b><small> +<li id="texplate"><b><a href="texmf-dist/doc/support/texplate/">texplate</a></b><small> (<a href="https://ctan.org/pkg/texplate">CTAN</a>): -A tool for creating document structures based on templates +A tool for creating document structures based on templates. <a href="texmf-dist/doc/support/texplate/texplate-manual.pdf">texplate-manual.pdf</a>. </small></li> -<li id="texpower"><b><a href="texmf-dist/doc/latex/texpower">texpower</a></b><small> +<li id="texpower"><b><a href="texmf-dist/doc/latex/texpower/">texpower</a></b><small> (<a href="https://ctan.org/pkg/texpower">CTAN</a>): -Create dynamic online presentations with LaTeX +Create dynamic online presentations with LaTeX. <a href="texmf-dist/doc/latex/texpower/manual.pdf">manual.pdf</a>. </small></li> -<li id="texproposal"><b><a href="texmf-dist/doc/latex/texproposal/figures">texproposal</a></b><small> +<li id="texproposal"><b><a href="texmf-dist/doc/latex/texproposal/">texproposal</a></b><small> (<a href="https://ctan.org/pkg/texproposal">CTAN</a>): -A proposal prototype for LaTeX promotion in Chinese universities +A proposal prototype for LaTeX promotion in Chinese universities. <a href="texmf-dist/doc/latex/texproposal/figures/CQU-Example.pdf">CQU-Example.pdf</a> <a href="texmf-dist/doc/latex/texproposal/figures/CQUThesis-poster.pdf">CQUThesis-poster.pdf</a> <a href="texmf-dist/doc/latex/texproposal/figures/TeX-Word-Diff.pdf">TeX-Word-Diff.pdf</a> @@ -21665,254 +21584,254 @@ A proposal prototype for LaTeX promotion in Chinese universities <a href="texmf-dist/doc/latex/texproposal/texproposal.pdf">texproposal.pdf</a> (zh). </small></li> -<li id="texshade"><b><a href="texmf-dist/doc/latex/texshade">texshade</a></b><small> +<li id="texshade"><b><a href="texmf-dist/doc/latex/texshade/">texshade</a></b><small> (<a href="https://ctan.org/pkg/texshade">CTAN</a>): -Package for setting nucleotide and peptide alignments +Package for setting nucleotide and peptide alignments. <a href="texmf-dist/doc/latex/texshade/texshade.pdf">texshade.pdf</a> <a href="texmf-dist/doc/latex/texshade/tsfaq.pdf">tsfaq.pdf</a>. </small></li> -<li id="texsis"><b><a href="texmf-dist/doc/man/man1">texsis</a></b><small> +<li id="texsis"><b><a href="texmf-dist/doc/man/man1/">texsis</a></b><small> (<a href="https://ctan.org/pkg/texsis">CTAN</a>): -Plain TeX macros for Physicists +Plain TeX macros for Physicists. <a href="texmf-dist/doc/man/man1/texsis.man1.pdf">texsis.man1.pdf</a>. </small></li> -<li id="textcase"><b><a href="texmf-dist/doc/latex/textcase">textcase</a></b><small> +<li id="textcase"><b><a href="texmf-dist/doc/latex/textcase/">textcase</a></b><small> (<a href="https://ctan.org/pkg/textcase">CTAN</a>): -Case conversion ignoring mathematics, etc +Case conversion ignoring mathematics, etc. <a href="texmf-dist/doc/latex/textcase/textcase.pdf">textcase.pdf</a>. </small></li> -<li id="textfit"><b><a href="texmf-dist/doc/latex/textfit">textfit</a></b><small> +<li id="textfit"><b><a href="texmf-dist/doc/latex/textfit/">textfit</a></b><small> (<a href="https://ctan.org/pkg/textfit">CTAN</a>): -Fit text to a desired size +Fit text to a desired size. <a href="texmf-dist/doc/latex/textfit/textfit.pdf">textfit.pdf</a>. </small></li> -<li id="textglos"><b><a href="texmf-dist/doc/latex/textglos">textglos</a></b><small> +<li id="textglos"><b><a href="texmf-dist/doc/latex/textglos/">textglos</a></b><small> (<a href="https://ctan.org/pkg/textglos">CTAN</a>): -Typeset and index linguistic gloss abbreviations +Typeset and index linguistic gloss abbreviations. <a href="texmf-dist/doc/latex/textglos/textglos.pdf">textglos.pdf</a>. </small></li> -<li id="textgreek"><b><a href="texmf-dist/doc/latex/textgreek">textgreek</a></b><small> +<li id="textgreek"><b><a href="texmf-dist/doc/latex/textgreek/">textgreek</a></b><small> (<a href="https://ctan.org/pkg/textgreek">CTAN</a>): -Upright greek letters in text +Upright greek letters in text. <a href="texmf-dist/doc/latex/textgreek/textgreek.pdf">textgreek.pdf</a>. </small></li> -<li id="textmerg"><b><a href="texmf-dist/doc/generic/textmerg">textmerg</a></b><small> +<li id="textmerg"><b><a href="texmf-dist/doc/generic/textmerg/">textmerg</a></b><small> (<a href="https://ctan.org/pkg/textmerg">CTAN</a>): -Merge text in TeX and LaTeX +Merge text in TeX and LaTeX. <a href="texmf-dist/doc/generic/textmerg/textmerg.pdf">textmerg.pdf</a>. </small></li> -<li id="textopo"><b><a href="texmf-dist/doc/latex/textopo">textopo</a></b><small> +<li id="textopo"><b><a href="texmf-dist/doc/latex/textopo/">textopo</a></b><small> (<a href="https://ctan.org/pkg/textopo">CTAN</a>): -Annotated membrane protein topology plots +Annotated membrane protein topology plots. <a href="texmf-dist/doc/latex/textopo/textopo.pdf">textopo.pdf</a>. </small></li> -<li id="textpath"><b><a href="texmf-dist/doc/metapost/textpath">textpath</a></b><small> +<li id="textpath"><b><a href="texmf-dist/doc/metapost/textpath/">textpath</a></b><small> (<a href="https://ctan.org/pkg/textpath">CTAN</a>): -Setting text along a path with MetaPost +Setting text along a path with MetaPost. <a href="texmf-dist/doc/metapost/textpath/textpath.pdf">textpath.pdf</a>. </small></li> -<li id="textpos"><b><a href="texmf-dist/doc/latex/textpos">textpos</a></b><small> +<li id="textpos"><b><a href="texmf-dist/doc/latex/textpos/">textpos</a></b><small> (<a href="https://ctan.org/pkg/textpos">CTAN</a>): -Place boxes at arbitrary positions on the LaTeX page +Place boxes at arbitrary positions on the LaTeX page. <a href="texmf-dist/doc/latex/textpos/niepraschk-eso-pic.pdf">niepraschk-eso-pic.pdf</a> <a href="texmf-dist/doc/latex/textpos/textpos.html">textpos.html</a> <a href="texmf-dist/doc/latex/textpos/textpos.pdf">textpos.pdf</a>. </small></li> -<li id="textualicomma"><b><a href="texmf-dist/doc/latex/textualicomma">textualicomma</a></b><small> +<li id="textualicomma"><b><a href="texmf-dist/doc/latex/textualicomma/">textualicomma</a></b><small> (<a href="https://ctan.org/pkg/textualicomma">CTAN</a>): -Use the textual comma character as decimal separator in math mode +Use the textual comma character as decimal separator in math mode. <a href="texmf-dist/doc/latex/textualicomma/textualicomma-doc.pdf">textualicomma-doc.pdf</a>. </small></li> -<li id="texvc"><b><a href="texmf-dist/doc/latex/texvc">texvc</a></b><small> +<li id="texvc"><b><a href="texmf-dist/doc/latex/texvc/">texvc</a></b><small> (<a href="https://ctan.org/pkg/texvc">CTAN</a>): -Use MediaWiki LaTeX commands +Use MediaWiki LaTeX commands. <a href="texmf-dist/doc/latex/texvc/texvc.pdf">texvc.pdf</a>. </small></li> -<li id="texware"><b><a href="texmf-dist/doc/man/man1">texware</a></b><small> +<li id="texware"><b><a href="texmf-dist/doc/man/man1/">texware</a></b><small> (<a href="https://ctan.org/pkg/texware">CTAN</a>): -Utility programs for use with TeX +Utility programs for use with TeX. <a href="texmf-dist/doc/man/man1/dvitype.man1.pdf">dvitype.man1.pdf</a> <a href="texmf-dist/doc/man/man1/pooltype.man1.pdf">pooltype.man1.pdf</a>. </small></li> -<li id="tfrupee"><b><a href="texmf-dist/doc/fonts/tfrupee">tfrupee</a></b><small> +<li id="tfrupee"><b><a href="texmf-dist/doc/fonts/tfrupee/">tfrupee</a></b><small> (<a href="https://ctan.org/pkg/tfrupee">CTAN</a>): -A font offering the new (Indian) Rupee symbol +A font offering the new (Indian) Rupee symbol. <a href="texmf-dist/doc/fonts/tfrupee/tfrupee.pdf">tfrupee.pdf</a>. </small></li> -<li id="thaienum"><b><a href="texmf-dist/doc/latex/thaienum">thaienum</a></b><small> +<li id="thaienum"><b><a href="texmf-dist/doc/latex/thaienum/">thaienum</a></b><small> (<a href="https://ctan.org/pkg/thaienum">CTAN</a>): -Thai labels in enumerate environments +Thai labels in enumerate environments. <a href="texmf-dist/doc/latex/thaienum/thaienum.pdf">thaienum.pdf</a>. </small></li> -<li id="thaispec"><b><a href="texmf-dist/doc/latex/thaispec">thaispec</a></b><small> +<li id="thaispec"><b><a href="texmf-dist/doc/latex/thaispec/">thaispec</a></b><small> (<a href="https://ctan.org/pkg/thaispec">CTAN</a>): -Thai Language Typesetting in XeLaTeX +Thai Language Typesetting in XeLaTeX. <a href="texmf-dist/doc/latex/thaispec/thaispec.pdf">thaispec.pdf</a> (th). </small></li> -<li id="thalie"><b><a href="texmf-dist/doc/latex/thalie">thalie</a></b><small> +<li id="thalie"><b><a href="texmf-dist/doc/latex/thalie/">thalie</a></b><small> (<a href="https://ctan.org/pkg/thalie">CTAN</a>): -Typeset drama plays +Typeset drama plays. <a href="texmf-dist/doc/latex/thalie/thalie.pdf">thalie.pdf</a>. </small></li> -<li id="theanodidot"><b><a href="texmf-dist/doc/fonts/theanodidot">theanodidot</a></b><small> +<li id="theanodidot"><b><a href="texmf-dist/doc/fonts/theanodidot/">theanodidot</a></b><small> (<a href="https://ctan.org/pkg/theanodidot">CTAN</a>): -TheanoDidot fonts with LaTeX support +TheanoDidot fonts with LaTeX support. <a href="texmf-dist/doc/fonts/theanodidot/theanodidot-samples.pdf">theanodidot-samples.pdf</a>. </small></li> -<li id="theanomodern"><b><a href="texmf-dist/doc/fonts/theanomodern">theanomodern</a></b><small> +<li id="theanomodern"><b><a href="texmf-dist/doc/fonts/theanomodern/">theanomodern</a></b><small> (<a href="https://ctan.org/pkg/theanomodern">CTAN</a>): -Theano Modern fonts with LaTeX support +Theano Modern fonts with LaTeX support. <a href="texmf-dist/doc/fonts/theanomodern/theanomodern-samples.pdf">theanomodern-samples.pdf</a>. </small></li> -<li id="theanooldstyle"><b><a href="texmf-dist/doc/fonts/theanooldstyle">theanooldstyle</a></b><small> +<li id="theanooldstyle"><b><a href="texmf-dist/doc/fonts/theanooldstyle/">theanooldstyle</a></b><small> (<a href="https://ctan.org/pkg/theanooldstyle">CTAN</a>): -Theano OldStyle fonts with LaTeX support +Theano OldStyle fonts with LaTeX support. <a href="texmf-dist/doc/fonts/theanooldstyle/theanooldstyle-samples.pdf">theanooldstyle-samples.pdf</a>. </small></li> -<li id="theatre"><b><a href="texmf-dist/doc/latex/theatre/doc">theatre</a></b><small> +<li id="theatre"><b><a href="texmf-dist/doc/latex/theatre/">theatre</a></b><small> (<a href="https://ctan.org/pkg/theatre">CTAN</a>): -A sophisticated package for typesetting stage plays +A sophisticated package for typesetting stage plays. <a href="texmf-dist/doc/latex/theatre/doc/Help_Theatre.pdf">Help_Theatre.pdf</a>. </small></li> -<li id="theoremref"><b><a href="texmf-dist/doc/latex/theoremref">theoremref</a></b><small> +<li id="theoremref"><b><a href="texmf-dist/doc/latex/theoremref/">theoremref</a></b><small> (<a href="https://ctan.org/pkg/theoremref">CTAN</a>): -References with automatic theorem names +References with automatic theorem names. <a href="texmf-dist/doc/latex/theoremref/theoremref-doc.pdf">theoremref-doc.pdf</a>. </small></li> -<li id="thesis-ekf"><b><a href="texmf-dist/doc/latex/thesis-ekf">thesis-ekf</a></b><small> +<li id="thesis-ekf"><b><a href="texmf-dist/doc/latex/thesis-ekf/">thesis-ekf</a></b><small> (<a href="https://ctan.org/pkg/thesis-ekf">CTAN</a>): -Thesis class for Eszterhazy Karoly University +Thesis class for Eszterhazy Karoly University. <a href="texmf-dist/doc/latex/thesis-ekf/thesis-ekf.pdf">thesis-ekf.pdf</a> (hu). </small></li> -<li id="thesis-gwu"><b><a href="texmf-dist/doc/latex/thesis-gwu">thesis-gwu</a></b><small> +<li id="thesis-gwu"><b><a href="texmf-dist/doc/latex/thesis-gwu/">thesis-gwu</a></b><small> (<a href="https://ctan.org/pkg/thesis-gwu">CTAN</a>): -Thesis class for George Washington University School of Engineering and Applied Science +Thesis class for George Washington University School of Engineering and Applied Science. <a href="texmf-dist/doc/latex/thesis-gwu/thesis-sample.pdf">thesis-sample.pdf</a>. </small></li> -<li id="thesis-qom"><b><a href="texmf-dist/doc/xelatex/thesis-qom">thesis-qom</a></b><small> +<li id="thesis-qom"><b><a href="texmf-dist/doc/xelatex/thesis-qom/">thesis-qom</a></b><small> (<a href="https://ctan.org/pkg/thesis-qom">CTAN</a>): -Thesis style of the University of Qom, Iran +Thesis style of the University of Qom, Iran. <a href="texmf-dist/doc/xelatex/thesis-qom/thesis-qom.pdf">thesis-qom.pdf</a> (fa-ir). </small></li> -<li id="thesis-titlepage-fhac"><b><a href="texmf-dist/doc/latex/thesis-titlepage-fhac">thesis-titlepage-fhac</a></b><small> +<li id="thesis-titlepage-fhac"><b><a href="texmf-dist/doc/latex/thesis-titlepage-fhac/">thesis-titlepage-fhac</a></b><small> (<a href="https://ctan.org/pkg/thesis-titlepage-fhac">CTAN</a>): -Little style to create a standard titlepage for diploma thesis +Little style to create a standard titlepage for diploma thesis. <a href="texmf-dist/doc/latex/thesis-titlepage-fhac/LogoFH.pdf">LogoFH.pdf</a> <a href="texmf-dist/doc/latex/thesis-titlepage-fhac/fhACtitlepage.pdf">fhACtitlepage.pdf</a>. </small></li> -<li id="thinsp"><b><a href="texmf-dist/doc/latex/thinsp">thinsp</a></b><small> +<li id="thinsp"><b><a href="texmf-dist/doc/latex/thinsp/">thinsp</a></b><small> (<a href="https://ctan.org/pkg/thinsp">CTAN</a>): -A stretchable \thinspace for LaTeX +A stretchable \thinspace for LaTeX. <a href="texmf-dist/doc/latex/thinsp/thinsp.pdf">thinsp.pdf</a>. </small></li> -<li id="thmbox"><b><a href="texmf-dist/doc/latex/thmbox">thmbox</a></b><small> +<li id="thmbox"><b><a href="texmf-dist/doc/latex/thmbox/">thmbox</a></b><small> (<a href="https://ctan.org/pkg/thmbox">CTAN</a>): -Decorate theorem statements +Decorate theorem statements. <a href="texmf-dist/doc/latex/thmbox/thmbox.pdf">thmbox.pdf</a>. </small></li> -<li id="thmtools"><b><a href="texmf-dist/doc/latex/thmtools">thmtools</a></b><small> +<li id="thmtools"><b><a href="texmf-dist/doc/latex/thmtools/">thmtools</a></b><small> (<a href="https://ctan.org/pkg/thmtools">CTAN</a>): -Extensions to theorem environments +Extensions to theorem environments. <a href="texmf-dist/doc/latex/thmtools/thmtools.pdf">thmtools.pdf</a>. </small></li> -<li id="threadcol"><b><a href="texmf-dist/doc/latex/threadcol">threadcol</a></b><small> +<li id="threadcol"><b><a href="texmf-dist/doc/latex/threadcol/">threadcol</a></b><small> (<a href="https://ctan.org/pkg/threadcol">CTAN</a>): -Organize document columns into PDF "article thread" +Organize document columns into PDF "article thread". <a href="texmf-dist/doc/latex/threadcol/threadcol.pdf">threadcol.pdf</a>. </small></li> -<li id="threeddice"><b><a href="texmf-dist/doc/metapost/threeddice">threeddice</a></b><small> +<li id="threeddice"><b><a href="texmf-dist/doc/metapost/threeddice/">threeddice</a></b><small> (<a href="https://ctan.org/pkg/threeddice">CTAN</a>): -Create images of dice with one, two, or three faces showing, using MetaPost +Create images of dice with one, two, or three faces showing, using MetaPost. <a href="texmf-dist/doc/metapost/threeddice/threeddice-doc.pdf">threeddice-doc.pdf</a>. </small></li> -<li id="threeparttable"><b><a href="texmf-dist/doc/latex/threeparttable">threeparttable</a></b><small> +<li id="threeparttable"><b><a href="texmf-dist/doc/latex/threeparttable/">threeparttable</a></b><small> (<a href="https://ctan.org/pkg/threeparttable">CTAN</a>): -Tables with captions and notes all the same width +Tables with captions and notes all the same width. <a href="texmf-dist/doc/latex/threeparttable/threeparttable.pdf">threeparttable.pdf</a>. </small></li> -<li id="threeparttablex"><b><a href="texmf-dist/doc/latex/threeparttablex">threeparttablex</a></b><small> +<li id="threeparttablex"><b><a href="texmf-dist/doc/latex/threeparttablex/">threeparttablex</a></b><small> (<a href="https://ctan.org/pkg/threeparttablex">CTAN</a>): -Notes in longtables +Notes in longtables. <a href="texmf-dist/doc/latex/threeparttablex/threeparttablex.pdf">threeparttablex.pdf</a>. </small></li> -<li id="thuaslogos"><b><a href="texmf-dist/doc/latex/thuaslogos">thuaslogos</a></b><small> +<li id="thuaslogos"><b><a href="texmf-dist/doc/latex/thuaslogos/">thuaslogos</a></b><small> (<a href="https://ctan.org/pkg/thuaslogos">CTAN</a>): -Logos for The Hague University of Applied Sciences (THUAS) +Logos for The Hague University of Applied Sciences (THUAS). <a href="texmf-dist/doc/latex/thuaslogos/thuaslogos-doc-dutch.pdf">thuaslogos-doc-dutch.pdf</a> (nl) <a href="texmf-dist/doc/latex/thuaslogos/thuaslogos-doc-english.pdf">thuaslogos-doc-english.pdf</a>. </small></li> -<li id="thucoursework"><b><a href="texmf-dist/doc/latex/thucoursework">thucoursework</a></b><small> +<li id="thucoursework"><b><a href="texmf-dist/doc/latex/thucoursework/">thucoursework</a></b><small> (<a href="https://ctan.org/pkg/thucoursework">CTAN</a>): -Coursework template for Tsinghua University +Coursework template for Tsinghua University. <a href="texmf-dist/doc/latex/thucoursework/iihw.pdf">iihw.pdf</a> <a href="texmf-dist/doc/latex/thucoursework/ithw.pdf">ithw.pdf</a> (zh) <a href="texmf-dist/doc/latex/thucoursework/pdf_normal.pdf">pdf_normal.pdf</a> <a href="texmf-dist/doc/latex/thucoursework/thucoursework.pdf">thucoursework.pdf</a> (zh). </small></li> -<li id="thumb"><b><a href="texmf-dist/doc/latex/thumb">thumb</a></b><small> +<li id="thumb"><b><a href="texmf-dist/doc/latex/thumb/">thumb</a></b><small> (<a href="https://ctan.org/pkg/thumb">CTAN</a>): -Thumb marks in documents +Thumb marks in documents. <a href="texmf-dist/doc/latex/thumb/thumb.pdf">thumb.pdf</a>. </small></li> -<li id="thumbpdf"><b><a href="texmf-dist/doc/man/man1">thumbpdf</a></b><small> +<li id="thumbpdf"><b><a href="texmf-dist/doc/man/man1/">thumbpdf</a></b><small> (<a href="https://ctan.org/pkg/thumbpdf">CTAN</a>): -Thumbnails for pdfTeX and dvips/ps2pdf +Thumbnails for pdfTeX and dvips/ps2pdf. <a href="texmf-dist/doc/man/man1/thumbpdf.man1.pdf">thumbpdf.man1.pdf</a>. </small></li> -<li id="thumbs"><b><a href="texmf-dist/doc/latex/thumbs">thumbs</a></b><small> +<li id="thumbs"><b><a href="texmf-dist/doc/latex/thumbs/">thumbs</a></b><small> (<a href="https://ctan.org/pkg/thumbs">CTAN</a>): -Create thumb indexes +Create thumb indexes. <a href="texmf-dist/doc/latex/thumbs/thumbs-example.pdf">thumbs-example.pdf</a> <a href="texmf-dist/doc/latex/thumbs/thumbs.pdf">thumbs.pdf</a>. </small></li> -<li id="thumby"><b><a href="texmf-dist/doc/latex/thumby">thumby</a></b><small> +<li id="thumby"><b><a href="texmf-dist/doc/latex/thumby/">thumby</a></b><small> (<a href="https://ctan.org/pkg/thumby">CTAN</a>): -Create thumb indexes for printed books +Create thumb indexes for printed books. <a href="texmf-dist/doc/latex/thumby/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/thumby/thumby.pdf">thumby.pdf</a>. </small></li> -<li id="thuthesis"><b><a href="texmf-dist/doc/latex/thuthesis/figures">thuthesis</a></b><small> +<li id="thuthesis"><b><a href="texmf-dist/doc/latex/thuthesis/">thuthesis</a></b><small> (<a href="https://ctan.org/pkg/thuthesis">CTAN</a>): -Thesis template for Tsinghua University +Thesis template for Tsinghua University. <a href="texmf-dist/doc/latex/thuthesis/figures/scan-auth.pdf">scan-auth.pdf</a> <a href="texmf-dist/doc/latex/thuthesis/figures/scan-record.pdf">scan-record.pdf</a> <a href="texmf-dist/doc/latex/thuthesis/figures/scan-statement.pdf">scan-statement.pdf</a> @@ -21926,9 +21845,9 @@ Thesis template for Tsinghua University <a href="texmf-dist/doc/latex/thuthesis/tsinghua.pdf">tsinghua.pdf</a>. </small></li> -<li id="ticket"><b><a href="texmf-dist/doc/latex/ticket">ticket</a></b><small> +<li id="ticket"><b><a href="texmf-dist/doc/latex/ticket/">ticket</a></b><small> (<a href="https://ctan.org/pkg/ticket">CTAN</a>): -Make labels, visiting-cards, pins with LaTeX +Make labels, visiting-cards, pins with LaTeX. <a href="texmf-dist/doc/latex/ticket/ex_file.pdf">ex_file.pdf</a> <a href="texmf-dist/doc/latex/ticket/ex_flashcard.pdf">ex_flashcard.pdf</a> <a href="texmf-dist/doc/latex/ticket/ex_flashcard_dup.pdf">ex_flashcard_dup.pdf</a> @@ -21939,436 +21858,435 @@ Make labels, visiting-cards, pins with LaTeX <a href="texmf-dist/doc/latex/ticket/manual.pdf">manual.pdf</a>. </small></li> -<li id="ticollege"><b><a href="texmf-dist/doc/latex/ticollege">ticollege</a></b><small> +<li id="ticollege"><b><a href="texmf-dist/doc/latex/ticollege/">ticollege</a></b><small> (<a href="https://ctan.org/pkg/ticollege">CTAN</a>): -Graphical representation of keys on a standard scientific calculator +Graphical representation of keys on a standard scientific calculator. <a href="texmf-dist/doc/latex/ticollege/ticollege-doc.pdf">ticollege-doc.pdf</a> (fr). </small></li> -<li id="tie"><b><a href="texmf-dist/doc/man/man1">tie</a></b><small> +<li id="tie"><b><a href="texmf-dist/doc/man/man1/">tie</a></b><small> (<a href="https://ctan.org/pkg/tie">CTAN</a>): -Allow multiple web change files +Allow multiple web change files. <a href="texmf-dist/doc/man/man1/tie.man1.pdf">tie.man1.pdf</a>. </small></li> -<li id="tikz-3dplot"><b><a href="texmf-dist/doc/latex/tikz-3dplot">tikz-3dplot</a></b><small> +<li id="tikz-3dplot"><b><a href="texmf-dist/doc/latex/tikz-3dplot/">tikz-3dplot</a></b><small> (<a href="https://ctan.org/pkg/tikz-3dplot">CTAN</a>): -Coordinate transformation styles for 3d plotting in TikZ +Coordinate transformation styles for 3d plotting in TikZ. <a href="texmf-dist/doc/latex/tikz-3dplot/tikz-3dplot_documentation.pdf">tikz-3dplot_documentation.pdf</a>. </small></li> -<li id="tikz-cd"><b><a href="texmf-dist/doc/latex/tikz-cd">tikz-cd</a></b><small> +<li id="tikz-cd"><b><a href="texmf-dist/doc/latex/tikz-cd/">tikz-cd</a></b><small> (<a href="https://ctan.org/pkg/tikz-cd">CTAN</a>): -Create commutative diagrams with TikZ +Create commutative diagrams with TikZ. <a href="texmf-dist/doc/latex/tikz-cd/tikz-cd-doc.pdf">tikz-cd-doc.pdf</a>. </small></li> -<li id="tikz-dependency"><b><a href="texmf-dist/doc/latex/tikz-dependency">tikz-dependency</a></b><small> +<li id="tikz-dependency"><b><a href="texmf-dist/doc/latex/tikz-dependency/">tikz-dependency</a></b><small> (<a href="https://ctan.org/pkg/tikz-dependency">CTAN</a>): -A library for drawing dependency graphs +A library for drawing dependency graphs. <a href="texmf-dist/doc/latex/tikz-dependency/tikz-dependency-doc.pdf">tikz-dependency-doc.pdf</a>. </small></li> -<li id="tikz-dimline"><b><a href="texmf-dist/doc/latex/tikz-dimline">tikz-dimline</a></b><small> +<li id="tikz-dimline"><b><a href="texmf-dist/doc/latex/tikz-dimline/">tikz-dimline</a></b><small> (<a href="https://ctan.org/pkg/tikz-dimline">CTAN</a>): -Technical dimension lines using PGF/TikZ +Technical dimension lines using PGF/TikZ. <a href="texmf-dist/doc/latex/tikz-dimline/tikz-dimline-doc.pdf">tikz-dimline-doc.pdf</a>. </small></li> -<li id="tikz-feynhand"><b><a href="texmf-dist/doc/latex/tikz-feynhand">tikz-feynhand</a></b><small> +<li id="tikz-feynhand"><b><a href="texmf-dist/doc/latex/tikz-feynhand/">tikz-feynhand</a></b><small> (<a href="https://ctan.org/pkg/tikz-feynhand">CTAN</a>): -Feynman diagrams with TikZ +Feynman diagrams with TikZ. <a href="texmf-dist/doc/latex/tikz-feynhand/tikz-feynhand.userguide.pdf">tikz-feynhand.userguide.pdf</a>. </small></li> -<li id="tikz-feynman"><b><a href="texmf-dist/doc/latex/tikz-feynman">tikz-feynman</a></b><small> +<li id="tikz-feynman"><b><a href="texmf-dist/doc/latex/tikz-feynman/">tikz-feynman</a></b><small> (<a href="https://ctan.org/pkg/tikz-feynman">CTAN</a>): -Feynman diagrams with TikZ +Feynman diagrams with TikZ. <a href="texmf-dist/doc/latex/tikz-feynman/tikz-feynman.pdf">tikz-feynman.pdf</a>. </small></li> -<li id="tikz-imagelabels"><b><a href="texmf-dist/doc/latex/tikz-imagelabels">tikz-imagelabels</a></b><small> +<li id="tikz-imagelabels"><b><a href="texmf-dist/doc/latex/tikz-imagelabels/">tikz-imagelabels</a></b><small> (<a href="https://ctan.org/pkg/tikz-imagelabels">CTAN</a>): -Put labels on images using TikZ +Put labels on images using TikZ. <a href="texmf-dist/doc/latex/tikz-imagelabels/tikz-imagelabels.pdf">tikz-imagelabels.pdf</a>. </small></li> -<li id="tikz-inet"><b><a href="texmf-dist/doc/latex/tikz-inet">tikz-inet</a></b><small> +<li id="tikz-inet"><b><a href="texmf-dist/doc/latex/tikz-inet/">tikz-inet</a></b><small> (<a href="https://ctan.org/pkg/tikz-inet">CTAN</a>): -Draw interaction nets with TikZ +Draw interaction nets with TikZ. <a href="texmf-dist/doc/latex/tikz-inet/tikz-inet-doc.pdf">tikz-inet-doc.pdf</a>. </small></li> -<li id="tikz-kalender"><b><a href="texmf-dist/doc/latex/tikz-kalender">tikz-kalender</a></b><small> +<li id="tikz-kalender"><b><a href="texmf-dist/doc/latex/tikz-kalender/">tikz-kalender</a></b><small> (<a href="https://ctan.org/pkg/tikz-kalender">CTAN</a>): -A LaTeX based calendar using TikZ +A LaTeX based calendar using TikZ. <a href="texmf-dist/doc/latex/tikz-kalender/tikz-kalender-example1.pdf">tikz-kalender-example1.pdf</a> <a href="texmf-dist/doc/latex/tikz-kalender/tikz-kalender-example2.pdf">tikz-kalender-example2.pdf</a>. </small></li> -<li id="tikz-karnaugh"><b><a href="texmf-dist/doc/latex/tikz-karnaugh">tikz-karnaugh</a></b><small> +<li id="tikz-karnaugh"><b><a href="texmf-dist/doc/latex/tikz-karnaugh/">tikz-karnaugh</a></b><small> (<a href="https://ctan.org/pkg/tikz-karnaugh">CTAN</a>): -Typeset Karnaugh maps using TikZ +Typeset Karnaugh maps using TikZ. <a href="texmf-dist/doc/latex/tikz-karnaugh/tikz-karnaugh-doc.pdf">tikz-karnaugh-doc.pdf</a>. </small></li> -<li id="tikz-ladder"><b><a href="texmf-dist/doc/latex/tikz-ladder">tikz-ladder</a></b><small> +<li id="tikz-ladder"><b><a href="texmf-dist/doc/latex/tikz-ladder/">tikz-ladder</a></b><small> (<a href="https://ctan.org/pkg/tikz-ladder">CTAN</a>): -Draw ladder diagrams using TikZ +Draw ladder diagrams using TikZ. <a href="texmf-dist/doc/latex/tikz-ladder/tikz-ladder-doc.pdf">tikz-ladder-doc.pdf</a>. </small></li> -<li id="tikz-nef"><b><a href="texmf-dist/doc/latex/tikz-nef">tikz-nef</a></b><small> +<li id="tikz-nef"><b><a href="texmf-dist/doc/latex/tikz-nef/">tikz-nef</a></b><small> (<a href="https://ctan.org/pkg/tikz-nef">CTAN</a>): -create diagrams for neural networks constructed with the methods of the Neural Engineering Framework (NEF) +create diagrams for neural networks constructed with the methods of the Neural Engineering Framework (NEF). <a href="texmf-dist/doc/latex/tikz-nef/tikz-nef-doc.pdf">tikz-nef-doc.pdf</a>. </small></li> -<li id="tikz-network"><b><a href="texmf-dist/doc/latex/tikz-network/data">tikz-network</a></b><small> +<li id="tikz-network"><b><a href="texmf-dist/doc/latex/tikz-network/">tikz-network</a></b><small> (<a href="https://ctan.org/pkg/tikz-network">CTAN</a>): -Draw networks with TikZ +Draw networks with TikZ. <a href="texmf-dist/doc/latex/tikz-network/data/front.pdf">front.pdf</a> <a href="texmf-dist/doc/latex/tikz-network/tikz-network.pdf">tikz-network.pdf</a>. </small></li> -<li id="tikz-opm"><b><a href="texmf-dist/doc/latex/tikz-opm">tikz-opm</a></b><small> +<li id="tikz-opm"><b><a href="texmf-dist/doc/latex/tikz-opm/">tikz-opm</a></b><small> (<a href="https://ctan.org/pkg/tikz-opm">CTAN</a>): -Typeset OPM diagrams +Typeset OPM diagrams. <a href="texmf-dist/doc/latex/tikz-opm/tikz-opm.pdf">tikz-opm.pdf</a>. </small></li> -<li id="tikz-optics"><b><a href="texmf-dist/doc/latex/tikz-optics">tikz-optics</a></b><small> +<li id="tikz-optics"><b><a href="texmf-dist/doc/latex/tikz-optics/">tikz-optics</a></b><small> (<a href="https://ctan.org/pkg/tikz-optics">CTAN</a>): -A library for drawing optical setups with TikZ +A library for drawing optical setups with TikZ. <a href="texmf-dist/doc/latex/tikz-optics/tikz-optics.pdf">tikz-optics.pdf</a> (fr). </small></li> -<li id="tikz-page"><b><a href="texmf-dist/doc/latex/tikz-page">tikz-page</a></b><small> +<li id="tikz-page"><b><a href="texmf-dist/doc/latex/tikz-page/">tikz-page</a></b><small> (<a href="https://ctan.org/pkg/tikz-page">CTAN</a>): -Small macro to help building nice and complex layout materials +Small macro to help building nice and complex layout materials. <a href="texmf-dist/doc/latex/tikz-page/tikz-page.pdf">tikz-page.pdf</a>. </small></li> -<li id="tikz-palattice"><b><a href="texmf-dist/doc/latex/tikz-palattice">tikz-palattice</a></b><small> +<li id="tikz-palattice"><b><a href="texmf-dist/doc/latex/tikz-palattice/">tikz-palattice</a></b><small> (<a href="https://ctan.org/pkg/tikz-palattice">CTAN</a>): -Draw particle accelerator lattices with TikZ +Draw particle accelerator lattices with TikZ. <a href="texmf-dist/doc/latex/tikz-palattice/tikz-palattice_documentation.pdf">tikz-palattice_documentation.pdf</a>. </small></li> -<li id="tikz-planets"><b><a href="texmf-dist/doc/latex/tikz-planets">tikz-planets</a></b><small> +<li id="tikz-planets"><b><a href="texmf-dist/doc/latex/tikz-planets/">tikz-planets</a></b><small> (<a href="https://ctan.org/pkg/tikz-planets">CTAN</a>): -Illustrate celestial mechanics and the solar system +Illustrate celestial mechanics and the solar system. <a href="texmf-dist/doc/latex/tikz-planets/planets-doc.pdf">planets-doc.pdf</a>. </small></li> -<li id="tikz-qtree"><b><a href="texmf-dist/doc/latex/tikz-qtree">tikz-qtree</a></b><small> +<li id="tikz-qtree"><b><a href="texmf-dist/doc/latex/tikz-qtree/">tikz-qtree</a></b><small> (<a href="https://ctan.org/pkg/tikz-qtree">CTAN</a>): -Use existing qtree syntax for trees in TikZ +Use existing qtree syntax for trees in TikZ. <a href="texmf-dist/doc/latex/tikz-qtree/tikz-qtree-manual.pdf">tikz-qtree-manual.pdf</a>. </small></li> -<li id="tikz-relay"><b><a href="texmf-dist/doc/latex/tikz-relay">tikz-relay</a></b><small> +<li id="tikz-relay"><b><a href="texmf-dist/doc/latex/tikz-relay/">tikz-relay</a></b><small> (<a href="https://ctan.org/pkg/tikz-relay">CTAN</a>): -TikZ library for typesetting electrical diagrams +TikZ library for typesetting electrical diagrams. <a href="texmf-dist/doc/latex/tikz-relay/BeamerAnimation.pdf">BeamerAnimation.pdf</a> <a href="texmf-dist/doc/latex/tikz-relay/tikz-relay-doc.pdf">tikz-relay-doc.pdf</a>. </small></li> -<li id="tikz-sfc"><b><a href="texmf-dist/doc/latex/tikz-sfc">tikz-sfc</a></b><small> +<li id="tikz-sfc"><b><a href="texmf-dist/doc/latex/tikz-sfc/">tikz-sfc</a></b><small> (<a href="https://ctan.org/pkg/tikz-sfc">CTAN</a>): -Symbols collection for typesetting Sequential Function Chart (SFC) diagrams (PLC programs) +Symbols collection for typesetting Sequential Function Chart (SFC) diagrams (PLC programs). <a href="texmf-dist/doc/latex/tikz-sfc/BeamerAnimation.pdf">BeamerAnimation.pdf</a> <a href="texmf-dist/doc/latex/tikz-sfc/tikz-sfc-doc.pdf">tikz-sfc-doc.pdf</a>. </small></li> -<li id="tikz-timing"><b><a href="texmf-dist/doc/latex/tikz-timing">tikz-timing</a></b><small> +<li id="tikz-timing"><b><a href="texmf-dist/doc/latex/tikz-timing/">tikz-timing</a></b><small> (<a href="https://ctan.org/pkg/tikz-timing">CTAN</a>): -Easy generation of timing diagrams as TikZ pictures +Easy generation of timing diagrams as TikZ pictures. <a href="texmf-dist/doc/latex/tikz-timing/tikz-timing.pdf">tikz-timing.pdf</a>. </small></li> -<li id="tikz-trackschematic"><b><a href="texmf-dist/doc/latex/tikz-trackschematic/tikz-trackschematic-examples">tikz-trackschematic</a></b><small> +<li id="tikz-trackschematic"><b><a href="texmf-dist/doc/latex/tikz-trackschematic/">tikz-trackschematic</a></b><small> (<a href="https://ctan.org/pkg/tikz-trackschematic">CTAN</a>): -A TikZ library for creating track diagrams in railways +A TikZ library for creating track diagrams in railways. <a href="texmf-dist/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_berg.pdf">station_berg.pdf</a> <a href="texmf-dist/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_chamstadt.pdf">station_chamstadt.pdf</a> <a href="texmf-dist/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets.pdf">tikz-trackschematic-snippets.pdf</a> <a href="texmf-dist/doc/latex/tikz-trackschematic/tikz-trackschematic.pdf">tikz-trackschematic.pdf</a>. </small></li> -<li id="tikz-truchet"><b><a href="texmf-dist/doc/latex/tikz-truchet">tikz-truchet</a></b><small> +<li id="tikz-truchet"><b><a href="texmf-dist/doc/latex/tikz-truchet/">tikz-truchet</a></b><small> (<a href="https://ctan.org/pkg/tikz-truchet">CTAN</a>): -Draw Truchet tiles +Draw Truchet tiles. <a href="texmf-dist/doc/latex/tikz-truchet/tikz-truchet.pdf">tikz-truchet.pdf</a>. </small></li> -<li id="tikzcodeblocks"><b><a href="texmf-dist/doc/latex/tikzcodeblocks">tikzcodeblocks</a></b><small> +<li id="tikzcodeblocks"><b><a href="texmf-dist/doc/latex/tikzcodeblocks/">tikzcodeblocks</a></b><small> (<a href="https://ctan.org/pkg/tikzcodeblocks">CTAN</a>): -Helps to draw codeblocks like scratch, NEPO and PXT in TikZ +Helps to draw codeblocks like scratch, NEPO and PXT in TikZ. <a href="texmf-dist/doc/latex/tikzcodeblocks/tikzcodeblocks-documentation.pdf">tikzcodeblocks-documentation.pdf</a> (de). </small></li> -<li id="tikzducks"><b><a href="texmf-dist/doc/latex/tikzducks">tikzducks</a></b><small> +<li id="tikzducks"><b><a href="texmf-dist/doc/latex/tikzducks/">tikzducks</a></b><small> (<a href="https://ctan.org/pkg/tikzducks">CTAN</a>): -A little fun package for using rubber ducks in TikZ +A little fun package for using rubber ducks in TikZ. <a href="texmf-dist/doc/latex/tikzducks/tikzducks-doc.pdf">tikzducks-doc.pdf</a>. </small></li> -<li id="tikzinclude"><b><a href="texmf-dist/doc/latex/tikzinclude">tikzinclude</a></b><small> +<li id="tikzinclude"><b><a href="texmf-dist/doc/latex/tikzinclude/">tikzinclude</a></b><small> (<a href="https://ctan.org/pkg/tikzinclude">CTAN</a>): -Import TikZ images from colletions +Import TikZ images from colletions. <a href="texmf-dist/doc/latex/tikzinclude/tikzinclude.pdf">tikzinclude.pdf</a>. </small></li> -<li id="tikzlings"><b><a href="texmf-dist/doc/latex/tikzlings">tikzlings</a></b><small> +<li id="tikzlings"><b><a href="texmf-dist/doc/latex/tikzlings/">tikzlings</a></b><small> (<a href="https://ctan.org/pkg/tikzlings">CTAN</a>): -A collection of cute little animals and similar creatures +A collection of cute little animals and similar creatures. <a href="texmf-dist/doc/latex/tikzlings/tikzlings-doc.pdf">tikzlings-doc.pdf</a>. </small></li> -<li id="tikzmark"><b><a href="texmf-dist/doc/latex/tikzmark">tikzmark</a></b><small> +<li id="tikzmark"><b><a href="texmf-dist/doc/latex/tikzmark/">tikzmark</a></b><small> (<a href="https://ctan.org/pkg/tikzmark">CTAN</a>): -Use TikZ's method of remembering a position on a page +Use TikZ's method of remembering a position on a page. <a href="texmf-dist/doc/latex/tikzmark/tikzmark.pdf">tikzmark.pdf</a>. </small></li> -<li id="tikzmarmots"><b><a href="texmf-dist/doc/latex/tikzmarmots">tikzmarmots</a></b><small> +<li id="tikzmarmots"><b><a href="texmf-dist/doc/latex/tikzmarmots/">tikzmarmots</a></b><small> (<a href="https://ctan.org/pkg/tikzmarmots">CTAN</a>): -Drawing little marmots in TikZ +Drawing little marmots in TikZ. <a href="texmf-dist/doc/latex/tikzmarmots/tikzmarmots-doc.pdf">tikzmarmots-doc.pdf</a>. </small></li> -<li id="tikzorbital"><b><a href="texmf-dist/doc/latex/tikzorbital">tikzorbital</a></b><small> +<li id="tikzorbital"><b><a href="texmf-dist/doc/latex/tikzorbital/">tikzorbital</a></b><small> (<a href="https://ctan.org/pkg/tikzorbital">CTAN</a>): -Atomic and molecular orbitals using TikZ +Atomic and molecular orbitals using TikZ. <a href="texmf-dist/doc/latex/tikzorbital/tikzorbital.pdf">tikzorbital.pdf</a>. </small></li> -<li id="tikzpagenodes"><b><a href="texmf-dist/doc/latex/tikzpagenodes">tikzpagenodes</a></b><small> +<li id="tikzpagenodes"><b><a href="texmf-dist/doc/latex/tikzpagenodes/">tikzpagenodes</a></b><small> (<a href="https://ctan.org/pkg/tikzpagenodes">CTAN</a>): -A single TikZ node for the whole page +A single TikZ node for the whole page. <a href="texmf-dist/doc/latex/tikzpagenodes/tikzpagenodes.pdf">tikzpagenodes.pdf</a>. </small></li> -<li id="tikzpeople"><b><a href="texmf-dist/doc/latex/tikzpeople">tikzpeople</a></b><small> +<li id="tikzpeople"><b><a href="texmf-dist/doc/latex/tikzpeople/">tikzpeople</a></b><small> (<a href="https://ctan.org/pkg/tikzpeople">CTAN</a>): -Draw people-shaped nodes in TikZ +Draw people-shaped nodes in TikZ. <a href="texmf-dist/doc/latex/tikzpeople/tikzpeople.pdf">tikzpeople.pdf</a>. </small></li> -<li id="tikzpfeile"><b><a href="texmf-dist/doc/latex/tikzpfeile">tikzpfeile</a></b><small> +<li id="tikzpfeile"><b><a href="texmf-dist/doc/latex/tikzpfeile/">tikzpfeile</a></b><small> (<a href="https://ctan.org/pkg/tikzpfeile">CTAN</a>): -Draw arrows using PGF/TikZ +Draw arrows using PGF/TikZ. <a href="texmf-dist/doc/latex/tikzpfeile/tikzpfeile.pdf">tikzpfeile.pdf</a>. </small></li> -<li id="tikzposter"><b><a href="texmf-dist/doc/latex/tikzposter">tikzposter</a></b><small> +<li id="tikzposter"><b><a href="texmf-dist/doc/latex/tikzposter/">tikzposter</a></b><small> (<a href="https://ctan.org/pkg/tikzposter">CTAN</a>): -Create scientific posters using TikZ +Create scientific posters using TikZ. <a href="texmf-dist/doc/latex/tikzposter/tikzposter.pdf">tikzposter.pdf</a>. </small></li> -<li id="tikzscale"><b><a href="texmf-dist/doc/latex/tikzscale">tikzscale</a></b><small> +<li id="tikzscale"><b><a href="texmf-dist/doc/latex/tikzscale/">tikzscale</a></b><small> (<a href="https://ctan.org/pkg/tikzscale">CTAN</a>): -Resize pictures while respecting text size +Resize pictures while respecting text size. <a href="texmf-dist/doc/latex/tikzscale/test-tikzscale.pdf">test-tikzscale.pdf</a> <a href="texmf-dist/doc/latex/tikzscale/tikzscale.pdf">tikzscale.pdf</a>. </small></li> -<li id="tikzsymbols"><b><a href="texmf-dist/doc/latex/tikzsymbols">tikzsymbols</a></b><small> +<li id="tikzsymbols"><b><a href="texmf-dist/doc/latex/tikzsymbols/">tikzsymbols</a></b><small> (<a href="https://ctan.org/pkg/tikzsymbols">CTAN</a>): -Some symbols created using TikZ +Some symbols created using TikZ. <a href="texmf-dist/doc/latex/tikzsymbols/tikzsymbols.pdf">tikzsymbols.pdf</a>. </small></li> -<li id="tikztosvg"><b><a href="texmf-dist/doc/man/man1">tikztosvg</a></b><small> +<li id="tikztosvg"><b><a href="texmf-dist/doc/man/man1/">tikztosvg</a></b><small> (<a href="https://ctan.org/pkg/tikztosvg">CTAN</a>): -A utility for rendering TikZ diagrams to SVG +A utility for rendering TikZ diagrams to SVG. <a href="texmf-dist/doc/man/man1/tikztosvg.man1.pdf">tikztosvg.man1.pdf</a>. </small></li> -<li id="timbreicmc"><b><a href="texmf-dist/doc/latex/timbreicmc">timbreicmc</a></b><small> +<li id="timbreicmc"><b><a href="texmf-dist/doc/latex/timbreicmc/">timbreicmc</a></b><small> (<a href="https://ctan.org/pkg/timbreicmc">CTAN</a>): -Typeset documents with ICMC/USP watermarks +Typeset documents with ICMC/USP watermarks. <a href="texmf-dist/doc/latex/timbreicmc/timbreicmc.pdf">timbreicmc.pdf</a>. </small></li> -<li id="timing-diagrams"><b><a href="texmf-dist/doc/latex/timing-diagrams">timing-diagrams</a></b><small> +<li id="timing-diagrams"><b><a href="texmf-dist/doc/latex/timing-diagrams/">timing-diagrams</a></b><small> (<a href="https://ctan.org/pkg/timing-diagrams">CTAN</a>): -Draw timing diagrams +Draw timing diagrams. <a href="texmf-dist/doc/latex/timing-diagrams/diagrams-examples.pdf">diagrams-examples.pdf</a>. </small></li> -<li id="tinos"><b><a href="texmf-dist/doc/fonts/tinos">tinos</a></b><small> +<li id="tinos"><b><a href="texmf-dist/doc/fonts/tinos/">tinos</a></b><small> (<a href="https://ctan.org/pkg/tinos">CTAN</a>): -Tinos fonts with LaTeX support +Tinos fonts with LaTeX support. <a href="texmf-dist/doc/fonts/tinos/tinos-samples.pdf">tinos-samples.pdf</a>. </small></li> -<li id="tipa"><b><a href="texmf-dist/doc/fonts/tipa">tipa</a></b><small> +<li id="tipa"><b><a href="texmf-dist/doc/fonts/tipa/">tipa</a></b><small> (<a href="https://ctan.org/pkg/tipa">CTAN</a>): -Fonts and macros for IPA phonetics characters +Fonts and macros for IPA phonetics characters. <a href="texmf-dist/doc/fonts/tipa/tipaman.pdf">tipaman.pdf</a> <a href="texmf-dist/doc/fonts/tipa/vowel.pdf">vowel.pdf</a>. </small></li> -<li id="tipa-de"><b><a href="texmf-dist/doc/latex/tipa-de">tipa-de</a></b><small> +<li id="tipa-de"><b><a href="texmf-dist/doc/latex/tipa-de/">tipa-de</a></b><small> (<a href="https://ctan.org/pkg/tipa-de">CTAN</a>): -German translation of tipa documentation +German translation of tipa documentation. <a href="texmf-dist/doc/latex/tipa-de/tipaman-de.pdf">tipaman-de.pdf</a> (de). </small></li> -<li id="tipfr"><b><a href="texmf-dist/doc/latex/tipfr">tipfr</a></b><small> +<li id="tipfr"><b><a href="texmf-dist/doc/latex/tipfr/">tipfr</a></b><small> (<a href="https://ctan.org/pkg/tipfr">CTAN</a>): -Produces calculator's keys with the help of TikZ +Produces calculator's keys with the help of TikZ. <a href="texmf-dist/doc/latex/tipfr/tipfr-doc.pdf">tipfr-doc.pdf</a> (fr). </small></li> -<li id="titlecaps"><b><a href="texmf-dist/doc/latex/titlecaps">titlecaps</a></b><small> +<li id="titlecaps"><b><a href="texmf-dist/doc/latex/titlecaps/">titlecaps</a></b><small> (<a href="https://ctan.org/pkg/titlecaps">CTAN</a>): -Setting rich-text input into Titling Caps +Setting rich-text input into Titling Caps. <a href="texmf-dist/doc/latex/titlecaps/titlecaps.pdf">titlecaps.pdf</a>. </small></li> -<li id="titlepages"><b><a href="texmf-dist/doc/latex/titlepages">titlepages</a></b><small> +<li id="titlepages"><b><a href="texmf-dist/doc/latex/titlepages/">titlepages</a></b><small> (<a href="https://ctan.org/pkg/titlepages">CTAN</a>): -Sample titlepages, and how to code them +Sample titlepages, and how to code them. <a href="texmf-dist/doc/latex/titlepages/titlepages.pdf">titlepages.pdf</a>. </small></li> -<li id="titlepic"><b><a href="texmf-dist/doc/latex/titlepic">titlepic</a></b><small> +<li id="titlepic"><b><a href="texmf-dist/doc/latex/titlepic/">titlepic</a></b><small> (<a href="https://ctan.org/pkg/titlepic">CTAN</a>): -Add picture to title page of a document +Add picture to title page of a document. <a href="texmf-dist/doc/latex/titlepic/titlepic-manual.pdf">titlepic-manual.pdf</a>. </small></li> -<li id="titleref"><b><a href="texmf-dist/doc/latex/titleref">titleref</a></b><small> +<li id="titleref"><b><a href="texmf-dist/doc/latex/titleref/">titleref</a></b><small> (<a href="https://ctan.org/pkg/titleref">CTAN</a>): -A "\titleref" command to cross-reference section titles +A "\titleref" command to cross-reference section titles. <a href="texmf-dist/doc/latex/titleref/titleref.pdf">titleref.pdf</a>. </small></li> -<li id="titlesec"><b><a href="texmf-dist/doc/latex/titlesec">titlesec</a></b><small> +<li id="titlesec"><b><a href="texmf-dist/doc/latex/titlesec/">titlesec</a></b><small> (<a href="https://ctan.org/pkg/titlesec">CTAN</a>): -Select alternative section titles +Select alternative section titles. <a href="texmf-dist/doc/latex/titlesec/titleps.pdf">titleps.pdf</a> <a href="texmf-dist/doc/latex/titlesec/titlesec.pdf">titlesec.pdf</a>. </small></li> -<li id="titling"><b><a href="texmf-dist/doc/latex/titling">titling</a></b><small> +<li id="titling"><b><a href="texmf-dist/doc/latex/titling/">titling</a></b><small> (<a href="https://ctan.org/pkg/titling">CTAN</a>): -Control over the typesetting of the \maketitle command +Control over the typesetting of the \maketitle command. <a href="texmf-dist/doc/latex/titling/titling.pdf">titling.pdf</a>. </small></li> -<li id="tkz-base"><b><a href="texmf-dist/doc/latex/tkz-base">tkz-base</a></b><small> +<li id="tkz-base"><b><a href="texmf-dist/doc/latex/tkz-base/">tkz-base</a></b><small> (<a href="https://ctan.org/pkg/tkz-base">CTAN</a>): -Tools for drawing with a cartesian coordinate system +Tools for drawing with a cartesian coordinate system. <a href="texmf-dist/doc/latex/tkz-base/TKZdoc-base.pdf">TKZdoc-base.pdf</a> (fr) <a href="texmf-dist/doc/latex/tkz-base/tiger.pdf">tiger.pdf</a>. </small></li> -<li id="tkz-euclide"><b><a href="texmf-dist/doc/latex/tkz-euclide">tkz-euclide</a></b><small> +<li id="tkz-euclide"><b><a href="texmf-dist/doc/latex/tkz-euclide/">tkz-euclide</a></b><small> (<a href="https://ctan.org/pkg/tkz-euclide">CTAN</a>): -Tools for drawing Euclidean geometry +Tools for drawing Euclidean geometry. <a href="texmf-dist/doc/latex/tkz-euclide/Euclidean_geometry.pdf">Euclidean_geometry.pdf</a> <a href="texmf-dist/doc/latex/tkz-euclide/TKZdoc-euclide.pdf">TKZdoc-euclide.pdf</a> <a href="texmf-dist/doc/latex/tkz-euclide/cheatsheet_euclide_1.pdf">cheatsheet_euclide_1.pdf</a> <a href="texmf-dist/doc/latex/tkz-euclide/cheatsheet_euclide_2.pdf">cheatsheet_euclide_2.pdf</a>. </small></li> -<li id="tkz-fct"><b><a href="texmf-dist/doc/latex/tkz-fct">tkz-fct</a></b><small> +<li id="tkz-fct"><b><a href="texmf-dist/doc/latex/tkz-fct/">tkz-fct</a></b><small> (<a href="https://ctan.org/pkg/tkz-fct">CTAN</a>): -Tools for drawing graphs of functions +Tools for drawing graphs of functions. <a href="texmf-dist/doc/latex/tkz-fct/TKZdoc-fct-main.pdf">TKZdoc-fct-main.pdf</a> (fr). </small></li> -<li id="tkz-orm"><b><a href="texmf-dist/doc/latex/tkz-orm">tkz-orm</a></b><small> +<li id="tkz-orm"><b><a href="texmf-dist/doc/latex/tkz-orm/">tkz-orm</a></b><small> (<a href="https://ctan.org/pkg/tkz-orm">CTAN</a>): -Create Object-Role Model (ORM) diagrams +Create Object-Role Model (ORM) diagrams. <a href="texmf-dist/doc/latex/tkz-orm/tkz-orm.pdf">tkz-orm.pdf</a>. </small></li> -<li id="tkz-tab"><b><a href="texmf-dist/doc/latex/tkz-tab">tkz-tab</a></b><small> +<li id="tkz-tab"><b><a href="texmf-dist/doc/latex/tkz-tab/">tkz-tab</a></b><small> (<a href="https://ctan.org/pkg/tkz-tab">CTAN</a>): -Tables of signs and variations using PGF/TikZ +Tables of signs and variations using PGF/TikZ. <a href="texmf-dist/doc/latex/tkz-tab/TKZdoc-tab.pdf">TKZdoc-tab.pdf</a> (fr). </small></li> -<li id="tlc-article"><b><a href="texmf-dist/doc/latex/tlc-article/doc">tlc-article</a></b><small> +<li id="tlc-article"><b><a href="texmf-dist/doc/latex/tlc-article/">tlc-article</a></b><small> (<a href="https://ctan.org/pkg/tlc-article">CTAN</a>): -A LaTeX document class for formal documents +A LaTeX document class for formal documents. <a href="texmf-dist/doc/latex/tlc-article/doc/tlc-article.pdf">tlc-article.pdf</a>. </small></li> -<li id="tlcockpit"><b><a href="texmf-dist/doc/man/man1">tlcockpit</a></b><small> +<li id="tlcockpit"><b><a href="texmf-dist/doc/man/man1/">tlcockpit</a></b><small> (<a href="https://ctan.org/pkg/tlcockpit">CTAN</a>): -A GUI frontend to TeX Live Manager (tlmgr) +A GUI frontend to TeX Live Manager (tlmgr). <a href="texmf-dist/doc/man/man1/tlcockpit.man1.pdf">tlcockpit.man1.pdf</a>. </small></li> -<li id="tocbibind"><b><a href="texmf-dist/doc/latex/tocbibind">tocbibind</a></b><small> +<li id="tocbibind"><b><a href="texmf-dist/doc/latex/tocbibind/">tocbibind</a></b><small> (<a href="https://ctan.org/pkg/tocbibind">CTAN</a>): -Add bibliography/index/contents to Table of Contents +Add bibliography/index/contents to Table of Contents. <a href="texmf-dist/doc/latex/tocbibind/tocbibind.pdf">tocbibind.pdf</a>. </small></li> -<li id="tocdata"><b><a href="texmf-dist/doc/latex/tocdata">tocdata</a></b><small> +<li id="tocdata"><b><a href="texmf-dist/doc/latex/tocdata/">tocdata</a></b><small> (<a href="https://ctan.org/pkg/tocdata">CTAN</a>): -Adds names to chapters, sections, figures in the TOC and LOF +Adds names to chapters, sections, figures in the TOC and LOF. <a href="texmf-dist/doc/latex/tocdata/tocdata.pdf">tocdata.pdf</a>. </small></li> -<li id="tocloft"><b><a href="texmf-dist/doc/latex/tocloft">tocloft</a></b><small> +<li id="tocloft"><b><a href="texmf-dist/doc/latex/tocloft/">tocloft</a></b><small> (<a href="https://ctan.org/pkg/tocloft">CTAN</a>): -Control table of contents, figures, etc +Control table of contents, figures, etc. <a href="texmf-dist/doc/latex/tocloft/tocloft.pdf">tocloft.pdf</a>. </small></li> -<li id="tocvsec2"><b><a href="texmf-dist/doc/latex/tocvsec2">tocvsec2</a></b><small> +<li id="tocvsec2"><b><a href="texmf-dist/doc/latex/tocvsec2/">tocvsec2</a></b><small> (<a href="https://ctan.org/pkg/tocvsec2">CTAN</a>): -Section numbering and table of contents control +Section numbering and table of contents control. <a href="texmf-dist/doc/latex/tocvsec2/tocvsec2.pdf">tocvsec2.pdf</a>. </small></li> -<li id="todo"><b><a href="texmf-dist/doc/latex/todo">todo</a></b><small> +<li id="todo"><b><a href="texmf-dist/doc/latex/todo/">todo</a></b><small> (<a href="https://ctan.org/pkg/todo">CTAN</a>): -Make a to-do list for a document +Make a to-do list for a document. <a href="texmf-dist/doc/latex/todo/todo-spl.pdf">todo-spl.pdf</a> <a href="texmf-dist/doc/latex/todo/todo.pdf">todo.pdf</a>. </small></li> -<li id="todonotes"><b><a href="texmf-dist/doc/latex/todonotes/examples">todonotes</a></b><small> +<li id="todonotes"><b><a href="texmf-dist/doc/latex/todonotes/">todonotes</a></b><small> (<a href="https://ctan.org/pkg/todonotes">CTAN</a>): -Marking things to do in a LaTeX document +Marking things to do in a LaTeX document. <a href="texmf-dist/doc/latex/todonotes/examples/alterAppearenceOfListOfTodos.pdf">alterAppearenceOfListOfTodos.pdf</a> <a href="texmf-dist/doc/latex/todonotes/examples/externalize.pdf">externalize.pdf</a> <a href="texmf-dist/doc/latex/todonotes/examples/saveColorByUsingLayers.pdf">saveColorByUsingLayers.pdf</a> <a href="texmf-dist/doc/latex/todonotes/todonotes.pdf">todonotes.pdf</a>. </small></li> -<li id="tokcycle"><b><a href="texmf-dist/doc/generic/tokcycle">tokcycle</a></b><small> +<li id="tokcycle"><b><a href="texmf-dist/doc/generic/tokcycle/">tokcycle</a></b><small> (<a href="https://ctan.org/pkg/tokcycle">CTAN</a>): -The tokcycle package helps one to build tools to process tokens from an input stream, on a token-by-token basis +The tokcycle package helps one to build tools to process tokens from an input stream, on a token-by-token basis. <a href="texmf-dist/doc/generic/tokcycle/tokcycle-doc.pdf">tokcycle-doc.pdf</a> <a href="texmf-dist/doc/generic/tokcycle/tokcycle-examples.pdf">tokcycle-examples.pdf</a>. </small></li> -<li id="tokenizer"><b><a href="texmf-dist/doc/latex/tokenizer">tokenizer</a></b><small> +<li id="tokenizer"><b><a href="texmf-dist/doc/latex/tokenizer/">tokenizer</a></b><small> (<a href="https://ctan.org/pkg/tokenizer">CTAN</a>): -A tokenizer +A tokenizer. <a href="texmf-dist/doc/latex/tokenizer/tokenizer.pdf">tokenizer.pdf</a>. </small></li> -<li id="toolbox"><b><a href="texmf-dist/doc/latex/toolbox">toolbox</a></b><small> +<li id="toolbox"><b><a href="texmf-dist/doc/latex/toolbox/">toolbox</a></b><small> (<a href="https://ctan.org/pkg/toolbox">CTAN</a>): -Tool macros +Tool macros. <a href="texmf-dist/doc/latex/toolbox/toolbox.pdf">toolbox.pdf</a>. </small></li> -<li id="tools"><b><a href="texmf-dist/doc/latex/tools">tools</a></b><small> -(<a href="https://ctan.org/pkg/tools">CTAN</a>): -The LaTeX standard tools bundle +<li id="tools"><b><a href="texmf-dist/doc/latex/tools/">tools</a></b><small> +The LaTeX standard tools bundle. <a href="texmf-dist/doc/latex/tools/afterpage.pdf">afterpage.pdf</a> <a href="texmf-dist/doc/latex/tools/array.pdf">array.pdf</a> <a href="texmf-dist/doc/latex/tools/bm.pdf">bm.pdf</a> @@ -22398,21 +22316,21 @@ The LaTeX standard tools bundle <a href="texmf-dist/doc/latex/tools/xspace.pdf">xspace.pdf</a>. </small></li> -<li id="topfloat"><b><a href="texmf-dist/doc/latex/topfloat">topfloat</a></b><small> +<li id="topfloat"><b><a href="texmf-dist/doc/latex/topfloat/">topfloat</a></b><small> (<a href="https://ctan.org/pkg/topfloat">CTAN</a>): -Move floats to the top of the page +Move floats to the top of the page. <a href="texmf-dist/doc/latex/topfloat/topfloat.pdf">topfloat.pdf</a> (it). </small></li> -<li id="topiclongtable"><b><a href="texmf-dist/doc/latex/topiclongtable">topiclongtable</a></b><small> +<li id="topiclongtable"><b><a href="texmf-dist/doc/latex/topiclongtable/">topiclongtable</a></b><small> (<a href="https://ctan.org/pkg/topiclongtable">CTAN</a>): -Extend longtable with cells that merge hierarchically +Extend longtable with cells that merge hierarchically. <a href="texmf-dist/doc/latex/topiclongtable/topiclongtable-doc.pdf">topiclongtable-doc.pdf</a>. </small></li> -<li id="topletter"><b><a href="texmf-dist/doc/latex/topletter">topletter</a></b><small> +<li id="topletter"><b><a href="texmf-dist/doc/latex/topletter/">topletter</a></b><small> (<a href="https://ctan.org/pkg/topletter">CTAN</a>): -Letter class for the Politecnico di Torino +Letter class for the Politecnico di Torino. <a href="texmf-dist/doc/latex/topletter/EsempioLettera.pdf">EsempioLettera.pdf</a> (it) <a href="texmf-dist/doc/latex/topletter/ExampleLetter.pdf">ExampleLetter.pdf</a> <a href="texmf-dist/doc/latex/topletter/LogoPolitoBlu.pdf">LogoPolitoBlu.pdf</a> @@ -22420,9 +22338,9 @@ Letter class for the Politecnico di Torino <a href="texmf-dist/doc/latex/topletter/Walt_Disney_1942_signature.pdf">Walt_Disney_1942_signature.pdf</a>. </small></li> -<li id="toptesi"><b><a href="texmf-dist/doc/latex/toptesi">toptesi</a></b><small> +<li id="toptesi"><b><a href="texmf-dist/doc/latex/toptesi/">toptesi</a></b><small> (<a href="https://ctan.org/pkg/toptesi">CTAN</a>): -Bundle for typesetting multilanguage theses +Bundle for typesetting multilanguage theses. <a href="texmf-dist/doc/latex/toptesi/FrontespiziAssemblati.pdf">FrontespiziAssemblati.pdf</a> <a href="texmf-dist/doc/latex/toptesi/FrontespiziAssemblati1.pdf">FrontespiziAssemblati1.pdf</a> <a href="texmf-dist/doc/latex/toptesi/FrontespiziAssemblati2.pdf">FrontespiziAssemblati2.pdf</a> @@ -22454,36 +22372,36 @@ Bundle for typesetting multilanguage theses <a href="texmf-dist/doc/latex/toptesi/veraPDFnoconformance.pdf">veraPDFnoconformance.pdf</a>. </small></li> -<li id="totcount"><b><a href="texmf-dist/doc/latex/totcount">totcount</a></b><small> +<li id="totcount"><b><a href="texmf-dist/doc/latex/totcount/">totcount</a></b><small> (<a href="https://ctan.org/pkg/totcount">CTAN</a>): -Find the last value of a counter +Find the last value of a counter. <a href="texmf-dist/doc/latex/totcount/totcount.pdf">totcount.pdf</a>. </small></li> -<li id="totpages"><b><a href="texmf-dist/doc/latex/totpages">totpages</a></b><small> +<li id="totpages"><b><a href="texmf-dist/doc/latex/totpages/">totpages</a></b><small> (<a href="https://ctan.org/pkg/totpages">CTAN</a>): -Count pages in a document, and report last page number +Count pages in a document, and report last page number. <a href="texmf-dist/doc/latex/totpages/totpages.pdf">totpages.pdf</a>. </small></li> -<li id="tpic2pdftex"><b><a href="texmf-dist/doc/man/man1">tpic2pdftex</a></b><small> +<li id="tpic2pdftex"><b><a href="texmf-dist/doc/tpic2pdftex/">tpic2pdftex</a></b><small> (<a href="https://ctan.org/pkg/tpic2pdftex">CTAN</a>): -Use tpic commands in pdfTeX +Use tpic commands in pdfTeX. <a href="texmf-dist/doc/man/man1/tpic2pdftex.man1.pdf">tpic2pdftex.man1.pdf</a> <a href="texmf-dist/doc/tpic2pdftex/beamerexample.pdf">beamerexample.pdf</a> <a href="texmf-dist/doc/tpic2pdftex/example.pdf">example.pdf</a>. </small></li> -<li id="tqft"><b><a href="texmf-dist/doc/latex/tqft">tqft</a></b><small> +<li id="tqft"><b><a href="texmf-dist/doc/latex/tqft/">tqft</a></b><small> (<a href="https://ctan.org/pkg/tqft">CTAN</a>): -Drawing TQFT diagrams with TikZ/PGF +Drawing TQFT diagrams with TikZ/PGF. <a href="texmf-dist/doc/latex/tqft/tqft.pdf">tqft.pdf</a> <a href="texmf-dist/doc/latex/tqft/tqft_code.pdf">tqft_code.pdf</a>. </small></li> -<li id="tracklang"><b><a href="texmf-dist/doc/generic/tracklang/samples/animals">tracklang</a></b><small> +<li id="tracklang"><b><a href="texmf-dist/doc/generic/tracklang/">tracklang</a></b><small> (<a href="https://ctan.org/pkg/tracklang">CTAN</a>): -Language and dialect tracker +Language and dialect tracker. <a href="texmf-dist/doc/generic/tracklang/samples/animals/sample-animals-babel.pdf">sample-animals-babel.pdf</a> <a href="texmf-dist/doc/generic/tracklang/samples/animals/sample-animals-de-poly.pdf">sample-animals-de-poly.pdf</a> <a href="texmf-dist/doc/generic/tracklang/samples/animals/sample-animals-de.pdf">sample-animals-de.pdf</a> @@ -22511,64 +22429,64 @@ Language and dialect tracker <a href="texmf-dist/doc/generic/tracklang/tracklang.pdf">tracklang.pdf</a>. </small></li> -<li id="trajan"><b><a href="texmf-dist/doc/latex/trajan">trajan</a></b><small> +<li id="trajan"><b><a href="texmf-dist/doc/latex/trajan/">trajan</a></b><small> (<a href="https://ctan.org/pkg/trajan">CTAN</a>): -Fonts from the Trajan column in Rome +Fonts from the Trajan column in Rome. <a href="texmf-dist/doc/latex/trajan/trajan.pdf">trajan.pdf</a> <a href="texmf-dist/doc/latex/trajan/trytrajan.pdf">trytrajan.pdf</a>. </small></li> -<li id="tram"><b><a href="texmf-dist/doc/latex/tram">tram</a></b><small> +<li id="tram"><b><a href="texmf-dist/doc/latex/tram/">tram</a></b><small> (<a href="https://ctan.org/pkg/tram">CTAN</a>): -Typeset tram boxes in LaTeX +Typeset tram boxes in LaTeX. <a href="texmf-dist/doc/latex/tram/tram-doc.pdf">tram-doc.pdf</a>. </small></li> -<li id="translation-array-fr"><b><a href="texmf-dist/doc/latex/translation-array-fr">translation-array-fr</a></b><small> +<li id="translation-array-fr"><b><a href="texmf-dist/doc/latex/translation-array-fr/">translation-array-fr</a></b><small> (<a href="https://ctan.org/pkg/translation-array-fr">CTAN</a>): -French translation of the documentation of array +French translation of the documentation of array. <a href="texmf-dist/doc/latex/translation-array-fr/f-array.pdf">f-array.pdf</a>. </small></li> -<li id="translation-arsclassica-de"><b><a href="texmf-dist/doc/latex/translation-arsclassica-de">translation-arsclassica-de</a></b><small> +<li id="translation-arsclassica-de"><b><a href="texmf-dist/doc/latex/translation-arsclassica-de/">translation-arsclassica-de</a></b><small> (<a href="https://ctan.org/pkg/translation-arsclassica-de">CTAN</a>): -German version of arsclassica +German version of arsclassica. <a href="texmf-dist/doc/latex/translation-arsclassica-de/ArsClassica-de.pdf">ArsClassica-de.pdf</a> (de). </small></li> -<li id="translation-biblatex-de"><b><a href="texmf-dist/doc/latex/translation-biblatex-de">translation-biblatex-de</a></b><small> +<li id="translation-biblatex-de"><b><a href="texmf-dist/doc/latex/translation-biblatex-de/">translation-biblatex-de</a></b><small> (<a href="https://ctan.org/pkg/translation-biblatex-de">CTAN</a>): -German translation of the User Guide of BibLaTeX +German translation of the User Guide of BibLaTeX. <a href="texmf-dist/doc/latex/translation-biblatex-de/biblatex-de-Benutzerhandbuch.pdf">biblatex-de-Benutzerhandbuch.pdf</a>. </small></li> -<li id="translation-chemsym-de"><b><a href="texmf-dist/doc/latex/translation-chemsym-de">translation-chemsym-de</a></b><small> +<li id="translation-chemsym-de"><b><a href="texmf-dist/doc/latex/translation-chemsym-de/">translation-chemsym-de</a></b><small> (<a href="https://ctan.org/pkg/translation-chemsym-de">CTAN</a>): -German version of chemsym +German version of chemsym. <a href="texmf-dist/doc/latex/translation-chemsym-de/chemsym-de.pdf">chemsym-de.pdf</a> (de). </small></li> -<li id="translation-dcolumn-fr"><b><a href="texmf-dist/doc/latex/translation-dcolumn-fr">translation-dcolumn-fr</a></b><small> +<li id="translation-dcolumn-fr"><b><a href="texmf-dist/doc/latex/translation-dcolumn-fr/">translation-dcolumn-fr</a></b><small> (<a href="https://ctan.org/pkg/translation-dcolumn-fr">CTAN</a>): -French translation of the documentation of dcolumn +French translation of the documentation of dcolumn. <a href="texmf-dist/doc/latex/translation-dcolumn-fr/f-dcolumn.pdf">f-dcolumn.pdf</a>. </small></li> -<li id="translation-ecv-de"><b><a href="texmf-dist/doc/latex/translation-ecv-de">translation-ecv-de</a></b><small> +<li id="translation-ecv-de"><b><a href="texmf-dist/doc/latex/translation-ecv-de/">translation-ecv-de</a></b><small> (<a href="https://ctan.org/pkg/translation-ecv-de">CTAN</a>): -Ecv documentation, in German +Ecv documentation, in German. <a href="texmf-dist/doc/latex/translation-ecv-de/ecvde.dtx.pdf">ecvde.dtx.pdf</a> (de). </small></li> -<li id="translation-enumitem-de"><b><a href="texmf-dist/doc/latex/translation-enumitem-de">translation-enumitem-de</a></b><small> +<li id="translation-enumitem-de"><b><a href="texmf-dist/doc/latex/translation-enumitem-de/">translation-enumitem-de</a></b><small> (<a href="https://ctan.org/pkg/translation-enumitem-de">CTAN</a>): -Enumitem documentation, in German +Enumitem documentation, in German. <a href="texmf-dist/doc/latex/translation-enumitem-de/enumitem-de.pdf">enumitem-de.pdf</a> (de). </small></li> -<li id="translation-europecv-de"><b><a href="texmf-dist/doc/latex/translation-europecv-de/Beispiele">translation-europecv-de</a></b><small> +<li id="translation-europecv-de"><b><a href="texmf-dist/doc/latex/translation-europecv-de/">translation-europecv-de</a></b><small> (<a href="https://ctan.org/pkg/translation-europecv-de">CTAN</a>): -German version of europecv +German version of europecv. <a href="texmf-dist/doc/latex/translation-europecv-de/Beispiele/at.pdf">at.pdf</a> <a href="texmf-dist/doc/latex/translation-europecv-de/Beispiele/greek-utf8.pdf">greek-utf8.pdf</a> <a href="texmf-dist/doc/latex/translation-europecv-de/Beispiele/minimal.pdf">minimal.pdf</a> @@ -22579,104 +22497,103 @@ German version of europecv <a href="texmf-dist/doc/latex/translation-europecv-de/templates/cv_template_pl.pdf">cv_template_pl.pdf</a>. </small></li> -<li id="translation-filecontents-de"><b><a href="texmf-dist/doc/latex/translation-filecontents-de">translation-filecontents-de</a></b><small> +<li id="translation-filecontents-de"><b><a href="texmf-dist/doc/latex/translation-filecontents-de/">translation-filecontents-de</a></b><small> (<a href="https://ctan.org/pkg/translation-filecontents-de">CTAN</a>): -German version of filecontents +German version of filecontents. <a href="texmf-dist/doc/latex/translation-filecontents-de/filecontents-de.pdf">filecontents-de.pdf</a> (de). </small></li> -<li id="translation-moreverb-de"><b><a href="texmf-dist/doc/latex/translation-moreverb-de">translation-moreverb-de</a></b><small> +<li id="translation-moreverb-de"><b><a href="texmf-dist/doc/latex/translation-moreverb-de/">translation-moreverb-de</a></b><small> (<a href="https://ctan.org/pkg/translation-moreverb-de">CTAN</a>): -German version of moreverb +German version of moreverb. <a href="texmf-dist/doc/latex/translation-moreverb-de/moreverb-de.dtx.pdf">moreverb-de.dtx.pdf</a> (de). </small></li> -<li id="translation-natbib-fr"><b><a href="texmf-dist/doc/latex/translation-natbib-fr">translation-natbib-fr</a></b><small> +<li id="translation-natbib-fr"><b><a href="texmf-dist/doc/latex/translation-natbib-fr/">translation-natbib-fr</a></b><small> (<a href="https://ctan.org/pkg/translation-natbib-fr">CTAN</a>): -French translation of the documentation of natbib +French translation of the documentation of natbib. <a href="texmf-dist/doc/latex/translation-natbib-fr/f-natbib.pdf">f-natbib.pdf</a>. </small></li> -<li id="translation-tabbing-fr"><b><a href="texmf-dist/doc/latex/translation-tabbing-fr">translation-tabbing-fr</a></b><small> +<li id="translation-tabbing-fr"><b><a href="texmf-dist/doc/latex/translation-tabbing-fr/">translation-tabbing-fr</a></b><small> (<a href="https://ctan.org/pkg/translation-tabbing-fr">CTAN</a>): -French translation of the documentation of Tabbing +French translation of the documentation of Tabbing. <a href="texmf-dist/doc/latex/translation-tabbing-fr/f-Tabbing.pdf">f-Tabbing.pdf</a> (fr). </small></li> -<li id="translations"><b><a href="texmf-dist/doc/latex/translations">translations</a></b><small> +<li id="translations"><b><a href="texmf-dist/doc/latex/translations/">translations</a></b><small> (<a href="https://ctan.org/pkg/translations">CTAN</a>): -Internationalisation of LaTeX2e packages +Internationalisation of LaTeX2e packages. <a href="texmf-dist/doc/latex/translations/translations_en.pdf">translations_en.pdf</a>. </small></li> -<li id="translator"><b><a href="texmf-dist/doc/latex/translator">translator</a></b><small> +<li id="translator"><b><a href="texmf-dist/doc/latex/translator/">translator</a></b><small> (<a href="https://ctan.org/pkg/translator">CTAN</a>): -Easy translation of strings in LaTeX +Easy translation of strings in LaTeX. <a href="texmf-dist/doc/latex/translator/translator.pdf">translator.pdf</a>. </small></li> -<li id="transparent"><b><a href="texmf-dist/doc/latex/transparent">transparent</a></b><small> +<li id="transparent"><b><a href="texmf-dist/doc/latex/transparent/">transparent</a></b><small> (<a href="https://ctan.org/pkg/transparent">CTAN</a>): -Using a color stack for transparency with pdfTeX +Using a color stack for transparency with pdfTeX. <a href="texmf-dist/doc/latex/transparent/transparent.pdf">transparent.pdf</a>. </small></li> -<li id="tree-dvips"><b><a href="texmf-dist/doc/latex/tree-dvips">tree-dvips</a></b><small> +<li id="tree-dvips"><b><a href="texmf-dist/doc/latex/tree-dvips/">tree-dvips</a></b><small> (<a href="https://ctan.org/pkg/tree-dvips">CTAN</a>): -Trees and other linguists' macros +Trees and other linguists' macros. <a href="texmf-dist/doc/latex/tree-dvips/lingmacros-manual.pdf">lingmacros-manual.pdf</a> <a href="texmf-dist/doc/latex/tree-dvips/tree-manual.pdf">tree-manual.pdf</a>. </small></li> -<li id="trfsigns"><b><a href="texmf-dist/doc/latex/trfsigns">trfsigns</a></b><small> +<li id="trfsigns"><b><a href="texmf-dist/doc/latex/trfsigns/">trfsigns</a></b><small> (<a href="https://ctan.org/pkg/trfsigns">CTAN</a>): -Typeset transform signs +Typeset transform signs. <a href="texmf-dist/doc/latex/trfsigns/trfsigns.pdf">trfsigns.pdf</a> (de). </small></li> -<li id="trimspaces"><b><a href="texmf-dist/doc/latex/trimspaces">trimspaces</a></b><small> +<li id="trimspaces"><b><a href="texmf-dist/doc/latex/trimspaces/">trimspaces</a></b><small> (<a href="https://ctan.org/pkg/trimspaces">CTAN</a>): -Trim spaces around an argument or within a macro +Trim spaces around an argument or within a macro. <a href="texmf-dist/doc/latex/trimspaces/trimspaces.pdf">trimspaces.pdf</a>. </small></li> -<li id="trivfloat"><b><a href="texmf-dist/doc/latex/trivfloat">trivfloat</a></b><small> +<li id="trivfloat"><b><a href="texmf-dist/doc/latex/trivfloat/">trivfloat</a></b><small> (<a href="https://ctan.org/pkg/trivfloat">CTAN</a>): -Quick float definitions in LaTeX +Quick float definitions in LaTeX. <a href="texmf-dist/doc/latex/trivfloat/trivfloat.pdf">trivfloat.pdf</a>. </small></li> -<li id="trsym"><b><a href="texmf-dist/doc/latex/trsym">trsym</a></b><small> +<li id="trsym"><b><a href="texmf-dist/doc/latex/trsym/">trsym</a></b><small> (<a href="https://ctan.org/pkg/trsym">CTAN</a>): -Symbols for transformations +Symbols for transformations. <a href="texmf-dist/doc/latex/trsym/trsym.pdf">trsym.pdf</a>. </small></li> -<li id="truncate"><b><a href="texmf-dist/doc/latex/truncate">truncate</a></b><small> +<li id="truncate"><b><a href="texmf-dist/doc/latex/truncate/">truncate</a></b><small> (<a href="https://ctan.org/pkg/truncate">CTAN</a>): -Truncate text to a specified width +Truncate text to a specified width. <a href="texmf-dist/doc/latex/truncate/truncate.pdf">truncate.pdf</a>. </small></li> -<li id="ttfutils"><b><a href="texmf-dist/doc/man/man1">ttfutils</a></b><small> -(<a href="https://ctan.org/pkg/ttfutils">CTAN</a>): -convert TrueType to TFM and PK fonts +<li id="ttfutils"><b><a href="texmf-dist/doc/man/man1/">ttfutils</a></b><small> +convert TrueType to TFM and PK fonts. <a href="texmf-dist/doc/man/man1/ttf2afm.man1.pdf">ttf2afm.man1.pdf</a> <a href="texmf-dist/doc/man/man1/ttf2pk.man1.pdf">ttf2pk.man1.pdf</a> <a href="texmf-dist/doc/man/man1/ttf2tfm.man1.pdf">ttf2tfm.man1.pdf</a> <a href="texmf-dist/doc/man/man1/ttfdump.man1.pdf">ttfdump.man1.pdf</a>. </small></li> -<li id="tucv"><b><a href="texmf-dist/doc/latex/tucv">tucv</a></b><small> +<li id="tucv"><b><a href="texmf-dist/doc/latex/tucv/">tucv</a></b><small> (<a href="https://ctan.org/pkg/tucv">CTAN</a>): -Support for typesetting a CV or resumee +Support for typesetting a CV or resumee. <a href="texmf-dist/doc/latex/tucv/tucv.pdf">tucv.pdf</a> <a href="texmf-dist/doc/latex/tucv/tucv_ex.pdf">tucv_ex.pdf</a>. </small></li> -<li id="tuda-ci"><b><a href="texmf-dist/doc/latex/tuda-ci">tuda-ci</a></b><small> +<li id="tuda-ci"><b><a href="texmf-dist/doc/latex/tuda-ci/">tuda-ci</a></b><small> (<a href="https://ctan.org/pkg/tuda-ci">CTAN</a>): -LaTeX templates of Technische Universitat Darmstadt +LaTeX templates of Technische Universitat Darmstadt. <a href="texmf-dist/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.pdf">DEMO-TUDaAnnouncement.pdf</a> <a href="texmf-dist/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf">DEMO-TUDaBeamer.pdf</a> (de) <a href="texmf-dist/doc/latex/tuda-ci/DEMO-TUDaExercise.pdf">DEMO-TUDaExercise.pdf</a> @@ -22690,9 +22607,9 @@ LaTeX templates of Technische Universitat Darmstadt <a href="texmf-dist/doc/latex/tuda-ci/DEMO-TUDaThesis.pdf">DEMO-TUDaThesis.pdf</a> (de). </small></li> -<li id="tudscr"><b><a href="texmf-dist/doc/latex/tudscr">tudscr</a></b><small> +<li id="tudscr"><b><a href="texmf-dist/doc/latex/tudscr/">tudscr</a></b><small> (<a href="https://ctan.org/pkg/tudscr">CTAN</a>): -Corporate Design of Technische Universitat Dresden +Corporate Design of Technische Universitat Dresden. <a href="texmf-dist/doc/latex/tudscr/tudscr.pdf">tudscr.pdf</a> (de) <a href="texmf-dist/doc/latex/tudscr/tudscr_print.pdf">tudscr_print.pdf</a> <a href="texmf-dist/doc/latex/tudscr/tudscrsource.pdf">tudscrsource.pdf</a> (de) @@ -22701,9 +22618,9 @@ Corporate Design of Technische Universitat Dresden <a href="texmf-dist/doc/latex/tudscr/tutorials/treatise.pdf">treatise.pdf</a>. </small></li> -<li id="tufte-latex"><b><a href="texmf-dist/doc/latex/tufte-latex/graphics">tufte-latex</a></b><small> +<li id="tufte-latex"><b><a href="texmf-dist/doc/latex/tufte-latex/">tufte-latex</a></b><small> (<a href="https://ctan.org/pkg/tufte-latex">CTAN</a>): -Document classes inspired by the work of Edward Tufte +Document classes inspired by the work of Edward Tufte. <a href="texmf-dist/doc/latex/tufte-latex/graphics/be-contents.pdf">be-contents.pdf</a> <a href="texmf-dist/doc/latex/tufte-latex/graphics/be-title.pdf">be-title.pdf</a> <a href="texmf-dist/doc/latex/tufte-latex/graphics/ei-contents.pdf">ei-contents.pdf</a> @@ -22719,142 +22636,140 @@ Document classes inspired by the work of Edward Tufte <a href="texmf-dist/doc/latex/tufte-latex/sample-handout.pdf">sample-handout.pdf</a>. </small></li> -<li id="tugboat"><b><a href="texmf-dist/doc/latex/tugboat">tugboat</a></b><small> +<li id="tugboat"><b><a href="texmf-dist/doc/latex/tugboat/">tugboat</a></b><small> (<a href="https://ctan.org/pkg/tugboat">CTAN</a>): -LaTeX macros for TUGboat articles +LaTeX macros for TUGboat articles. <a href="texmf-dist/doc/latex/tugboat/ltubguid.pdf">ltubguid.pdf</a> <a href="texmf-dist/doc/latex/tugboat/tugboat.pdf">tugboat.pdf</a>. </small></li> -<li id="tugboat-plain"><b><a href="texmf-dist/doc/plain/tugboat-plain">tugboat-plain</a></b><small> +<li id="tugboat-plain"><b><a href="texmf-dist/doc/plain/tugboat-plain/">tugboat-plain</a></b><small> (<a href="https://ctan.org/pkg/tugboat-plain">CTAN</a>): -Plain TeX macros for TUGboat +Plain TeX macros for TUGboat. <a href="texmf-dist/doc/plain/tugboat-plain/tubguide.pdf">tubguide.pdf</a>. </small></li> -<li id="tui"><b><a href="texmf-dist/doc/latex/tui">tui</a></b><small> +<li id="tui"><b><a href="texmf-dist/doc/latex/tui/">tui</a></b><small> (<a href="https://ctan.org/pkg/tui">CTAN</a>): -Thesis style for the University of the Andes, Colombia +Thesis style for the University of the Andes, Colombia. <a href="texmf-dist/doc/latex/tui/TUIdoc.pdf">TUIdoc.pdf</a> (es) <a href="texmf-dist/doc/latex/tui/example/imagen.pdf">imagen.pdf</a>. </small></li> -<li id="turabian-formatting"><b><a href="texmf-dist/doc/latex/turabian-formatting">turabian-formatting</a></b><small> +<li id="turabian-formatting"><b><a href="texmf-dist/doc/latex/turabian-formatting/">turabian-formatting</a></b><small> (<a href="https://ctan.org/pkg/turabian-formatting">CTAN</a>): -Formatting based on Turabian's Manual +Formatting based on Turabian's Manual. <a href="texmf-dist/doc/latex/turabian-formatting/turabian-formatting-doc.pdf">turabian-formatting-doc.pdf</a>. </small></li> -<li id="turkmen"><b><a href="texmf-dist/doc/latex/turkmen">turkmen</a></b><small> +<li id="turkmen"><b><a href="texmf-dist/doc/latex/turkmen/">turkmen</a></b><small> (<a href="https://ctan.org/pkg/turkmen">CTAN</a>): -Babel support for Turkmen +Babel support for Turkmen. <a href="texmf-dist/doc/latex/turkmen/turkmen.pdf">turkmen.pdf</a>. </small></li> -<li id="turnstile"><b><a href="texmf-dist/doc/latex/turnstile">turnstile</a></b><small> +<li id="turnstile"><b><a href="texmf-dist/doc/latex/turnstile/">turnstile</a></b><small> (<a href="https://ctan.org/pkg/turnstile">CTAN</a>): -Typeset the (logic) turnstile notation +Typeset the (logic) turnstile notation. <a href="texmf-dist/doc/latex/turnstile/turnstile-en.pdf">turnstile-en.pdf</a> <a href="texmf-dist/doc/latex/turnstile/turnstile-pt.pdf">turnstile-pt.pdf</a> (pt) <a href="texmf-dist/doc/latex/turnstile/turnstile_article.pdf">turnstile_article.pdf</a> <a href="texmf-dist/doc/latex/turnstile/turnstile_artigo.pdf">turnstile_artigo.pdf</a> (pt). </small></li> -<li id="turnthepage"><b><a href="texmf-dist/doc/latex/turnthepage">turnthepage</a></b><small> +<li id="turnthepage"><b><a href="texmf-dist/doc/latex/turnthepage/">turnthepage</a></b><small> (<a href="https://ctan.org/pkg/turnthepage">CTAN</a>): -Provide "turn page" instructions +Provide "turn page" instructions. <a href="texmf-dist/doc/latex/turnthepage/turnthepage.pdf">turnthepage.pdf</a>. </small></li> -<li id="twoinone"><b><a href="texmf-dist/doc/latex/twoinone">twoinone</a></b><small> +<li id="twoinone"><b><a href="texmf-dist/doc/latex/twoinone/">twoinone</a></b><small> (<a href="https://ctan.org/pkg/twoinone">CTAN</a>): -Print two pages on a single page +Print two pages on a single page. <a href="texmf-dist/doc/latex/twoinone/twoinone.pdf">twoinone.pdf</a>. </small></li> -<li id="twoup"><b><a href="texmf-dist/doc/latex/twoup">twoup</a></b><small> -(<a href="https://ctan.org/pkg/twoup">CTAN</a>): -Print two virtual pages on each physical page +<li id="twoup"><b><a href="texmf-dist/doc/latex/twoup/">twoup</a></b><small> +Print two virtual pages on each physical page. <a href="texmf-dist/doc/latex/twoup/twoup.pdf">twoup.pdf</a>. </small></li> -<li id="txfonts"><b><a href="texmf-dist/doc/fonts/txfonts">txfonts</a></b><small> +<li id="txfonts"><b><a href="texmf-dist/doc/fonts/txfonts/">txfonts</a></b><small> (<a href="https://ctan.org/pkg/txfonts">CTAN</a>): -Times-like fonts in support of mathematics +Times-like fonts in support of mathematics. <a href="texmf-dist/doc/fonts/txfonts/txfontsdoc.pdf">txfontsdoc.pdf</a> <a href="texmf-dist/doc/fonts/txfonts/txfontsdocA4.pdf">txfontsdocA4.pdf</a>. </small></li> -<li id="txfontsb"><b><a href="texmf-dist/doc/fonts/txfontsb">txfontsb</a></b><small> +<li id="txfontsb"><b><a href="texmf-dist/doc/fonts/txfontsb/">txfontsb</a></b><small> (<a href="https://ctan.org/pkg/txfontsb">CTAN</a>): -Extensions to txfonts, using GNU Freefont +Extensions to txfonts, using GNU Freefont. <a href="texmf-dist/doc/fonts/txfontsb/txfontsb.pdf">txfontsb.pdf</a>. </small></li> -<li id="txgreeks"><b><a href="texmf-dist/doc/latex/txgreeks">txgreeks</a></b><small> +<li id="txgreeks"><b><a href="texmf-dist/doc/latex/txgreeks/">txgreeks</a></b><small> (<a href="https://ctan.org/pkg/txgreeks">CTAN</a>): -Shape selection for TX fonts Greek letters +Shape selection for TX fonts Greek letters. <a href="texmf-dist/doc/latex/txgreeks/txgreeks.pdf">txgreeks.pdf</a>. </small></li> -<li id="txuprcal"><b><a href="texmf-dist/doc/fonts/txuprcal">txuprcal</a></b><small> +<li id="txuprcal"><b><a href="texmf-dist/doc/fonts/txuprcal/">txuprcal</a></b><small> (<a href="https://ctan.org/pkg/txuprcal">CTAN</a>): -Upright calligraphic font based on TX calligraphic +Upright calligraphic font based on TX calligraphic. <a href="texmf-dist/doc/fonts/txuprcal/txuprcal-doc.pdf">txuprcal-doc.pdf</a>. </small></li> -<li id="type1cm"><b><a href="texmf-dist/doc/latex/type1cm">type1cm</a></b><small> +<li id="type1cm"><b><a href="texmf-dist/doc/latex/type1cm/">type1cm</a></b><small> (<a href="https://ctan.org/pkg/type1cm">CTAN</a>): -Arbitrary size font selection in LaTeX +Arbitrary size font selection in LaTeX. <a href="texmf-dist/doc/latex/type1cm/type1cm-doc.pdf">type1cm-doc.pdf</a>. </small></li> -<li id="Type1fonts"><b><a href="texmf-dist/doc/fonts/Type1fonts">Type1fonts</a></b><small> -(<a href="https://ctan.org/pkg/Type1fonts">CTAN</a>): -Font installation guide +<li id="Type1fonts"><b><a href="texmf-dist/doc/fonts/Type1fonts/">Type1fonts</a></b><small> +Font installation guide. <a href="texmf-dist/doc/fonts/Type1fonts/fontinstallationguide.pdf">fontinstallationguide.pdf</a>. </small></li> -<li id="typed-checklist"><b><a href="texmf-dist/doc/latex/typed-checklist">typed-checklist</a></b><small> +<li id="typed-checklist"><b><a href="texmf-dist/doc/latex/typed-checklist/">typed-checklist</a></b><small> (<a href="https://ctan.org/pkg/typed-checklist">CTAN</a>): -Typesetting tasks, goals, milestones, artifacts, and more in LaTeX +Typesetting tasks, goals, milestones, artifacts, and more in LaTeX. <a href="texmf-dist/doc/latex/typed-checklist/typed-checklist.pdf">typed-checklist.pdf</a>. </small></li> -<li id="typeface"><b><a href="texmf-dist/doc/latex/typeface">typeface</a></b><small> +<li id="typeface"><b><a href="texmf-dist/doc/latex/typeface/">typeface</a></b><small> (<a href="https://ctan.org/pkg/typeface">CTAN</a>): -Select a balanced set of fonts +Select a balanced set of fonts. <a href="texmf-dist/doc/latex/typeface/typeface-all-rm.pdf">typeface-all-rm.pdf</a> <a href="texmf-dist/doc/latex/typeface/typeface.pdf">typeface.pdf</a>. </small></li> -<li id="typehtml"><b><a href="texmf-dist/doc/latex/typehtml">typehtml</a></b><small> +<li id="typehtml"><b><a href="texmf-dist/doc/latex/typehtml/">typehtml</a></b><small> (<a href="https://ctan.org/pkg/typehtml">CTAN</a>): -Typeset HTML directly from LaTeX +Typeset HTML directly from LaTeX. <a href="texmf-dist/doc/latex/typehtml/typehtml.pdf">typehtml.pdf</a>. </small></li> -<li id="typewriter"><b><a href="texmf-dist/doc/lualatex/typewriter">typewriter</a></b><small> +<li id="typewriter"><b><a href="texmf-dist/doc/lualatex/typewriter/">typewriter</a></b><small> (<a href="https://ctan.org/pkg/typewriter">CTAN</a>): -Typeset with a randomly variable monospace font +Typeset with a randomly variable monospace font. <a href="texmf-dist/doc/lualatex/typewriter/typewriter-guide.pdf">typewriter-guide.pdf</a>. </small></li> -<li id="typicons"><b><a href="texmf-dist/doc/fonts/typicons">typicons</a></b><small> +<li id="typicons"><b><a href="texmf-dist/doc/fonts/typicons/">typicons</a></b><small> (<a href="https://ctan.org/pkg/typicons">CTAN</a>): -Font containing a set of web-related icons +Font containing a set of web-related icons. <a href="texmf-dist/doc/fonts/typicons/typicons.pdf">typicons.pdf</a>. </small></li> -<li id="typoaid"><b><a href="texmf-dist/doc/latex/typoaid">typoaid</a></b><small> +<li id="typoaid"><b><a href="texmf-dist/doc/latex/typoaid/">typoaid</a></b><small> (<a href="https://ctan.org/pkg/typoaid">CTAN</a>): -Macros for font diagnostics +Macros for font diagnostics. <a href="texmf-dist/doc/latex/typoaid/typoaid.pdf">typoaid.pdf</a>. </small></li> -<li id="typogrid"><b><a href="texmf-dist/doc/latex/typogrid">typogrid</a></b><small> +<li id="typogrid"><b><a href="texmf-dist/doc/latex/typogrid/">typogrid</a></b><small> (<a href="https://ctan.org/pkg/typogrid">CTAN</a>): -Print a typographic grid +Print a typographic grid. <a href="texmf-dist/doc/latex/typogrid/typogrid.pdf">typogrid.pdf</a>. </small></li> @@ -22864,16 +22779,16 @@ Print a typographic grid <ol start="3009"> -<li id="uaclasses"><b><a href="texmf-dist/doc/latex/uaclasses">uaclasses</a></b><small> +<li id="uaclasses"><b><a href="texmf-dist/doc/latex/uaclasses/">uaclasses</a></b><small> (<a href="https://ctan.org/pkg/uaclasses">CTAN</a>): -University of Arizona thesis and dissertation format +University of Arizona thesis and dissertation format. <a href="texmf-dist/doc/latex/uaclasses/my-example.pdf">my-example.pdf</a> <a href="texmf-dist/doc/latex/uaclasses/ua-example.pdf">ua-example.pdf</a>. </small></li> -<li id="uantwerpendocs"><b><a href="texmf-dist/doc/latex/uantwerpendocs">uantwerpendocs</a></b><small> +<li id="uantwerpendocs"><b><a href="texmf-dist/doc/latex/uantwerpendocs/">uantwerpendocs</a></b><small> (<a href="https://ctan.org/pkg/uantwerpendocs">CTAN</a>): -Course texts, master theses, and exams in University of Antwerp style +Course texts, master theses, and exams in University of Antwerp style. <a href="texmf-dist/doc/latex/uantwerpendocs/uantwerpenbamathesis-example.pdf">uantwerpenbamathesis-example.pdf</a> <a href="texmf-dist/doc/latex/uantwerpendocs/uantwerpencoursetext-example.pdf">uantwerpencoursetext-example.pdf</a> <a href="texmf-dist/doc/latex/uantwerpendocs/uantwerpendocs.pdf">uantwerpendocs.pdf</a> @@ -22885,152 +22800,152 @@ Course texts, master theses, and exams in University of Antwerp style <a href="texmf-dist/doc/latex/uantwerpendocs/uantwerpenphdthesis-example2.pdf">uantwerpenphdthesis-example2.pdf</a>. </small></li> -<li id="uassign"><b><a href="texmf-dist/doc/latex/uassign">uassign</a></b><small> +<li id="uassign"><b><a href="texmf-dist/doc/latex/uassign/">uassign</a></b><small> (<a href="https://ctan.org/pkg/uassign">CTAN</a>): -Environments and options for typesetting university assignments +Environments and options for typesetting university assignments. <a href="texmf-dist/doc/latex/uassign/uassign.pdf">uassign.pdf</a>. </small></li> -<li id="ucalgmthesis"><b><a href="texmf-dist/doc/latex/ucalgmthesis">ucalgmthesis</a></b><small> +<li id="ucalgmthesis"><b><a href="texmf-dist/doc/latex/ucalgmthesis/">ucalgmthesis</a></b><small> (<a href="https://ctan.org/pkg/ucalgmthesis">CTAN</a>): -LaTeX thesis class for University of Calgary Faculty of Graduate Studies +LaTeX thesis class for University of Calgary Faculty of Graduate Studies. <a href="texmf-dist/doc/latex/ucalgmthesis/sample-thesis.pdf">sample-thesis.pdf</a>. </small></li> -<li id="ucbthesis"><b><a href="texmf-dist/doc/latex/ucbthesis">ucbthesis</a></b><small> +<li id="ucbthesis"><b><a href="texmf-dist/doc/latex/ucbthesis/">ucbthesis</a></b><small> (<a href="https://ctan.org/pkg/ucbthesis">CTAN</a>): -Thesis and dissertation class supporting UCB requirements +Thesis and dissertation class supporting UCB requirements. <a href="texmf-dist/doc/latex/ucbthesis/ucbthesis.pdf">ucbthesis.pdf</a>. </small></li> -<li id="ucdavisthesis"><b><a href="texmf-dist/doc/latex/ucdavisthesis/example">ucdavisthesis</a></b><small> +<li id="ucdavisthesis"><b><a href="texmf-dist/doc/latex/ucdavisthesis/">ucdavisthesis</a></b><small> (<a href="https://ctan.org/pkg/ucdavisthesis">CTAN</a>): -A thesis/dissertation class for University of California at Davis +A thesis/dissertation class for University of California at Davis. <a href="texmf-dist/doc/latex/ucdavisthesis/example/ucdavisthesis_example_figure.pdf">ucdavisthesis_example_figure.pdf</a> <a href="texmf-dist/doc/latex/ucdavisthesis/example/ucdavisthesis_example_main.pdf">ucdavisthesis_example_main.pdf</a> <a href="texmf-dist/doc/latex/ucdavisthesis/ucdavisthesis.pdf">ucdavisthesis.pdf</a>. </small></li> -<li id="ucharcat"><b><a href="texmf-dist/doc/latex/ucharcat">ucharcat</a></b><small> +<li id="ucharcat"><b><a href="texmf-dist/doc/latex/ucharcat/">ucharcat</a></b><small> (<a href="https://ctan.org/pkg/ucharcat">CTAN</a>): -Implementation of the (new in 2015) XeTeX \Ucharcat command in lua, for LuaTeX +Implementation of the (new in 2015) XeTeX \Ucharcat command in lua, for LuaTeX. <a href="texmf-dist/doc/latex/ucharcat/ucharcat.pdf">ucharcat.pdf</a>. </small></li> -<li id="ucharclasses"><b><a href="texmf-dist/doc/xelatex/ucharclasses">ucharclasses</a></b><small> +<li id="ucharclasses"><b><a href="texmf-dist/doc/xelatex/ucharclasses/">ucharclasses</a></b><small> (<a href="https://ctan.org/pkg/ucharclasses">CTAN</a>): -Font actions in XeTeX according to what is being processed +Font actions in XeTeX according to what is being processed. <a href="texmf-dist/doc/xelatex/ucharclasses/ucharclasses.pdf">ucharclasses.pdf</a>. </small></li> -<li id="ucs"><b><a href="texmf-dist/doc/latex/ucs">ucs</a></b><small> +<li id="ucs"><b><a href="texmf-dist/doc/latex/ucs/">ucs</a></b><small> (<a href="https://ctan.org/pkg/ucs">CTAN</a>): -Extended UTF-8 input encoding support for LaTeX +Extended UTF-8 input encoding support for LaTeX. <a href="texmf-dist/doc/latex/ucs/ucs.pdf">ucs.pdf</a>. </small></li> -<li id="ucsmonograph"><b><a href="texmf-dist/doc/latex/ucsmonograph">ucsmonograph</a></b><small> +<li id="ucsmonograph"><b><a href="texmf-dist/doc/latex/ucsmonograph/">ucsmonograph</a></b><small> (<a href="https://ctan.org/pkg/ucsmonograph">CTAN</a>): -Typesetting academic documents from the University of Caxias do Sul +Typesetting academic documents from the University of Caxias do Sul. <a href="texmf-dist/doc/latex/ucsmonograph/ucsmonograph.pdf">ucsmonograph.pdf</a> (pt-br). </small></li> -<li id="udesoftec"><b><a href="texmf-dist/doc/latex/udesoftec">udesoftec</a></b><small> +<li id="udesoftec"><b><a href="texmf-dist/doc/latex/udesoftec/">udesoftec</a></b><small> (<a href="https://ctan.org/pkg/udesoftec">CTAN</a>): -Thesis class for the University of Duisburg-Essen +Thesis class for the University of Duisburg-Essen. <a href="texmf-dist/doc/latex/udesoftec/udesoftec-doc.pdf">udesoftec-doc.pdf</a> (de). </small></li> -<li id="uebungsblatt"><b><a href="texmf-dist/doc/latex/uebungsblatt">uebungsblatt</a></b><small> +<li id="uebungsblatt"><b><a href="texmf-dist/doc/latex/uebungsblatt/">uebungsblatt</a></b><small> (<a href="https://ctan.org/pkg/uebungsblatt">CTAN</a>): -A LaTeX class for writing exercise sheets +A LaTeX class for writing exercise sheets. <a href="texmf-dist/doc/latex/uebungsblatt/uebungsblatt-doc.pdf">uebungsblatt-doc.pdf</a> (de). </small></li> -<li id="uestcthesis"><b><a href="texmf-dist/doc/latex/uestcthesis/doc">uestcthesis</a></b><small> +<li id="uestcthesis"><b><a href="texmf-dist/doc/latex/uestcthesis/">uestcthesis</a></b><small> (<a href="https://ctan.org/pkg/uestcthesis">CTAN</a>): -Thesis class for UESTC +Thesis class for UESTC. <a href="texmf-dist/doc/latex/uestcthesis/doc/uestcthesis-doc.pdf">uestcthesis-doc.pdf</a> (zh). </small></li> -<li id="uhhassignment"><b><a href="texmf-dist/doc/latex/uhhassignment">uhhassignment</a></b><small> +<li id="uhhassignment"><b><a href="texmf-dist/doc/latex/uhhassignment/">uhhassignment</a></b><small> (<a href="https://ctan.org/pkg/uhhassignment">CTAN</a>): -A document class for typesetting homework assignments +A document class for typesetting homework assignments. <a href="texmf-dist/doc/latex/uhhassignment/uhhassignment.pdf">uhhassignment.pdf</a>. </small></li> -<li id="uhrzeit"><b><a href="texmf-dist/doc/latex/uhrzeit">uhrzeit</a></b><small> +<li id="uhrzeit"><b><a href="texmf-dist/doc/latex/uhrzeit/">uhrzeit</a></b><small> (<a href="https://ctan.org/pkg/uhrzeit">CTAN</a>): -Time printing, in German +Time printing, in German. <a href="texmf-dist/doc/latex/uhrzeit/uhrzeit-doc.pdf">uhrzeit-doc.pdf</a>. </small></li> -<li id="uiucredborder"><b><a href="texmf-dist/doc/latex/uiucredborder">uiucredborder</a></b><small> +<li id="uiucredborder"><b><a href="texmf-dist/doc/latex/uiucredborder/">uiucredborder</a></b><small> (<a href="https://ctan.org/pkg/uiucredborder">CTAN</a>): -Class for UIUC thesis red-bordered forms +Class for UIUC thesis red-bordered forms. <a href="texmf-dist/doc/latex/uiucredborder/uiucredborder.pdf">uiucredborder.pdf</a>. </small></li> -<li id="uiucthesis"><b><a href="texmf-dist/doc/latex/uiucthesis">uiucthesis</a></b><small> +<li id="uiucthesis"><b><a href="texmf-dist/doc/latex/uiucthesis/">uiucthesis</a></b><small> (<a href="https://ctan.org/pkg/uiucthesis">CTAN</a>): -UIUC thesis class +UIUC thesis class. <a href="texmf-dist/doc/latex/uiucthesis/thesis-ex.pdf">thesis-ex.pdf</a> <a href="texmf-dist/doc/latex/uiucthesis/uiucthesis.pdf">uiucthesis.pdf</a>. </small></li> -<li id="ukrhyph"><b><a href="texmf-dist/doc/generic/ukrhyph">ukrhyph</a></b><small> +<li id="ukrhyph"><b><a href="texmf-dist/doc/generic/ukrhyph/">ukrhyph</a></b><small> (<a href="https://ctan.org/pkg/ukrhyph">CTAN</a>): -Hyphenation Patterns for Ukrainian +Hyphenation Patterns for Ukrainian. <a href="texmf-dist/doc/generic/ukrhyph/rules60.pdf">rules60.pdf</a> (uk) <a href="texmf-dist/doc/generic/ukrhyph/rules90.pdf">rules90.pdf</a> (uk) <a href="texmf-dist/doc/generic/ukrhyph/rules_ph.pdf">rules_ph.pdf</a> (uk). </small></li> -<li id="ulem"><b><a href="texmf-dist/doc/generic/ulem">ulem</a></b><small> +<li id="ulem"><b><a href="texmf-dist/doc/generic/ulem/">ulem</a></b><small> (<a href="https://ctan.org/pkg/ulem">CTAN</a>): -Package for underlining +Package for underlining. <a href="texmf-dist/doc/generic/ulem/ulem.pdf">ulem.pdf</a>. </small></li> -<li id="ulqda"><b><a href="texmf-dist/doc/latex/ulqda">ulqda</a></b><small> +<li id="ulqda"><b><a href="texmf-dist/doc/latex/ulqda/">ulqda</a></b><small> (<a href="https://ctan.org/pkg/ulqda">CTAN</a>): -Support of Qualitative Data Analysis +Support of Qualitative Data Analysis. <a href="texmf-dist/doc/latex/ulqda/ulqda.pdf">ulqda.pdf</a>. </small></li> -<li id="ulthese"><b><a href="texmf-dist/doc/latex/ulthese">ulthese</a></b><small> +<li id="ulthese"><b><a href="texmf-dist/doc/latex/ulthese/">ulthese</a></b><small> (<a href="https://ctan.org/pkg/ulthese">CTAN</a>): -Thesis class and templates for Universite Laval +Thesis class and templates for Universite Laval. <a href="texmf-dist/doc/latex/ulthese/ulthese.pdf">ulthese.pdf</a> (fr). </small></li> -<li id="uml"><b><a href="texmf-dist/doc/latex/uml">uml</a></b><small> +<li id="uml"><b><a href="texmf-dist/doc/latex/uml/">uml</a></b><small> (<a href="https://ctan.org/pkg/uml">CTAN</a>): -UML diagrams in LaTeX +UML diagrams in LaTeX. <a href="texmf-dist/doc/latex/uml/uml.pdf">uml.pdf</a>. </small></li> -<li id="umlaute"><b><a href="texmf-dist/doc/latex/umlaute">umlaute</a></b><small> +<li id="umlaute"><b><a href="texmf-dist/doc/latex/umlaute/">umlaute</a></b><small> (<a href="https://ctan.org/pkg/umlaute">CTAN</a>): -German input encodings in LaTeX +German input encodings in LaTeX. <a href="texmf-dist/doc/latex/umlaute/umlaute.pdf">umlaute.pdf</a>. </small></li> -<li id="umoline"><b><a href="texmf-dist/doc/latex/umoline">umoline</a></b><small> +<li id="umoline"><b><a href="texmf-dist/doc/latex/umoline/">umoline</a></b><small> (<a href="https://ctan.org/pkg/umoline">CTAN</a>): -Underline text allowing line breaking +Underline text allowing line breaking. <a href="texmf-dist/doc/latex/umoline/umoline.pdf">umoline.pdf</a>. </small></li> -<li id="umthesis"><b><a href="texmf-dist/doc/latex/umthesis">umthesis</a></b><small> +<li id="umthesis"><b><a href="texmf-dist/doc/latex/umthesis/">umthesis</a></b><small> (<a href="https://ctan.org/pkg/umthesis">CTAN</a>): -Dissertations at the University of Michigan +Dissertations at the University of Michigan. <a href="texmf-dist/doc/latex/umthesis/example.pdf">example.pdf</a>. </small></li> -<li id="unamth-template"><b><a href="texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos">unamth-template</a></b><small> +<li id="unamth-template"><b><a href="texmf-dist/doc/latex/unamth-template/">unamth-template</a></b><small> (<a href="https://ctan.org/pkg/unamth-template">CTAN</a>): -UNAM Thesis LaTeX Template +UNAM Thesis LaTeX Template. <a href="texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/fi_azul.pdf">fi_azul.pdf</a> <a href="texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/fi_negro.pdf">fi_negro.pdf</a> <a href="texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/unam_azul.pdf">unam_azul.pdf</a> @@ -23041,135 +22956,135 @@ UNAM Thesis LaTeX Template <a href="texmf-dist/doc/latex/unamth-template/tesis.pdf">tesis.pdf</a> (es). </small></li> -<li id="unamthesis"><b><a href="texmf-dist/doc/latex/unamthesis">unamthesis</a></b><small> +<li id="unamthesis"><b><a href="texmf-dist/doc/latex/unamthesis/">unamthesis</a></b><small> (<a href="https://ctan.org/pkg/unamthesis">CTAN</a>): -Style for Universidad Nacional Autonoma de Mexico theses +Style for Universidad Nacional Autonoma de Mexico theses. <a href="texmf-dist/doc/latex/unamthesis/Escudo-FC.pdf">Escudo-FC.pdf</a> <a href="texmf-dist/doc/latex/unamthesis/Escudo-IBT.pdf">Escudo-IBT.pdf</a> <a href="texmf-dist/doc/latex/unamthesis/Escudo-UNAM.pdf">Escudo-UNAM.pdf</a> <a href="texmf-dist/doc/latex/unamthesis/UNAMThesis.pdf">UNAMThesis.pdf</a>. </small></li> -<li id="undergradmath"><b><a href="texmf-dist/doc/latex/undergradmath">undergradmath</a></b><small> +<li id="undergradmath"><b><a href="texmf-dist/doc/latex/undergradmath/">undergradmath</a></b><small> (<a href="https://ctan.org/pkg/undergradmath">CTAN</a>): -LaTeX Math for Undergraduates cheat sheet +LaTeX Math for Undergraduates cheat sheet. <a href="texmf-dist/doc/latex/undergradmath/undergradmath.pdf">undergradmath.pdf</a>. </small></li> -<li id="underlin"><b><a href="texmf-dist/doc/latex/underlin">underlin</a></b><small> +<li id="underlin"><b><a href="texmf-dist/doc/latex/underlin/">underlin</a></b><small> (<a href="https://ctan.org/pkg/underlin">CTAN</a>): -Underlined running heads +Underlined running heads. <a href="texmf-dist/doc/latex/underlin/underlin.pdf">underlin.pdf</a>. </small></li> -<li id="underoverlap"><b><a href="texmf-dist/doc/latex/underoverlap">underoverlap</a></b><small> +<li id="underoverlap"><b><a href="texmf-dist/doc/latex/underoverlap/">underoverlap</a></b><small> (<a href="https://ctan.org/pkg/underoverlap">CTAN</a>): -Position decorations over and under expressions +Position decorations over and under expressions. <a href="texmf-dist/doc/latex/underoverlap/underoverlap.pdf">underoverlap.pdf</a>. </small></li> -<li id="underscore"><b><a href="texmf-dist/doc/latex/underscore">underscore</a></b><small> +<li id="underscore"><b><a href="texmf-dist/doc/latex/underscore/">underscore</a></b><small> (<a href="https://ctan.org/pkg/underscore">CTAN</a>): -Control the behaviour of "_" in text +Control the behaviour of "_" in text. <a href="texmf-dist/doc/latex/underscore/underscore.pdf">underscore.pdf</a>. </small></li> -<li id="undolabl"><b><a href="texmf-dist/doc/latex/undolabl">undolabl</a></b><small> +<li id="undolabl"><b><a href="texmf-dist/doc/latex/undolabl/">undolabl</a></b><small> (<a href="https://ctan.org/pkg/undolabl">CTAN</a>): -Override existing labels +Override existing labels. <a href="texmf-dist/doc/latex/undolabl/undolabl-example.pdf">undolabl-example.pdf</a> <a href="texmf-dist/doc/latex/undolabl/undolabl.pdf">undolabl.pdf</a>. </small></li> -<li id="uni-wtal-ger"><b><a href="texmf-dist/doc/latex/uni-wtal-ger">uni-wtal-ger</a></b><small> +<li id="uni-wtal-ger"><b><a href="texmf-dist/doc/latex/uni-wtal-ger/">uni-wtal-ger</a></b><small> (<a href="https://ctan.org/pkg/uni-wtal-ger">CTAN</a>): -Citation style for literary studies at the University of Wuppertal +Citation style for literary studies at the University of Wuppertal. <a href="texmf-dist/doc/latex/uni-wtal-ger/germanistik.pdf">germanistik.pdf</a> (de). </small></li> -<li id="uni-wtal-lin"><b><a href="texmf-dist/doc/latex/uni-wtal-lin">uni-wtal-lin</a></b><small> +<li id="uni-wtal-lin"><b><a href="texmf-dist/doc/latex/uni-wtal-lin/">uni-wtal-lin</a></b><small> (<a href="https://ctan.org/pkg/uni-wtal-lin">CTAN</a>): -Citation style for linguistic studies at the University of Wuppertal +Citation style for linguistic studies at the University of Wuppertal. <a href="texmf-dist/doc/latex/uni-wtal-lin/uni-wtal-lin.pdf">uni-wtal-lin.pdf</a> (de). </small></li> -<li id="unicode-alphabets"><b><a href="texmf-dist/doc/latex/unicode-alphabets">unicode-alphabets</a></b><small> +<li id="unicode-alphabets"><b><a href="texmf-dist/doc/latex/unicode-alphabets/">unicode-alphabets</a></b><small> (<a href="https://ctan.org/pkg/unicode-alphabets">CTAN</a>): -Macros for using characters from Unicode's Private Use Area +Macros for using characters from Unicode's Private Use Area. <a href="texmf-dist/doc/latex/unicode-alphabets/specimen.pdf">specimen.pdf</a> <a href="texmf-dist/doc/latex/unicode-alphabets/unicode-alphabets.pdf">unicode-alphabets.pdf</a>. </small></li> -<li id="unicode-math"><b><a href="texmf-dist/doc/latex/unicode-math">unicode-math</a></b><small> +<li id="unicode-math"><b><a href="texmf-dist/doc/latex/unicode-math/">unicode-math</a></b><small> (<a href="https://ctan.org/pkg/unicode-math">CTAN</a>): -Unicode mathematics support for XeTeX and LuaTeX +Unicode mathematics support for XeTeX and LuaTeX. <a href="texmf-dist/doc/latex/unicode-math/unicode-math-code.pdf">unicode-math-code.pdf</a> <a href="texmf-dist/doc/latex/unicode-math/unicode-math.pdf">unicode-math.pdf</a> <a href="texmf-dist/doc/latex/unicode-math/unimath-example.pdf">unimath-example.pdf</a> <a href="texmf-dist/doc/latex/unicode-math/unimath-symbols.pdf">unimath-symbols.pdf</a>. </small></li> -<li id="unifith"><b><a href="texmf-dist/doc/latex/unifith/examples">unifith</a></b><small> +<li id="unifith"><b><a href="texmf-dist/doc/latex/unifith/">unifith</a></b><small> (<a href="https://ctan.org/pkg/unifith">CTAN</a>): -Typeset theses for University of Florence (Italy) +Typeset theses for University of Florence (Italy). <a href="texmf-dist/doc/latex/unifith/examples/Dottorato.pdf">Dottorato.pdf</a> <a href="texmf-dist/doc/latex/unifith/examples/Laurea.pdf">Laurea.pdf</a> <a href="texmf-dist/doc/latex/unifith/unifith-doc.pdf">unifith-doc.pdf</a>. </small></li> -<li id="uniquecounter"><b><a href="texmf-dist/doc/latex/uniquecounter">uniquecounter</a></b><small> +<li id="uniquecounter"><b><a href="texmf-dist/doc/latex/uniquecounter/">uniquecounter</a></b><small> (<a href="https://ctan.org/pkg/uniquecounter">CTAN</a>): -Provides unlimited unique counter +Provides unlimited unique counter. <a href="texmf-dist/doc/latex/uniquecounter/uniquecounter.pdf">uniquecounter.pdf</a>. </small></li> -<li id="unisugar"><b><a href="texmf-dist/doc/xelatex/unisugar">unisugar</a></b><small> +<li id="unisugar"><b><a href="texmf-dist/doc/xelatex/unisugar/">unisugar</a></b><small> (<a href="https://ctan.org/pkg/unisugar">CTAN</a>): -Define syntactic sugar for Unicode LaTeX +Define syntactic sugar for Unicode LaTeX. <a href="texmf-dist/doc/xelatex/unisugar/unisugar.pdf">unisugar.pdf</a>. </small></li> -<li id="unitconv"><b><a href="texmf-dist/doc/lualatex/unitconv">unitconv</a></b><small> +<li id="unitconv"><b><a href="texmf-dist/doc/lualatex/unitconv/">unitconv</a></b><small> (<a href="https://ctan.org/pkg/unitconv">CTAN</a>): -Convert a length into one with another unit +Convert a length into one with another unit. <a href="texmf-dist/doc/lualatex/unitconv/unitconv-doc.pdf">unitconv-doc.pdf</a>. </small></li> -<li id="unitn-bimrep"><b><a href="texmf-dist/doc/latex/unitn-bimrep">unitn-bimrep</a></b><small> +<li id="unitn-bimrep"><b><a href="texmf-dist/doc/latex/unitn-bimrep/">unitn-bimrep</a></b><small> (<a href="https://ctan.org/pkg/unitn-bimrep">CTAN</a>): -A bimonthly report class for the PhD School of Materials, Mechatronics and System Engineering +A bimonthly report class for the PhD School of Materials, Mechatronics and System Engineering. <a href="texmf-dist/doc/latex/unitn-bimrep/README.pdf">README.pdf</a> <a href="texmf-dist/doc/latex/unitn-bimrep/examples/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/unitn-bimrep/examples/example_bib.pdf">example_bib.pdf</a>. </small></li> -<li id="units"><b><a href="texmf-dist/doc/latex/units">units</a></b><small> +<li id="units"><b><a href="texmf-dist/doc/latex/units/">units</a></b><small> (<a href="https://ctan.org/pkg/units">CTAN</a>): -Typeset units +Typeset units. <a href="texmf-dist/doc/latex/units/units.pdf">units.pdf</a>. </small></li> -<li id="unitsdef"><b><a href="texmf-dist/doc/latex/unitsdef">unitsdef</a></b><small> +<li id="unitsdef"><b><a href="texmf-dist/doc/latex/unitsdef/">unitsdef</a></b><small> (<a href="https://ctan.org/pkg/unitsdef">CTAN</a>): -Typesetting units in LaTeX +Typesetting units in LaTeX. <a href="texmf-dist/doc/latex/unitsdef/unitsdef.pdf">unitsdef.pdf</a>. </small></li> -<li id="universa"><b><a href="texmf-dist/doc/fonts/universa">universa</a></b><small> +<li id="universa"><b><a href="texmf-dist/doc/fonts/universa/">universa</a></b><small> (<a href="https://ctan.org/pkg/universa">CTAN</a>): -Herbert Bayer's 'universal' font +Herbert Bayer's 'universal' font. <a href="texmf-dist/doc/fonts/universa/universa.pdf">universa.pdf</a>. </small></li> -<li id="universalis"><b><a href="texmf-dist/doc/fonts/universalis">universalis</a></b><small> +<li id="universalis"><b><a href="texmf-dist/doc/fonts/universalis/">universalis</a></b><small> (<a href="https://ctan.org/pkg/universalis">CTAN</a>): -Universalis font, with support +Universalis font, with support. <a href="texmf-dist/doc/fonts/universalis/universalis-samples.pdf">universalis-samples.pdf</a>. </small></li> -<li id="univie-ling"><b><a href="texmf-dist/doc/latex/univie-ling/templates">univie-ling</a></b><small> +<li id="univie-ling"><b><a href="texmf-dist/doc/latex/univie-ling/">univie-ling</a></b><small> (<a href="https://ctan.org/pkg/univie-ling">CTAN</a>): -Papers, theses and research proposals in (Applied) Linguistics at Vienna University +Papers, theses and research proposals in (Applied) Linguistics at Vienna University. <a href="texmf-dist/doc/latex/univie-ling/templates/template-expose-deutsch.pdf">template-expose-deutsch.pdf</a> <a href="texmf-dist/doc/latex/univie-ling/templates/template-expose-english.pdf">template-expose-english.pdf</a> <a href="texmf-dist/doc/latex/univie-ling/templates/template-paper-deutsch.pdf">template-paper-deutsch.pdf</a> @@ -23183,55 +23098,55 @@ Papers, theses and research proposals in (Applied) Linguistics at Vienna Univers <a href="texmf-dist/doc/latex/univie-ling/univie-ling-wlg.pdf">univie-ling-wlg.pdf</a>. </small></li> -<li id="unizgklasa"><b><a href="texmf-dist/doc/latex/unizgklasa">unizgklasa</a></b><small> +<li id="unizgklasa"><b><a href="texmf-dist/doc/latex/unizgklasa/">unizgklasa</a></b><small> (<a href="https://ctan.org/pkg/unizgklasa">CTAN</a>): -A LaTeX class for theses at the Faculty Of Graphic Arts in Zagreb +A LaTeX class for theses at the Faculty Of Graphic Arts in Zagreb. <a href="texmf-dist/doc/latex/unizgklasa/example.pdf">example.pdf</a> (hr). </small></li> -<li id="unravel"><b><a href="texmf-dist/doc/latex/unravel">unravel</a></b><small> +<li id="unravel"><b><a href="texmf-dist/doc/latex/unravel/">unravel</a></b><small> (<a href="https://ctan.org/pkg/unravel">CTAN</a>): -Watching TeX digest tokens +Watching TeX digest tokens. <a href="texmf-dist/doc/latex/unravel/unravel.pdf">unravel.pdf</a>. </small></li> -<li id="unswcover"><b><a href="texmf-dist/doc/latex/unswcover">unswcover</a></b><small> +<li id="unswcover"><b><a href="texmf-dist/doc/latex/unswcover/">unswcover</a></b><small> (<a href="https://ctan.org/pkg/unswcover">CTAN</a>): -Typeset a dissertation cover page following UNSW guidelines +Typeset a dissertation cover page following UNSW guidelines. <a href="texmf-dist/doc/latex/unswcover/logo_unsw_short.pdf">logo_unsw_short.pdf</a> <a href="texmf-dist/doc/latex/unswcover/thesis.pdf">thesis.pdf</a>. </small></li> -<li id="uothesis"><b><a href="texmf-dist/doc/latex/uothesis">uothesis</a></b><small> +<li id="uothesis"><b><a href="texmf-dist/doc/latex/uothesis/">uothesis</a></b><small> (<a href="https://ctan.org/pkg/uothesis">CTAN</a>): -Class for dissertations and theses at the University of Oregon +Class for dissertations and theses at the University of Oregon. <a href="texmf-dist/doc/latex/uothesis/uothesis.pdf">uothesis.pdf</a>. </small></li> -<li id="uowthesis"><b><a href="texmf-dist/doc/latex/uowthesis">uowthesis</a></b><small> +<li id="uowthesis"><b><a href="texmf-dist/doc/latex/uowthesis/">uowthesis</a></b><small> (<a href="https://ctan.org/pkg/uowthesis">CTAN</a>): -Document class for dissertations at the University of Wollongong +Document class for dissertations at the University of Wollongong. <a href="texmf-dist/doc/latex/uowthesis/mythesis.pdf">mythesis.pdf</a>. </small></li> -<li id="uowthesistitlepage"><b><a href="texmf-dist/doc/latex/uowthesistitlepage">uowthesistitlepage</a></b><small> +<li id="uowthesistitlepage"><b><a href="texmf-dist/doc/latex/uowthesistitlepage/">uowthesistitlepage</a></b><small> (<a href="https://ctan.org/pkg/uowthesistitlepage">CTAN</a>): -Title page for dissertations at the University of Wollongong +Title page for dissertations at the University of Wollongong. <a href="texmf-dist/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.pdf">uowthesistitlepage_doc.pdf</a>. </small></li> -<li id="uplatex"><b><a href="texmf-dist/doc/man/man1">uplatex</a></b><small> +<li id="uplatex"><b><a href="texmf-dist/doc/uplatex/base/">uplatex</a></b><small> (<a href="https://ctan.org/pkg/uplatex">CTAN</a>): -pLaTeX2e and miscellaneous macros for upTeX +pLaTeX2e and miscellaneous macros for upTeX. <a href="texmf-dist/doc/man/man1/uplatex.man1.pdf">uplatex.man1.pdf</a> <a href="texmf-dist/doc/uplatex/base/uplatex-en.pdf">uplatex-en.pdf</a> <a href="texmf-dist/doc/uplatex/base/uplatex.pdf">uplatex.pdf</a> (ja) <a href="texmf-dist/doc/uplatex/base/upldoc.pdf">upldoc.pdf</a>. </small></li> -<li id="upmethodology"><b><a href="texmf-dist/doc/latex/upmethodology">upmethodology</a></b><small> +<li id="upmethodology"><b><a href="texmf-dist/doc/latex/upmethodology/">upmethodology</a></b><small> (<a href="https://ctan.org/pkg/upmethodology">CTAN</a>): -Writing specifications such as for UP-based methodologies +Writing specifications such as for UP-based methodologies. <a href="texmf-dist/doc/latex/upmethodology/figure_and_tex.pdf">figure_and_tex.pdf</a> <a href="texmf-dist/doc/latex/upmethodology/figure_and_tex.pdftex_t">figure_and_tex.pdftex_t</a> <a href="texmf-dist/doc/latex/upmethodology/upm_caution.pdf">upm_caution.pdf</a> @@ -23240,21 +23155,21 @@ Writing specifications such as for UP-based methodologies <a href="texmf-dist/doc/latex/upmethodology/upmethodology-doc.pdf">upmethodology-doc.pdf</a>. </small></li> -<li id="uppunctlm"><b><a href="texmf-dist/doc/fonts/uppunctlm">uppunctlm</a></b><small> +<li id="uppunctlm"><b><a href="texmf-dist/doc/fonts/uppunctlm/">uppunctlm</a></b><small> (<a href="https://ctan.org/pkg/uppunctlm">CTAN</a>): -Always keep upright shape for some punctuation marks and Arabic numerals +Always keep upright shape for some punctuation marks and Arabic numerals. <a href="texmf-dist/doc/fonts/uppunctlm/always_upright_punctuation_marks.pdf">always_upright_punctuation_marks.pdf</a>. </small></li> -<li id="upquote"><b><a href="texmf-dist/doc/latex/upquote">upquote</a></b><small> +<li id="upquote"><b><a href="texmf-dist/doc/latex/upquote/">upquote</a></b><small> (<a href="https://ctan.org/pkg/upquote">CTAN</a>): -Show "realistic" quotes in verbatim +Show "realistic" quotes in verbatim. <a href="texmf-dist/doc/latex/upquote/upquote.pdf">upquote.pdf</a>. </small></li> -<li id="uptex"><b><a href="texmf-dist/doc/man/man1">uptex</a></b><small> +<li id="uptex"><b><a href="texmf-dist/doc/man/man1/">uptex</a></b><small> (<a href="https://ctan.org/pkg/uptex">CTAN</a>): -Unicode version of pTeX +Unicode version of pTeX. <a href="texmf-dist/doc/man/man1/euptex.man1.pdf">euptex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/upmendex.man1.pdf">upmendex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/uppltotf.man1.pdf">uppltotf.man1.pdf</a> @@ -23262,78 +23177,78 @@ Unicode version of pTeX <a href="texmf-dist/doc/man/man1/uptftopl.man1.pdf">uptftopl.man1.pdf</a>. </small></li> -<li id="upzhkinsoku"><b><a href="texmf-dist/doc/generic/upzhkinsoku">upzhkinsoku</a></b><small> +<li id="upzhkinsoku"><b><a href="texmf-dist/doc/generic/upzhkinsoku/">upzhkinsoku</a></b><small> (<a href="https://ctan.org/pkg/upzhkinsoku">CTAN</a>): -Supplementary Chinese kinsoku for Unicode *pTeX +Supplementary Chinese kinsoku for Unicode *pTeX. <a href="texmf-dist/doc/generic/upzhkinsoku/upzhkinsoku-doc.pdf">upzhkinsoku-doc.pdf</a>. </small></li> -<li id="urcls"><b><a href="texmf-dist/doc/latex/urcls">urcls</a></b><small> +<li id="urcls"><b><a href="texmf-dist/doc/latex/urcls/">urcls</a></b><small> (<a href="https://ctan.org/pkg/urcls">CTAN</a>): -Beamer and scrlttr2 classes and styles for the University of Regensburg +Beamer and scrlttr2 classes and styles for the University of Regensburg. <a href="texmf-dist/doc/latex/urcls/URbeamer-DEMO.pdf">URbeamer-DEMO.pdf</a> <a href="texmf-dist/doc/latex/urcls/URletter-DEMO.pdf">URletter-DEMO.pdf</a> <a href="texmf-dist/doc/latex/urcls/URpagestyles-DEMO.pdf">URpagestyles-DEMO.pdf</a>. </small></li> -<li id="uri"><b><a href="texmf-dist/doc/latex/uri">uri</a></b><small> +<li id="uri"><b><a href="texmf-dist/doc/latex/uri/">uri</a></b><small> (<a href="https://ctan.org/pkg/uri">CTAN</a>): -Hyperlinks for a wide range of URIs +Hyperlinks for a wide range of URIs. <a href="texmf-dist/doc/latex/uri/uri-example.pdf">uri-example.pdf</a> <a href="texmf-dist/doc/latex/uri/uri.pdf">uri.pdf</a>. </small></li> -<li id="url"><b><a href="texmf-dist/doc/latex/url">url</a></b><small> +<li id="url"><b><a href="texmf-dist/doc/latex/url/">url</a></b><small> (<a href="https://ctan.org/pkg/url">CTAN</a>): -Verbatim with URL-sensitive line breaks +Verbatim with URL-sensitive line breaks. <a href="texmf-dist/doc/latex/url/url.pdf">url.pdf</a>. </small></li> -<li id="urlbst"><b><a href="texmf-dist/doc/bibtex/urlbst">urlbst</a></b><small> +<li id="urlbst"><b><a href="texmf-dist/doc/bibtex/urlbst/">urlbst</a></b><small> (<a href="https://ctan.org/pkg/urlbst">CTAN</a>): -Web support for BibTeX +Web support for BibTeX. <a href="texmf-dist/doc/bibtex/urlbst/urlbst.html">urlbst.html</a> <a href="texmf-dist/doc/bibtex/urlbst/urlbst.pdf">urlbst.pdf</a>. </small></li> -<li id="urwchancal"><b><a href="texmf-dist/doc/fonts/urwchancal">urwchancal</a></b><small> +<li id="urwchancal"><b><a href="texmf-dist/doc/fonts/urwchancal/">urwchancal</a></b><small> (<a href="https://ctan.org/pkg/urwchancal">CTAN</a>): -Use URW's clone of Zapf Chancery as a maths alphabet +Use URW's clone of Zapf Chancery as a maths alphabet. <a href="texmf-dist/doc/fonts/urwchancal/urwchancal-doc.pdf">urwchancal-doc.pdf</a>. </small></li> -<li id="usebib"><b><a href="texmf-dist/doc/latex/usebib">usebib</a></b><small> +<li id="usebib"><b><a href="texmf-dist/doc/latex/usebib/">usebib</a></b><small> (<a href="https://ctan.org/pkg/usebib">CTAN</a>): -A simple bibliography processor +A simple bibliography processor. <a href="texmf-dist/doc/latex/usebib/usebib.pdf">usebib.pdf</a>. </small></li> -<li id="ushort"><b><a href="texmf-dist/doc/latex/ushort">ushort</a></b><small> +<li id="ushort"><b><a href="texmf-dist/doc/latex/ushort/">ushort</a></b><small> (<a href="https://ctan.org/pkg/ushort">CTAN</a>): -Shorter (and longer) underlines and underbars +Shorter (and longer) underlines and underbars. <a href="texmf-dist/doc/latex/ushort/ushort.pdf">ushort.pdf</a>. </small></li> -<li id="uspace"><b><a href="texmf-dist/doc/latex/uspace">uspace</a></b><small> +<li id="uspace"><b><a href="texmf-dist/doc/latex/uspace/">uspace</a></b><small> (<a href="https://ctan.org/pkg/uspace">CTAN</a>): -Giving meaning to various Unicode space characters +Giving meaning to various Unicode space characters. <a href="texmf-dist/doc/latex/uspace/uspace-test-lualatex.pdf">uspace-test-lualatex.pdf</a> <a href="texmf-dist/doc/latex/uspace/uspace-test-pdflatex.pdf">uspace-test-pdflatex.pdf</a> <a href="texmf-dist/doc/latex/uspace/uspace-test-xelatex.pdf">uspace-test-xelatex.pdf</a> <a href="texmf-dist/doc/latex/uspace/uspace.pdf">uspace.pdf</a>. </small></li> -<li id="uspatent"><b><a href="texmf-dist/doc/latex/uspatent">uspatent</a></b><small> +<li id="uspatent"><b><a href="texmf-dist/doc/latex/uspatent/">uspatent</a></b><small> (<a href="https://ctan.org/pkg/uspatent">CTAN</a>): -U.S. Patent Application Tools for LaTeX and LyX +U.S. Patent Application Tools for LaTeX and LyX. <a href="texmf-dist/doc/latex/uspatent/PatentApplication.pdf">PatentApplication.pdf</a> <a href="texmf-dist/doc/latex/uspatent/PatentApplicationGuide.pdf">PatentApplicationGuide.pdf</a> <a href="texmf-dist/doc/latex/uspatent/VisioDrawing.pdf">VisioDrawing.pdf</a>. </small></li> -<li id="uwthesis"><b><a href="texmf-dist/doc/latex/uwthesis">uwthesis</a></b><small> +<li id="uwthesis"><b><a href="texmf-dist/doc/latex/uwthesis/">uwthesis</a></b><small> (<a href="https://ctan.org/pkg/uwthesis">CTAN</a>): -University of Washington thesis class +University of Washington thesis class. <a href="texmf-dist/doc/latex/uwthesis/uwthesis.pdf">uwthesis.pdf</a>. </small></li> @@ -23343,63 +23258,62 @@ University of Washington thesis class <ol start="3077"> -<li id="vancouver"><b><a href="texmf-dist/doc/bibtex/vancouver">vancouver</a></b><small> +<li id="vancouver"><b><a href="texmf-dist/doc/bibtex/vancouver/">vancouver</a></b><small> (<a href="https://ctan.org/pkg/vancouver">CTAN</a>): -Bibliographic style file for Biomedical Journals +Bibliographic style file for Biomedical Journals. <a href="texmf-dist/doc/bibtex/vancouver/vancouver.pdf">vancouver.pdf</a>. </small></li> -<li id="variablelm"><b><a href="texmf-dist/doc/fonts/variablelm">variablelm</a></b><small> +<li id="variablelm"><b><a href="texmf-dist/doc/fonts/variablelm/">variablelm</a></b><small> (<a href="https://ctan.org/pkg/variablelm">CTAN</a>): -Font definitions for the variable Latin Modern fonts +Font definitions for the variable Latin Modern fonts. <a href="texmf-dist/doc/fonts/variablelm/control_scaling_lm_fonts.pdf">control_scaling_lm_fonts.pdf</a>. </small></li> -<li id="variations"><b><a href="texmf-dist/doc/generic/variations">variations</a></b><small> +<li id="variations"><b><a href="texmf-dist/doc/generic/variations/">variations</a></b><small> (<a href="https://ctan.org/pkg/variations">CTAN</a>): -Typeset tables of variations of functions +Typeset tables of variations of functions. <a href="texmf-dist/doc/generic/variations/docvariations.pdf">docvariations.pdf</a> (fr). </small></li> -<li id="varindex"><b><a href="texmf-dist/doc/latex/varindex">varindex</a></b><small> +<li id="varindex"><b><a href="texmf-dist/doc/latex/varindex/">varindex</a></b><small> (<a href="https://ctan.org/pkg/varindex">CTAN</a>): -Luxury frontend to the \index command +Luxury frontend to the \index command. <a href="texmf-dist/doc/latex/varindex/varindex.pdf">varindex.pdf</a>. </small></li> -<li id="varsfromjobname"><b><a href="texmf-dist/doc/latex/varsfromjobname">varsfromjobname</a></b><small> +<li id="varsfromjobname"><b><a href="texmf-dist/doc/latex/varsfromjobname/">varsfromjobname</a></b><small> (<a href="https://ctan.org/pkg/varsfromjobname">CTAN</a>): -Extract variables from the name of the LaTeX file +Extract variables from the name of the LaTeX file. <a href="texmf-dist/doc/latex/varsfromjobname/varsfromjobname.pdf">varsfromjobname.pdf</a>. </small></li> -<li id="varwidth"><b><a href="texmf-dist/doc/latex/varwidth">varwidth</a></b><small> +<li id="varwidth"><b><a href="texmf-dist/doc/latex/varwidth/">varwidth</a></b><small> (<a href="https://ctan.org/pkg/varwidth">CTAN</a>): -A variable-width minipage +A variable-width minipage. <a href="texmf-dist/doc/latex/varwidth/varwidth-doc.pdf">varwidth-doc.pdf</a>. </small></li> -<li id="vaucanson-g"><b><a href="texmf-dist/doc/generic/vaucanson-g">vaucanson-g</a></b><small> +<li id="vaucanson-g"><b><a href="texmf-dist/doc/generic/vaucanson-g/">vaucanson-g</a></b><small> (<a href="https://ctan.org/pkg/vaucanson-g">CTAN</a>): -PSTricks macros for drawing automata +PSTricks macros for drawing automata. <a href="texmf-dist/doc/generic/vaucanson-g/VCManual.pdf">VCManual.pdf</a>. </small></li> -<li id="vcell"><b><a href="texmf-dist/doc/latex/vcell">vcell</a></b><small> +<li id="vcell"><b><a href="texmf-dist/doc/latex/vcell/">vcell</a></b><small> (<a href="https://ctan.org/pkg/vcell">CTAN</a>): -Vertical alignment of content inside table cells +Vertical alignment of content inside table cells. <a href="texmf-dist/doc/latex/vcell/vcell.pdf">vcell.pdf</a>. </small></li> -<li id="vdmlisting"><b><a href="texmf-dist/doc/latex/vdmlisting">vdmlisting</a></b><small> +<li id="vdmlisting"><b><a href="texmf-dist/doc/latex/vdmlisting/">vdmlisting</a></b><small> (<a href="https://ctan.org/pkg/vdmlisting">CTAN</a>): -Typesetting VDM in ASCII syntax +Typesetting VDM in ASCII syntax. <a href="texmf-dist/doc/latex/vdmlisting/vdmlisting.pdf">vdmlisting.pdf</a>. </small></li> -<li id="velthuis"><b><a href="texmf-dist/doc/generic/velthuis">velthuis</a></b><small> -(<a href="https://ctan.org/pkg/velthuis">CTAN</a>): -Typeset Devanagari +<li id="velthuis"><b><a href="texmf-dist/doc/generic/velthuis/">velthuis</a></b><small> +Typeset Devanagari. <a href="texmf-dist/doc/generic/velthuis/examples.pdf">examples.pdf</a> <a href="texmf-dist/doc/generic/velthuis/hindi.pdf">hindi.pdf</a> <a href="texmf-dist/doc/generic/velthuis/manual.pdf">manual.pdf</a> @@ -23410,52 +23324,52 @@ Typeset Devanagari <a href="texmf-dist/doc/man/man1/devnag.man1.pdf">devnag.man1.pdf</a>. </small></li> -<li id="venndiagram"><b><a href="texmf-dist/doc/latex/venndiagram/samples">venndiagram</a></b><small> +<li id="venndiagram"><b><a href="texmf-dist/doc/latex/venndiagram/">venndiagram</a></b><small> (<a href="https://ctan.org/pkg/venndiagram">CTAN</a>): -Creating Venn diagrams with TikZ +Creating Venn diagrams with TikZ. <a href="texmf-dist/doc/latex/venndiagram/samples/venn-sample.pdf">venn-sample.pdf</a> <a href="texmf-dist/doc/latex/venndiagram/venndiagram.pdf">venndiagram.pdf</a>. </small></li> -<li id="venturisadf"><b><a href="texmf-dist/doc/fonts/venturisadf">venturisadf</a></b><small> +<li id="venturisadf"><b><a href="texmf-dist/doc/fonts/venturisadf/">venturisadf</a></b><small> (<a href="https://ctan.org/pkg/venturisadf">CTAN</a>): -Venturis ADF fonts collection +Venturis ADF fonts collection. <a href="texmf-dist/doc/fonts/venturisadf/venturisadf.pdf">venturisadf.pdf</a>. </small></li> -<li id="verbasef"><b><a href="texmf-dist/doc/latex/verbasef">verbasef</a></b><small> +<li id="verbasef"><b><a href="texmf-dist/doc/latex/verbasef/">verbasef</a></b><small> (<a href="https://ctan.org/pkg/verbasef">CTAN</a>): -VERBatim Automatic Splitting of External Files +VERBatim Automatic Splitting of External Files. <a href="texmf-dist/doc/latex/verbasef/verbasef-doc.pdf">verbasef-doc.pdf</a>. </small></li> -<li id="verbatimbox"><b><a href="texmf-dist/doc/latex/verbatimbox">verbatimbox</a></b><small> +<li id="verbatimbox"><b><a href="texmf-dist/doc/latex/verbatimbox/">verbatimbox</a></b><small> (<a href="https://ctan.org/pkg/verbatimbox">CTAN</a>): -Deposit verbatim text in a box +Deposit verbatim text in a box. <a href="texmf-dist/doc/latex/verbatimbox/verbatimbox.pdf">verbatimbox.pdf</a>. </small></li> -<li id="verbatimcopy"><b><a href="texmf-dist/doc/latex/verbatimcopy">verbatimcopy</a></b><small> +<li id="verbatimcopy"><b><a href="texmf-dist/doc/latex/verbatimcopy/">verbatimcopy</a></b><small> (<a href="https://ctan.org/pkg/verbatimcopy">CTAN</a>): -Make copies of text documents from within LaTeX +Make copies of text documents from within LaTeX. <a href="texmf-dist/doc/latex/verbatimcopy/verbatimcopy.pdf">verbatimcopy.pdf</a>. </small></li> -<li id="verbdef"><b><a href="texmf-dist/doc/latex/verbdef">verbdef</a></b><small> +<li id="verbdef"><b><a href="texmf-dist/doc/latex/verbdef/">verbdef</a></b><small> (<a href="https://ctan.org/pkg/verbdef">CTAN</a>): -Define commands which expand to verbatim text +Define commands which expand to verbatim text. <a href="texmf-dist/doc/latex/verbdef/verbdef.pdf">verbdef.pdf</a>. </small></li> -<li id="verbments"><b><a href="texmf-dist/doc/latex/verbments">verbments</a></b><small> +<li id="verbments"><b><a href="texmf-dist/doc/latex/verbments/">verbments</a></b><small> (<a href="https://ctan.org/pkg/verbments">CTAN</a>): -Syntax highlighting of source code in LaTeX documents +Syntax highlighting of source code in LaTeX documents. <a href="texmf-dist/doc/latex/verbments/verbments.pdf">verbments.pdf</a>. </small></li> -<li id="verifica"><b><a href="texmf-dist/doc/latex/verifica">verifica</a></b><small> +<li id="verifica"><b><a href="texmf-dist/doc/latex/verifica/">verifica</a></b><small> (<a href="https://ctan.org/pkg/verifica">CTAN</a>): -Typeset (Italian high school) exercises +Typeset (Italian high school) exercises. <a href="texmf-dist/doc/latex/verifica/example1.pdf">example1.pdf</a> (it) <a href="texmf-dist/doc/latex/verifica/example2.pdf">example2.pdf</a> <a href="texmf-dist/doc/latex/verifica/example3.pdf">example3.pdf</a> @@ -23464,54 +23378,54 @@ Typeset (Italian high school) exercises <a href="texmf-dist/doc/latex/verifica/verifica.pdf">verifica.pdf</a> (it). </small></li> -<li id="verse"><b><a href="texmf-dist/doc/latex/verse">verse</a></b><small> +<li id="verse"><b><a href="texmf-dist/doc/latex/verse/">verse</a></b><small> (<a href="https://ctan.org/pkg/verse">CTAN</a>): -Aids for typesetting simple verse +Aids for typesetting simple verse. <a href="texmf-dist/doc/latex/verse/verse.pdf">verse.pdf</a>. </small></li> -<li id="version"><b><a href="texmf-dist/doc/latex/version">version</a></b><small> +<li id="version"><b><a href="texmf-dist/doc/latex/version/">version</a></b><small> (<a href="https://ctan.org/pkg/version">CTAN</a>): -Conditionally include text +Conditionally include text. <a href="texmf-dist/doc/latex/version/version-doc.pdf">version-doc.pdf</a>. </small></li> -<li id="versions"><b><a href="texmf-dist/doc/latex/versions">versions</a></b><small> +<li id="versions"><b><a href="texmf-dist/doc/latex/versions/">versions</a></b><small> (<a href="https://ctan.org/pkg/versions">CTAN</a>): -Optionally omit pieces of text +Optionally omit pieces of text. <a href="texmf-dist/doc/latex/versions/versions-doc.pdf">versions-doc.pdf</a>. </small></li> -<li id="versonotes"><b><a href="texmf-dist/doc/latex/versonotes">versonotes</a></b><small> +<li id="versonotes"><b><a href="texmf-dist/doc/latex/versonotes/">versonotes</a></b><small> (<a href="https://ctan.org/pkg/versonotes">CTAN</a>): -Display brief notes on verso pages +Display brief notes on verso pages. <a href="texmf-dist/doc/latex/versonotes/sample.pdf">sample.pdf</a> <a href="texmf-dist/doc/latex/versonotes/versonotes.pdf">versonotes.pdf</a>. </small></li> -<li id="vertbars"><b><a href="texmf-dist/doc/latex/vertbars">vertbars</a></b><small> +<li id="vertbars"><b><a href="texmf-dist/doc/latex/vertbars/">vertbars</a></b><small> (<a href="https://ctan.org/pkg/vertbars">CTAN</a>): -Mark vertical rules in margin of text +Mark vertical rules in margin of text. <a href="texmf-dist/doc/latex/vertbars/vertbars.pdf">vertbars.pdf</a>. </small></li> -<li id="vgrid"><b><a href="texmf-dist/doc/latex/vgrid">vgrid</a></b><small> +<li id="vgrid"><b><a href="texmf-dist/doc/latex/vgrid/">vgrid</a></b><small> (<a href="https://ctan.org/pkg/vgrid">CTAN</a>): -Overlay a grid on the printed page +Overlay a grid on the printed page. <a href="texmf-dist/doc/latex/vgrid/vgrid.pdf">vgrid.pdf</a>. </small></li> -<li id="vhistory"><b><a href="texmf-dist/doc/latex/vhistory">vhistory</a></b><small> +<li id="vhistory"><b><a href="texmf-dist/doc/latex/vhistory/">vhistory</a></b><small> (<a href="https://ctan.org/pkg/vhistory">CTAN</a>): -Support for creating a change log +Support for creating a change log. <a href="texmf-dist/doc/latex/vhistory/vh_set_example.pdf">vh_set_example.pdf</a> <a href="texmf-dist/doc/latex/vhistory/vh_sets_de.pdf">vh_sets_de.pdf</a> <a href="texmf-dist/doc/latex/vhistory/vh_sets_en.pdf">vh_sets_en.pdf</a>. </small></li> -<li id="visualfaq"><b><a href="texmf-dist/doc/latex/visualfaq/source">visualfaq</a></b><small> +<li id="visualfaq"><b><a href="texmf-dist/doc/latex/visualfaq/">visualfaq</a></b><small> (<a href="https://ctan.org/pkg/visualfaq">CTAN</a>): -A Visual LaTeX FAQ +A Visual LaTeX FAQ. <a href="texmf-dist/doc/latex/visualfaq/source/anotherarticle.pdf">anotherarticle.pdf</a> <a href="texmf-dist/doc/latex/visualfaq/source/fuzzytext.pdf">fuzzytext.pdf</a> <a href="texmf-dist/doc/latex/visualfaq/source/labelgraph.pdf">labelgraph.pdf</a> @@ -23520,37 +23434,36 @@ A Visual LaTeX FAQ <a href="texmf-dist/doc/latex/visualfaq/visualFAQ.pdf">visualFAQ.pdf</a>. </small></li> -<li id="visualpstricks"><b><a href="texmf-dist/doc/latex/visualpstricks/Source">visualpstricks</a></b><small> +<li id="visualpstricks"><b><a href="texmf-dist/doc/latex/visualpstricks/">visualpstricks</a></b><small> (<a href="https://ctan.org/pkg/visualpstricks">CTAN</a>): -Visual help for PSTricks based on images with minimum text +Visual help for PSTricks based on images with minimum text. <a href="texmf-dist/doc/latex/visualpstricks/Source/logoiut-eps-converted-to.pdf">logoiut-eps-converted-to.pdf</a> <a href="texmf-dist/doc/latex/visualpstricks/VisualPSTricks.pdf">VisualPSTricks.pdf</a> <a href="texmf-dist/doc/latex/visualpstricks/VisuelPSTricks.pdf">VisuelPSTricks.pdf</a> (fr). </small></li> -<li id="visualtikz"><b><a href="texmf-dist/doc/latex/visualtikz">visualtikz</a></b><small> +<li id="visualtikz"><b><a href="texmf-dist/doc/latex/visualtikz/">visualtikz</a></b><small> (<a href="https://ctan.org/pkg/visualtikz">CTAN</a>): -Visual help for TikZ based on images with minimum text +Visual help for TikZ based on images with minimum text. <a href="texmf-dist/doc/latex/visualtikz/VisualTikZ-fr.pdf">VisualTikZ-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/visualtikz/VisualTikZ.pdf">VisualTikZ.pdf</a>. </small></li> -<li id="vlna"><b><a href="texmf-dist/doc/man/man1">vlna</a></b><small> -(<a href="https://ctan.org/pkg/vlna">CTAN</a>): -add ~ after non-syllabic preposition, for Czech/Slovak +<li id="vlna"><b><a href="texmf-dist/doc/vlna/">vlna</a></b><small> +add ~ after non-syllabic preposition, for Czech/Slovak. <a href="texmf-dist/doc/man/man1/vlna.man1.pdf">vlna.man1.pdf</a> <a href="texmf-dist/doc/vlna/vlna.pdf">vlna.pdf</a>. </small></li> -<li id="vmargin"><b><a href="texmf-dist/doc/latex/vmargin">vmargin</a></b><small> +<li id="vmargin"><b><a href="texmf-dist/doc/latex/vmargin/">vmargin</a></b><small> (<a href="https://ctan.org/pkg/vmargin">CTAN</a>): -Set various page dimensions +Set various page dimensions. <a href="texmf-dist/doc/latex/vmargin/vmargin.pdf">vmargin.pdf</a>. </small></li> -<li id="vntex"><b><a href="texmf-dist/doc/generic/vntex">vntex</a></b><small> +<li id="vntex"><b><a href="texmf-dist/doc/generic/vntex/">vntex</a></b><small> (<a href="https://ctan.org/pkg/vntex">CTAN</a>): -Support for Vietnamese +Support for Vietnamese. <a href="texmf-dist/doc/generic/vntex/ReleaseNotes.pdf">ReleaseNotes.pdf</a> <a href="texmf-dist/doc/generic/vntex/vn-fonts-print.pdf">vn-fonts-print.pdf</a> <a href="texmf-dist/doc/generic/vntex/vn-fonts.pdf">vn-fonts.pdf</a> @@ -23562,39 +23475,39 @@ Support for Vietnamese <a href="texmf-dist/doc/generic/vntex/vntex.pdf">vntex.pdf</a>. </small></li> -<li id="vocaltract"><b><a href="texmf-dist/doc/latex/vocaltract">vocaltract</a></b><small> +<li id="vocaltract"><b><a href="texmf-dist/doc/latex/vocaltract/">vocaltract</a></b><small> (<a href="https://ctan.org/pkg/vocaltract">CTAN</a>): -Visualise the vocal tract using LaTeX and PSTricks +Visualise the vocal tract using LaTeX and PSTricks. <a href="texmf-dist/doc/latex/vocaltract/vtLatex_FigureDemo.pdf">vtLatex_FigureDemo.pdf</a>. </small></li> -<li id="volumes"><b><a href="texmf-dist/doc/latex/volumes">volumes</a></b><small> +<li id="volumes"><b><a href="texmf-dist/doc/latex/volumes/">volumes</a></b><small> (<a href="https://ctan.org/pkg/volumes">CTAN</a>): -Typeset only parts of a document, with complete indexes etc +Typeset only parts of a document, with complete indexes etc. <a href="texmf-dist/doc/latex/volumes/volumes.pdf">volumes.pdf</a>. </small></li> -<li id="voss-mathcol"><b><a href="texmf-dist/doc/latex/voss-mathcol">voss-mathcol</a></b><small> +<li id="voss-mathcol"><b><a href="texmf-dist/doc/latex/voss-mathcol/">voss-mathcol</a></b><small> (<a href="https://ctan.org/pkg/voss-mathcol">CTAN</a>): -Typesetting mathematics in colour, in (La)TeX +Typesetting mathematics in colour, in (La)TeX. <a href="texmf-dist/doc/latex/voss-mathcol/mathCol.pdf">mathCol.pdf</a>. </small></li> -<li id="vruler"><b><a href="texmf-dist/doc/latex/vruler">vruler</a></b><small> +<li id="vruler"><b><a href="texmf-dist/doc/latex/vruler/">vruler</a></b><small> (<a href="https://ctan.org/pkg/vruler">CTAN</a>): -Numbering text +Numbering text. <a href="texmf-dist/doc/latex/vruler/vruler.pdf">vruler.pdf</a>. </small></li> -<li id="vtable"><b><a href="texmf-dist/doc/latex/vtable">vtable</a></b><small> +<li id="vtable"><b><a href="texmf-dist/doc/latex/vtable/">vtable</a></b><small> (<a href="https://ctan.org/pkg/vtable">CTAN</a>): -Vertical alignement of table cells +Vertical alignement of table cells. <a href="texmf-dist/doc/latex/vtable/vtable.pdf">vtable.pdf</a>. </small></li> -<li id="vwcol"><b><a href="texmf-dist/doc/latex/vwcol">vwcol</a></b><small> +<li id="vwcol"><b><a href="texmf-dist/doc/latex/vwcol/">vwcol</a></b><small> (<a href="https://ctan.org/pkg/vwcol">CTAN</a>): -Variable-width multiple text columns +Variable-width multiple text columns. <a href="texmf-dist/doc/latex/vwcol/vwcol.pdf">vwcol.pdf</a>. </small></li> @@ -23604,15 +23517,15 @@ Variable-width multiple text columns <ol start="3114"> -<li id="wadalab"><b><a href="texmf-dist/doc/fonts/wadalab">wadalab</a></b><small> +<li id="wadalab"><b><a href="texmf-dist/doc/fonts/wadalab/">wadalab</a></b><small> (<a href="https://ctan.org/pkg/wadalab">CTAN</a>): -Wadalab (Japanese) font packages +Wadalab (Japanese) font packages. <a href="texmf-dist/doc/fonts/wadalab/wadalab-sampler.pdf">wadalab-sampler.pdf</a>. </small></li> -<li id="wallcalendar"><b><a href="texmf-dist/doc/lualatex/wallcalendar/doc/examples/cal-burst">wallcalendar</a></b><small> +<li id="wallcalendar"><b><a href="texmf-dist/doc/lualatex/wallcalendar/">wallcalendar</a></b><small> (<a href="https://ctan.org/pkg/wallcalendar">CTAN</a>): -A wall calendar class with custom layouts +A wall calendar class with custom layouts. <a href="texmf-dist/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-01.pdf">cal-plain-01.pdf</a> <a href="texmf-dist/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-02.pdf">cal-plain-02.pdf</a> <a href="texmf-dist/doc/lualatex/wallcalendar/doc/examples/cal-burst/cal-plain-03.pdf">cal-plain-03.pdf</a> @@ -23639,95 +23552,94 @@ A wall calendar class with custom layouts <a href="texmf-dist/doc/lualatex/wallcalendar/wallcalendar.pdf">wallcalendar.pdf</a>. </small></li> -<li id="wallpaper"><b><a href="texmf-dist/doc/latex/wallpaper">wallpaper</a></b><small> +<li id="wallpaper"><b><a href="texmf-dist/doc/latex/wallpaper/">wallpaper</a></b><small> (<a href="https://ctan.org/pkg/wallpaper">CTAN</a>): -Easy addition of wallpapers (background images) to LaTeX documents, including tiling +Easy addition of wallpapers (background images) to LaTeX documents, including tiling. <a href="texmf-dist/doc/latex/wallpaper/wallpapermanual.pdf">wallpapermanual.pdf</a>. </small></li> -<li id="warning"><b><a href="texmf-dist/doc/latex/warning">warning</a></b><small> +<li id="warning"><b><a href="texmf-dist/doc/latex/warning/">warning</a></b><small> (<a href="https://ctan.org/pkg/warning">CTAN</a>): -Global warnings at the end of the logfile +Global warnings at the end of the logfile. <a href="texmf-dist/doc/latex/warning/warning-doc.pdf">warning-doc.pdf</a>. </small></li> -<li id="warpcol"><b><a href="texmf-dist/doc/latex/warpcol">warpcol</a></b><small> +<li id="warpcol"><b><a href="texmf-dist/doc/latex/warpcol/">warpcol</a></b><small> (<a href="https://ctan.org/pkg/warpcol">CTAN</a>): -Relative alignment of rows in numeric columns in tabulars +Relative alignment of rows in numeric columns in tabulars. <a href="texmf-dist/doc/latex/warpcol/warpcol.pdf">warpcol.pdf</a>. </small></li> -<li id="was"><b><a href="texmf-dist/doc/latex/was">was</a></b><small> +<li id="was"><b><a href="texmf-dist/doc/latex/was/">was</a></b><small> (<a href="https://ctan.org/pkg/was">CTAN</a>): -A collection of small packages by Walter Schmidt +A collection of small packages by Walter Schmidt. <a href="texmf-dist/doc/latex/was/fixmath.pdf">fixmath.pdf</a> <a href="texmf-dist/doc/latex/was/gensymb.pdf">gensymb.pdf</a> <a href="texmf-dist/doc/latex/was/icomma.pdf">icomma.pdf</a> <a href="texmf-dist/doc/latex/was/upgreek.pdf">upgreek.pdf</a>. </small></li> -<li id="wasy"><b><a href="texmf-dist/doc/fonts/wasy">wasy</a></b><small> +<li id="wasy"><b><a href="texmf-dist/doc/fonts/wasy/">wasy</a></b><small> (<a href="https://ctan.org/pkg/wasy">CTAN</a>): -The wasy fonts (Waldi symbol fonts) +The wasy fonts (Waldi symbol fonts). <a href="texmf-dist/doc/fonts/wasy/wasydoc.pdf">wasydoc.pdf</a>. </small></li> -<li id="wasysym"><b><a href="texmf-dist/doc/latex/wasysym">wasysym</a></b><small> +<li id="wasysym"><b><a href="texmf-dist/doc/latex/wasysym/">wasysym</a></b><small> (<a href="https://ctan.org/pkg/wasysym">CTAN</a>): -LaTeX support for the wasy fonts +LaTeX support for the wasy fonts. <a href="texmf-dist/doc/latex/wasysym/wasysym.pdf">wasysym.pdf</a>. </small></li> -<li id="web"><b><a href="texmf-dist/doc/man/man1">web</a></b><small> +<li id="web"><b><a href="texmf-dist/doc/man/man1/">web</a></b><small> (<a href="https://ctan.org/pkg/web">CTAN</a>): -The original literate programming system +The original literate programming system. <a href="texmf-dist/doc/man/man1/tangle.man1.pdf">tangle.man1.pdf</a> <a href="texmf-dist/doc/man/man1/weave.man1.pdf">weave.man1.pdf</a>. </small></li> -<li id="webguide"><b><a href="texmf-dist/doc/latex/webguide">webguide</a></b><small> +<li id="webguide"><b><a href="texmf-dist/doc/latex/webguide/">webguide</a></b><small> (<a href="https://ctan.org/pkg/webguide">CTAN</a>): -Brief Guide to LaTeX Tools for Web publishing +Brief Guide to LaTeX Tools for Web publishing. <a href="texmf-dist/doc/latex/webguide/webguide.html">webguide.html</a> <a href="texmf-dist/doc/latex/webguide/webguide.pdf">webguide.pdf</a>. </small></li> -<li id="webquiz"><b><a href="texmf-dist/doc/latex/webquiz">webquiz</a></b><small> +<li id="webquiz"><b><a href="texmf-dist/doc/latex/webquiz/">webquiz</a></b><small> (<a href="https://ctan.org/pkg/webquiz">CTAN</a>): -Write interactive web based quizzes +Write interactive web based quizzes. <a href="texmf-dist/doc/latex/webquiz/webquiz-online-manual.pdf">webquiz-online-manual.pdf</a> <a href="texmf-dist/doc/latex/webquiz/webquiz.pdf">webquiz.pdf</a> <a href="texmf-dist/doc/man/man1/webquiz.man1.pdf">webquiz.man1.pdf</a>. </small></li> -<li id="widetable"><b><a href="texmf-dist/doc/latex/widetable">widetable</a></b><small> +<li id="widetable"><b><a href="texmf-dist/doc/latex/widetable/">widetable</a></b><small> (<a href="https://ctan.org/pkg/widetable">CTAN</a>): -An environment for typesetting tables of specified width +An environment for typesetting tables of specified width. <a href="texmf-dist/doc/latex/widetable/widetable.pdf">widetable.pdf</a>. </small></li> -<li id="widows-and-orphans"><b><a href="texmf-dist/doc/latex/widows-and-orphans">widows-and-orphans</a></b><small> +<li id="widows-and-orphans"><b><a href="texmf-dist/doc/latex/widows-and-orphans/">widows-and-orphans</a></b><small> (<a href="https://ctan.org/pkg/widows-and-orphans">CTAN</a>): -Identify (typographic) widows and orphans +Identify (typographic) widows and orphans. <a href="texmf-dist/doc/latex/widows-and-orphans/widows-and-orphans-code.pdf">widows-and-orphans-code.pdf</a> <a href="texmf-dist/doc/latex/widows-and-orphans/widows-and-orphans-doc.pdf">widows-and-orphans-doc.pdf</a>. </small></li> -<li id="willowtreebook"><b><a href="texmf-dist/doc/latex/willowtreebook">willowtreebook</a></b><small> +<li id="willowtreebook"><b><a href="texmf-dist/doc/latex/willowtreebook/">willowtreebook</a></b><small> (<a href="https://ctan.org/pkg/willowtreebook">CTAN</a>): -Easy basic book class, built on memoir +Easy basic book class, built on memoir. <a href="texmf-dist/doc/latex/willowtreebook/willowtreebook.pdf">willowtreebook.pdf</a>. </small></li> -<li id="windycity"><b><a href="texmf-dist/doc/latex/windycity">windycity</a></b><small> +<li id="windycity"><b><a href="texmf-dist/doc/latex/windycity/">windycity</a></b><small> (<a href="https://ctan.org/pkg/windycity">CTAN</a>): -A Chicago style for BibLaTeX +A Chicago style for BibLaTeX. <a href="texmf-dist/doc/latex/windycity/windycity.pdf">windycity.pdf</a>. </small></li> -<li id="wintools.win32"><b><a href="texmf-dist/doc/support/tlaunch">wintools.win32</a></b><small> -(<a href="https://ctan.org/pkg/wintools.win32">CTAN</a>): -utilities provided only for Windows +<li id="wintools.win32"><b><a href="texmf-dist/doc/support/tlaunch/">wintools.win32</a></b><small> +utilities provided only for Windows. <a href="texmf-dist/doc/support/tlaunch/tlaunch.pdf">tlaunch.pdf</a> <a href="texmf-dist/doc/support/wintools/fc-cache.pdf">fc-cache.pdf</a> <a href="texmf-dist/doc/support/wintools/fc-cat.pdf">fc-cat.pdf</a> @@ -23755,53 +23667,53 @@ utilities provided only for Windows <a href="texmf-dist/doc/support/wintools/zip.pdf">zip.pdf</a>. </small></li> -<li id="withargs"><b><a href="texmf-dist/doc/latex/withargs">withargs</a></b><small> +<li id="withargs"><b><a href="texmf-dist/doc/latex/withargs/">withargs</a></b><small> (<a href="https://ctan.org/pkg/withargs">CTAN</a>): -In-place argument substitution +In-place argument substitution. <a href="texmf-dist/doc/latex/withargs/withargs.pdf">withargs.pdf</a>. </small></li> -<li id="witharrows"><b><a href="texmf-dist/doc/generic/witharrows">witharrows</a></b><small> +<li id="witharrows"><b><a href="texmf-dist/doc/generic/witharrows/">witharrows</a></b><small> (<a href="https://ctan.org/pkg/witharrows">CTAN</a>): -"Aligned" math environments with arrows for comments +"Aligned" math environments with arrows for comments. <a href="texmf-dist/doc/generic/witharrows/witharrows-french.pdf">witharrows-french.pdf</a> (fr) <a href="texmf-dist/doc/generic/witharrows/witharrows.pdf">witharrows.pdf</a>. </small></li> -<li id="wnri-latex"><b><a href="texmf-dist/doc/latex/wnri-latex">wnri-latex</a></b><small> +<li id="wnri-latex"><b><a href="texmf-dist/doc/latex/wnri-latex/">wnri-latex</a></b><small> (<a href="https://ctan.org/pkg/wnri-latex">CTAN</a>): -LaTeX support for wnri fonts +LaTeX support for wnri fonts. <a href="texmf-dist/doc/latex/wnri-latex/wnri.pdf">wnri.pdf</a>. </small></li> -<li id="wordlike"><b><a href="texmf-dist/doc/latex/wordlike">wordlike</a></b><small> +<li id="wordlike"><b><a href="texmf-dist/doc/latex/wordlike/">wordlike</a></b><small> (<a href="https://ctan.org/pkg/wordlike">CTAN</a>): -Simulating word processor layout +Simulating word processor layout. <a href="texmf-dist/doc/latex/wordlike/wordlike.pdf">wordlike.pdf</a>. </small></li> -<li id="worksheet"><b><a href="texmf-dist/doc/latex/worksheet">worksheet</a></b><small> +<li id="worksheet"><b><a href="texmf-dist/doc/latex/worksheet/">worksheet</a></b><small> (<a href="https://ctan.org/pkg/worksheet">CTAN</a>): -Easy creation of worksheets +Easy creation of worksheets. <a href="texmf-dist/doc/latex/worksheet/worksheet.pdf">worksheet.pdf</a>. </small></li> -<li id="wrapfig"><b><a href="texmf-dist/doc/latex/wrapfig">wrapfig</a></b><small> +<li id="wrapfig"><b><a href="texmf-dist/doc/latex/wrapfig/">wrapfig</a></b><small> (<a href="https://ctan.org/pkg/wrapfig">CTAN</a>): -Produces figures which text can flow around +Produces figures which text can flow around. <a href="texmf-dist/doc/latex/wrapfig/wrapfig-doc.pdf">wrapfig-doc.pdf</a>. </small></li> -<li id="wsemclassic"><b><a href="texmf-dist/doc/latex/wsemclassic">wsemclassic</a></b><small> +<li id="wsemclassic"><b><a href="texmf-dist/doc/latex/wsemclassic/">wsemclassic</a></b><small> (<a href="https://ctan.org/pkg/wsemclassic">CTAN</a>): -LaTeX class for Bavarian school w-seminar papers +LaTeX class for Bavarian school w-seminar papers. <a href="texmf-dist/doc/latex/wsemclassic/wsemclassic-test.pdf">wsemclassic-test.pdf</a> <a href="texmf-dist/doc/latex/wsemclassic/wsemclassic.pdf">wsemclassic.pdf</a>. </small></li> -<li id="wtref"><b><a href="texmf-dist/doc/latex/wtref">wtref</a></b><small> +<li id="wtref"><b><a href="texmf-dist/doc/latex/wtref/">wtref</a></b><small> (<a href="https://ctan.org/pkg/wtref">CTAN</a>): -Extend LaTeX's cross-reference system +Extend LaTeX's cross-reference system. <a href="texmf-dist/doc/latex/wtref/wtref-ja.pdf">wtref-ja.pdf</a> (ja) <a href="texmf-dist/doc/latex/wtref/wtref.pdf">wtref.pdf</a>. </small></li> @@ -23812,16 +23724,16 @@ Extend LaTeX's cross-reference system <ol start="3138"> -<li id="xargs"><b><a href="texmf-dist/doc/latex/xargs">xargs</a></b><small> +<li id="xargs"><b><a href="texmf-dist/doc/latex/xargs/">xargs</a></b><small> (<a href="https://ctan.org/pkg/xargs">CTAN</a>): -Define commands with many optional arguments +Define commands with many optional arguments. <a href="texmf-dist/doc/latex/xargs/xargs-fr.pdf">xargs-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/xargs/xargs.pdf">xargs.pdf</a>. </small></li> -<li id="xassoccnt"><b><a href="texmf-dist/doc/latex/xassoccnt">xassoccnt</a></b><small> +<li id="xassoccnt"><b><a href="texmf-dist/doc/latex/xassoccnt/">xassoccnt</a></b><small> (<a href="https://ctan.org/pkg/xassoccnt">CTAN</a>): -Associated counters stepping simultaneously +Associated counters stepping simultaneously. <a href="texmf-dist/doc/latex/xassoccnt/xassoccnt_counterformats_example.pdf">xassoccnt_counterformats_example.pdf</a> <a href="texmf-dist/doc/latex/xassoccnt/xassoccnt_counterhierarchy_example.pdf">xassoccnt_counterhierarchy_example.pdf</a> <a href="texmf-dist/doc/latex/xassoccnt/xassoccnt_counternames_example.pdf">xassoccnt_counternames_example.pdf</a> @@ -23839,9 +23751,9 @@ Associated counters stepping simultaneously <a href="texmf-dist/doc/latex/xassoccnt/xassoccnt_totalcounters_example.pdf">xassoccnt_totalcounters_example.pdf</a>. </small></li> -<li id="xbmks"><b><a href="texmf-dist/doc/latex/xbmks/docs">xbmks</a></b><small> +<li id="xbmks"><b><a href="texmf-dist/doc/latex/xbmks/">xbmks</a></b><small> (<a href="https://ctan.org/pkg/xbmks">CTAN</a>): -Create a cross-document bookmark tree +Create a cross-document bookmark tree. <a href="texmf-dist/doc/latex/xbmks/docs/xbmks.pdf">xbmks.pdf</a> <a href="texmf-dist/doc/latex/xbmks/docs/xbmksman.pdf">xbmksman.pdf</a> <a href="texmf-dist/doc/latex/xbmks/examples/doc1.pdf">doc1.pdf</a> @@ -23849,98 +23761,98 @@ Create a cross-document bookmark tree <a href="texmf-dist/doc/latex/xbmks/examples/master.pdf">master.pdf</a>. </small></li> -<li id="xcharter"><b><a href="texmf-dist/doc/fonts/xcharter">xcharter</a></b><small> +<li id="xcharter"><b><a href="texmf-dist/doc/fonts/xcharter/">xcharter</a></b><small> (<a href="https://ctan.org/pkg/xcharter">CTAN</a>): -Extension of Bitstream Charter fonts +Extension of Bitstream Charter fonts. <a href="texmf-dist/doc/fonts/xcharter/newgermanfxch-crop.pdf">newgermanfxch-crop.pdf</a> <a href="texmf-dist/doc/fonts/xcharter/newgermanfxch.pdf">newgermanfxch.pdf</a> <a href="texmf-dist/doc/fonts/xcharter/xcharter-doc.pdf">xcharter-doc.pdf</a>. </small></li> -<li id="xcite"><b><a href="texmf-dist/doc/latex/xcite">xcite</a></b><small> +<li id="xcite"><b><a href="texmf-dist/doc/latex/xcite/">xcite</a></b><small> (<a href="https://ctan.org/pkg/xcite">CTAN</a>): -Use citation keys from a different document +Use citation keys from a different document. <a href="texmf-dist/doc/latex/xcite/xcite.pdf">xcite.pdf</a>. </small></li> -<li id="xcjk2uni"><b><a href="texmf-dist/doc/latex/xcjk2uni">xcjk2uni</a></b><small> +<li id="xcjk2uni"><b><a href="texmf-dist/doc/latex/xcjk2uni/">xcjk2uni</a></b><small> (<a href="https://ctan.org/pkg/xcjk2uni">CTAN</a>): -Convert CJK characters to Unicode, in pdfTeX +Convert CJK characters to Unicode, in pdfTeX. <a href="texmf-dist/doc/latex/xcjk2uni/xCJK2uni.pdf">xCJK2uni.pdf</a> (zh). </small></li> -<li id="xcntperchap"><b><a href="texmf-dist/doc/latex/xcntperchap">xcntperchap</a></b><small> +<li id="xcntperchap"><b><a href="texmf-dist/doc/latex/xcntperchap/">xcntperchap</a></b><small> (<a href="https://ctan.org/pkg/xcntperchap">CTAN</a>): -Track the number of subsections etc. that occur in a specified tracklevel +Track the number of subsections etc. that occur in a specified tracklevel. <a href="texmf-dist/doc/latex/xcntperchap/xcntperchap_basicusage.pdf">xcntperchap_basicusage.pdf</a> <a href="texmf-dist/doc/latex/xcntperchap/xcntperchap_doc.pdf">xcntperchap_doc.pdf</a> <a href="texmf-dist/doc/latex/xcntperchap/xcntperchap_driver.pdf">xcntperchap_driver.pdf</a> <a href="texmf-dist/doc/latex/xcntperchap/xcntperchap_labelusage.pdf">xcntperchap_labelusage.pdf</a>. </small></li> -<li id="xcolor"><b><a href="texmf-dist/doc/latex/xcolor">xcolor</a></b><small> +<li id="xcolor"><b><a href="texmf-dist/doc/latex/xcolor/">xcolor</a></b><small> (<a href="https://ctan.org/pkg/xcolor">CTAN</a>): -Driver-independent color extensions for LaTeX and pdfLaTeX +Driver-independent color extensions for LaTeX and pdfLaTeX. <a href="texmf-dist/doc/latex/xcolor/xcolor.pdf">xcolor.pdf</a> <a href="texmf-dist/doc/latex/xcolor/xcolor2.pdf">xcolor2.pdf</a>. </small></li> -<li id="xcolor-material"><b><a href="texmf-dist/doc/latex/xcolor-material">xcolor-material</a></b><small> +<li id="xcolor-material"><b><a href="texmf-dist/doc/latex/xcolor-material/">xcolor-material</a></b><small> (<a href="https://ctan.org/pkg/xcolor-material">CTAN</a>): -Defines the 256 colors from Google Material Color Palette +Defines the 256 colors from Google Material Color Palette. <a href="texmf-dist/doc/latex/xcolor-material/xcolor-material.pdf">xcolor-material.pdf</a>. </small></li> -<li id="xcolor-solarized"><b><a href="texmf-dist/doc/latex/xcolor-solarized">xcolor-solarized</a></b><small> +<li id="xcolor-solarized"><b><a href="texmf-dist/doc/latex/xcolor-solarized/">xcolor-solarized</a></b><small> (<a href="https://ctan.org/pkg/xcolor-solarized">CTAN</a>): -Defines the 16 colors from Ethan Schoonover's Solarized palette +Defines the 16 colors from Ethan Schoonover's Solarized palette. <a href="texmf-dist/doc/latex/xcolor-solarized/xcolor-solarized.pdf">xcolor-solarized.pdf</a>. </small></li> -<li id="xcomment"><b><a href="texmf-dist/doc/generic/xcomment">xcomment</a></b><small> +<li id="xcomment"><b><a href="texmf-dist/doc/generic/xcomment/">xcomment</a></b><small> (<a href="https://ctan.org/pkg/xcomment">CTAN</a>): -Allows selected environments to be included/excluded +Allows selected environments to be included/excluded. <a href="texmf-dist/doc/generic/xcomment/xcomment-doc.pdf">xcomment-doc.pdf</a>. </small></li> -<li id="xcookybooky"><b><a href="texmf-dist/doc/latex/xcookybooky/example">xcookybooky</a></b><small> +<li id="xcookybooky"><b><a href="texmf-dist/doc/latex/xcookybooky/">xcookybooky</a></b><small> (<a href="https://ctan.org/pkg/xcookybooky">CTAN</a>): -Typeset (potentially long) recipes +Typeset (potentially long) recipes. <a href="texmf-dist/doc/latex/xcookybooky/example/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/xcookybooky/example/pic/background.pdf">background.pdf</a> <a href="texmf-dist/doc/latex/xcookybooky/xcookybooky.pdf">xcookybooky.pdf</a>. </small></li> -<li id="xcpdftips"><b><a href="texmf-dist/doc/latex/xcpdftips">xcpdftips</a></b><small> +<li id="xcpdftips"><b><a href="texmf-dist/doc/latex/xcpdftips/">xcpdftips</a></b><small> (<a href="https://ctan.org/pkg/xcpdftips">CTAN</a>): -Natbib citations with PDF tooltips +Natbib citations with PDF tooltips. <a href="texmf-dist/doc/latex/xcpdftips/xcpdftips.pdf">xcpdftips.pdf</a>. </small></li> -<li id="xdoc"><b><a href="texmf-dist/doc/latex/xdoc">xdoc</a></b><small> +<li id="xdoc"><b><a href="texmf-dist/doc/latex/xdoc/">xdoc</a></b><small> (<a href="https://ctan.org/pkg/xdoc">CTAN</a>): -Extending the LaTeX doc system +Extending the LaTeX doc system. <a href="texmf-dist/doc/latex/xdoc/docindex.pdf">docindex.pdf</a> <a href="texmf-dist/doc/latex/xdoc/xdoc2.pdf">xdoc2.pdf</a> <a href="texmf-dist/doc/latex/xdoc/xdocdemo.pdf">xdocdemo.pdf</a>. </small></li> -<li id="xduthesis"><b><a href="texmf-dist/doc/latex/xduthesis/examples">xduthesis</a></b><small> +<li id="xduthesis"><b><a href="texmf-dist/doc/latex/xduthesis/">xduthesis</a></b><small> (<a href="https://ctan.org/pkg/xduthesis">CTAN</a>): -XeLaTeX template for writing Xidian University Thesis +XeLaTeX template for writing Xidian University Thesis. <a href="texmf-dist/doc/latex/xduthesis/examples/thesis-doctor.pdf">thesis-doctor.pdf</a> <a href="texmf-dist/doc/latex/xduthesis/xduthesis.pdf">xduthesis.pdf</a>. </small></li> -<li id="xdvi"><b><a href="texmf-dist/doc/man/man1">xdvi</a></b><small> +<li id="xdvi"><b><a href="texmf-dist/doc/man/man1/">xdvi</a></b><small> (<a href="https://ctan.org/pkg/xdvi">CTAN</a>): -A DVI previewer for the X Window System +A DVI previewer for the X Window System. <a href="texmf-dist/doc/man/man1/xdvi.man1.pdf">xdvi.man1.pdf</a>. </small></li> -<li id="xebaposter"><b><a href="texmf-dist/doc/latex/xebaposter/images">xebaposter</a></b><small> +<li id="xebaposter"><b><a href="texmf-dist/doc/latex/xebaposter/">xebaposter</a></b><small> (<a href="https://ctan.org/pkg/xebaposter">CTAN</a>): -Create beautiful scientific Persian/Latin posters using TikZ +Create beautiful scientific Persian/Latin posters using TikZ. <a href="texmf-dist/doc/latex/xebaposter/images/docs-boxshape.pdf">docs-boxshape.pdf</a> <a href="texmf-dist/doc/latex/xebaposter/images/docs-headerborder.pdf">docs-headerborder.pdf</a> <a href="texmf-dist/doc/latex/xebaposter/images/docs-headershape.pdf">docs-headershape.pdf</a> @@ -23953,16 +23865,16 @@ Create beautiful scientific Persian/Latin posters using TikZ <a href="texmf-dist/doc/latex/xebaposter/xebaposter-doc.pdf">xebaposter-doc.pdf</a>. </small></li> -<li id="xecjk"><b><a href="texmf-dist/doc/xelatex/xecjk">xecjk</a></b><small> +<li id="xecjk"><b><a href="texmf-dist/doc/xelatex/xecjk/">xecjk</a></b><small> (<a href="https://ctan.org/pkg/xecjk">CTAN</a>): -Support for CJK documents in XeLaTeX +Support for CJK documents in XeLaTeX. <a href="texmf-dist/doc/xelatex/xecjk/xeCJK.pdf">xeCJK.pdf</a> (zh) <a href="texmf-dist/doc/xelatex/xecjk/xunicode-symbols.pdf">xunicode-symbols.pdf</a>. </small></li> -<li id="xecyr"><b><a href="texmf-dist/doc/xelatex/xecyr/combined_hyphenation">xecyr</a></b><small> +<li id="xecyr"><b><a href="texmf-dist/doc/xelatex/xecyr/">xecyr</a></b><small> (<a href="https://ctan.org/pkg/xecyr">CTAN</a>): -Using Cyrillic languages in XeTeX +Using Cyrillic languages in XeTeX. <a href="texmf-dist/doc/xelatex/xecyr/combined_hyphenation/combined_hyphenation_ruen-x.pdf">combined_hyphenation_ruen-x.pdf</a> <a href="texmf-dist/doc/xelatex/xecyr/combined_hyphenation/combined_hyphenation_ruen.pdf">combined_hyphenation_ruen.pdf</a> <a href="texmf-dist/doc/xelatex/xecyr/grafika_v_tex.pdf">grafika_v_tex.pdf</a> @@ -23992,34 +23904,34 @@ Using Cyrillic languages in XeTeX <a href="texmf-dist/doc/xelatex/xecyr/xecyr-ex7-ru-x.pdf">xecyr-ex7-ru-x.pdf</a>. </small></li> -<li id="xecyrmongolian"><b><a href="texmf-dist/doc/latex/xecyrmongolian">xecyrmongolian</a></b><small> +<li id="xecyrmongolian"><b><a href="texmf-dist/doc/latex/xecyrmongolian/">xecyrmongolian</a></b><small> (<a href="https://ctan.org/pkg/xecyrmongolian">CTAN</a>): -Basic support for the typesetting of Cyrillic Mongolian documents using (Xe|Lua)LaTeX +Basic support for the typesetting of Cyrillic Mongolian documents using (Xe|Lua)LaTeX. <a href="texmf-dist/doc/latex/xecyrmongolian/xecyrmongolian.pdf">xecyrmongolian.pdf</a>. </small></li> -<li id="xeindex"><b><a href="texmf-dist/doc/xelatex/xeindex">xeindex</a></b><small> +<li id="xeindex"><b><a href="texmf-dist/doc/xelatex/xeindex/">xeindex</a></b><small> (<a href="https://ctan.org/pkg/xeindex">CTAN</a>): -Automatic index generation for XeLaTeX +Automatic index generation for XeLaTeX. <a href="texmf-dist/doc/xelatex/xeindex/xeindex.pdf">xeindex.pdf</a>. </small></li> -<li id="xellipsis"><b><a href="texmf-dist/doc/latex/xellipsis">xellipsis</a></b><small> +<li id="xellipsis"><b><a href="texmf-dist/doc/latex/xellipsis/">xellipsis</a></b><small> (<a href="https://ctan.org/pkg/xellipsis">CTAN</a>): -Extremely configurable ellipses with formats for various style manuals +Extremely configurable ellipses with formats for various style manuals. <a href="texmf-dist/doc/latex/xellipsis/xellipsis.pdf">xellipsis.pdf</a>. </small></li> -<li id="xepersian"><b><a href="texmf-dist/doc/xelatex/xepersian">xepersian</a></b><small> +<li id="xepersian"><b><a href="texmf-dist/doc/xelatex/xepersian/">xepersian</a></b><small> (<a href="https://ctan.org/pkg/xepersian">CTAN</a>): -Persian for LaTeX, using XeTeX +Persian for LaTeX, using XeTeX. <a href="texmf-dist/doc/xelatex/xepersian/xepersian-doc.pdf">xepersian-doc.pdf</a> <a href="texmf-dist/doc/xelatex/xepersian/xepersian.pdf">xepersian.pdf</a>. </small></li> -<li id="xepersian-hm"><b><a href="texmf-dist/doc/xelatex/xepersian-hm">xepersian-hm</a></b><small> +<li id="xepersian-hm"><b><a href="texmf-dist/doc/xelatex/xepersian-hm/">xepersian-hm</a></b><small> (<a href="https://ctan.org/pkg/xepersian-hm">CTAN</a>): -Fixes kashida feature in xepersian package +Fixes kashida feature in xepersian package. <a href="texmf-dist/doc/xelatex/xepersian-hm/doc-ligature-xep.pdf">doc-ligature-xep.pdf</a> <a href="texmf-dist/doc/xelatex/xepersian-hm/doc-ligature-xephm.pdf">doc-ligature-xephm.pdf</a> <a href="texmf-dist/doc/xelatex/xepersian-hm/doc-samples-glyph.pdf">doc-samples-glyph.pdf</a> @@ -24032,85 +23944,85 @@ Fixes kashida feature in xepersian package <a href="texmf-dist/doc/xelatex/xepersian-hm/xepersian-hm.pdf">xepersian-hm.pdf</a>. </small></li> -<li id="xesearch"><b><a href="texmf-dist/doc/xetex/xesearch">xesearch</a></b><small> +<li id="xesearch"><b><a href="texmf-dist/doc/xetex/xesearch/">xesearch</a></b><small> (<a href="https://ctan.org/pkg/xesearch">CTAN</a>): -A string finder for XeTeX +A string finder for XeTeX. <a href="texmf-dist/doc/xetex/xesearch/xesearch.pdf">xesearch.pdf</a>. </small></li> -<li id="xespotcolor"><b><a href="texmf-dist/doc/xelatex/xespotcolor">xespotcolor</a></b><small> +<li id="xespotcolor"><b><a href="texmf-dist/doc/xelatex/xespotcolor/">xespotcolor</a></b><small> (<a href="https://ctan.org/pkg/xespotcolor">CTAN</a>): -Spot colours support for XeLaTeX +Spot colours support for XeLaTeX. <a href="texmf-dist/doc/xelatex/xespotcolor/jatestspot.pdf">jatestspot.pdf</a> <a href="texmf-dist/doc/xelatex/xespotcolor/spotcolor-test.pdf">spotcolor-test.pdf</a> <a href="texmf-dist/doc/xelatex/xespotcolor/xespotcolor.pdf">xespotcolor.pdf</a>. </small></li> -<li id="xetex"><b><a href="texmf-dist/doc/man/man1">xetex</a></b><small> +<li id="xetex"><b><a href="texmf-dist/doc/xetex/base/">xetex</a></b><small> (<a href="https://ctan.org/pkg/xetex">CTAN</a>): -An extended variant of TeX for use with Unicode sources +An extended variant of TeX for use with Unicode sources. <a href="texmf-dist/doc/man/man1/xelatex.man1.pdf">xelatex.man1.pdf</a> <a href="texmf-dist/doc/man/man1/xetex.man1.pdf">xetex.man1.pdf</a> <a href="texmf-dist/doc/xetex/base/XeTeX-notes.pdf">XeTeX-notes.pdf</a>. </small></li> -<li id="xetex-itrans"><b><a href="texmf-dist/doc/xelatex/xetex-itrans">xetex-itrans</a></b><small> +<li id="xetex-itrans"><b><a href="texmf-dist/doc/xelatex/xetex-itrans/">xetex-itrans</a></b><small> (<a href="https://ctan.org/pkg/xetex-itrans">CTAN</a>): -Itrans input maps for use with XeLaTeX +Itrans input maps for use with XeLaTeX. <a href="texmf-dist/doc/xelatex/xetex-itrans/itrans-tamil-sample.pdf">itrans-tamil-sample.pdf</a>. </small></li> -<li id="xetexko"><b><a href="texmf-dist/doc/xetex/xetexko">xetexko</a></b><small> +<li id="xetexko"><b><a href="texmf-dist/doc/xetex/xetexko/">xetexko</a></b><small> (<a href="https://ctan.org/pkg/xetexko">CTAN</a>): -Typeset Korean with Xe(La)TeX +Typeset Korean with Xe(La)TeX. <a href="texmf-dist/doc/xetex/xetexko/xetexko-doc.pdf">xetexko-doc.pdf</a> (ko). </small></li> -<li id="xetexref"><b><a href="texmf-dist/doc/xetex/xetexref">xetexref</a></b><small> +<li id="xetexref"><b><a href="texmf-dist/doc/xetex/xetexref/">xetexref</a></b><small> (<a href="https://ctan.org/pkg/xetexref">CTAN</a>): -Reference documentation of XeTeX +Reference documentation of XeTeX. <a href="texmf-dist/doc/xetex/xetexref/xetex-reference.pdf">xetex-reference.pdf</a>. </small></li> -<li id="xevlna"><b><a href="texmf-dist/doc/xelatex/xevlna">xevlna</a></b><small> +<li id="xevlna"><b><a href="texmf-dist/doc/xelatex/xevlna/">xevlna</a></b><small> (<a href="https://ctan.org/pkg/xevlna">CTAN</a>): -Insert non-breakable spaces using XeTeX +Insert non-breakable spaces using XeTeX. <a href="texmf-dist/doc/xelatex/xevlna/xevlna.pdf">xevlna.pdf</a>. </small></li> -<li id="xfakebold"><b><a href="texmf-dist/doc/latex/xfakebold">xfakebold</a></b><small> +<li id="xfakebold"><b><a href="texmf-dist/doc/latex/xfakebold/">xfakebold</a></b><small> (<a href="https://ctan.org/pkg/xfakebold">CTAN</a>): -Fake a regular font for bold characters +Fake a regular font for bold characters. <a href="texmf-dist/doc/latex/xfakebold/xfakebold-doc.pdf">xfakebold-doc.pdf</a>. </small></li> -<li id="xfor"><b><a href="texmf-dist/doc/latex/xfor">xfor</a></b><small> +<li id="xfor"><b><a href="texmf-dist/doc/latex/xfor/">xfor</a></b><small> (<a href="https://ctan.org/pkg/xfor">CTAN</a>): -A reimplementation of the LaTeX for-loop macro +A reimplementation of the LaTeX for-loop macro. <a href="texmf-dist/doc/latex/xfor/xfor.pdf">xfor.pdf</a>. </small></li> -<li id="xgreek"><b><a href="texmf-dist/doc/xelatex/xgreek">xgreek</a></b><small> +<li id="xgreek"><b><a href="texmf-dist/doc/xelatex/xgreek/">xgreek</a></b><small> (<a href="https://ctan.org/pkg/xgreek">CTAN</a>): -XeLaTeX package for typesetting Greek language documents (beta release) +XeLaTeX package for typesetting Greek language documents (beta release). <a href="texmf-dist/doc/xelatex/xgreek/xgreek.pdf">xgreek.pdf</a>. </small></li> -<li id="xhfill"><b><a href="texmf-dist/doc/latex/xhfill">xhfill</a></b><small> +<li id="xhfill"><b><a href="texmf-dist/doc/latex/xhfill/">xhfill</a></b><small> (<a href="https://ctan.org/pkg/xhfill">CTAN</a>): -Extending \hrulefill +Extending \hrulefill. <a href="texmf-dist/doc/latex/xhfill/xhfill-doc.pdf">xhfill-doc.pdf</a>. </small></li> -<li id="xifthen"><b><a href="texmf-dist/doc/latex/xifthen">xifthen</a></b><small> +<li id="xifthen"><b><a href="texmf-dist/doc/latex/xifthen/">xifthen</a></b><small> (<a href="https://ctan.org/pkg/xifthen">CTAN</a>): -Extended conditional commands +Extended conditional commands. <a href="texmf-dist/doc/latex/xifthen/xifthen.pdf">xifthen.pdf</a>. </small></li> -<li id="xindex"><b><a href="texmf-dist/doc/lualatex/xindex/tests">xindex</a></b><small> +<li id="xindex"><b><a href="texmf-dist/doc/lualatex/xindex/">xindex</a></b><small> (<a href="https://ctan.org/pkg/xindex">CTAN</a>): -Unicode compatible index generation +Unicode compatible index generation. <a href="texmf-dist/doc/lualatex/xindex/tests/HADW.pdf">HADW.pdf</a> <a href="texmf-dist/doc/lualatex/xindex/tests/Umlaute.pdf">Umlaute.pdf</a> <a href="texmf-dist/doc/lualatex/xindex/tests/Umlaute2.pdf">Umlaute2.pdf</a> @@ -24121,9 +24033,9 @@ Unicode compatible index generation <a href="texmf-dist/doc/lualatex/xindex/xindex-doc.pdf">xindex-doc.pdf</a>. </small></li> -<li id="xindy"><b><a href="texmf-dist/doc/man/man1">xindy</a></b><small> +<li id="xindy"><b><a href="texmf-dist/doc/xindy/">xindy</a></b><small> (<a href="https://ctan.org/pkg/xindy">CTAN</a>): -A general-purpose index processor +A general-purpose index processor. <a href="texmf-dist/doc/man/man1/tex2xindy.man1.pdf">tex2xindy.man1.pdf</a> <a href="texmf-dist/doc/man/man1/texindy.man1.pdf">texindy.man1.pdf</a> <a href="texmf-dist/doc/man/man1/xindy.man1.pdf">xindy.man1.pdf</a> @@ -24152,135 +24064,135 @@ A general-purpose index processor <a href="texmf-dist/doc/xindy/xindy.pdf">xindy.pdf</a>. </small></li> -<li id="xint"><b><a href="texmf-dist/doc/generic/xint">xint</a></b><small> +<li id="xint"><b><a href="texmf-dist/doc/generic/xint/">xint</a></b><small> (<a href="https://ctan.org/pkg/xint">CTAN</a>): -Expandable operations on long numbers +Expandable operations on long numbers. <a href="texmf-dist/doc/generic/xint/CHANGES.html">CHANGES.html</a> <a href="texmf-dist/doc/generic/xint/sourcexint.pdf">sourcexint.pdf</a> <a href="texmf-dist/doc/generic/xint/xint.pdf">xint.pdf</a>. </small></li> -<li id="xkcdcolors"><b><a href="texmf-dist/doc/latex/xkcdcolors">xkcdcolors</a></b><small> +<li id="xkcdcolors"><b><a href="texmf-dist/doc/latex/xkcdcolors/">xkcdcolors</a></b><small> (<a href="https://ctan.org/pkg/xkcdcolors">CTAN</a>): -xkcd names of colors +xkcd names of colors. <a href="texmf-dist/doc/latex/xkcdcolors/xkcdcolors-manual.pdf">xkcdcolors-manual.pdf</a>. </small></li> -<li id="xkeyval"><b><a href="texmf-dist/doc/latex/xkeyval">xkeyval</a></b><small> +<li id="xkeyval"><b><a href="texmf-dist/doc/latex/xkeyval/">xkeyval</a></b><small> (<a href="https://ctan.org/pkg/xkeyval">CTAN</a>): -Extension of the keyval package +Extension of the keyval package. <a href="texmf-dist/doc/latex/xkeyval/xkeyval.pdf">xkeyval.pdf</a>. </small></li> -<li id="xlop"><b><a href="texmf-dist/doc/generic/xlop">xlop</a></b><small> +<li id="xlop"><b><a href="texmf-dist/doc/generic/xlop/">xlop</a></b><small> (<a href="https://ctan.org/pkg/xlop">CTAN</a>): -Calculates and displays arithmetic operations +Calculates and displays arithmetic operations. <a href="texmf-dist/doc/generic/xlop/xlop-doc-fr.pdf">xlop-doc-fr.pdf</a> (fr) <a href="texmf-dist/doc/generic/xlop/xlop-doc.pdf">xlop-doc.pdf</a>. </small></li> -<li id="xltabular"><b><a href="texmf-dist/doc/latex/xltabular">xltabular</a></b><small> +<li id="xltabular"><b><a href="texmf-dist/doc/latex/xltabular/">xltabular</a></b><small> (<a href="https://ctan.org/pkg/xltabular">CTAN</a>): -Longtable support with possible X-column specifier +Longtable support with possible X-column specifier. <a href="texmf-dist/doc/latex/xltabular/xltabular-doc.pdf">xltabular-doc.pdf</a>. </small></li> -<li id="xltxtra"><b><a href="texmf-dist/doc/xelatex/xltxtra">xltxtra</a></b><small> +<li id="xltxtra"><b><a href="texmf-dist/doc/xelatex/xltxtra/">xltxtra</a></b><small> (<a href="https://ctan.org/pkg/xltxtra">CTAN</a>): -"Extras" for LaTeX users of XeTeX +"Extras" for LaTeX users of XeTeX. <a href="texmf-dist/doc/xelatex/xltxtra/xltxtra.pdf">xltxtra.pdf</a>. </small></li> -<li id="xmltex"><b><a href="texmf-dist/doc/otherformats/xmltex/base">xmltex</a></b><small> +<li id="xmltex"><b><a href="texmf-dist/doc/otherformats/xmltex/base/">xmltex</a></b><small> (<a href="https://ctan.org/pkg/xmltex">CTAN</a>): -Support for parsing XML documents +Support for parsing XML documents. <a href="texmf-dist/doc/otherformats/xmltex/base/manual.html">manual.html</a>. </small></li> -<li id="xmpincl"><b><a href="texmf-dist/doc/latex/xmpincl">xmpincl</a></b><small> +<li id="xmpincl"><b><a href="texmf-dist/doc/latex/xmpincl/">xmpincl</a></b><small> (<a href="https://ctan.org/pkg/xmpincl">CTAN</a>): -Include eXtensible Metadata Platform data in pdfLaTeX +Include eXtensible Metadata Platform data in pdfLaTeX. <a href="texmf-dist/doc/latex/xmpincl/xmpincl.pdf">xmpincl.pdf</a>. </small></li> -<li id="xnewcommand"><b><a href="texmf-dist/doc/latex/xnewcommand">xnewcommand</a></b><small> +<li id="xnewcommand"><b><a href="texmf-dist/doc/latex/xnewcommand/">xnewcommand</a></b><small> (<a href="https://ctan.org/pkg/xnewcommand">CTAN</a>): -Define \global and \protected commands with \newcommand +Define \global and \protected commands with \newcommand. <a href="texmf-dist/doc/latex/xnewcommand/xnewcommand.pdf">xnewcommand.pdf</a>. </small></li> -<li id="xoptarg"><b><a href="texmf-dist/doc/latex/xoptarg">xoptarg</a></b><small> +<li id="xoptarg"><b><a href="texmf-dist/doc/latex/xoptarg/">xoptarg</a></b><small> (<a href="https://ctan.org/pkg/xoptarg">CTAN</a>): -Expandable macros that take an optional argument +Expandable macros that take an optional argument. <a href="texmf-dist/doc/latex/xoptarg/xoptarg.pdf">xoptarg.pdf</a>. </small></li> -<li id="xpatch"><b><a href="texmf-dist/doc/latex/xpatch">xpatch</a></b><small> +<li id="xpatch"><b><a href="texmf-dist/doc/latex/xpatch/">xpatch</a></b><small> (<a href="https://ctan.org/pkg/xpatch">CTAN</a>): -Extending etoolbox patching commands +Extending etoolbox patching commands. <a href="texmf-dist/doc/latex/xpatch/xpatch.pdf">xpatch.pdf</a>. </small></li> -<li id="xpdfopen"><b><a href="texmf-dist/doc/man/man1">xpdfopen</a></b><small> +<li id="xpdfopen"><b><a href="texmf-dist/doc/man/man1/">xpdfopen</a></b><small> (<a href="https://ctan.org/pkg/xpdfopen">CTAN</a>): -Commands to control PDF readers, under X11 +Commands to control PDF readers, under X11. <a href="texmf-dist/doc/man/man1/pdfclose.man1.pdf">pdfclose.man1.pdf</a> <a href="texmf-dist/doc/man/man1/pdfopen.man1.pdf">pdfopen.man1.pdf</a>. </small></li> -<li id="xpeek"><b><a href="texmf-dist/doc/latex/xpeek">xpeek</a></b><small> +<li id="xpeek"><b><a href="texmf-dist/doc/latex/xpeek/">xpeek</a></b><small> (<a href="https://ctan.org/pkg/xpeek">CTAN</a>): -Define commands that peek ahead in the input stream +Define commands that peek ahead in the input stream. <a href="texmf-dist/doc/latex/xpeek/xpeek.pdf">xpeek.pdf</a>. </small></li> -<li id="xpiano"><b><a href="texmf-dist/doc/latex/xpiano">xpiano</a></b><small> +<li id="xpiano"><b><a href="texmf-dist/doc/latex/xpiano/">xpiano</a></b><small> (<a href="https://ctan.org/pkg/xpiano">CTAN</a>): -An extension of the piano package +An extension of the piano package. <a href="texmf-dist/doc/latex/xpiano/xpiano.pdf">xpiano.pdf</a>. </small></li> -<li id="xpicture"><b><a href="texmf-dist/doc/latex/xpicture">xpicture</a></b><small> +<li id="xpicture"><b><a href="texmf-dist/doc/latex/xpicture/">xpicture</a></b><small> (<a href="https://ctan.org/pkg/xpicture">CTAN</a>): -Extensions of LaTeX picture drawing +Extensions of LaTeX picture drawing. <a href="texmf-dist/doc/latex/xpicture/xpicture-doc.pdf">xpicture-doc.pdf</a> <a href="texmf-dist/doc/latex/xpicture/xpicture.pdf">xpicture.pdf</a>. </small></li> -<li id="xpinyin"><b><a href="texmf-dist/doc/latex/xpinyin">xpinyin</a></b><small> +<li id="xpinyin"><b><a href="texmf-dist/doc/latex/xpinyin/">xpinyin</a></b><small> (<a href="https://ctan.org/pkg/xpinyin">CTAN</a>): -Automatically add pinyin to Chinese characters +Automatically add pinyin to Chinese characters. <a href="texmf-dist/doc/latex/xpinyin/xpinyin.pdf">xpinyin.pdf</a> (zh). </small></li> -<li id="xprintlen"><b><a href="texmf-dist/doc/latex/xprintlen">xprintlen</a></b><small> +<li id="xprintlen"><b><a href="texmf-dist/doc/latex/xprintlen/">xprintlen</a></b><small> (<a href="https://ctan.org/pkg/xprintlen">CTAN</a>): -Print TeX lengths in a variety of units +Print TeX lengths in a variety of units. <a href="texmf-dist/doc/latex/xprintlen/xprintlen.pdf">xprintlen.pdf</a>. </small></li> -<li id="xpunctuate"><b><a href="texmf-dist/doc/latex/xpunctuate">xpunctuate</a></b><small> +<li id="xpunctuate"><b><a href="texmf-dist/doc/latex/xpunctuate/">xpunctuate</a></b><small> (<a href="https://ctan.org/pkg/xpunctuate">CTAN</a>): -Process trailing punctuation which may be redundant +Process trailing punctuation which may be redundant. <a href="texmf-dist/doc/latex/xpunctuate/xpunctuate.pdf">xpunctuate.pdf</a>. </small></li> -<li id="xq"><b><a href="texmf-dist/doc/fonts/xq">xq</a></b><small> +<li id="xq"><b><a href="texmf-dist/doc/fonts/xq/">xq</a></b><small> (<a href="https://ctan.org/pkg/xq">CTAN</a>): -Support for writing about xiangqi +Support for writing about xiangqi. <a href="texmf-dist/doc/fonts/xq/bugs-0-3.pdf">bugs-0-3.pdf</a> <a href="texmf-dist/doc/fonts/xq/xqexample.pdf">xqexample.pdf</a>. </small></li> -<li id="xsavebox"><b><a href="texmf-dist/doc/latex/xsavebox">xsavebox</a></b><small> +<li id="xsavebox"><b><a href="texmf-dist/doc/latex/xsavebox/">xsavebox</a></b><small> (<a href="https://ctan.org/pkg/xsavebox">CTAN</a>): -Saveboxes for repeating content without code replication, based on PDF Form XObjects +Saveboxes for repeating content without code replication, based on PDF Form XObjects. <a href="texmf-dist/doc/latex/xsavebox/xsavebox.pdf">xsavebox.pdf</a>. </small></li> -<li id="xsim"><b><a href="texmf-dist/doc/latex/xsim/examples">xsim</a></b><small> +<li id="xsim"><b><a href="texmf-dist/doc/latex/xsim/">xsim</a></b><small> (<a href="https://ctan.org/pkg/xsim">CTAN</a>): -eXercise Sheets IMproved +eXercise Sheets IMproved. <a href="texmf-dist/doc/latex/xsim/examples/xsim.blanks.pdf">xsim.blanks.pdf</a> <a href="texmf-dist/doc/latex/xsim/examples/xsim.boxed-headings.pdf">xsim.boxed-headings.pdf</a> <a href="texmf-dist/doc/latex/xsim/examples/xsim.code-and-output.pdf">xsim.code-and-output.pdf</a> @@ -24321,33 +24233,33 @@ eXercise Sheets IMproved <a href="texmf-dist/doc/latex/xsim/xsim_manual.pdf">xsim_manual.pdf</a>. </small></li> -<li id="xskak"><b><a href="texmf-dist/doc/latex/xskak">xskak</a></b><small> +<li id="xskak"><b><a href="texmf-dist/doc/latex/xskak/">xskak</a></b><small> (<a href="https://ctan.org/pkg/xskak">CTAN</a>): -An extension to the skak package for chess typesetting +An extension to the skak package for chess typesetting. <a href="texmf-dist/doc/latex/xskak/skak-comment-test.pdf">skak-comment-test.pdf</a> <a href="texmf-dist/doc/latex/xskak/skak-longmoves-test-new.pdf">skak-longmoves-test-new.pdf</a> <a href="texmf-dist/doc/latex/xskak/xskak.pdf">xskak.pdf</a> <a href="texmf-dist/doc/latex/xskak/xskak_and_beamer.pdf">xskak_and_beamer.pdf</a>. </small></li> -<li id="xstring"><b><a href="texmf-dist/doc/generic/xstring">xstring</a></b><small> +<li id="xstring"><b><a href="texmf-dist/doc/generic/xstring/">xstring</a></b><small> (<a href="https://ctan.org/pkg/xstring">CTAN</a>): -String manipulation for (La)TeX +String manipulation for (La)TeX. <a href="texmf-dist/doc/generic/xstring/test_etex.pdf">test_etex.pdf</a> <a href="texmf-dist/doc/generic/xstring/test_latex.pdf">test_latex.pdf</a> <a href="texmf-dist/doc/generic/xstring/xstring-en.pdf">xstring-en.pdf</a> <a href="texmf-dist/doc/generic/xstring/xstring-fr.pdf">xstring-fr.pdf</a> (fr). </small></li> -<li id="xtab"><b><a href="texmf-dist/doc/latex/xtab">xtab</a></b><small> +<li id="xtab"><b><a href="texmf-dist/doc/latex/xtab/">xtab</a></b><small> (<a href="https://ctan.org/pkg/xtab">CTAN</a>): -Break tables across pages +Break tables across pages. <a href="texmf-dist/doc/latex/xtab/xtab.pdf">xtab.pdf</a>. </small></li> -<li id="xtuthesis"><b><a href="texmf-dist/doc/latex/xtuthesis/figures">xtuthesis</a></b><small> +<li id="xtuthesis"><b><a href="texmf-dist/doc/latex/xtuthesis/">xtuthesis</a></b><small> (<a href="https://ctan.org/pkg/xtuthesis">CTAN</a>): -XTU thesis template +XTU thesis template. <a href="texmf-dist/doc/latex/xtuthesis/figures/Correct_Ratio.pdf">Correct_Ratio.pdf</a> <a href="texmf-dist/doc/latex/xtuthesis/figures/Lenna.pdf">Lenna.pdf</a> <a href="texmf-dist/doc/latex/xtuthesis/figures/Lenna_e.pdf">Lenna_e.pdf</a> @@ -24355,28 +24267,28 @@ XTU thesis template <a href="texmf-dist/doc/latex/xtuthesis/xtuthesis.pdf">xtuthesis.pdf</a> (zh). </small></li> -<li id="xurl"><b><a href="texmf-dist/doc/latex/xurl">xurl</a></b><small> +<li id="xurl"><b><a href="texmf-dist/doc/latex/xurl/">xurl</a></b><small> (<a href="https://ctan.org/pkg/xurl">CTAN</a>): -Allow URL breaks at any alphanumerical character +Allow URL breaks at any alphanumerical character. <a href="texmf-dist/doc/latex/xurl/xurl.pdf">xurl.pdf</a>. </small></li> -<li id="xwatermark"><b><a href="texmf-dist/doc/latex/xwatermark">xwatermark</a></b><small> +<li id="xwatermark"><b><a href="texmf-dist/doc/latex/xwatermark/">xwatermark</a></b><small> (<a href="https://ctan.org/pkg/xwatermark">CTAN</a>): -Graphics and text watermarks on selected pages +Graphics and text watermarks on selected pages. <a href="texmf-dist/doc/latex/xwatermark/xwatermark-examples2.pdf">xwatermark-examples2.pdf</a> <a href="texmf-dist/doc/latex/xwatermark/xwatermark-guide.pdf">xwatermark-guide.pdf</a>. </small></li> -<li id="xyling"><b><a href="texmf-dist/doc/latex/xyling">xyling</a></b><small> +<li id="xyling"><b><a href="texmf-dist/doc/latex/xyling/">xyling</a></b><small> (<a href="https://ctan.org/pkg/xyling">CTAN</a>): -Draw syntactic trees, etc., for linguistics literature, using xy-pic +Draw syntactic trees, etc., for linguistics literature, using xy-pic. <a href="texmf-dist/doc/latex/xyling/xyli-doc.pdf">xyli-doc.pdf</a>. </small></li> -<li id="xypic"><b><a href="texmf-dist/doc/generic/xypic">xypic</a></b><small> +<li id="xypic"><b><a href="texmf-dist/doc/generic/xypic/">xypic</a></b><small> (<a href="https://ctan.org/pkg/xypic">CTAN</a>): -Flexible diagramming macros +Flexible diagramming macros. <a href="texmf-dist/doc/generic/xypic/Xy-pic.html">Xy-pic.html</a> <a href="texmf-dist/doc/generic/xypic/barrdoc.pdf">barrdoc.pdf</a> <a href="texmf-dist/doc/generic/xypic/xyguide.pdf">xyguide.pdf</a> @@ -24385,15 +24297,15 @@ Flexible diagramming macros <a href="texmf-dist/doc/generic/xypic/xysource.pdf">xysource.pdf</a>. </small></li> -<li id="xypic-tut-pt"><b><a href="texmf-dist/doc/generic/xypic-tut-pt">xypic-tut-pt</a></b><small> +<li id="xypic-tut-pt"><b><a href="texmf-dist/doc/generic/xypic-tut-pt/">xypic-tut-pt</a></b><small> (<a href="https://ctan.org/pkg/xypic-tut-pt">CTAN</a>): -A tutorial for XY-pic, in Portuguese +A tutorial for XY-pic, in Portuguese. <a href="texmf-dist/doc/generic/xypic-tut-pt/xypic-tutorial.pdf">xypic-tutorial.pdf</a> (pt). </small></li> -<li id="xytree"><b><a href="texmf-dist/doc/latex/xytree">xytree</a></b><small> +<li id="xytree"><b><a href="texmf-dist/doc/latex/xytree/">xytree</a></b><small> (<a href="https://ctan.org/pkg/xytree">CTAN</a>): -Tree macros using XY-Pic +Tree macros using XY-Pic. <a href="texmf-dist/doc/latex/xytree/xytree-doc-en.pdf">xytree-doc-en.pdf</a>. </small></li> @@ -24403,29 +24315,29 @@ Tree macros using XY-Pic <ol start="3207"> -<li id="yafoot"><b><a href="texmf-dist/doc/latex/yafoot">yafoot</a></b><small> +<li id="yafoot"><b><a href="texmf-dist/doc/latex/yafoot/">yafoot</a></b><small> (<a href="https://ctan.org/pkg/yafoot">CTAN</a>): -A bundle of miscellaneous footnote packages +A bundle of miscellaneous footnote packages. <a href="texmf-dist/doc/latex/yafoot/yafoot-man.pdf">yafoot-man.pdf</a>. </small></li> -<li id="yagusylo"><b><a href="texmf-dist/doc/latex/yagusylo">yagusylo</a></b><small> +<li id="yagusylo"><b><a href="texmf-dist/doc/latex/yagusylo/">yagusylo</a></b><small> (<a href="https://ctan.org/pkg/yagusylo">CTAN</a>): -A symbol loader +A symbol loader. <a href="texmf-dist/doc/latex/yagusylo/yagusylo-en.pdf">yagusylo-en.pdf</a> <a href="texmf-dist/doc/latex/yagusylo/yagusylo-fr.pdf">yagusylo-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/yagusylo/yagusylo.pdf">yagusylo.pdf</a>. </small></li> -<li id="yaletter"><b><a href="texmf-dist/doc/latex/yaletter">yaletter</a></b><small> +<li id="yaletter"><b><a href="texmf-dist/doc/latex/yaletter/">yaletter</a></b><small> (<a href="https://ctan.org/pkg/yaletter">CTAN</a>): -Extremely flexible macros for letters, envelopes, and label sheets +Extremely flexible macros for letters, envelopes, and label sheets. <a href="texmf-dist/doc/latex/yaletter/yaletter.pdf">yaletter.pdf</a>. </small></li> -<li id="yathesis"><b><a href="texmf-dist/doc/latex/yathesis/french/documentation">yathesis</a></b><small> +<li id="yathesis"><b><a href="texmf-dist/doc/latex/yathesis/french/documentation/">yathesis</a></b><small> (<a href="https://ctan.org/pkg/yathesis">CTAN</a>): -A LaTeX class for writing a thesis following French rules +A LaTeX class for writing a thesis following French rules. <a href="texmf-dist/doc/latex/yathesis/french/documentation/yathesis-fr.pdf">yathesis-fr.pdf</a> (fr) <a href="texmf-dist/doc/latex/yathesis/french/exemples/specimen/a-plat/comue.pdf">comue.pdf</a> <a href="texmf-dist/doc/latex/yathesis/french/exemples/specimen/a-plat/labo.pdf">labo.pdf</a> @@ -24435,15 +24347,15 @@ A LaTeX class for writing a thesis following French rules <a href="texmf-dist/doc/latex/yathesis/french/exemples/specimen/a-plat/ulco.pdf">ulco.pdf</a>. </small></li> -<li id="yax"><b><a href="texmf-dist/doc/generic/yax">yax</a></b><small> +<li id="yax"><b><a href="texmf-dist/doc/generic/yax/">yax</a></b><small> (<a href="https://ctan.org/pkg/yax">CTAN</a>): -Yet Another Key System +Yet Another Key System. <a href="texmf-dist/doc/generic/yax/yax-doc.pdf">yax-doc.pdf</a>. </small></li> -<li id="yazd-thesis"><b><a href="texmf-dist/doc/xelatex/yazd-thesis/figures">yazd-thesis</a></b><small> +<li id="yazd-thesis"><b><a href="texmf-dist/doc/xelatex/yazd-thesis/">yazd-thesis</a></b><small> (<a href="https://ctan.org/pkg/yazd-thesis">CTAN</a>): -A template for the Yazd University +A template for the Yazd University. <a href="texmf-dist/doc/xelatex/yazd-thesis/figures/DSsequence.pdf">DSsequence.pdf</a> <a href="texmf-dist/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-p1.pdf">farsitex2xepersian-p1.pdf</a> <a href="texmf-dist/doc/xelatex/yazd-thesis/figures/farsitex2xepersian-p2.pdf">farsitex2xepersian-p2.pdf</a> @@ -24451,51 +24363,51 @@ A template for the Yazd University <a href="texmf-dist/doc/xelatex/yazd-thesis/yazd-thesis.pdf">yazd-thesis.pdf</a> (fa). </small></li> -<li id="ycbook"><b><a href="texmf-dist/doc/latex/ycbook">ycbook</a></b><small> +<li id="ycbook"><b><a href="texmf-dist/doc/latex/ycbook/">ycbook</a></b><small> (<a href="https://ctan.org/pkg/ycbook">CTAN</a>): -A versatile book class +A versatile book class. <a href="texmf-dist/doc/latex/ycbook/ycbook-doc.pdf">ycbook-doc.pdf</a>. </small></li> -<li id="ydoc"><b><a href="texmf-dist/doc/latex/ydoc">ydoc</a></b><small> +<li id="ydoc"><b><a href="texmf-dist/doc/latex/ydoc/">ydoc</a></b><small> (<a href="https://ctan.org/pkg/ydoc">CTAN</a>): -Macros for documentation of LaTeX classes and packages +Macros for documentation of LaTeX classes and packages. <a href="texmf-dist/doc/latex/ydoc/ydoc.pdf">ydoc.pdf</a>. </small></li> -<li id="yfonts"><b><a href="texmf-dist/doc/latex/yfonts">yfonts</a></b><small> +<li id="yfonts"><b><a href="texmf-dist/doc/latex/yfonts/">yfonts</a></b><small> (<a href="https://ctan.org/pkg/yfonts">CTAN</a>): -Support for old German fonts +Support for old German fonts. <a href="texmf-dist/doc/latex/yfonts/yfonts.pdf">yfonts.pdf</a>. </small></li> -<li id="yhmath"><b><a href="texmf-dist/doc/fonts/yhmath">yhmath</a></b><small> +<li id="yhmath"><b><a href="texmf-dist/doc/fonts/yhmath/">yhmath</a></b><small> (<a href="https://ctan.org/pkg/yhmath">CTAN</a>): -Extended maths fonts for LaTeX +Extended maths fonts for LaTeX. <a href="texmf-dist/doc/fonts/yhmath/yhmath.pdf">yhmath.pdf</a>. </small></li> -<li id="york-thesis"><b><a href="texmf-dist/doc/latex/york-thesis">york-thesis</a></b><small> +<li id="york-thesis"><b><a href="texmf-dist/doc/latex/york-thesis/">york-thesis</a></b><small> (<a href="https://ctan.org/pkg/york-thesis">CTAN</a>): -A thesis class file for York University, Toronto +A thesis class file for York University, Toronto. <a href="texmf-dist/doc/latex/york-thesis/york-thesis.pdf">york-thesis.pdf</a>. </small></li> -<li id="youngtab"><b><a href="texmf-dist/doc/latex/youngtab">youngtab</a></b><small> +<li id="youngtab"><b><a href="texmf-dist/doc/latex/youngtab/">youngtab</a></b><small> (<a href="https://ctan.org/pkg/youngtab">CTAN</a>): -Typeset Young-Tableaux +Typeset Young-Tableaux. <a href="texmf-dist/doc/latex/youngtab/youngtab.pdf">youngtab.pdf</a>. </small></li> -<li id="yquant"><b><a href="texmf-dist/doc/latex/yquant">yquant</a></b><small> +<li id="yquant"><b><a href="texmf-dist/doc/latex/yquant/">yquant</a></b><small> (<a href="https://ctan.org/pkg/yquant">CTAN</a>): -Typesetting quantum circuits in a human-readable language +Typesetting quantum circuits in a human-readable language. <a href="texmf-dist/doc/latex/yquant/yquant-doc.pdf">yquant-doc.pdf</a>. </small></li> -<li id="ytableau"><b><a href="texmf-dist/doc/latex/ytableau">ytableau</a></b><small> +<li id="ytableau"><b><a href="texmf-dist/doc/latex/ytableau/">ytableau</a></b><small> (<a href="https://ctan.org/pkg/ytableau">CTAN</a>): -Many-featured Young tableaux and Young diagrams +Many-featured Young tableaux and Young diagrams. <a href="texmf-dist/doc/latex/ytableau/ytableau.pdf">ytableau.pdf</a>. </small></li> @@ -24505,94 +24417,94 @@ Many-featured Young tableaux and Young diagrams <ol start="3221"> -<li id="zebra-goodies"><b><a href="texmf-dist/doc/latex/zebra-goodies">zebra-goodies</a></b><small> +<li id="zebra-goodies"><b><a href="texmf-dist/doc/latex/zebra-goodies/">zebra-goodies</a></b><small> (<a href="https://ctan.org/pkg/zebra-goodies">CTAN</a>): -A collection of handy macros for paper writing +A collection of handy macros for paper writing. <a href="texmf-dist/doc/latex/zebra-goodies/zebra-goodies.pdf">zebra-goodies.pdf</a>. </small></li> -<li id="zed-csp"><b><a href="texmf-dist/doc/latex/zed-csp">zed-csp</a></b><small> +<li id="zed-csp"><b><a href="texmf-dist/doc/latex/zed-csp/">zed-csp</a></b><small> (<a href="https://ctan.org/pkg/zed-csp">CTAN</a>): -Typesetting Z and CSP format specifications +Typesetting Z and CSP format specifications. <a href="texmf-dist/doc/latex/zed-csp/csp2e.pdf">csp2e.pdf</a> <a href="texmf-dist/doc/latex/zed-csp/zed2e.pdf">zed2e.pdf</a>. </small></li> -<li id="zhlineskip"><b><a href="texmf-dist/doc/latex/zhlineskip">zhlineskip</a></b><small> +<li id="zhlineskip"><b><a href="texmf-dist/doc/latex/zhlineskip/">zhlineskip</a></b><small> (<a href="https://ctan.org/pkg/zhlineskip">CTAN</a>): -Line spacing for CJK documents +Line spacing for CJK documents. <a href="texmf-dist/doc/latex/zhlineskip/CJKmetrics.pdf">CJKmetrics.pdf</a> <a href="texmf-dist/doc/latex/zhlineskip/Latinmetrics.pdf">Latinmetrics.pdf</a> <a href="texmf-dist/doc/latex/zhlineskip/zhlineskip.pdf">zhlineskip.pdf</a> (zh). </small></li> -<li id="zhlipsum"><b><a href="texmf-dist/doc/latex/zhlipsum">zhlipsum</a></b><small> +<li id="zhlipsum"><b><a href="texmf-dist/doc/latex/zhlipsum/">zhlipsum</a></b><small> (<a href="https://ctan.org/pkg/zhlipsum">CTAN</a>): -Chinese dummy text +Chinese dummy text. <a href="texmf-dist/doc/latex/zhlipsum/zhlipsum-en.pdf">zhlipsum-en.pdf</a> <a href="texmf-dist/doc/latex/zhlipsum/zhlipsum.pdf">zhlipsum.pdf</a> (zh). </small></li> -<li id="zhmetrics-uptex"><b><a href="texmf-dist/doc/fonts/zhmetrics-uptex">zhmetrics-uptex</a></b><small> +<li id="zhmetrics-uptex"><b><a href="texmf-dist/doc/fonts/zhmetrics-uptex/">zhmetrics-uptex</a></b><small> (<a href="https://ctan.org/pkg/zhmetrics-uptex">CTAN</a>): -Chinese font metrics for upTeX +Chinese font metrics for upTeX. <a href="texmf-dist/doc/fonts/zhmetrics-uptex/upzhfandolfonts-test.pdf">upzhfandolfonts-test.pdf</a>. </small></li> -<li id="zhnumber"><b><a href="texmf-dist/doc/latex/zhnumber">zhnumber</a></b><small> +<li id="zhnumber"><b><a href="texmf-dist/doc/latex/zhnumber/">zhnumber</a></b><small> (<a href="https://ctan.org/pkg/zhnumber">CTAN</a>): -Typeset Chinese representations of numbers +Typeset Chinese representations of numbers. <a href="texmf-dist/doc/latex/zhnumber/zhnumber.pdf">zhnumber.pdf</a> (zh). </small></li> -<li id="zhspacing"><b><a href="texmf-dist/doc/generic/zhspacing">zhspacing</a></b><small> +<li id="zhspacing"><b><a href="texmf-dist/doc/generic/zhspacing/">zhspacing</a></b><small> (<a href="https://ctan.org/pkg/zhspacing">CTAN</a>): -Spacing for mixed CJK-English documents in XeTeX +Spacing for mixed CJK-English documents in XeTeX. <a href="texmf-dist/doc/generic/zhspacing/zhs-man.pdf">zhs-man.pdf</a>. </small></li> -<li id="zlmtt"><b><a href="texmf-dist/doc/fonts/zlmtt">zlmtt</a></b><small> +<li id="zlmtt"><b><a href="texmf-dist/doc/fonts/zlmtt/">zlmtt</a></b><small> (<a href="https://ctan.org/pkg/zlmtt">CTAN</a>): -Use Latin Modern Typewriter fonts +Use Latin Modern Typewriter fonts. <a href="texmf-dist/doc/fonts/zlmtt/zlmtt-doc.pdf">zlmtt-doc.pdf</a>. </small></li> -<li id="zootaxa-bst"><b><a href="texmf-dist/doc/bibtex/zootaxa-bst">zootaxa-bst</a></b><small> +<li id="zootaxa-bst"><b><a href="texmf-dist/doc/bibtex/zootaxa-bst/">zootaxa-bst</a></b><small> (<a href="https://ctan.org/pkg/zootaxa-bst">CTAN</a>): -A BibTeX style for the journal Zootaxa +A BibTeX style for the journal Zootaxa. <a href="texmf-dist/doc/bibtex/zootaxa-bst/example.pdf">example.pdf</a>. </small></li> -<li id="zref"><b><a href="texmf-dist/doc/latex/zref">zref</a></b><small> +<li id="zref"><b><a href="texmf-dist/doc/latex/zref/">zref</a></b><small> (<a href="https://ctan.org/pkg/zref">CTAN</a>): -A new reference scheme for LaTeX +A new reference scheme for LaTeX. <a href="texmf-dist/doc/latex/zref/zref.pdf">zref.pdf</a>. </small></li> -<li id="zwgetfdate"><b><a href="texmf-dist/doc/latex/zwgetfdate">zwgetfdate</a></b><small> +<li id="zwgetfdate"><b><a href="texmf-dist/doc/latex/zwgetfdate/">zwgetfdate</a></b><small> (<a href="https://ctan.org/pkg/zwgetfdate">CTAN</a>): -Get package or file date +Get package or file date. <a href="texmf-dist/doc/latex/zwgetfdate/zwgetfdate.pdf">zwgetfdate.pdf</a>. </small></li> -<li id="zwpagelayout"><b><a href="texmf-dist/doc/latex/zwpagelayout">zwpagelayout</a></b><small> +<li id="zwpagelayout"><b><a href="texmf-dist/doc/latex/zwpagelayout/">zwpagelayout</a></b><small> (<a href="https://ctan.org/pkg/zwpagelayout">CTAN</a>): -Page layout and crop-marks +Page layout and crop-marks. <a href="texmf-dist/doc/latex/zwpagelayout/adjustfoot.pdf">adjustfoot.pdf</a> <a href="texmf-dist/doc/latex/zwpagelayout/adjusthead.pdf">adjusthead.pdf</a> <a href="texmf-dist/doc/latex/zwpagelayout/coversample.pdf">coversample.pdf</a> <a href="texmf-dist/doc/latex/zwpagelayout/zwpagelayout.pdf">zwpagelayout.pdf</a>. </small></li> -<li id="zxjafont"><b><a href="texmf-dist/doc/latex/zxjafont">zxjafont</a></b><small> +<li id="zxjafont"><b><a href="texmf-dist/doc/latex/zxjafont/">zxjafont</a></b><small> (<a href="https://ctan.org/pkg/zxjafont">CTAN</a>): -Set up Japanese font families for XeLaTeX +Set up Japanese font families for XeLaTeX. <a href="texmf-dist/doc/latex/zxjafont/zxjafont.pdf">zxjafont.pdf</a>. </small></li> -<li id="zxjatype"><b><a href="texmf-dist/doc/latex/zxjatype/example">zxjatype</a></b><small> +<li id="zxjatype"><b><a href="texmf-dist/doc/latex/zxjatype/">zxjatype</a></b><small> (<a href="https://ctan.org/pkg/zxjatype">CTAN</a>): -Standard conforming typesetting of Japanese, for XeLaTeX +Standard conforming typesetting of Japanese, for XeLaTeX. <a href="texmf-dist/doc/latex/zxjatype/example/example.pdf">example.pdf</a> <a href="texmf-dist/doc/latex/zxjatype/example/xetexsamp01.pdf">xetexsamp01.pdf</a>. </small></li> @@ -24602,5 +24514,5 @@ Standard conforming typesetting of Japanese, for XeLaTeX <p><a href="#letter-1">1</a> - <a href="#letter-2">2</a> - <a href="#letter-A">A</a> - <a href="#letter-B">B</a> - <a href="#letter-C">C</a> - <a href="#letter-D">D</a> - <a href="#letter-E">E</a> - <a href="#letter-F">F</a> - <a href="#letter-G">G</a> - <a href="#letter-H">H</a> - <a href="#letter-I">I</a> - <a href="#letter-J">J</a> - <a href="#letter-K">K</a> - <a href="#letter-L">L</a> - <a href="#letter-M">M</a> - <a href="#letter-N">N</a> - <a href="#letter-O">O</a> - <a href="#letter-P">P</a> - <a href="#letter-Q">Q</a> - <a href="#letter-R">R</a> - <a href="#letter-S">S</a> - <a href="#letter-T">T</a> - <a href="#letter-U">U</a> - <a href="#letter-V">V</a> - <a href="#letter-W">W</a> - <a href="#letter-X">X</a> - <a href="#letter-Y">Y</a> - <a href="#letter-Z">Z</a></p> <hr> -<small>Generated Sat May 23 23:09:48 CEST 2020 by tl-update-docindex.</small> +<small>Generated Sun May 24 23:59:24 CEST 2020 by tl-update-docindex.</small> </body></html> diff --git a/Master/texmf-dist/tex/texinfo/texinfo.tex b/Master/texmf-dist/tex/texinfo/texinfo.tex index 2b7b31b34a9..d3136db38aa 100644 --- a/Master/texmf-dist/tex/texinfo/texinfo.tex +++ b/Master/texmf-dist/tex/texinfo/texinfo.tex @@ -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@gnu.org. Please include including a +% Send bug reports to bug-texinfo@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@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 @@ where each line of input produces a line of output.} \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 @@ where each line of input produces a line of output.} \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 @@ end \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 @@ end \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,37 +3945,34 @@ end \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 \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 % 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 @@ end \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,8 +3992,22 @@ end \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 } @@ -5139,64 +5198,66 @@ end \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}% - % - \def\LaTeX{LaTeX}% - \def\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}% + \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}% + % + \do\LaTeX{LaTeX}% + \do\TeX{TeX}% + % + % 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,7 +5272,10 @@ end \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}}% @@ -6423,18 +6487,16 @@ might help (with 'rm \jobname.?? \jobname.??s')% \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 @@ might help (with 'rm \jobname.?? \jobname.??s')% % \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@matematik.su.se> + % start on an odd page, unlike chapters. \contentsalignmacro \immediate\closeout\tocfile % @@ -6816,6 +6876,9 @@ might help (with 'rm \jobname.?? \jobname.??s')% % % 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 @@ might help (with 'rm \jobname.?? \jobname.??s')% \fi \closein 1 \endgroup - \lastnegativepageno = \pageno - \global\pageno = \savepageno + \contentsendroman } % And just the chapters. @@ -6874,10 +6936,20 @@ might help (with 'rm \jobname.?? \jobname.??s')% \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 @@ might help (with 'rm \jobname.?? \jobname.??s')% \wlog{texinfo.tex: doing @verbatiminclude of #1^^J}% \edef\tmp{\noexpand\input #1 } \expandafter - }\tmp + }\expandafter\starttabbox\tmp\egroup \afterenvbreak }% } @@ -10725,6 +10797,8 @@ directory should work if nowhere else does.} \DeclareUnicodeCharacter{0233}{\=y}% \DeclareUnicodeCharacter{0237}{\dotless{j}}% % + \DeclareUnicodeCharacter{02BC}{'}% + % \DeclareUnicodeCharacter{02DB}{\ogonek{ }}% % % Greek letters upper case |