diff options
author | Karl Berry <karl@freefriends.org> | 2017-01-21 01:59:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-01-21 01:59:18 +0000 |
commit | 1f91e5e8095526720dbccd221c96f5ec44ffaa23 (patch) | |
tree | bc6134889b1cceb545f7dbb35c26ef0dda803f00 /Master/texmf-dist/doc | |
parent | c1cd940d224dfc49f9435216b113d208d0fa363d (diff) |
cals (20jan17)
git-svn-id: svn://tug.org/texlive/trunk@43003 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
3 files changed, 34 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/latex/cals/README b/Master/texmf-dist/doc/latex/cals/README index c5dc5225ce4..c4815a397c4 100644 --- a/Master/texmf-dist/doc/latex/cals/README +++ b/Master/texmf-dist/doc/latex/cals/README @@ -4,7 +4,7 @@ The "cals" package is a set of macros to typeset multipage tables with repeatable headers and footers, with cells spanned over rows and columns. Decorations are supported: padding, background color, width of separation rules. The code is compatible with -multicols and bidi. +multicol and bidi. The work is released to public (LaTeX license, see below) by bitplant.de GmbH, a company which provides technical @@ -36,7 +36,7 @@ test/ Unit tests. See "README" inside. -Copyright (C) 2010+ by Oleg Parashchenko <olpa uucode com> +Copyright (C) 2010 by Oleg Parashchenko <olpa uucode com> Files from this pacjage may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3c diff --git a/Master/texmf-dist/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.chk b/Master/texmf-dist/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.chk new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/Master/texmf-dist/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.chk diff --git a/Master/texmf-dist/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.tex b/Master/texmf-dist/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.tex new file mode 100644 index 00000000000..e786e264dbd --- /dev/null +++ b/Master/texmf-dist/doc/latex/cals/test/regression/test_085_allow_table_in_colspan.tex @@ -0,0 +1,32 @@ +% Allow table in colspan +% No warnings are expected: +% You can't use `\\prevdepth' in horizontal mode. +% Missing $ inserted. +% etc. + +\par +\begin{calstable} +\colwidths{{1in}{1in}{1in}{1in}} +\brow +\cell{normal} +\tracingall + +\nullcell{ltb} +\nullcell{rtb} +\spancontent{ + xxx\par + + \begin{calstable} + \colwidths{{1in}} + \brow\cell{inner table}\erow + \end{calstable} +} +\par + +\cell{normal} +%\tracingall +%\par +\erow +\end{calstable} + +\end{document} |