ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Numbering properties in a chapter
@ 2018-07-23 15:11 Fabrice Couvreur
  2018-07-23 15:39 ` Pablo Rodriguez
  0 siblings, 1 reply; 6+ messages in thread
From: Fabrice Couvreur @ 2018-07-23 15:11 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 929 bytes --]

Hello,
I would like the numbering of the properties to be like this :

First chapter

Property 1.1

Property 1.2

Second chapter

Property 2.1

Property 2.2

I thought it was enough to use the key way = bychapter

Thanks

Fabrice


\define[1]\ProprieteHeadcommand
  {\textrule[top]{#1}}

\setupenumerations[
       text=Propriété ,
       title=no,
       way=bychapter,
       titlestyle=bold,
       style=slanted,
       width=fit,
       headcommand=\ProprieteHeadcommand,
       numbercommand=\groupedcommand{}{\nbsp},
       after=\textrule
]

\defineenumeration[propriete]


\starttext

\startchapter[title={First chapter}]

  \dorecurse{2}{
    \startpropriete
      \input ward
    \stoppropriete}


\stopchapter

\startchapter[title={Second chapter}]

 \dorecurse{2}{
    \startpropriete
      \input ward
    \stoppropriete}


\stopchapter


\stoptext

[-- Attachment #1.2: Type: text/html, Size: 2484 bytes --]

[-- Attachment #2: Type: text/plain, Size: 492 bytes --]

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Numbering properties in a chapter
  2018-07-23 15:11 Numbering properties in a chapter Fabrice Couvreur
@ 2018-07-23 15:39 ` Pablo Rodriguez
  2018-07-24  9:04   ` Fabrice Couvreur
  0 siblings, 1 reply; 6+ messages in thread
From: Pablo Rodriguez @ 2018-07-23 15:39 UTC (permalink / raw)
  To: ntg-context

On 07/23/2018 05:11 PM, Fabrice Couvreur wrote:
> Hello,
> I would like the numbering of the properties to be like this :
> [...]
> I thought it was enough to use the key way = bychapter

Hi Fabrice,

"way=bychapter" resets numbering in each chapter.

You need this:

\setupenumerations[
       prefix=yes,
       prefixsegments=chapter,
]

You need to enable the prefix and say what you want as prefix.

I hope it helps,

Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Numbering properties in a chapter
  2018-07-23 15:39 ` Pablo Rodriguez
@ 2018-07-24  9:04   ` Fabrice Couvreur
  2018-07-24 15:09     ` Pablo Rodriguez
  0 siblings, 1 reply; 6+ messages in thread
From: Fabrice Couvreur @ 2018-07-24  9:04 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1285 bytes --]

Hi Pablo,
Thank you Pablo for your answer that corresponds to what I seek to do.
Small question: how to have a point at the end of the numbering that is to
say :

Property 1.1.
Property 1.2.
.....
Thanks
Fabrice

2018-07-23 17:39 GMT+02:00 Pablo Rodriguez <oinos@gmx.es>:

> On 07/23/2018 05:11 PM, Fabrice Couvreur wrote:
> > Hello,
> > I would like the numbering of the properties to be like this :
> > [...]
> > I thought it was enough to use the key way = bychapter
>
> Hi Fabrice,
>
> "way=bychapter" resets numbering in each chapter.
>
> You need this:
>
> \setupenumerations[
>        prefix=yes,
>        prefixsegments=chapter,
> ]
>
> You need to enable the prefix and say what you want as prefix.
>
> I hope it helps,
>
> Pablo
> --
> http://www.ousia.tk
> ____________________________________________________________
> _______________________
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ____________________________________________________________
> _______________________

