Re: [NTG-context] One-off theorem titles & numberstyle

2011-03-03 Thread Otared Kavian
Hi Severin,

Actually if you are using mkiv, the definitions I sent this morning should be 
slightly changed: perhaps the following suits your needs (however I don't know 
how to change the style of the numbers…).

% begin
%!TEX TS-program = mkiv

%% defining \proclaim which is built in Plain-teX
%% but has disappeared from ConTeXt
%% the following is adapted for mkiv
\defineenumeration[theorem]
\setupenumerations[theorem]
[text=Theorem,
style=sc, % or slanted
title=yes,
titleleft=,
titleright={.},
location=serried,
width=fit,
right={.},
prefix=yes,
way=bysection,
]

%% defining \remark numbered with the same counter as \proclaim
\defineenumeration[proclaim][theorem] % clone proclaim
\setupenumerations[proclaim]
[text=,
style=slanted,
title=yes,
titleright={.},
location=serried,
width=fit,
right={.}]
%% end definition \remark

\starttext
\input knuth.tex

\startproclaim[lem:Yoneda]{Yoneda Theorem}
This is a theorem in set category theory.
\stopproclaim

\starttheorem 
The above theorem and this one are numbered sequentially.
\stoptheorem

\section{A new section}

\input knuth.tex

\startproclaim[lem:Yoneda]{Yoneda Theorem}
As said above, this is a theorem in set category theory.
\stopproclaim

\starttheorem 
The above theorem and this one are numbered sequentially.
\stoptheorem

\stoptext
%%% end

Best regards: OK

On 3 mars 2011, at 10:56, S Barmeier wrote:

> 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-requ...@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
> 
> ___
> If your question is of interest to others as well, please add an entry to the 
> Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki : http://contextgarden.net
> ___


___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supel

Re: [NTG-context] One-off theorem titles & numberstyle

2011-03-03 Thread S Barmeier
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-requ...@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

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___