texlive[42074] trunk: tl-update-auto

commits+karl at tug.org commits+karl at tug.org
Thu Sep 15 03:17:31 CEST 2016


Revision: 42074
          http://tug.org/svn/texlive?view=revision&revision=42074
Author:   karl
Date:     2016-09-15 03:17:30 +0200 (Thu, 15 Sep 2016)
Log Message:
-----------
tl-update-auto

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

Modified: trunk/Build/source/build-aux/texinfo.tex
===================================================================
--- trunk/Build/source/build-aux/texinfo.tex	2016-09-15 01:11:30 UTC (rev 42073)
+++ trunk/Build/source/build-aux/texinfo.tex	2016-09-15 01:17:30 UTC (rev 42074)
@@ -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{2016-09-11.15}
+\def\texinfoversion{2016-09-12.20}
 %
 % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
 % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
@@ -1855,41 +1855,10 @@
   }
 \fi
 
-\message{fonts,}
 
-% Change the current font style to #1, remembering it in \curfontstyle.
-% For now, we do not accumulate font styles: @b{@i{foo}} prints foo in
-% italics, not bold italics.
 %
-\def\setfontstyle#1{%
-  \def\curfontstyle{#1}% not as a control sequence, because we are \edef'd.
-  \csname ten#1\endcsname  % change the current font
-}
+\message{fonts,}
 
-% Select #1 fonts with the current style.
-%
-\def\selectfonts#1{\csname #1fonts\endcsname \csname\curfontstyle\endcsname}
-
-\def\rm{\fam=0 \setfontstyle{rm}}
-\def\it{\fam=\itfam \setfontstyle{it}}
-\def\sl{\fam=\slfam \setfontstyle{sl}}
-\def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf}
-\def\tt{\fam=\ttfam \setfontstyle{tt}}
-
-% Unfortunately, we have to override this for titles and the like, since
-% in those cases "rm" is bold.  Sigh.
-\def\rmisbold{\rm\def\curfontstyle{bf}}
-
-% Texinfo sort of supports the sans serif font style, which plain TeX does not.
-% So we set up a \sf.
-\newfam\sffam
-\def\sf{\fam=\sffam \setfontstyle{sf}}
-\let\li = \sf % Sometimes we call it \li, not \sf.
-
-% We don't need math for this font style.
-\def\ttsl{\setfontstyle{ttsl}}
-
-
 % Set the baselineskip to #1, and the lineskip and strut size
 % correspondingly.  There is no deep meaning behind these magic numbers
 % used as factors; they just match (closely enough) what Knuth defined.
@@ -2239,8 +2208,8 @@
 \setfont\deftt\ttshape{10}{\magstep1}{OT1TT}
 \setfont\defsl\slshape{10}{\magstep1}{OT1TT}
 \setfont\defttsl\ttslshape{10}{\magstep1}{OT1TT}
-\def\df{\let\tentt=\deftt \let\tenbf = \defbf
-\let\tenttsl=\defttsl \let\tensl=\defsl \bf}
+\def\df{\let\ttfont=\deftt \let\bffont = \defbf
+\let\ttfontsl=\defttsl \let\slfont=\defsl \bf}
 
 % Fonts for indices, footnotes, small examples (9pt).
 \def\smallnominalsize{9pt}
@@ -2373,8 +2342,8 @@
 \setfont\deftt\ttshape{10}{\magstephalf}{OT1TT}
 \setfont\defsl\slshape{10}{\magstephalf}{OT1TT}
 \setfont\defttsl\ttslshape{10}{\magstephalf}{OT1TT}
-\def\df{\let\tentt=\deftt \let\tenbf = \defbf
-\let\tensl=\defsl \let\tenttsl=\defttsl \bf}
+\def\df{\let\ttfont=\deftt \let\bffont = \defbf
+\let\slfont=\defsl \let\ttfontsl=\defttsl \bf}
 
 % Fonts for indices, footnotes, small examples (9pt).
 \def\smallnominalsize{9pt}
