On Tue, Aug 26, 2008 at 3:34 PM, Alan Bowen
I have set two paragraphs side by side using
\defineparagraphs[TwoColumns] [n=2,tolerance=verytolerant,before={\blank},after={\blank}] \setupparagraphs[TwoColumns][distance=1pc]
One of the columns is the length of the page. How do I prevent the two columns from starting a new page? Right now there is a large whitespace on the preceding page. (This problem has been raised before, but I have not yet found the answer.)
Any suggestions will be gratefully received.
Use tabulate. \definetabulate[twocolumns][|p|p|] \setuptabulate [twocolumns] [inner=\setquicktabulate\twocolumns, distance=1pc, split=yes] \starttext \input knuth \starttwocolumns \twocolumns \dorecurse{3}{\input zapf\par} \\ \dorecurse{4}{\input ward\par} \\ \stoptwocolumns \stoptext Wolfgang