[latex3-commits] [latex3/latex2e] develop: Gh1128 (#1129) (1c6092c1)

github at latex-project.org github at latex-project.org
Sun Oct 29 17:57:37 CET 2023


Repository : https://github.com/latex3/latex2e
On branch  : develop
Link       : https://github.com/latex3/latex2e/commit/1c6092c13a9afd3e98219d92ee7760a148493d97

>---------------------------------------------------------------

commit 1c6092c13a9afd3e98219d92ee7760a148493d97
Author: Ulrike Fischer <news3 at nililand.de>
Date:   Sun Oct 29 17:57:37 2023 +0100

    Gh1128 (#1129)
    
    * use everypar for strut in \LT at startpbox, issue #1128
    
    * update test
    
    * add newline
    
    ---------
    
    Co-authored-by: Ulrike Fischer <fischer at troubleshooting-tex.de>
    Co-authored-by: Frank Mittelbach <frank.mittelbach at latex-project.org>


>---------------------------------------------------------------

1c6092c13a9afd3e98219d92ee7760a148493d97
 base/doc/ltnews38.tex                          |  20 +++-
 required/tools/changes.txt                     |   5 +
 required/tools/longtable.dtx                   |   8 +-
 required/tools/testfiles/github-0100.lvt       |   4 +-
 required/tools/testfiles/github-0100.tlg       |  75 ++++---------
 required/tools/testfiles/github-0100.xetex.tlg |  75 ++++---------
 required/tools/testfiles/github-1128.lvt       |  16 +++
 required/tools/testfiles/github-1128.tlg       | 146 +++++++++++++++++++++++++
 8 files changed, 234 insertions(+), 115 deletions(-)

diff --git a/base/doc/ltnews38.tex b/base/doc/ltnews38.tex
index c5dd75a5..b00ae8a6 100644
--- a/base/doc/ltnews38.tex
+++ b/base/doc/ltnews38.tex
@@ -448,7 +448,7 @@ document level: this will be examined based on feedback on the
 utility of the programming layer change.
 
 
-\section{\emph{Removed} commands}
+\section{\emph{Removed} kernel commands}
 
 It is very rare that commands are removed from the \LaTeX{} kernel. However, in
 this release we have elected to remove \cs{GetDocumentCommandArgSpec},
@@ -458,16 +458,26 @@ moved back to the \enquote{stub} \pkg{xparse} provided in \pkg{l3packages}. The
 reason for this change is that the removed commands exposed implementation
 details. They were essentially debugging tools which with hindsight should
 not have been made available directly in the kernel.
+
+
 % \section{Bug fixes}
 
-%\section{Changes to packages in the \pkg{amsmath} category}
 
-%\section{Changes to packages in the \pkg{graphics} category}
+\section{Changes to packages in the \pkg{tools} category}
 
-%\section{Changes to packages in the \pkg{tools} category}
+\subsection{\pkg{longtable}: correct p-column definition}
 
+In general the \pkg{longtable} implementation follows the \pkg{array}
+usage but the package didn't take over a change made 1992 in
+\pkg{array} which adjusted the handling of the strut inserted at the
+begin of p-columns. As a consequence there are a number of
+inconsistencies in the output of p-columns between \pkg{tabular} and
+\pkg{longtable}. This has been corrected, \pkg{longtable} uses now for
+the strut the same definition as \pkg{array}.
+%
+\githubissue{1128}
 
-%\medskip
+\medskip
 
 \begin{thebibliography}{9}
 
diff --git a/required/tools/changes.txt b/required/tools/changes.txt
index 74318d41..f944fd82 100644
--- a/required/tools/changes.txt
+++ b/required/tools/changes.txt
@@ -9,6 +9,11 @@ are not part of the distribution.
 All changes above are only part of the development branch for the next release.
 ================================================================================
 
+2023-08-25  Ulrike Fischer  <Ulrike.Fischer at latex-project.org>
+
+	* longtable.dtx: use \everypar to insert the strut in \LT at startpbox 
+      to match the array use, github/1128 
+
 #########################
 # 2023-06-01 Release
 #########################
diff --git a/required/tools/longtable.dtx b/required/tools/longtable.dtx
index 1bcf8659..5fb6364e 100644
--- a/required/tools/longtable.dtx
+++ b/required/tools/longtable.dtx
@@ -37,7 +37,7 @@
 %<driver> \ProvidesFile{longtable.drv}
 % \fi
 %         \ProvidesFile{longtable.dtx}
-          [2023-07-08 v4.17 Multi-page Table package (DPC)]
+          [2025-10-25 v4.18 Multi-page Table package (DPC)]
 %
 % \iffalse
 %<*driver>
@@ -2206,12 +2206,16 @@
   \bgroup
 %    \end{macrocode}
 % \changes{v4.12}{2019/02/06}{Color group to match array package}
+% \changes{v4.18}{2023/08/25}{Use \cs{everypar} to match array package, github 1128}% 
 %    \begin{macrocode}
     \color at begingroup
     \let\@footnotetext\LT at p@ftntext
     \setlength\hsize{#1}%
     \@arrayparboxrestore
-    \vrule \@height \ht\@arstrutbox \@width \z@}
+    \everypar{%
+      \vrule \@height \ht\@arstrutbox \@width \z@
+      \everypar{}}%    
+    }
 %    \end{macrocode}
 % \end{macro}
 %
diff --git a/required/tools/testfiles/github-0100.lvt b/required/tools/testfiles/github-0100.lvt
index 711000f9..77317d8b 100644
--- a/required/tools/testfiles/github-0100.lvt
+++ b/required/tools/testfiles/github-0100.lvt
@@ -36,12 +36,12 @@ Note that text afterwards is still black
 
 \vspace{6ex}
 
-Problem: longtable,1st column is fixed width and should be blue
+Fine: longtable,1st column is fixed width and should be blue
 \begin{longtable}{>{\color{blue}}m{2.5cm} c }\endhead
 one & two \\
 three & four \\
 \end{longtable}
-Note that the text in all the columns, and the text afterwards, is blue!
+Note that text afterwards is still black
 
 \end{document}
 
diff --git a/required/tools/testfiles/github-0100.tlg b/required/tools/testfiles/github-0100.tlg
index b86c0711..65706d15 100644
--- a/required/tools/testfiles/github-0100.tlg
+++ b/required/tools/testfiles/github-0100.tlg
@@ -417,15 +417,12 @@ Completed box being shipped out [1]
 ...\glue(\parskip) 0.0 plus 1.0
 ...\glue(\parskip) 0.0
 ...\glue(\baselineskip) 5.05556
-...\hbox(6.94444+1.94444)x345.0, glue set 46.33275fil
+...\hbox(6.94444+1.94444)x345.0, glue set 63.86057fil
 ....\hbox(0.0+0.0)x15.0
-....\OT1/cmr/m/n/10 P
-....\OT1/cmr/m/n/10 r
-....\OT1/cmr/m/n/10 o
-....\OT1/cmr/m/n/10 b
-....\OT1/cmr/m/n/10 l
+....\OT1/cmr/m/n/10 F
+....\OT1/cmr/m/n/10 i
+....\OT1/cmr/m/n/10 n
 ....\OT1/cmr/m/n/10 e
-....\OT1/cmr/m/n/10 m
 ....\OT1/cmr/m/n/10 :
 ....\glue 4.44444 plus 3.33331 minus 0.55556
 ....\OT1/cmr/m/n/10 l
@@ -497,10 +494,12 @@ Completed box being shipped out [1]
 .....\glue 6.0
 .....\glue 0.0 plus 1.0fil
 .....\vbox(8.39996+3.60004)x71.13188
+......\pdfcolorstack 0 push {0 0 1 rg 0 0 1 RG}
+......\glue(\parskip) 0.0
+......\glue(\parskip) 0.0
 ......\hbox(8.39996+3.60004)x71.13188, glue set 56.13185fil
 .......\hbox(0.0+0.0)x0.0
 .......\rule(8.39996+*)x0.0
-.......\pdfcolorstack 0 push {0 0 1 rg 0 0 1 RG}
 .......\OT1/cmr/m/n/10 o
 .......\OT1/cmr/m/n/10 n
 .......\OT1/cmr/m/n/10 e
@@ -532,10 +531,12 @@ Completed box being shipped out [1]
 .....\glue 6.0
 .....\glue 0.0 plus 1.0fil
 .....\vbox(8.39996+3.60004)x71.13188
+......\pdfcolorstack 0 push {0 0 1 rg 0 0 1 RG}
+......\glue(\parskip) 0.0
+......\glue(\parskip) 0.0
 ......\hbox(8.39996+3.60004)x71.13188, glue set 48.88185fil
 .......\hbox(0.0+0.0)x0.0
 .......\rule(8.39996+*)x0.0
-.......\pdfcolorstack 0 push {0 0 1 rg 0 0 1 RG}
 .......\OT1/cmr/m/n/10 t
 .......\OT1/cmr/m/n/10 h
 .......\OT1/cmr/m/n/10 r
@@ -566,7 +567,7 @@ Completed box being shipped out [1]
 ...\glue(\parskip) 0.0 plus 1.0
 ...\glue(\parskip) 0.0
 ...\glue(\baselineskip) 5.05556
-...\hbox(6.94444+1.94444)x345.0, glue set 21.16612fil
+...\hbox(6.94444+0.0)x345.0, glue set 161.99971fil
 ....\hbox(0.0+0.0)x15.0
 ....\OT1/cmr/m/n/10 N
 ....\OT1/cmr/m/n/10 o
@@ -579,43 +580,6 @@ Completed box being shipped out [1]
 ....\OT1/cmr/m/n/10 t
 ....\glue 3.33333 plus 1.66666 minus 1.11111
 ....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 h
-....\OT1/cmr/m/n/10 e
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 e
-....\OT1/cmr/m/n/10 x
-....\OT1/cmr/m/n/10 t
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 i
-....\OT1/cmr/m/n/10 n
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 a
-....\OT1/cmr/m/n/10 l
-....\OT1/cmr/m/n/10 l
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 h
-....\OT1/cmr/m/n/10 e
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 c
-....\OT1/cmr/m/n/10 o
-....\OT1/cmr/m/n/10 l
-....\OT1/cmr/m/n/10 u
-....\OT1/cmr/m/n/10 m
-....\OT1/cmr/m/n/10 n
-....\OT1/cmr/m/n/10 s
-....\OT1/cmr/m/n/10 ,
-....\glue 3.33333 plus 2.08331 minus 0.88889
-....\OT1/cmr/m/n/10 a
-....\OT1/cmr/m/n/10 n
-....\OT1/cmr/m/n/10 d
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 h
-....\OT1/cmr/m/n/10 e
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
 ....\OT1/cmr/m/n/10 e
 ....\OT1/cmr/m/n/10 x
 ....\OT1/cmr/m/n/10 t
@@ -631,20 +595,25 @@ Completed box being shipped out [1]
 ....\OT1/cmr/m/n/10 r
 ....\OT1/cmr/m/n/10 d
 ....\OT1/cmr/m/n/10 s
-....\OT1/cmr/m/n/10 ,
-....\glue 3.33333 plus 2.08331 minus 0.88889
+....\glue 3.33333 plus 1.66666 minus 1.11111
 ....\OT1/cmr/m/n/10 i
 ....\OT1/cmr/m/n/10 s
 ....\glue 3.33333 plus 1.66666 minus 1.11111
+....\OT1/cmr/m/n/10 s
+....\OT1/cmr/m/n/10 t
+....\OT1/cmr/m/n/10 i
+....\OT1/cmr/m/n/10 l
+....\OT1/cmr/m/n/10 l
+....\glue 3.33333 plus 1.66666 minus 1.11111
 ....\OT1/cmr/m/n/10 b
 ....\OT1/cmr/m/n/10 l
-....\OT1/cmr/m/n/10 u
-....\OT1/cmr/m/n/10 e
-....\OT1/cmr/m/n/10 !
+....\OT1/cmr/m/n/10 a
+....\OT1/cmr/m/n/10 c
+....\kern-0.27779
+....\OT1/cmr/m/n/10 k
 ....\penalty 10000
 ....\glue(\parfillskip) 0.0 plus 1.0fil
 ....\glue(\rightskip) 0.0
-...\glue -1.94444
 ...\glue 0.0 plus 1.0fil
 ...\glue 0.0
 ...\glue 0.0 plus 0.0001fil
diff --git a/required/tools/testfiles/github-0100.xetex.tlg b/required/tools/testfiles/github-0100.xetex.tlg
index ad798015..bbf436b8 100644
--- a/required/tools/testfiles/github-0100.xetex.tlg
+++ b/required/tools/testfiles/github-0100.xetex.tlg
@@ -410,15 +410,12 @@ Completed box being shipped out [1]
 ...\glue(\parskip) 0.0 plus 1.0
 ...\glue(\parskip) 0.0
 ...\glue(\baselineskip) 5.05556
-...\hbox(6.94444+1.94444)x345.0, glue set 46.33275fil
+...\hbox(6.94444+1.94444)x345.0, glue set 63.86057fil
 ....\hbox(0.0+0.0)x15.0
-....\OT1/cmr/m/n/10 P
-....\OT1/cmr/m/n/10 r
-....\OT1/cmr/m/n/10 o
-....\OT1/cmr/m/n/10 b
-....\OT1/cmr/m/n/10 l
+....\OT1/cmr/m/n/10 F
+....\OT1/cmr/m/n/10 i
+....\OT1/cmr/m/n/10 n
 ....\OT1/cmr/m/n/10 e
-....\OT1/cmr/m/n/10 m
 ....\OT1/cmr/m/n/10 :
 ....\glue 4.44444 plus 3.33331 minus 0.55556
 ....\OT1/cmr/m/n/10 l
@@ -490,10 +487,12 @@ Completed box being shipped out [1]
 .....\glue 6.0
 .....\glue 0.0 plus 1.0fil
 .....\vbox(8.39996+3.60004)x71.13188
+......\special{color push rgb 0 0 1}
+......\glue(\parskip) 0.0
+......\glue(\parskip) 0.0
 ......\hbox(8.39996+3.60004)x71.13188, glue set 56.13185fil
 .......\hbox(0.0+0.0)x0.0
 .......\rule(8.39996+*)x0.0
-.......\special{color push rgb 0 0 1}
 .......\OT1/cmr/m/n/10 o
 .......\OT1/cmr/m/n/10 n
 .......\OT1/cmr/m/n/10 e
@@ -525,10 +524,12 @@ Completed box being shipped out [1]
 .....\glue 6.0
 .....\glue 0.0 plus 1.0fil
 .....\vbox(8.39996+3.60004)x71.13188
+......\special{color push rgb 0 0 1}
+......\glue(\parskip) 0.0
+......\glue(\parskip) 0.0
 ......\hbox(8.39996+3.60004)x71.13188, glue set 48.88185fil
 .......\hbox(0.0+0.0)x0.0
 .......\rule(8.39996+*)x0.0
-.......\special{color push rgb 0 0 1}
 .......\OT1/cmr/m/n/10 t
 .......\OT1/cmr/m/n/10 h
 .......\OT1/cmr/m/n/10 r
@@ -559,7 +560,7 @@ Completed box being shipped out [1]
 ...\glue(\parskip) 0.0 plus 1.0
 ...\glue(\parskip) 0.0
 ...\glue(\baselineskip) 5.05556
-...\hbox(6.94444+1.94444)x345.0, glue set 21.16612fil
+...\hbox(6.94444+0.0)x345.0, glue set 161.99971fil
 ....\hbox(0.0+0.0)x15.0
 ....\OT1/cmr/m/n/10 N
 ....\OT1/cmr/m/n/10 o
@@ -572,43 +573,6 @@ Completed box being shipped out [1]
 ....\OT1/cmr/m/n/10 t
 ....\glue 3.33333 plus 1.66666 minus 1.11111
 ....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 h
-....\OT1/cmr/m/n/10 e
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 e
-....\OT1/cmr/m/n/10 x
-....\OT1/cmr/m/n/10 t
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 i
-....\OT1/cmr/m/n/10 n
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 a
-....\OT1/cmr/m/n/10 l
-....\OT1/cmr/m/n/10 l
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 h
-....\OT1/cmr/m/n/10 e
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 c
-....\OT1/cmr/m/n/10 o
-....\OT1/cmr/m/n/10 l
-....\OT1/cmr/m/n/10 u
-....\OT1/cmr/m/n/10 m
-....\OT1/cmr/m/n/10 n
-....\OT1/cmr/m/n/10 s
-....\OT1/cmr/m/n/10 ,
-....\glue 3.33333 plus 2.08331 minus 0.88889
-....\OT1/cmr/m/n/10 a
-....\OT1/cmr/m/n/10 n
-....\OT1/cmr/m/n/10 d
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
-....\OT1/cmr/m/n/10 h
-....\OT1/cmr/m/n/10 e
-....\glue 3.33333 plus 1.66666 minus 1.11111
-....\OT1/cmr/m/n/10 t
 ....\OT1/cmr/m/n/10 e
 ....\OT1/cmr/m/n/10 x
 ....\OT1/cmr/m/n/10 t
@@ -624,20 +588,25 @@ Completed box being shipped out [1]
 ....\OT1/cmr/m/n/10 r
 ....\OT1/cmr/m/n/10 d
 ....\OT1/cmr/m/n/10 s
-....\OT1/cmr/m/n/10 ,
-....\glue 3.33333 plus 2.08331 minus 0.88889
+....\glue 3.33333 plus 1.66666 minus 1.11111
 ....\OT1/cmr/m/n/10 i
 ....\OT1/cmr/m/n/10 s
 ....\glue 3.33333 plus 1.66666 minus 1.11111
+....\OT1/cmr/m/n/10 s
+....\OT1/cmr/m/n/10 t
+....\OT1/cmr/m/n/10 i
+....\OT1/cmr/m/n/10 l
+....\OT1/cmr/m/n/10 l
+....\glue 3.33333 plus 1.66666 minus 1.11111
 ....\OT1/cmr/m/n/10 b
 ....\OT1/cmr/m/n/10 l
-....\OT1/cmr/m/n/10 u
-....\OT1/cmr/m/n/10 e
-....\OT1/cmr/m/n/10 !
+....\OT1/cmr/m/n/10 a
+....\OT1/cmr/m/n/10 c
+....\kern-0.27779
+....\OT1/cmr/m/n/10 k
 ....\penalty 10000
 ....\glue(\parfillskip) 0.0 plus 1.0fil
 ....\glue(\rightskip) 0.0
-...\glue -1.94444
 ...\glue 0.0 plus 1.0fil
 ...\glue 0.0
 ...\glue 0.0 plus 0.0001fil
diff --git a/required/tools/testfiles/github-1128.lvt b/required/tools/testfiles/github-1128.lvt
new file mode 100644
index 00000000..9bf3d404
--- /dev/null
+++ b/required/tools/testfiles/github-1128.lvt
@@ -0,0 +1,16 @@
+\documentclass{article}
+\input{regression-test}
+\usepackage{longtable,array}
+\begin{document}
+\START \showoutput
+\begin{tabular}{lp{1cm}}
+\hline 
+some text & \medskip xxx
+\end{tabular}
+
+\begin{longtable}{lp{1cm}}
+\hline 
+some text & \medskip xxx
+\end{longtable}
+
+\end{document}
diff --git a/required/tools/testfiles/github-1128.tlg b/required/tools/testfiles/github-1128.tlg
new file mode 100644
index 00000000..c790011b
--- /dev/null
+++ b/required/tools/testfiles/github-1128.tlg
@@ -0,0 +1,146 @@
+This is a generated file for the l3build validation system.
+Don't change this file in any respect.
+LaTeX Font Info:    External font `cmex10' loaded for size
+(Font)              <7> on input line ....
+LaTeX Font Info:    External font `cmex10' loaded for size
+(Font)              <5> on input line ....
+Completed box being shipped out [1]
+\vbox(633.0+0.0)x407.0
+.\glue 16.0
+.\vbox(617.0+0.0)x345.0, shifted 62.0
+..\vbox(12.0+0.0)x345.0, glue set 12.0fil
+...\glue 0.0 plus 1.0fil
+...\hbox(0.0+0.0)x345.0
+....\hbox(0.0+0.0)x345.0
+..\glue 25.0
+..\glue(\lineskip) 0.0
+..\vbox(550.0+0.0)x345.0, glue set 477.3491fil
+...\write-{}
+...\glue(\topskip) 0.0
+...\hbox(15.89998+10.89998)x345.0, glue set 234.99161fil
+....\hbox(0.0+0.0)x15.0
+....\hbox(15.89998+10.89998)x95.00839
+.....\mathon
+.....\vbox(15.89998+10.89998)x95.00839
+......\rule(0.4+0.0)x95.00839
+......\hbox(8.39996+18.0)x95.00839
+.......\glue(\tabskip) 0.0
+.......\hbox(8.39996+18.0)x54.55565
+........\rule(8.39996+3.60004)x0.0
+........\glue 6.0
+........\glue 0.00002
+........\OT1/cmr/m/n/10 s
+........\OT1/cmr/m/n/10 o
+........\OT1/cmr/m/n/10 m
+........\OT1/cmr/m/n/10 e
+........\glue 3.33333 plus 1.66666 minus 1.11111
+........\OT1/cmr/m/n/10 t
+........\OT1/cmr/m/n/10 e
+........\OT1/cmr/m/n/10 x
+........\OT1/cmr/m/n/10 t
+........\glue 0.0 plus 1.0fil
+........\glue 6.0
+.......\glue(\tabskip) 0.0
+.......\hbox(8.39996+18.0)x40.45274
+........\glue 6.0
+........\vbox(0.0+18.0)x28.45274
+.........\glue 6.0 plus 2.0 minus 2.0
+.........\glue 0.0
+.........\glue(\parskip) 0.0
+.........\glue(\parskip) 0.0
+.........\hbox(8.39996+3.60004)x28.45274, glue set 12.61934fil
+..........\hbox(0.0+0.0)x0.0
+..........\rule(8.39996+*)x0.0
+..........\OT1/cmr/m/n/10 x
+..........\OT1/cmr/m/n/10 x
+..........\OT1/cmr/m/n/10 x
+..........\penalty 10000
+..........\rule(0.0+3.60004)x0.0
+..........\penalty 10000
+..........\glue(\parfillskip) 0.0 plus 1.0fil
+..........\glue(\rightskip) 0.0
+........\glue 0.0 plus 1.0fil
+........\glue 6.0
+.......\glue(\tabskip) 0.0
+.....\mathoff
+....\penalty 10000
+....\glue(\parfillskip) 0.0 plus 1.0fil
+....\glue(\rightskip) 0.0
+...\penalty 0
+...\glue 12.0 plus 4.0 minus 4.0
+...\penalty 10000
+...\penalty 10000
+...\hbox(0.4+0.0)x345.0, glue set 124.9958fill
+....\glue(\tabskip) 0.0 plus 1.0fill
+....\hbox(0.4+0.0)x54.55565, glue set 95.00839fill
+.....\leaders 0.0 plus 1.0fill
+......\rule(0.4+0.0)x*
+....\glue(\tabskip) 0.0
+....\hbox(0.0+0.0)x40.45274
+....\glue(\tabskip) 0.0 plus 1.0fill
+...\penalty -51
+...\glue -0.4
+...\glue(\lineskip) 0.0
+...\hbox(0.4+0.0)x345.0, glue set 124.9958fill
+....\glue(\tabskip) 0.0 plus 1.0fill
+....\hbox(0.4+0.0)x54.55565, glue set 95.00839fill
+.....\leaders 0.0 plus 1.0fill
+......\rule(0.4+0.0)x*
+....\glue(\tabskip) 0.0
+....\hbox(0.0+0.0)x40.45274
+....\glue(\tabskip) 0.0 plus 1.0fill
+...\penalty 10000
+...\glue(\lineskip) 0.0
+...\hbox(8.39996+18.0)x345.0, glue set 124.9958fill
+....\glue(\tabskip) 0.0 plus 1.0fill
+....\hbox(8.39996+18.0)x54.55565
+.....\rule(8.39996+3.60004)x0.0
+.....\glue 6.0
+.....\glue 0.00002
+.....\OT1/cmr/m/n/10 s
+.....\OT1/cmr/m/n/10 o
+.....\OT1/cmr/m/n/10 m
+.....\OT1/cmr/m/n/10 e
+.....\glue 3.33333 plus 1.66666 minus 1.11111
+.....\OT1/cmr/m/n/10 t
+.....\OT1/cmr/m/n/10 e
+.....\OT1/cmr/m/n/10 x
+.....\OT1/cmr/m/n/10 t
+.....\glue 0.0 plus 1.0fil
+.....\glue 6.0
+....\glue(\tabskip) 0.0
+....\hbox(8.39996+18.0)x40.45274
+.....\glue 6.0
+.....\vbox(0.0+18.0)x28.45274
+......\glue 6.0 plus 2.0 minus 2.0
+......\glue 0.0
+......\glue(\parskip) 0.0
+......\glue(\parskip) 0.0
+......\hbox(8.39996+3.60004)x28.45274, glue set 12.61934fil
+.......\hbox(0.0+0.0)x0.0
+.......\rule(8.39996+*)x0.0
+.......\OT1/cmr/m/n/10 x
+.......\OT1/cmr/m/n/10 x
+.......\OT1/cmr/m/n/10 x
+.......\penalty 10000
+.......\rule(0.0+3.60004)x0.0
+.......\penalty 10000
+.......\glue(\parfillskip) 0.0 plus 1.0fil
+.......\glue(\rightskip) 0.0
+.....\glue 0.0 plus 1.0fil
+.....\glue 6.0
+....\glue(\tabskip) 0.0 plus 1.0fill
+...\penalty 10000
+...\penalty 0
+...\glue 12.0 plus 4.0 minus 4.0
+...\glue -5.0
+...\glue 0.0 plus 1.0fil
+...\glue 0.0
+...\glue 0.0 plus 0.0001fil
+..\glue(\baselineskip) 23.55556
+..\hbox(6.44444+0.0)x345.0
+...\hbox(6.44444+0.0)x345.0, glue set 170.0fil
+....\glue 0.0 plus 1.0fil
+....\OT1/cmr/m/n/10 1
+....\glue 0.0 plus 1.0fil
+(github-1128.aux)





More information about the latex3-commits mailing list.