diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
commit | 007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch) | |
tree | 90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/ltabptch | |
parent | 950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff) |
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/ltabptch')
-rw-r--r-- | Master/texmf-dist/doc/latex/ltabptch/README | 11 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/ltabptch/ltabtest.tex | 44 |
2 files changed, 55 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/ltabptch/README b/Master/texmf-dist/doc/latex/ltabptch/README new file mode 100644 index 00000000000..8b019789413 --- /dev/null +++ b/Master/texmf-dist/doc/latex/ltabptch/README @@ -0,0 +1,11 @@ +LTabPtch.sty---Uwe L"uck---patch for Longtable. + +For David Carlisle's Longtable.sty, version 4.11 +Fixes tools/3180 (Sebastian Rahtz) and tools/3485: +missing/wrong interline glues above/below table. + +Copyright (C) 2002--2004 Uwe L"uck, +http://www.contact-ednotes.sty.de.vu . + +Usage, no warranty, distribution as in lppl.txt on CTAN +(macros/latex/base/lppl.txt). diff --git a/Master/texmf-dist/doc/latex/ltabptch/ltabtest.tex b/Master/texmf-dist/doc/latex/ltabptch/ltabtest.tex new file mode 100644 index 00000000000..e4b7ec1b4a5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/ltabptch/ltabtest.tex @@ -0,0 +1,44 @@ +%% LtabTest.tex---Uwe L"uck---spacing error in longtable.sty. +%% 2004/08/23. %%% First: 2002/12/08. +%% tools/3485, cf. tools/3180, Sebastian Rahtz 2000/03/05. +\documentclass{article} +\usepackage{longtable} +% \usepackage{ltabptch} +% \nofiles +\begin{document} +% A + +\noindent +% D\hfil\break +B % \strut % \vrule depth 9.9pt +% \par +% \begin{center} +%% center around longtable produces spurious line below indeed! +\begin{longtable}[l]{l} +\smash{\vrule height 20.4pt depth 15.6pt }% bigskip added. +H % \vrule depth 8.8 pt +% \\ +\endhead +% \begin{tabular}{l} +\smash{\vrule height 20.4pt depth 15.6pt }% strut + bigskip. +T % \vrule depth % 15.6pt +% 7.7pt %%% \vrule height 8.399pt depth 3.6pt +\\ +\end{longtable} +% \end{tabular} +% \end{center} +% \par + \edef\testhold{\the\prevdepth}\typeout{\prevdepth= \testhold}% TEST +\noindent +C + +\tracingonline=1 +\showboxbreadth=20 +\showboxdepth=3 +\showlists + +\setbox0\hbox{Aq} +\typeout{ht = \the\ht0; dp = \the\dp0} + +\end{document} + |