Thank you for the quick reply, it is getting quite close. I guess the trick is to define an enumeration for one-off use and use "title=" to fake "text=". The only problem is that the number sits between text and title. So to still be able to use \starttheorem alongside \startproclaim{Theorem}, I would need to know how to either place the number after the "title" or how to place it before the "text". I'd be interested in knowing how to do both. Also, I have problem with the numbering mechanism and the numberstyle/textstyle/etc. \defineenumeration[theorem] [text=Theorem, numberstyle=normal, headstyle=bold, textstyle=caps, number=yes] \defineenumeration[proclaim] [text=, number=theorem, headstyle=bold, title=yes, titleleft=, titleright=] \starttext \starttheorem Abc \stoptheorem \startproclaim{Special Theorem} Def \stopproclaim \stoptext This gives as is no number for \startproclaim{Special Theorem}, although I asked for number=theorem. Also, the numberstyle of \starttheorem is not normal, but bold, and adding textstyle=normal/caps/etc. seems to have no effect either. Best, Severin On 03/03/2011 05:43 PM, ntg-context-request@ntg.nl wrote:
Maybe this is what you want: %%%%% begin %% defining \proclaim which is built in Plain-teX %% but has disappeared from ConTeXt \defineenumeration[proclaim] [text=, style=slanted, title=yes, titleleft=, titleright=, location=serried, width=fit, right={.~}] \setupnumber[proclaim][way=bysection,numbersection=yes] %% end definition \proclaim
%% defining \remark \defineenumeration[remark] [text=, style=rm, title=yes, titleleft=, titleright=, location=serried, width=fit, right={.~}] \setupnumber[remark][number=proclaim] %% end definition \remark
\starttext \input knuth.tex
\startproclaim[lem:Yoneda]{Yanada Theorem} This is a theorem in set category theory. \stopproclaim
\startremark{Remark} The above theorem and this remark are numbered sequentially. \stopremark
\section{A new section}
\input knuth.tex
\startproclaim[lem:Yoneda2]{Yanada Theorem} As said above, this is a theorem in set category theory. \stopproclaim
\startremark{Remark} The above theorem and this remark are numbered sequentially. \stopremark
\stoptext %%%%% end
Best regards: OK