diff options
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/latex/threeparttablex/README | 6 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/threeparttablex/threeparttablex.sty | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/latex/threeparttablex/README b/Master/texmf-dist/doc/latex/threeparttablex/README index 159227ace7e..0a76ee2f05e 100644 --- a/Master/texmf-dist/doc/latex/threeparttablex/README +++ b/Master/texmf-dist/doc/latex/threeparttablex/README @@ -1,4 +1,4 @@ -% (C) Lars Madsen, daleif@imf.au.dk, 2010/01/08 +% (C) Lars Madsen, daleif@imf.au.dk, 2010/02/12 % This material is subject to the LaTeX Project Public License. % See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html % for the details of that license. @@ -19,6 +19,10 @@ can now do \tnotex{tn:a} to get \tnote{\ref{tn:a}}. For information on how to use threeparttable with longtable see the manual. +* v0.1 + Bug fix, width of table notes inserted into longtable + might get the wrong width + * v0.08 re-Added support for \note and \source when loading the referable option, for example of use, see the manual diff --git a/Master/texmf-dist/tex/latex/threeparttablex/threeparttablex.sty b/Master/texmf-dist/tex/latex/threeparttablex/threeparttablex.sty index c219da5c4dc..e5d6ba4b07b 100644 --- a/Master/texmf-dist/tex/latex/threeparttablex/threeparttablex.sty +++ b/Master/texmf-dist/tex/latex/threeparttablex/threeparttablex.sty @@ -1,4 +1,4 @@ -\ProvidesPackage{threeparttablex}[2010/01/08 v0.08 by daleif] +\ProvidesPackage{threeparttablex}[2010/02/12 v0.1 by daleif] %% %% This package can be distributed and/or modified under the @@ -52,10 +52,12 @@ % then add the table notes inside a \parbox of the required width \multicolumn{\LT@cols}{c}{% \makebox[0pt][c]{\parbox{\TPTL@width}{% - \begin{tablenotes}[\TPTL@optarg]% - \TPTL@font% - \TPTL@body - \end{tablenotes} + \let\TPT@hsize\@empty% otherwise the width is not reset + % correctly as \TPT@hsize messes with \@parboxrestore + \begin{tablenotes}[\TPTL@optarg]% + \TPTL@font% + \TPTL@body + \end{tablenotes} }}}} % the alternative threeparttable env, it only enables \TPToverlap |