summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/carlisle
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-06-14 03:01:12 +0000
committerNorbert Preining <norbert@preining.info>2021-06-14 03:01:12 +0000
commit269940e8e52b921a855083542b9e1109af49af09 (patch)
treeba8b7431f6e4878661215e5a6127aba941f5d711 /macros/latex/contrib/carlisle
parent2ba4b1ac7860085c0b259aacb0d99bd2c730edbc (diff)
CTAN sync 202106140301
Diffstat (limited to 'macros/latex/contrib/carlisle')
-rw-r--r--macros/latex/contrib/carlisle/README.txt2
-rw-r--r--macros/latex/contrib/carlisle/ltxtable.pdfbin69207 -> 74252 bytes
-rw-r--r--macros/latex/contrib/carlisle/ltxtable.tex19
3 files changed, 12 insertions, 9 deletions
diff --git a/macros/latex/contrib/carlisle/README.txt b/macros/latex/contrib/carlisle/README.txt
index f2dcb0da02..e39575d412 100644
--- a/macros/latex/contrib/carlisle/README.txt
+++ b/macros/latex/contrib/carlisle/README.txt
@@ -13,7 +13,7 @@ each other except by the fact that they have the same author.
David Carlisle https://github.com/davidcarlisle/dpctex
-2020-10-23
+2021-06-13
Currently the directory contains the following.
diff --git a/macros/latex/contrib/carlisle/ltxtable.pdf b/macros/latex/contrib/carlisle/ltxtable.pdf
index 6e0f1848fe..f8926c6166 100644
--- a/macros/latex/contrib/carlisle/ltxtable.pdf
+++ b/macros/latex/contrib/carlisle/ltxtable.pdf
Binary files differ
diff --git a/macros/latex/contrib/carlisle/ltxtable.tex b/macros/latex/contrib/carlisle/ltxtable.tex
index ea5ba2f195..a825b67b3d 100644
--- a/macros/latex/contrib/carlisle/ltxtable.tex
+++ b/macros/latex/contrib/carlisle/ltxtable.tex
@@ -1,6 +1,6 @@
%
%% User documentation and source for ltxtable package
-%% (C) 1995 David Carlisle
+%% (C) 1995, 2021 David Carlisle
%
%% This file may be distributed under the terms of the LPPL.
%% See 00readme.txt for details.
@@ -11,7 +11,7 @@
% This will write the ltxtable.sty package file on to your system
% and produce some rather terse typeset documentation.
%
-\begin{filecontents}{ltx1.tex}
+\begin{filecontents}[overwrite]{ltx1.tex}
\begin{longtable}{|cXX|}
the & head& line\endhead
the & foot& line\endfoot
@@ -25,9 +25,9 @@ a a aaaa& b b& c ccccc\\
\end{longtable}
\end{filecontents}
-\begin{filecontents}{ltxtable.sty}
+\begin{filecontents}[overwrite]{ltxtable.sty}
%
-%% ltxtable package (C) 1995 David Carlisle
+%% ltxtable package (C) 1995, 2021 David Carlisle
%%
%% This file may be distributed under the terms of the LPPL.
%% See 00readme.txt for details.
@@ -37,7 +37,7 @@ a a aaaa& b b& c ccccc\\
% \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{ltxtable}
- [1995/12/11 v0.2 longtable/tabularx merge (DPC)]
+ [2021/06/13 v0.4 longtable/tabularx merge (DPC)]
% \end{macrocode}
%
% May as get these in, going to need them...
@@ -76,8 +76,9 @@ a a aaaa& b b& c ccccc\\
% \begin{macrocode}
\def\endlongtable{%
\LT@echunk
-\global\setbox\@ne\hbox{\unhbox\@ne}%
- \kern\wd\@ne
+% from 2021 longtable uses an allocated box \LT@gbox not \box1
+\global\setbox\LT@gbox\hbox{\unhbox\LT@gbox}%
+ \kern\wd\LT@gbox
\LT@get@widths%
\endgroup}%
% \end{macrocode}
@@ -168,7 +169,7 @@ a a aaaa& b b& c ccccc\\
\title{ltxtable: longtable meets tabularx}
\author{David Carlisle}
-\date{1995/12/11}
+\date{2021/06/13}
\maketitle
Since \texttt{tabularx} was put on the archives in 1992 or so I have
@@ -228,3 +229,5 @@ Then a longtable
1995/12/11 v0.2 (Petr Sojka) Typos fixed so the package works!
(Initial release *always* read the same table file,
ignoring the argument...)
+2001/06/12 v0.3 longtable now uses \LT@gbox not \box\@ne so change here to match.
+2021/06/13 v0.4 what year is it....