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