diff options
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} |