Hello, the mechanism for how to share the numbering of enumerations seems to have changed from mkii to mkiv. I used the following code to typeset theorems and lemmata in mkii. The typeset is very different when complied with mkiv: In the following code, for example, the lemma is missing its number, and there is an additional line break after each theorem title. ~~~ snip ~~~ \setupcolors[state=start] \setupframedtexts [width=\makeupwidth, frame=off, bottomframe=on, topframe=on, background=screen, backgroundscreen=.95] \setupenumerations [title=yes, style=normal, list=all, before={\blank[big]}, after={\blank[big]}, location=serried, width=broad, distance=0.5em, headstyle=bold, titlestyle=bold, way=bychapter, conversion=numbers, before=\startframedtext, after=\stopframedtext] \defineenumeration [theorem] [text=Theorem, listtext={Theorem }] \defineenumeration [lemma] [text=Lemma, listtext={Lemma }, number=theorem] \starttext \theorem Something $a=bc$. \theorem Something else. \lemma And something. \theorem And something else. \stoptext ~~~ snip ~~~ How can I mimic the original typeset produced by 'texexec', so I can use mkiv? Thank you a lot! Thomas