[-- Attachment #1.2: Type: text/html, Size: 2748 bytes --]

[-- Attachment #2: Type: text/plain, Size: 492 bytes --]

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Numbering properties in a chapter
  2018-07-24  9:04   ` Fabrice Couvreur
@ 2018-07-24 15:09     ` Pablo Rodriguez
  2018-07-25  8:46       ` Fabrice Couvreur
  2018-07-25 20:54       ` Wolfgang Schuster
  0 siblings, 2 replies; 6+ messages in thread
From: Pablo Rodriguez @ 2018-07-24 15:09 UTC (permalink / raw)
  To: ntg-context

On 07/24/2018 11:04 AM, Fabrice Couvreur wrote:
> Hi Pablo,
> Thank you Pablo for your answer that corresponds to what I seek to do.
> Small question: how to have a point at the end of the numbering that is
> to say :
> 
> Property 1.1.
> Property 1.2.

Hi Fabrice,

the option seems to be:

       right=.,

according to
http://www.pragma-ade.com/general/qrcs/setup-en.pdf#page=203 (aka
i-context.pdf in the distribution).

tex/texmf-context/tex/context/interface/mkiv/i-context.pdf is one of
your best friends here.

I hope it helps,

Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Numbering properties in a chapter
  2018-07-24 15:09     ` Pablo Rodriguez
@ 2018-07-25  8:46       ` Fabrice Couvreur
  2018-07-25 20:54       ` Wolfgang Schuster
  1 sibling, 0 replies; 6+ messages in thread
From: Fabrice Couvreur @ 2018-07-25  8:46 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1291 bytes --]

Hi Pablo,
Thank you for the link, it is true that I have to read this manual more
often.
Fabrice

2018-07-24 17:09 GMT+02:00 Pablo Rodriguez <oinos@gmx.es>:

> On 07/24/2018 11:04 AM, Fabrice Couvreur wrote:
> > Hi Pablo,
> > Thank you Pablo for your answer that corresponds to what I seek to do.
> > Small question: how to have a point at the end of the numbering that is
> > to say :
> >
> > Property 1.1.
> > Property 1.2.
>
> Hi Fabrice,
>
> the option seems to be:
>
>        right=.,
>
> according to
> http://www.pragma-ade.com/general/qrcs/setup-en.pdf#page=203 (aka
> i-context.pdf in the distribution).
>
> tex/texmf-context/tex/context/interface/mkiv/i-context.pdf is one of
> your best friends here.
>
> I hope it helps,
>
> Pablo
> --
> http://www.ousia.tk
> ____________________________________________________________
> _______________________
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ____________________________________________________________
> _______________________
>

[-- Attachment #1.2: Type: text/html, Size: 2748 bytes --]

[-- Attachment #2: Type: text/plain, Size: 492 bytes --]

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Numbering properties in a chapter
  2018-07-24 15:09     ` Pablo Rodriguez
  2018-07-25  8:46       ` Fabrice Couvreur
@ 2018-07-25 20:54       ` Wolfgang Schuster
  1 sibling, 0 replies; 6+ messages in thread
From: Wolfgang Schuster @ 2018-07-25 20:54 UTC (permalink / raw)
  To: mailing users; +Cc: Pablo Rodriguez

The correct key to set the period after the number is "numberstopper" 
which is inherited from \setupcounter.

Wolfgang


Pablo Rodriguez schrieb am 24.07.18 um 17:09:
> On 07/24/2018 11:04 AM, Fabrice Couvreur wrote:
>> Hi Pablo,
>> Thank you Pablo for your answer that corresponds to what I seek to do.
>> Small question: how to have a point at the end of the numbering that is
>> to say :
>>
>> Property 1.1.
>> Property 1.2.
> Hi Fabrice,
>
> the option seems to be:
>
>         right=.,
>
> according to
> http://www.pragma-ade.com/general/qrcs/setup-en.pdf#page=203 (aka
> i-context.pdf in the distribution).
>
> tex/texmf-context/tex/context/interface/mkiv/i-context.pdf is one of
> your best friends here.
>
> I hope it helps,
>
> Pablo

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-07-25 20:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-23 15:11 Numbering properties in a chapter Fabrice Couvreur
2018-07-23 15:39 ` Pablo Rodriguez
2018-07-24  9:04   ` Fabrice Couvreur
2018-07-24 15:09     ` Pablo Rodriguez
2018-07-25  8:46       ` Fabrice Couvreur
2018-07-25 20:54       ` Wolfgang Schuster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).