split cells ? world lost !
Hi, hope the answer to my question is not too obvious: How do I split not only TABLE but cells? Please, have a look at this minimal: \starttext \bTABLE[split=yes,option=stretch] \bTR \bTD \input tufte \input knuth Hello world ... \eTD \bTD \input tufte \eTD \bTD \input knuth \eTD \eTR \bTR \bTD Test \eTD \bTD Test \eTD \bTD Test \eTD \eTR \eTABLE \stoptext (Hello) world lost? Thanks, Steffen
Steffen Wolfrum wrote:
Hi,
hope the answer to my question is not too obvious: How do I split not only TABLE but cells?
Please, have a look at this minimal:
\starttext \bTABLE[split=yes,option=stretch] \bTR \bTD \input tufte \input knuth Hello world ... \eTD \bTD \input tufte \eTD \bTD \input knuth \eTD \eTR \bTR \bTD Test \eTD \bTD Test \eTD \bTD Test \eTD \eTR \eTABLE \stoptext
not possible -- ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
On Fri, May 30, 2008 at 5:37 PM, Steffen Wolfrum
Hi,
hope the answer to my question is not too obvious: How do I split not only TABLE but cells?
Please, have a look at this minimal:
\starttext \bTABLE[split=yes,option=stretch] \bTR \bTD \input tufte \input knuth Hello world ... \eTD \bTD \input tufte \eTD \bTD \input knuth \eTD \eTR \bTR \bTD Test \eTD \bTD Test \eTD \bTD Test \eTD \eTR \eTABLE \stoptext
You could use tabulate, it supports splitting of the content but you have to set \setuptabulate[split=yes], the default value split=auto did not work in this case. \starttext \setuptabulate[split=yes] \starttabulate[|p|p|] \NC \dorecurse{5}{\input knuth\par} \NC \dorecurse{5}{\input tufte\par} \NC\NR \stoptabulate \stoptext Greetings Wolfgang
participants (3)
-
Hans Hagen
-
Steffen Wolfrum
-
Wolfgang Schuster