texlive[48835] Master/texmf-dist: caption (5oct18)
commits+karl at tug.org
commits+karl at tug.org
Fri Oct 5 22:50:33 CEST 2018
Revision: 48835
http://tug.org/svn/texlive?view=revision&revision=48835
Author: karl
Date: 2018-10-05 22:50:33 +0200 (Fri, 05 Oct 2018)
Log Message:
-----------
caption (5oct18)
Modified Paths:
--------------
trunk/Master/texmf-dist/doc/latex/caption/README
trunk/Master/texmf-dist/source/latex/caption/caption.dtx
trunk/Master/texmf-dist/tex/latex/caption/caption.sty
Modified: trunk/Master/texmf-dist/doc/latex/caption/README
===================================================================
--- trunk/Master/texmf-dist/doc/latex/caption/README 2018-10-05 20:50:16 UTC (rev 48834)
+++ trunk/Master/texmf-dist/doc/latex/caption/README 2018-10-05 20:50:33 UTC (rev 48835)
@@ -1,7 +1,7 @@
==========================================================================
The `caption' package bundle
-Release 2018-09-12
+Release 2018-10-05
Copyright (C) 1994-2018 Axel Sommerfeldt (axel.sommerfeldt at f-m.fm)
License: LPPL = LaTeX Project Public Licence
@@ -11,9 +11,9 @@
https://gitlab.com/axelsommerfeldt/caption
If you need help for installation please visit:
- https://www.tex.ac.uk/cgi-bin/texfaq2html?label=inst-miktexstar
- https://www.tex.ac.uk/cgi-bin/texfaq2html?label=installthings
- https://www.tex.ac.uk/cgi-bin/texfaq2html?label=privinst
+ https://texfaq.org/FAQ-inst-miktexstar
+ https://texfaq.org/FAQ-installthings
+ https://texfaq.org/FAQ-privinst
If you need help using these packages please visit:
https://latex.org/forum/
Modified: trunk/Master/texmf-dist/source/latex/caption/caption.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/caption/caption.dtx 2018-10-05 20:50:16 UTC (rev 48834)
+++ trunk/Master/texmf-dist/source/latex/caption/caption.dtx 2018-10-05 20:50:33 UTC (rev 48835)
@@ -25,7 +25,7 @@
% and the user manuals caption-deu.tex, caption-eng.tex, and caption-rus.tex.
%
% \fi
-% \CheckSum{3693}
+% \CheckSum{3695}
%
% \iffalse
%<*driver>
@@ -218,7 +218,7 @@
%
% \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}[1994/12/01]
-\ProvidesPackage{caption}[2018/09/12 v3.3-152 Customizing captions (AR)]
+\ProvidesPackage{caption}[2018/10/05 v3.3-153 Customizing captions (AR)]
% \end{macrocode}
%
% \subsection{Loading the kernel}
@@ -3827,6 +3827,7 @@
% \changes{v3.1a}{2007/09/16}{Bugfix: This redefinition will always be done \cs{AtBeginDocument}}
% \changes{v3.1g}{2008/01/20}{Bugfix in \cs{captionlistentry}: Table counter will not be incremented anymore, \cs{nameref} works}
% \changes{v3.3}{2016/01/31}{Support for \cs{bicaption} added}
+% \changes{v3.3}{2018/10/05}{Definition of \cs{captionlistentry} fixed}
% We redefine |\LT at array| here to get |\captionsetup|\marg{options}
% working inside |longtable|s.
% \Note{Since the \package{hyperref} package patches \cs{LT at array} as well
@@ -3858,8 +3859,8 @@
% \begin{macrocode}
\def\captionlistentry{%
\noalign\bgroup
- \@ifstar{\egroup\LT at listentry}% gobble *
- {\egroup\LT at listentry}}%
+ \@ifstar{\egroup\LT at listentry\LTcaptype}% gobble *
+ {\egroup\LT at listentry\LTcaptype}}%
% \end{macrocode}
% |\ContinuedFloat| for longtable:\\
% {\small(Commented out, since it's not deeply tested and quite useless anyway)}
@@ -3918,7 +3919,7 @@
\def\LT at capti@n{%
\@ifstar
{\egroup\LT at c@ption\@gobble[]}%
- {\egroup\caption at xdblarg{\LT at c@ption\@firstofone}}}
+ {\egroup\caption at xdblarg{\LT at c@ption\@firstofone}}}%
% \end{macrocode}
% \end{macro}
%
@@ -4013,20 +4014,22 @@
%
% \begin{macro}{\LT at listentry}
% \changes{v3.3}{2018/08/26}{This macro added}
+% \changes{v3.3}{2018/10/05}{\cs{ignorespaces} added}
% \begin{macrocode}
\renewcommand*\LT at listentry[2]{%
\begingroup
\caption at LT@settype{#1}%
\caption at listentry\@firstoftwo[#1]{#2}%
- \endgroup}%
+ \endgroup\ignorespaces}%
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\caption at LT@settype}
% \changes{v3.3}{2018/08/26}{This macro added}
+% \changes{v3.3}{2018/10/05}{Uses argument no. 1 instead of \cs{LTcaptype}}
% \begin{macrocode}
\newcommand*\caption at LT@settype[1]{%
- \caption at settype*\LTcaptype
+ \caption at settype*{#1}%
% \end{macrocode}
% If |\LTcapwidth| is not set to its default value |4in| we assume
% that it shall overwrite our own setting.
@@ -4042,7 +4045,7 @@
% \end{macrocode}
% Finally set options applied by |\captionsetup| inside the longtable.
% \begin{macrocode}
- \caption at setoptions{@longtable}}
+ \caption at setoptions{@longtable}}%
% \end{macrocode}
% \end{macro}
%
Modified: trunk/Master/texmf-dist/tex/latex/caption/caption.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/caption/caption.sty 2018-10-05 20:50:16 UTC (rev 48834)
+++ trunk/Master/texmf-dist/tex/latex/caption/caption.sty 2018-10-05 20:50:33 UTC (rev 48835)
@@ -37,7 +37,7 @@
%% caption-deu.tex, caption-eng.tex, and caption-rus.tex.
%%
\NeedsTeXFormat{LaTeX2e}[1994/12/01]
-\ProvidesPackage{caption}[2018/09/12 v3.3-152 Customizing captions (AR)]
+\ProvidesPackage{caption}[2018/10/05 v3.3-153 Customizing captions (AR)]
\RequirePackage{caption3}[2018/09/12] % needs v1.8c or newer
\caption at ifbool{documentclass}{}{%
\caption at WarningNoLine{%
@@ -1582,8 +1582,8 @@
\def\@captionabovefalse{\LT at captionsetup{position=b}}%
\def\captionlistentry{%
\noalign\bgroup
- \@ifstar{\egroup\LT at listentry}% gobble *
- {\egroup\LT at listentry}}%
+ \@ifstar{\egroup\LT at listentry\LTcaptype}% gobble *
+ {\egroup\LT at listentry\LTcaptype}}%
%% \let\Hy at LT@currentHlabel\@currentHlabel
%% \let\@currentHlabel\Hy at LT@currentHlabel
\def\ContinuedFloat{\noalign{%
@@ -1593,7 +1593,7 @@
\def\LT at capti@n{%
\@ifstar
{\egroup\LT at c@ption\@gobble[]}%
- {\egroup\caption at xdblarg{\LT at c@ption\@firstofone}}}
+ {\egroup\caption at xdblarg{\LT at c@ption\@firstofone}}}%
\renewcommand\LT at makecaption[3]{%
\caption at LT@make{%
\caption at LT@settype\LTcaptype
@@ -1612,14 +1612,14 @@
\begingroup
\caption at LT@settype{#1}%
\caption at listentry\@firstoftwo[#1]{#2}%
- \endgroup}%
+ \endgroup\ignorespaces}%
\newcommand*\caption at LT@settype[1]{%
- \caption at settype*\LTcaptype
+ \caption at settype*{#1}%
\ifdim\LTcapwidth=4in \else
\setcaptionwidth\LTcapwidth
\fi
\caption at setoptions{longtable}%
- \caption at setoptions{@longtable}}
+ \caption at setoptions{@longtable}}%
}{}
\providecommand*\caption at LT@setup{}
\caption at IfPackageLoaded{picinpar}{%
More information about the tex-live-commits
mailing list