@@ -2480,7 +2449,13 @@
 \rm
 } % end of 10pt text font size definitions, \definetextfontsizex
 
+% Fonts for short table of contents.
+\setfont\shortcontrm\rmshape{12}{1000}{OT1}
+\setfont\shortcontbf\bfshape{10}{\magstep1}{OT1}  % no cmb12
+\setfont\shortcontsl\slshape{12}{1000}{OT1}
+\setfont\shortconttt\ttshape{12}{1000}{OT1TT}
 
+
 % We provide the user-level command
 %   @fonttextsize 10
 % (or 11) to redefine the text font size.  pt is assumed.
@@ -2506,20 +2481,55 @@
  \endgroup
 }
 
+%
+% Change the current font style to #1, remembering it in \curfontstyle.
+% For now, we do not accumulate font styles: @b{@i{foo}} prints foo in
+% italics, not bold italics.
+%
+\def\setfontstyle#1{%
+  \def\curfontstyle{#1}% not as a control sequence, because we are \edef'd.
+  \csname #1font\endcsname  % change the current font
+}
+
+\def\rm{\fam=0 \setfontstyle{rm}}
+\def\it{\fam=\itfam \setfontstyle{it}}
+\def\sl{\fam=\slfam \setfontstyle{sl}}
+\def\bf{\fam=\bffam \setfontstyle{bf}}\def\bfstylename{bf}
+\def\tt{\fam=\ttfam \setfontstyle{tt}}
+
+% Unfortunately, we have to override this for titles and the like, since
+% in those cases "rm" is bold.  Sigh.
+\def\rmisbold{\rm\def\curfontstyle{bf}}
+
+% Texinfo sort of supports the sans serif font style, which plain TeX does not.
+% So we set up a \sf.
+\newfam\sffam
+\def\sf{\fam=\sffam \setfontstyle{sf}}
+
+% We don't need math for this font style.
+\def\ttsl{\setfontstyle{ttsl}}
+
+
 % In order for the font changes to affect most math symbols and letters,
 % we have to define the \textfont of the standard families.  We don't
 % bother to reset \scriptfont and \scriptscriptfont; awaiting user need.
 %
 \def\resetmathfonts{%
-  \textfont0=\tenrm \textfont1=\teni \textfont2=\tensy
-  \textfont\itfam=\tenit \textfont\slfam=\tensl \textfont\bffam=\tenbf
-  \textfont\ttfam=\tentt \textfont\sffam=\tensf
+  \textfont0=\rmfont \textfont1=\ifont \textfont2=\syfont
+  \textfont\itfam=\itfont \textfont\slfam=\slfont \textfont\bffam=\bffont
+  \textfont\ttfam=\ttfont \textfont\sffam=\sffont
 }
 
-% The font-changing commands redefine the meanings of \tenSTYLE, instead
+% Select #1 fonts with the current style.  Used to change font size
+% in, e.g., the LaTeX logo and acronyms.
+%
+\def\selectfonts#1{\csname #1fonts\endcsname \csname\curfontstyle\endcsname}
+
+% The font-changing commands (all called \...fonts) redefine the meanings of 
+% \STYLEfont, instead
 % of just \STYLE.  We do this because \STYLE needs to also set the
 % current \fam for math mode.  Our \STYLE (e.g., \rm) commands hardwire
-% \tenSTYLE to set the current font.
+% \STYLEfont to set the current font.
 %
 % Each font-changing command also sets the names \lsize (one size lower)
 % and \lllsize (three sizes lower).  These relative commands are used
