Re: [NTG-context] Sectioning from 0?

2013-11-06 Thread Procházka Lukáš Ing . - Pontex s . r . o .

... It works perfectly, thanks!

Lukas

On Tue, 05 Nov 2013 23:31:25 +0100, Wolfgang Schuster 
wolfgang.schus...@gmail.com wrote:



Am 05.11.2013 um 13:22 schrieb Procházka Lukáš Ing. - Pontex s. r. o. 
l...@pontex.cz:


Hello,

I noticed now that:


\starttext
 \startsection[ownnumber=0,title=A]
   bla
 \stopsection

 \startsection[title=B]
   bla
 \stopsection
\stoptext


gives:


0 A

bla

2 B - 1 should be here instead of 2; automatically

bla


instead of:


0 A

bla

1 B

bla


So my original question remains:

How to start counting sections (locally) from 0, not from 1?


\defineexpandable[1]\PreviousNumber{\number\numexpr#1-1\relax}

\defineconversion[PreviousNumber][\PreviousNumber]

\setuphead[section][conversion=PreviousNumber]

\starttext

\startsection[title=A]
bla
\stopsection

\startsection[title=B]
bla
\stopsection

\stoptext

Wolfgang
___
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
___




--
Ing. Lukáš Procházka [mailto:l...@pontex.cz]
Pontex s. r. o.  [mailto:pon...@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 241 096 751
Fax: +420 244 461 038

___
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
___


Re: [NTG-context] Sectioning from 0?

2013-11-05 Thread Procházka Lukáš Ing . - Pontex s . r . o .

Hello,

I noticed now that:


\starttext
  \startsection[ownnumber=0,title=A]
bla
  \stopsection

  \startsection[title=B]
bla
  \stopsection
\stoptext


gives:


0 A

bla

2 B - 1 should be here instead of 2; automatically

bla


instead of:


0 A

bla

1 B

bla


So my original question remains:

How to start counting sections (locally) from 0, not from 1?

TIA.

Best regads,

Lukas


On Fri, 04 Oct 2013 16:11:10 +0200, Peter Münster pmli...@free.fr wrote:


Did you try this:

\starttext
\startsection[ownnumber=123, title=A]
bla
\stopsubsection
\stoptext

?  ;)




--
Ing. Lukáš Procházka [mailto:l...@pontex.cz]
Pontex s. r. o.  [mailto:pon...@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 241 096 751
Fax: +420 244 461 038

___
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
___


Re: [NTG-context] Sectioning from 0?

2013-11-05 Thread Wolfgang Schuster

Am 05.11.2013 um 13:22 schrieb Procházka Lukáš Ing. - Pontex s. r. o. 
l...@pontex.cz:

 Hello,
 
 I noticed now that:
 
 
 \starttext
  \startsection[ownnumber=0,title=A]
bla
  \stopsection
 
  \startsection[title=B]
bla
  \stopsection
 \stoptext
 
 
 gives:
 
 
 0 A
 
 bla
 
 2 B   - 1 should be here instead of 2; automatically
 
 bla
 
 
 instead of:
 
 
 0 A
 
 bla
 
 1 B
 
 bla
 
 
 So my original question remains:
 
 How to start counting sections (locally) from 0, not from 1?

\defineexpandable[1]\PreviousNumber{\number\numexpr#1-1\relax}

\defineconversion[PreviousNumber][\PreviousNumber]

\setuphead[section][conversion=PreviousNumber]

\starttext

\startsection[title=A]
bla
\stopsection

\startsection[title=B]
bla
\stopsection

\stoptext

Wolfgang
___
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
___


Re: [NTG-context] Sectioning from 0?

2013-10-06 Thread Lukáš Procházka

On Fri, 04 Oct 2013 16:53:58 +0200, Mari Voipio mari.voi...@iki.fi wrote:


On Fri, Oct 4, 2013 at 5:11 PM, Peter Münster pmli...@free.fr wrote:

\startsection[ownnumber=123, title=A]
bla
\stopsubsection


?


That was a typo, I guess; it should have been:

\startsubsection[ownnumber=123,title=A]
  bla
\stopsubsection

Lukas



(They should be a pair, shouldn't they? Just in case somebody tries to
cut-and-paste the code...)

Mari



___
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
___

Re: [NTG-context] Sectioning from 0?

2013-10-04 Thread Peter Münster
On Fri, Oct 04 2013, Procházka Lukáš Ing. - Pontex s. r. o. wrote:

 \subsection[ownnumber=0]{C}

 Maybe \start/stop-subsection would be better for this case... But how?

Did you try this:

\starttext
\startsection[ownnumber=123, title=A]
bla
\stopsubsection
\stoptext 

?  ;)

-- 
   Peter
___
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
___

Re: [NTG-context] Sectioning from 0?

2013-10-04 Thread Procházka Lukáš Ing . - Pontex s . r . o .

On Fri, 04 Oct 2013 16:11:10 +0200, Peter Münster pmli...@free.fr wrote:


On Fri, Oct 04 2013, Procházka Lukáš Ing. - Pontex s. r. o. wrote:


\subsection[ownnumber=0]{C}

Maybe \start/stop-subsection would be better for this case... But how?


Did you try this:

\starttext
\startsection[ownnumber=123, title=A]
bla
\stopsubsection
\stoptext

?  ;)



8-) I'd swore I did...

Thank you anyway.

Cheers,

Lukas


--
Ing. Lukáš Procházka [mailto:l...@pontex.cz]
Pontex s. r. o.  [mailto:pon...@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

___
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
___


Re: [NTG-context] Sectioning from 0?

2013-10-04 Thread Mari Voipio
On Fri, Oct 4, 2013 at 5:11 PM, Peter Münster pmli...@free.fr wrote:
 \startsection[ownnumber=123, title=A]
 bla
 \stopsubsection

?

(They should be a pair, shouldn't they? Just in case somebody tries to
cut-and-paste the code...)

Mari
___
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
___


Re: [NTG-context] Sectioning from 0?

2013-10-04 Thread Peter Münster
On Fri, Oct 04 2013, Mari Voipio wrote:

 \startsection[ownnumber=123, title=A]
 bla
 \stopsubsection

 (They should be a pair, shouldn't they?

Why should we bother?  It just works...  ;-))

-- 
   Peter
___
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
___