summaryrefslogtreecommitdiff
path: root/macros/latex/required/tools
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2022-11-02 03:09:43 +0000
committerNorbert Preining <norbert@preining.info>2022-11-02 03:09:43 +0000
commit2281af8ba8fd52341e706f3979712f3280fcfdad (patch)
tree5e83a2779b732f03b430cf208b732ce611ee2cff /macros/latex/required/tools
parent7ad25021e74ea26e33d705fbb402d29aabaf6314 (diff)
CTAN sync 202211020309
Diffstat (limited to 'macros/latex/required/tools')
-rw-r--r--macros/latex/required/tools/README.md2
-rw-r--r--macros/latex/required/tools/afterpage.pdfbin197738 -> 197738 bytes
-rw-r--r--macros/latex/required/tools/array.dtx12
-rw-r--r--macros/latex/required/tools/array.pdfbin516458 -> 516836 bytes
-rw-r--r--macros/latex/required/tools/bm.pdfbin323432 -> 323432 bytes
-rw-r--r--macros/latex/required/tools/calc.pdfbin370657 -> 370657 bytes
-rw-r--r--macros/latex/required/tools/changes.txt10
-rw-r--r--macros/latex/required/tools/dcolumn.pdfbin220834 -> 220834 bytes
-rw-r--r--macros/latex/required/tools/delarray.pdfbin191064 -> 191064 bytes
-rw-r--r--macros/latex/required/tools/enumerate.pdfbin215498 -> 215498 bytes
-rw-r--r--macros/latex/required/tools/fileerr.pdfbin187495 -> 187725 bytes
-rw-r--r--macros/latex/required/tools/fontsmpl.pdfbin146446 -> 146446 bytes
-rw-r--r--macros/latex/required/tools/ftnright.pdfbin386995 -> 387231 bytes
-rw-r--r--macros/latex/required/tools/hhline.pdfbin189679 -> 189679 bytes
-rw-r--r--macros/latex/required/tools/indentfirst.pdfbin157954 -> 157954 bytes
-rw-r--r--macros/latex/required/tools/layout.pdfbin259969 -> 259969 bytes
-rw-r--r--macros/latex/required/tools/longtable.pdfbin391313 -> 391313 bytes
-rw-r--r--macros/latex/required/tools/multicol.pdfbin521223 -> 521367 bytes
-rw-r--r--macros/latex/required/tools/rawfonts.pdfbin138963 -> 138963 bytes
-rw-r--r--macros/latex/required/tools/shellesc.pdfbin175929 -> 175929 bytes
-rw-r--r--macros/latex/required/tools/showkeys.pdfbin251782 -> 251782 bytes
-rw-r--r--macros/latex/required/tools/somedefs.pdfbin167572 -> 167572 bytes
-rw-r--r--macros/latex/required/tools/tabularx.pdfbin287073 -> 287073 bytes
-rw-r--r--macros/latex/required/tools/theorem.pdfbin351471 -> 351702 bytes
-rw-r--r--macros/latex/required/tools/tools-overview.pdfbin73672 -> 73672 bytes
-rw-r--r--macros/latex/required/tools/trace.pdfbin222076 -> 222076 bytes
-rw-r--r--macros/latex/required/tools/varioref.pdfbin398985 -> 398798 bytes
-rw-r--r--macros/latex/required/tools/verbatim.dtx8
-rw-r--r--macros/latex/required/tools/verbatim.pdfbin330963 -> 330746 bytes
-rw-r--r--macros/latex/required/tools/xr.pdfbin169986 -> 169986 bytes
-rw-r--r--macros/latex/required/tools/xspace.pdfbin257018 -> 257018 bytes
31 files changed, 24 insertions, 8 deletions
diff --git a/macros/latex/required/tools/README.md b/macros/latex/required/tools/README.md
index 5c8ee4cc31..5dba58d231 100644
--- a/macros/latex/required/tools/README.md
+++ b/macros/latex/required/tools/README.md
@@ -1,7 +1,7 @@
The LaTeX `tools` bundle
========================
-Release 2022-06-01
+Release 2022-11-01
Overview
--------
diff --git a/macros/latex/required/tools/afterpage.pdf b/macros/latex/required/tools/afterpage.pdf
index d9e5b6285f..0729c17175 100644
--- a/macros/latex/required/tools/afterpage.pdf
+++ b/macros/latex/required/tools/afterpage.pdf
Binary files differ
diff --git a/macros/latex/required/tools/array.dtx b/macros/latex/required/tools/array.dtx
index c9f77d77a3..4b163b5f18 100644
--- a/macros/latex/required/tools/array.dtx
+++ b/macros/latex/required/tools/array.dtx
@@ -33,7 +33,7 @@
%<+package>\DeclareCurrentRelease{}{2020-10-01}
%<+package>
%<+package>\ProvidesPackage{array}
-%<+package> [2022/03/10 v2.5f Tabular extension package (FMi)]
+%<+package> [2022/09/04 v2.5g Tabular extension package (FMi)]
%
% \fi
%
@@ -1727,14 +1727,20 @@
%
% For that reason the new implementation does the centering
% manually: First we check the height of the cell and if that is
-% less or equal to =\ht\@arstrutbox= we assume that this is a
+% less or equal to =\ht\strutbox= we assume that this is a
% single line cell. In that case we don't do any vertical maneuvre
% and simply output the box, i.e., make it behave like a single
% line p-cell.
+%
+% We use the height of \cs{strutbox} not \cs{@arstrutbox} in the comparison,
+% because \cs{box}\cs{ar@mcellbox} does not have any strut
+% incorporated and if \cs{arraystretch} is made very
+% small the test would otherwise incorrectly assume a multi-line cell.
% \changes{v2.4f}{2017/11/04}{Managing m-cells without \cs{vcenter}}
+% \changes{v2.5g}{2022/09/04}{Test against \cs{strutbox} height (gh/766)}
% \begin{macrocode}
\def\ar@align@mcell{%
- \ifdim \ht\ar@mcellbox > \ht\@arstrutbox
+ \ifdim \ht\ar@mcellbox > \ht\strutbox
% \end{macrocode}
% Otherwise we realign vertically by lowering the box. The question
% is how much do we need to move down? If there is any
diff --git a/macros/latex/required/tools/array.pdf b/macros/latex/required/tools/array.pdf
index 6059b098ca..26654a389b 100644
--- a/macros/latex/required/tools/array.pdf
+++ b/macros/latex/required/tools/array.pdf
Binary files differ
diff --git a/macros/latex/required/tools/bm.pdf b/macros/latex/required/tools/bm.pdf
index bac5c04169..ad718d0741 100644
--- a/macros/latex/required/tools/bm.pdf
+++ b/macros/latex/required/tools/bm.pdf
Binary files differ
diff --git a/macros/latex/required/tools/calc.pdf b/macros/latex/required/tools/calc.pdf
index 1d82f19254..bf6ba15e27 100644
--- a/macros/latex/required/tools/calc.pdf
+++ b/macros/latex/required/tools/calc.pdf
Binary files differ
diff --git a/macros/latex/required/tools/changes.txt b/macros/latex/required/tools/changes.txt
index 689d3f4369..7b3e63dca5 100644
--- a/macros/latex/required/tools/changes.txt
+++ b/macros/latex/required/tools/changes.txt
@@ -10,6 +10,16 @@ All changes above are only part of the development branch for the next release.
================================================================================
#########################
+# 2022-11-01 Release
+#########################
+
+2022-09-04 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
+
+ * array.dtx (section{The macros \texttt{\textbackslash @classz}):
+ Test against \strutbox height to determine if an m-cell contains
+ only a single line (gh/766)
+
+#########################
# 2022-06-01 Release
#########################
diff --git a/macros/latex/required/tools/dcolumn.pdf b/macros/latex/required/tools/dcolumn.pdf
index ae58873898..3de78c536a 100644
--- a/macros/latex/required/tools/dcolumn.pdf
+++ b/macros/latex/required/tools/dcolumn.pdf
Binary files differ
diff --git a/macros/latex/required/tools/delarray.pdf b/macros/latex/required/tools/delarray.pdf
index 5b38f447a9..4c15f62d47 100644
--- a/macros/latex/required/tools/delarray.pdf
+++ b/macros/latex/required/tools/delarray.pdf
Binary files differ
diff --git a/macros/latex/required/tools/enumerate.pdf b/macros/latex/required/tools/enumerate.pdf
index 6ea6e1d4d6..c086811a7f 100644
--- a/macros/latex/required/tools/enumerate.pdf
+++ b/macros/latex/required/tools/enumerate.pdf
Binary files differ
diff --git a/macros/latex/required/tools/fileerr.pdf b/macros/latex/required/tools/fileerr.pdf
index 7507c3009b..8bf489506b 100644
--- a/macros/latex/required/tools/fileerr.pdf
+++ b/macros/latex/required/tools/fileerr.pdf
Binary files differ
diff --git a/macros/latex/required/tools/fontsmpl.pdf b/macros/latex/required/tools/fontsmpl.pdf
index 0ee42b5913..f8899bdfd2 100644
--- a/macros/latex/required/tools/fontsmpl.pdf
+++ b/macros/latex/required/tools/fontsmpl.pdf
Binary files differ
diff --git a/macros/latex/required/tools/ftnright.pdf b/macros/latex/required/tools/ftnright.pdf
index 1085686752..d32b6e24aa 100644
--- a/macros/latex/required/tools/ftnright.pdf
+++ b/macros/latex/required/tools/ftnright.pdf
Binary files differ
diff --git a/macros/latex/required/tools/hhline.pdf b/macros/latex/required/tools/hhline.pdf
index 47076e83e9..705e3db36a 100644
--- a/macros/latex/required/tools/hhline.pdf
+++ b/macros/latex/required/tools/hhline.pdf
Binary files differ
diff --git a/macros/latex/required/tools/indentfirst.pdf b/macros/latex/required/tools/indentfirst.pdf
index dbc58d7de9..bba40a3ee5 100644
--- a/macros/latex/required/tools/indentfirst.pdf
+++ b/macros/latex/required/tools/indentfirst.pdf
Binary files differ
diff --git a/macros/latex/required/tools/layout.pdf b/macros/latex/required/tools/layout.pdf
index 911f310408..07204a943c 100644
--- a/macros/latex/required/tools/layout.pdf
+++ b/macros/latex/required/tools/layout.pdf
Binary files differ
diff --git a/macros/latex/required/tools/longtable.pdf b/macros/latex/required/tools/longtable.pdf
index 009110e47c..b41cd12101 100644
--- a/macros/latex/required/tools/longtable.pdf
+++ b/macros/latex/required/tools/longtable.pdf
Binary files differ
diff --git a/macros/latex/required/tools/multicol.pdf b/macros/latex/required/tools/multicol.pdf
index 206491447a..56097a85a1 100644
--- a/macros/latex/required/tools/multicol.pdf
+++ b/macros/latex/required/tools/multicol.pdf
Binary files differ
diff --git a/macros/latex/required/tools/rawfonts.pdf b/macros/latex/required/tools/rawfonts.pdf
index 0e773a6289..4a77a6bb4b 100644
--- a/macros/latex/required/tools/rawfonts.pdf
+++ b/macros/latex/required/tools/rawfonts.pdf
Binary files differ
diff --git a/macros/latex/required/tools/shellesc.pdf b/macros/latex/required/tools/shellesc.pdf
index 2eca7d5446..77ca2657ca 100644
--- a/macros/latex/required/tools/shellesc.pdf
+++ b/macros/latex/required/tools/shellesc.pdf
Binary files differ
diff --git a/macros/latex/required/tools/showkeys.pdf b/macros/latex/required/tools/showkeys.pdf
index 49429fdeb6..010d132155 100644
--- a/macros/latex/required/tools/showkeys.pdf
+++ b/macros/latex/required/tools/showkeys.pdf
Binary files differ
diff --git a/macros/latex/required/tools/somedefs.pdf b/macros/latex/required/tools/somedefs.pdf
index 0a7116d3fd..a270a16e17 100644
--- a/macros/latex/required/tools/somedefs.pdf
+++ b/macros/latex/required/tools/somedefs.pdf
Binary files differ
diff --git a/macros/latex/required/tools/tabularx.pdf b/macros/latex/required/tools/tabularx.pdf
index 84eb73e06f..c9c48f7a32 100644
--- a/macros/latex/required/tools/tabularx.pdf
+++ b/macros/latex/required/tools/tabularx.pdf
Binary files differ
diff --git a/macros/latex/required/tools/theorem.pdf b/macros/latex/required/tools/theorem.pdf
index 3c78214b6d..7645a71fa2 100644
--- a/macros/latex/required/tools/theorem.pdf
+++ b/macros/latex/required/tools/theorem.pdf
Binary files differ
diff --git a/macros/latex/required/tools/tools-overview.pdf b/macros/latex/required/tools/tools-overview.pdf
index a8c55fbe0a..6080503698 100644
--- a/macros/latex/required/tools/tools-overview.pdf
+++ b/macros/latex/required/tools/tools-overview.pdf
Binary files differ
diff --git a/macros/latex/required/tools/trace.pdf b/macros/latex/required/tools/trace.pdf
index 03c5e05f66..1ca485dc97 100644
--- a/macros/latex/required/tools/trace.pdf
+++ b/macros/latex/required/tools/trace.pdf
Binary files differ
diff --git a/macros/latex/required/tools/varioref.pdf b/macros/latex/required/tools/varioref.pdf
index 32259ea3a4..46aa65461e 100644
--- a/macros/latex/required/tools/varioref.pdf
+++ b/macros/latex/required/tools/varioref.pdf
Binary files differ
diff --git a/macros/latex/required/tools/verbatim.dtx b/macros/latex/required/tools/verbatim.dtx
index c7cb2f02a9..2018e85505 100644
--- a/macros/latex/required/tools/verbatim.dtx
+++ b/macros/latex/required/tools/verbatim.dtx
@@ -55,7 +55,7 @@
\and
Chris Rowley}
-\date{2001/03/12}
+\date{2022/07/02}
\begin{document}
\markboth{Verbatim style option}{Verbatim style option}
\MaintainedByLaTeXTeam{tools}
@@ -160,7 +160,7 @@
% that skips any commands or text between
% |\begin{comment}|
% and the next |\end{comment}|.
-% It also defines the command \texttt{verbatiminput} to input a whole
+% It also defines the command |\verbatiminput| to input a whole
% file verbatim.
% \end{abstract}
%
@@ -234,7 +234,7 @@
%
% \DescribeMacro{\verbatiminput}
% |\verbatiminput| is a command with one argument that inputs a file
-% verbatim, i.e.\ the command |verbatiminput{xx.yy}|
+% verbatim, i.e.\ the command |\verbatiminput{xx.yy}|
% has the same effect as\\[2pt]
% \hspace*{\MacroIndent}|\begin{verbatim}|\\
% \hspace*{\MacroIndent}\meta{Contents of the file \texttt{xx.yy}}\\
@@ -508,7 +508,7 @@
%<*package>
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{verbatim}
- [2020-07-07 v1.5u LaTeX2e package for verbatim enhancements]
+ [2022-07-02 v1.5u LaTeX2e package for verbatim enhancements]
\@ifundefined{verbatim@@@}{}{\endinput}
% \end{macrocode}
%
diff --git a/macros/latex/required/tools/verbatim.pdf b/macros/latex/required/tools/verbatim.pdf
index 357918e255..43684a53b9 100644
--- a/macros/latex/required/tools/verbatim.pdf
+++ b/macros/latex/required/tools/verbatim.pdf
Binary files differ
diff --git a/macros/latex/required/tools/xr.pdf b/macros/latex/required/tools/xr.pdf
index f918a9664d..116b46c9b6 100644
--- a/macros/latex/required/tools/xr.pdf
+++ b/macros/latex/required/tools/xr.pdf
Binary files differ
diff --git a/macros/latex/required/tools/xspace.pdf b/macros/latex/required/tools/xspace.pdf
index acf4f25ef1..a38c754c36 100644
--- a/macros/latex/required/tools/xspace.pdf
+++ b/macros/latex/required/tools/xspace.pdf
Binary files differ