ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* section to have different conversion in body part and appendices
@ 2019-05-21 13:10 Procházka Lukáš Ing.
  2019-05-21 14:14 ` Pablo Rodriguez
  0 siblings, 1 reply; 3+ messages in thread
From: Procházka Lukáš Ing. @ 2019-05-21 13:10 UTC (permalink / raw)
  To: ConTeXt

Hello,

is there a way to tell \section (or other heads) to be "number-converted" differently in bodypart and appendices?

Something like:

----
\setuphead[section][] % e.g. "appendices:numberconversion=A"?
\starttext
   \starbodyamtter
     \section{In body} % To produce "1. In body"
   \stopbodymatter
   \startappendices
     \section{In apps} % To produce "A In apps"
   \stopappendices
\stoptext
----

Best regards,

Lukas


-- 
Ing. Lukáš Procházka | mailto:LPr@pontex.cz
Pontex s. r. o.      | mailto:pontex@pontex.cz | http://www.pontex.cz | IDDS: nrpt3sn | IČO: 40763439
Bezová 1658
147 14 Praha 4

Mob.: +420 702 033 396

___________________________________________________________________________________
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] 3+ messages in thread

* Re: section to have different conversion in body part and appendices
  2019-05-21 13:10 section to have different conversion in body part and appendices Procházka Lukáš Ing.
@ 2019-05-21 14:14 ` Pablo Rodriguez
  2019-05-22 11:06   ` Procházka Lukáš Ing.
  0 siblings, 1 reply; 3+ messages in thread
From: Pablo Rodriguez @ 2019-05-21 14:14 UTC (permalink / raw)
  To: ntg-context

On 5/21/19 3:10 PM, Procházka Lukáš Ing. wrote:
> Hello,
>
> is there a way to tell \section (or other heads) to be "number-converted" differently in bodypart and appendices?

Hi Lukáš,

I think this is what you want to achieve:

    \definestructureconversionset
        [sectionnumbers]
        [0,R,n,n,g]
        [n]

    \definestructureconversionset
        [appendix:sectionnumbers]
        [0,R,Characters,g,characters]
        [n]

    \setupheads
        [sectionconversionset=sectionnumbers]

    \setuphead[section][] % e.g. "appendices:numberconversion=A"?
    \starttext
       \startbodymatter
         \section{In body} % To produce "1. In body"
       \stopbodymatter
       \startappendices
         \section{In apps} % To produce "A In apps"
       \stopappendices
    \stoptext

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] 3+ messages in thread

* Re: section to have different conversion in body part and appendices
  2019-05-21 14:14 ` Pablo Rodriguez
@ 2019-05-22 11:06   ` Procházka Lukáš Ing.
  0 siblings, 0 replies; 3+ messages in thread
From: Procházka Lukáš Ing. @ 2019-05-22 11:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: text/plain, Size: 2334 bytes --]

Hello,

that's it - thanks!

The following code seems to be even more minimal & working:

----
\definestructureconversionset[appendix:sectionnumbers][,,A,]

\setupheads[sectionconversionset=sectionnumbers]

\starttext
   \completecontent

   \startbodymatter
     \part{Part}
       \chapter{Chap}
         \section{In body}
           \subsection{SSec}
   \stopbodymatter

   \startappendices
     \part{Part}
       \chapter{Chap}
         \section{In apps}
           \subsection{SSec}
   \stopappendices
\stoptext
----

Best regards,

Lukas


On Tue, 21 May 2019 16:14:45 +0200, Pablo Rodriguez <oinos@gmx.es> wrote:

> On 5/21/19 3:10 PM, Procházka Lukáš Ing. wrote:
>> Hello,
>>
>> is there a way to tell \section (or other heads) to be "number-converted" differently in bodypart and appendices?
>
> Hi Lukáš,
>
> I think this is what you want to achieve:
>
>     \definestructureconversionset
>         [sectionnumbers]
>         [0,R,n,n,g]
>         [n]
>
>     \definestructureconversionset
>         [appendix:sectionnumbers]
>         [0,R,Characters,g,characters]
>         [n]
>
>     \setupheads
>         [sectionconversionset=sectionnumbers]
>
>     \setuphead[section][] % e.g. "appendices:numberconversion=A"?
>     \starttext
>        \startbodymatter
>          \section{In body} % To produce "1. In body"
>        \stopbodymatter
>        \startappendices
>          \section{In apps} % To produce "A In apps"
>        \stopappendices
>     \stoptext
>
> 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
> ___________________________________________________________________________________
>


-- 
Ing. Lukáš Procházka | mailto:LPr@pontex.cz
Pontex s. r. o.      | mailto:pontex@pontex.cz | http://www.pontex.cz | IDDS: nrpt3sn | IČO: 40763439
Bezová 1658
147 14 Praha 4

Mob.: +420 702 033 396

[-- Attachment #2: AppNum2.mkiv --]
[-- Type: application/octet-stream, Size: 431 bytes --]

\definestructureconversionset[appendix:sectionnumbers][,,A,]

\setupheads[sectionconversionset=sectionnumbers]

\starttext
  \completecontent

  \startbodymatter
    \part{Part}
      \chapter{Chap}
        \section{In body}
          \subsection{SSec}
  \stopbodymatter

  \startappendices
    \part{Part}
      \chapter{Chap}
        \section{In apps}
          \subsection{SSec}
  \stopappendices
\stoptext

[-- Attachment #3: AppNum2.pdf --]
[-- Type: application/pdf, Size: 12141 bytes --]

[-- Attachment #4: Type: text/plain, Size: 493 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] 3+ messages in thread

end of thread, other threads:[~2019-05-22 11:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-21 13:10 section to have different conversion in body part and appendices Procházka Lukáš Ing.
2019-05-21 14:14 ` Pablo Rodriguez
2019-05-22 11:06   ` Procházka Lukáš Ing.

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).