Am 02.05.2013 um 00:01 schrieb "Lance Larsen"
Using the continue=no option of setuphead (in MKIV) didn't seem to work (not sure why). What I did as a workaround was to a blank paragraph after each heading (using 'after' in setuphead) and then packed the result. Not necessarily an ideal solution, but adequate for what I needed.
\definehead[references][subsection] \setuphead[references][after={ ~ }]
\startpacked % Get rid of large gaps between the references. \dorecurse{10}{\references{Reference item}} \stoppacked
What you’re doing is just wrong. The problem with your example is that it doesn’t demonstrate the problem because the is a page break between the headings. \definehead[references][subsection] \starttext \dorecurse{20}{\references{Reference item}} \stoptext One way to add a break before a heading is to change the before key to \setuphead[…][before={\blank[preference,…]}] Wolfgang