@@ -2528,78 +2538,72 @@
 % This all needs generalizing, badly.
 %
 \def\textfonts{%
-  \let\tenrm=\textrm \let\tenit=\textit \let\tensl=\textsl
-  \let\tenbf=\textbf \let\tentt=\texttt \let\smallcaps=\textsc
-  \let\tensf=\textsf \let\teni=\texti \let\tensy=\textsy
-  \let\tenttsl=\textttsl
+  \let\rmfont=\textrm \let\itfont=\textit \let\slfont=\textsl
+  \let\bffont=\textbf \let\ttfont=\texttt \let\smallcaps=\textsc
+  \let\sffont=\textsf \let\ifont=\texti \let\syfont=\textsy
+  \let\ttfontsl=\textttsl
   \def\curfontsize{text}%
   \def\lsize{reduced}\def\lllsize{smaller}%
   \resetmathfonts \setleading{\textleading}}
 \def\titlefonts{%
-  \let\tenrm=\titlerm \let\tenit=\titleit \let\tensl=\titlesl
-  \let\tenbf=\titlebf \let\tentt=\titlett \let\smallcaps=\titlesc
-  \let\tensf=\titlesf \let\teni=\titlei \let\tensy=\titlesy
-  \let\tenttsl=\titlettsl
+  \let\rmfont=\titlerm \let\itfont=\titleit \let\slfont=\titlesl
+  \let\bffont=\titlebf \let\ttfont=\titlett \let\smallcaps=\titlesc
+  \let\sffont=\titlesf \let\ifont=\titlei \let\syfont=\titlesy
+  \let\ttfontsl=\titlettsl
   \def\curfontsize{title}%
   \def\lsize{chap}\def\lllsize{subsec}%
   \resetmathfonts \setleading{27pt}}
 \def\titlefont#1{{\titlefonts\rmisbold #1}}
 \def\chapfonts{%
-  \let\tenrm=\chaprm \let\tenit=\chapit \let\tensl=\chapsl
-  \let\tenbf=\chapbf \let\tentt=\chaptt \let\smallcaps=\chapsc
-  \let\tensf=\chapsf \let\teni=\chapi \let\tensy=\chapsy
-  \let\tenttsl=\chapttsl
+  \let\rmfont=\chaprm \let\itfont=\chapit \let\slfont=\chapsl
+  \let\bffont=\chapbf \let\ttfont=\chaptt \let\smallcaps=\chapsc
+  \let\sffont=\chapsf \let\ifont=\chapi \let\syfont=\chapsy
+  \let\ttfontsl=\chapttsl
   \def\curfontsize{chap}%
   \def\lsize{sec}\def\lllsize{text}%
   \resetmathfonts \setleading{19pt}}
 \def\secfonts{%
-  \let\tenrm=\secrm \let\tenit=\secit \let\tensl=\secsl
-  \let\tenbf=\secbf \let\tentt=\sectt \let\smallcaps=\secsc
-  \let\tensf=\secsf \let\teni=\seci \let\tensy=\secsy
-  \let\tenttsl=\secttsl
+  \let\rmfont=\secrm \let\itfont=\secit \let\slfont=\secsl
+  \let\bffont=\secbf \let\ttfont=\sectt \let\smallcaps=\secsc
+  \let\sffont=\secsf \let\ifont=\seci \let\syfont=\secsy
+  \let\ttfontsl=\secttsl
   \def\curfontsize{sec}%
   \def\lsize{subsec}\def\lllsize{reduced}%
   \resetmathfonts \setleading{17pt}}
 \def\subsecfonts{%
-  \let\tenrm=\ssecrm \let\tenit=\ssecit \let\tensl=\ssecsl
-  \let\tenbf=\ssecbf \let\tentt=\ssectt \let\smallcaps=\ssecsc
-  \let\tensf=\ssecsf \let\teni=\sseci \let\tensy=\ssecsy
-  \let\tenttsl=\ssecttsl
+  \let\rmfont=\ssecrm \let\itfont=\ssecit \let\slfont=\ssecsl
+  \let\bffont=\ssecbf \let\ttfont=\ssectt \let\smallcaps=\ssecsc
+  \let\sffont=\ssecsf \let\ifont=\sseci \let\syfont=\ssecsy
+  \let\ttfontsl=\ssecttsl
   \def\curfontsize{ssec}%
   \def\lsize{text}\def\lllsize{small}%
   \resetmathfonts \setleading{15pt}}
 \let\subsubsecfonts = \subsecfonts
 \def\reducedfonts{%
-  \let\tenrm=\reducedrm \let\tenit=\reducedit \let\tensl=\reducedsl
-  \let\tenbf=\reducedbf \let\tentt=\reducedtt \let\reducedcaps=\reducedsc
-  \let\tensf=\reducedsf \let\teni=\reducedi \let\tensy=\reducedsy
-  \let\tenttsl=\reducedttsl
+  \let\rmfont=\reducedrm \let\itfont=\reducedit \let\slfont=\reducedsl
+  \let\bffont=\reducedbf \let\ttfont=\reducedtt \let\reducedcaps=\reducedsc
+  \let\sffont=\reducedsf \let\ifont=\reducedi \let\syfont=\reducedsy
+  \let\ttfontsl=\reducedttsl
   \def\curfontsize{reduced}%
   \def\lsize{small}\def\lllsize{smaller}%
   \resetmathfonts \setleading{10.5pt}}
 \def\smallfonts{%
-  \let\tenrm=\smallrm \let\tenit=\smallit \let\tensl=\smallsl
-  \let\tenbf=\smallbf \let\tentt=\smalltt \let\smallcaps=\smallsc
-  \let\tensf=\smallsf \let\teni=\smalli \let\tensy=\smallsy
-  \let\tenttsl=\smallttsl
+  \let\rmfont=\smallrm \let\itfont=\smallit \let\slfont=\smallsl
+  \let\bffont=\smallbf \let\ttfont=\smalltt \let\smallcaps=\smallsc
+  \let\sffont=\smallsf \let\ifont=\smalli \let\syfont=\smallsy
+  \let\ttfontsl=\smallttsl
   \def\curfontsize{small}%
   \def\lsize{smaller}\def\lllsize{smaller}%
   \resetmathfonts \setleading{10.5pt}}
 \def\smallerfonts{%
-  \let\tenrm=\smallerrm \let\tenit=\smallerit \let\tensl=\smallersl
-  \let\tenbf=\smallerbf \let\tentt=\smallertt \let\smallcaps=\smallersc
-  \let\tensf=\smallersf \let\teni=\smalleri \let\tensy=\smallersy
-  \let\tenttsl=\smallerttsl
+  \let\rmfont=\smallerrm \let\itfont=\smallerit \let\slfont=\smallersl
+  \let\bffont=\smallerbf \let\ttfont=\smallertt \let\smallcaps=\smallersc
+  \let\sffont=\smallersf \let\ifont=\smalleri \let\syfont=\smallersy
+  \let\ttfontsl=\smallerttsl
   \def\curfontsize{smaller}%
   \def\lsize{smaller}\def\lllsize{smaller}%
   \resetmathfonts \setleading{9.5pt}}
 
