Hi, I just found an old mail from 30 May 2008: How do I split not only TABLE but cells? It was not possible then. \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 Best wishes, Steffen
On 5/18/2022 8:07 PM, Steffen Wolfrum via ntg-context wrote:
Hi,
I just found an old mail from 30 May 2008:
How do I split not only TABLE but cells? It was not possible then.
\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, use tabulate instead
----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl -----------------------------------------------------------------
Am 19.05.2022 um 08:14 schrieb Hans Hagen via ntg-context
: On 5/18/2022 8:07 PM, Steffen Wolfrum via ntg-context wrote:
Hi, I just found an old mail from 30 May 2008: How do I split not only TABLE but cells? It was not possible then. \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, use tabulate instead
do you have a MWE? the example from https://wiki.contextgarden.net/Tabulate gives an empty page: \setuppapersize[A10, landscape][A8, landscape] \setuppaper[nx=2,ny=2] \setuparranging[XY] \switchtobodyfont[5pt] \setuppagenumbering[location={header,inright}] \showframe[edge] \setuptabulate [split=yes, header=text, title={\color[red] Fenchurch St. Paul}, frame=on] \starttabulate[|p(1.2cm)|p(1.2cm)|] \dorecurse{6}{ \NC Bells: \NC Tin tan din dan bim bam bom bo \NC\NR \HL \NC Name: \NC Tailor Paul \NC \NR \HL } \stoptabulate ) Best wishes, Steffen
Steffen Wolfrum via ntg-context schrieb am 19.05.2022 um 12:44:
do you have a MWE? the example from https://wiki.contextgarden.net/Tabulate gives an empty page:
[...]
You need \starttext and \stoptext in your document. The examples in the wiki don't need both commands because they are added when the examples are created. Below is a simple example. \setuppapersize[A5] \starttext \starttabulate[|l|p|] \NC Donald Knuth \NC \input{knuth} \NC\NR \NC Hermann Zapf \NC \input{zapf} \NC\NR \NC Edward Tufte \NC \input{tufte} \NC\NR \NC Eugene Linden \NC \input{linden} \NC\NR \stoptabulate \stoptext Wolfgang
participants (3)
-
Hans Hagen
-
Steffen Wolfrum
-
Wolfgang Schuster