-% Fonts for short table of contents.
-\setfont\shortcontrm\rmshape{12}{1000}{OT1}
-\setfont\shortcontbf\bfshape{10}{\magstep1}{OT1}  % no cmb12
-\setfont\shortcontsl\slshape{12}{1000}{OT1}
-\setfont\shortconttt\ttshape{12}{1000}{OT1TT}
-
 % Define these just so they can be easily changed for other fonts.
 \def\angleleft{$\langle$}
 \def\angleright{$\rangle$}
@@ -3505,7 +3509,7 @@
 %
 \newbox\errorbox
 %
-{\tentt \global\dimen0 = 3em}% Width of the box.
+{\ttfont \global\dimen0 = 3em}% Width of the box.
 \dimen2 = .55pt % Thickness of rules
 % The text. (`r' is open on the right, `e' somewhat less so on the left.)
 \setbox0 = \hbox{\kern-.75pt \reducedsf \putworderror\kern-1.5pt}
@@ -3764,7 +3768,7 @@
 
 % Macros to be used within @titlepage:
 
-\let\subtitlerm=\tenrm
+\let\subtitlerm=\rmfont
 \def\subtitlefont{\subtitlerm \normalbaselineskip = 13pt \normalbaselines}
 
 \parseargdef\title{%
@@ -7916,7 +7920,7 @@
     \fi           % no return type
     #3% output function name
   }%
-  {\rm\enskip}% hskip 0.5 em of \tenrm
+  {\rm\enskip}% hskip 0.5 em of \rmfont
   %
   \boldbrax
   % arguments will be output next, if any.

Modified: trunk/Master/doc.html
===================================================================
--- trunk/Master/doc.html	2016-09-15 01:11:30 UTC (rev 42073)
+++ trunk/Master/doc.html	2016-09-15 01:17:30 UTC (rev 42074)
@@ -1674,7 +1674,8 @@
 <a href="texmf-dist/doc/latex/biblatex/examples/92-bibliographylists-biber.pdf">92-bibliographylists-biber.pdf</a>,
 <a href="texmf-dist/doc/latex/biblatex/examples/93-nameparts-biber.pdf">93-nameparts-biber.pdf</a>,
 <a href="texmf-dist/doc/latex/biblatex/examples/94-labelprefix-biber.pdf">94-labelprefix-biber.pdf</a>,
-<a href="texmf-dist/doc/latex/biblatex/examples/95-customlists-biber.pdf">95-customlists-biber.pdf</a>.
+<a href="texmf-dist/doc/latex/biblatex/examples/95-customlists-biber.pdf">95-customlists-biber.pdf</a>,
+<a href="texmf-dist/doc/latex/biblatex/examples/96-dates-biber.pdf">96-dates-biber.pdf</a>.
 </small></li>
 
 <li><b><a href="texmf-dist/doc/latex/biblatex-abnt">biblatex-abnt</a></b>:<small>
@@ -1705,6 +1706,8 @@
 <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>,
+<a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookininarticle.pdf">example-bookininarticle.pdf</a>,
+<a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookininbook.pdf">example-bookininbook.pdf</a>,
 <a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookinincollection.pdf">example-bookinincollection.pdf</a>,
 <a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookininproceedings.pdf">example-bookininproceedings.pdf</a>,
 <a href="texmf-dist/doc/latex/biblatex-bookinother/documentation/example-bookinjournal.pdf">example-bookinjournal.pdf</a>,
@@ -1745,6 +1748,11 @@
 <a href="texmf-dist/doc/latex/biblatex-chicago/cms15-notes-sample.pdf">cms15-notes-sample.pdf</a>.
 </small></li>
 
+<li><b><a href="texmf-dist/doc/latex/biblatex-claves/documentation">biblatex-claves</a></b>:<small>
+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><b><a href="texmf-dist/doc/latex/biblatex-dw">biblatex-dw</a></b>:<small>
 Humanities styles for BibLaTeX
 <a href="texmf-dist/doc/latex/biblatex-dw/biblatex-dw.pdf">biblatex-dw.pdf</a>,
@@ -1819,6 +1827,8 @@
 <li><b><a href="texmf-dist/doc/latex/biblatex-morenames/documentation">biblatex-morenames</a></b>:<small>
 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-IneditorFromEditor.pdf">example-bookineditor-IneditorFromEditor.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>
@@ -2374,7 +2384,7 @@
 
 <h2 id="letter-C">C</h2>
 
-<ol start="355">
+<ol start="356">
 
 <li><b><a href="texmf-dist/doc/fonts/enc/c90">c90</a></b>:<small>
 <a href="texmf-dist/doc/fonts/enc/c90/c90.pdf">c90.pdf</a>.
@@ -3835,7 +3845,7 @@
 
 <h2 id="letter-D">D</h2>
 
-<ol start="586">
+<ol start="587">
 
 <li><b><a href="texmf-dist/doc/fonts/dad">dad</a></b>:<small>
 Simple typesetting system for mixed Arabic/Latin documents
@@ -4636,7 +4646,7 @@
 
 <h2 id="letter-E">E</h2>
 
-<ol start="723">
+<ol start="724">
 
 <li><b><a href="texmf-dist/doc/generic/e-french">e-french</a></b>:<small>
 Comprehensive LaTeX support for French-language typesetting
@@ -5468,7 +5478,7 @@
 
 <h2 id="letter-F">F</h2>
 
-<ol start="860">
+<ol start="861">
 
 <li><b><a href="texmf-dist/doc/latex/facsimile">facsimile</a></b>:<small>
 Document class for preparing faxes
@@ -6285,7 +6295,7 @@
 
 <h2 id="letter-G">G</h2>
 
-<ol start="991">
+<ol start="992">
 
 <li><b><a href="texmf-dist/doc/latex/g-brief">g-brief</a></b>:<small>
 Letter document class
@@ -6958,7 +6968,7 @@
 
 <h2 id="letter-H">H</h2>
 
-<ol start="1091">
+<ol start="1092">
 
 <li><b><a href="texmf-dist/doc/latex/h2020proposal/manual">h2020proposal</a></b>:<small>
 LaTeX class and template for EU H2020 RIA proposal
@@ -7255,7 +7265,7 @@
 
 <h2 id="letter-I">I</h2>
 
-<ol start="1141">
+<ol start="1142">
 
 <li><b><a href="texmf-dist/doc/latex/ibycus-babel">ibycus-babel</a></b>:<small>
 Use the Ibycus 4 Greek font with Babel
@@ -7604,7 +7614,7 @@
 
 <h2 id="letter-J">J</h2>
 
-<ol start="1202">
+<ol start="1203">
 
 <li><b><a href="texmf-dist/doc/fonts/jablantile">jablantile</a></b>:<small>
 Metafont version of tiles in the style of Slavik Jablan
@@ -7737,7 +7747,7 @@
 
 <h2 id="letter-K">K</h2>
 
-<ol start="1221">
+<ol start="1222">
 
 <li><b><a href="texmf-dist/doc/latex/kantlipsum">kantlipsum</a></b>:<small>
 Generate sentences in Kant's style
@@ -7978,7 +7988,7 @@
 
 <h2 id="letter-L">L</h2>
 
-<ol start="1249">
+<ol start="1250">
 
 <li><b><a href="texmf-dist/doc/latex/l2picfaq">l2picfaq</a></b>:<small>
 LaTeX pictures "how-to" (German)
@@ -9178,7 +9188,7 @@
 
 <h2 id="letter-M">M</h2>
 
-<ol start="1428">
+<ol start="1429">
 
 <li><b><a href="texmf-dist/doc/generic/m-tx">m-tx</a></b>:<small>
 A preprocessor for pmx
@@ -10243,7 +10253,7 @@
 
 <h2 id="letter-N">N</h2>
 
-<ol start="1601">
+<ol start="1602">
 
 <li><b><a href="texmf-dist/doc/latex/nag">nag</a></b>:<small>
 Detecting and warning about obsolete LaTeX commands
@@ -10670,7 +10680,7 @@
 
 <h2 id="letter-O">O</h2>
 
-<ol start="1667">
+<ol start="1668">
 
 <li><b><a href="texmf-dist/doc/latex/oberdiek">oberdiek</a></b>:<small>
 A bundle of packages submitted by Heiko Oberdiek
@@ -10970,7 +10980,7 @@
 
 <h2 id="letter-P">P</h2>
 
-<ol start="1701">
+<ol start="1702">
 
 <li><b><a href="texmf-dist/doc/latex/pagecolor">pagecolor</a></b>:<small>
 Interrogate page colour
@@ -12602,7 +12612,7 @@
 
 <h2 id="letter-Q">Q</h2>
 
-<ol start="1961">
+<ol start="1962">
 
 <li><b><a href="texmf-dist/doc/latex/qcircuit">qcircuit</a></b>:<small>
 Macros to generate quantum ciruits
@@ -12669,7 +12679,7 @@
 
 <h2 id="letter-R">R</h2>
 
-<ol start="1972">
+<ol start="1973">
 
 <li><b><a href="texmf-dist/doc/latex/raleway">raleway</a></b>:<small>
 Use Raleway with TeX(-alike) systems
@@ -12927,6 +12937,11 @@
 <a href="texmf-dist/doc/latex/ribbonproofs/ribbonproofsmanual.pdf">ribbonproofsmanual.pdf</a>.
 </small></li>
 
+<li><b><a href="texmf-dist/doc/latex/richtext/doc">richtext</a></b>:<small>
+Create rich text strings.
+<a href="texmf-dist/doc/latex/richtext/doc/richtextman.pdf">richtextman.pdf</a>.
+</small></li>
+
 <li><b><a href="texmf-dist/doc/latex/rjlparshap">rjlparshap</a></b>:<small>
 Support for use of \parshape in LaTeX
 <a href="texmf-dist/doc/latex/rjlparshap/rjlpshap.pdf">rjlpshap.pdf</a>.
@@ -13087,7 +13102,7 @@
 
 <h2 id="letter-S">S</h2>
 
-<ol start="2036">
+<ol start="2038">
 
 <li><b><a href="texmf-dist/doc/latex/sa-tikz">sa-tikz</a></b>:<small>
 TikZ library to draw switching architectures
@@ -14256,7 +14271,7 @@
 
 <h2 id="letter-T">T</h2>
 
-<ol start="2220">
+<ol start="2222">
 
 <li><b><a href="texmf-dist/doc/latex/t-angles">t-angles</a></b>:<small>
 Draw tangles, trees, Hopf algebra operations and other pictures
@@ -15812,7 +15827,7 @@
 
 <h2 id="letter-U">U</h2>
 
-<ol start="2431">
+<ol start="2433">
 
 <li><b><a href="texmf-dist/doc/latex/uaclasses">uaclasses</a></b>:<small>
 University of Arizona thesis and dissertation format
@@ -16108,7 +16123,7 @@
 
 <h2 id="letter-V">V</h2>
 
-<ol start="2483">
+<ol start="2485">
 
 <li><b><a href="texmf-dist/doc/bibtex/vancouver">vancouver</a></b>:<small>
 Bibliographic style file for Biomedical Journals
@@ -16328,7 +16343,7 @@
 
 <h2 id="letter-W">W</h2>
 
-<ol start="2517">
+<ol start="2519">
 
 <li><b><a href="texmf-dist/doc/fonts/wadalab">wadalab</a></b>:<small>
 Wadalab (Japanese) font packages
@@ -16440,7 +16455,7 @@
 
 <h2 id="letter-X">X</h2>
 
-<ol start="2533">
+<ol start="2535">
 
 <li><b><a href="texmf-dist/doc/latex/xargs">xargs</a></b>:<small>
 Define commands with many optional arguments
@@ -16807,7 +16822,7 @@
 
 <h2 id="letter-Y">Y</h2>
 
-<ol start="2589">
+<ol start="2591">
 
 <li><b><a href="texmf-dist/doc/latex/yafoot">yafoot</a></b>:<small>
 A bundle of miscellaneous footnote packages
@@ -16871,7 +16886,7 @@
 
 <h2 id="letter-Z">Z</h2>
 
-<ol start="2599">
+<ol start="2601">
 
 <li><b><a href="texmf-dist/doc/latex/zed-csp">zed-csp</a></b>:<small>
 Typesetting Z and CSP format specifications



More information about the tex-live-commits mailing list