ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* section headings
@ 2011-04-09 18:55 Herbert Voss
  2011-04-18  9:05 ` Herbert Voss
  0 siblings, 1 reply; 3+ messages in thread
From: Herbert Voss @ 2011-04-09 18:55 UTC (permalink / raw)
  To: mailing list for ConTeXt users

With the following code I get

1. Teil foo
§ 1 1 bar
i baz

but I need

1. Teil foo
§ 1 A. bar
I. baz

I cannot get the needed information from the wiki and the documentation.

\def\PartNo#1{#1.\,Teil}
\def\ChapterNo#1{§ \headnumber[part]
                    \determineheadnumber[chapter]\currentheadnumber}
\def\SectionNo#1{\determineheadnumber[section]\romannumeral\currentheadnumber}
\setuphead[part][number=yes,after=\blank,numbercommand=\PartNo,
	    style={\tfc\ss\bf},placehead=yes]
\setuphead[chapter][before=\blank,after=\blank,conversion=Characters,
                     numbercommand=\ChapterNo,
                     continue=yes,style={\tfb\ss\bf}]
\setuphead[section][conversion=Romannumerals,
                     numbercommand=\SectionNo,style={\tfb\ss\bf}]

\starttext

\part{foo}
\chapter{bar}
\section{baz}
\stoptext


Herbert
___________________________________________________________________________________
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
___________________________________________________________________________________

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

* Re: section headings
  2011-04-09 18:55 section headings Herbert Voss
@ 2011-04-18  9:05 ` Herbert Voss
  2011-04-19 12:46   ` Willi Egger
  0 siblings, 1 reply; 3+ messages in thread
From: Herbert Voss @ 2011-04-18  9:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users

no one has an idea?

Am 09.04.2011 20:55, schrieb Herbert Voss:
> With the following code I get
>
> 1. Teil foo
> § 1 1 bar
> i baz
>
> but I need
>
> 1. Teil foo
> § 1 A. bar
> I. baz
>
> I cannot get the needed information from the wiki and the documentation.
>
> \def\PartNo#1{#1.\,Teil}
> \def\ChapterNo#1{§ \headnumber[part]
> \determineheadnumber[chapter]\currentheadnumber}
> \def\SectionNo#1{\determineheadnumber[section]\romannumeral\currentheadnumber}
>
> \setuphead[part][number=yes,after=\blank,numbercommand=\PartNo,
> style={\tfc\ss\bf},placehead=yes]
> \setuphead[chapter][before=\blank,after=\blank,conversion=Characters,
> numbercommand=\ChapterNo,
> continue=yes,style={\tfb\ss\bf}]
> \setuphead[section][conversion=Romannumerals,
> numbercommand=\SectionNo,style={\tfb\ss\bf}]
>
> \starttext
>
> \part{foo}
> \chapter{bar}
> \section{baz}
> \stoptext
>
>
> Herbert
> ___________________________________________________________________________________
>
> 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.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: section headings
  2011-04-18  9:05 ` Herbert Voss
@ 2011-04-19 12:46   ` Willi Egger
  0 siblings, 0 replies; 3+ messages in thread
From: Willi Egger @ 2011-04-19 12:46 UTC (permalink / raw)
  To: mailing list for ConTeXt users

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

Herbert,

I tried to find out. I remembered that there was this discussion already earlier on this list.

on  2010-08-30 Hans Hagen wrote the following:

...
> while it should keep "A.1" instead of "1.1" for the section numbering. 

The new way is: 

\definestructureconversionset[MySet][numbers,Characters][numbers] % [per 
level] [default] 

\setupsection 
[chapter] 
[sectionconversionset=MySet] 

\starttext 

\chapter{first} 
\section{subfirst} 

\stoptext
...

I thought that it must be found along these lines. However I could not get the example working properly.

Willi

(This is LuaTeX, Version beta-0.66.0-2011041318 (rev 4144) 
/Users/willi/Documents/TEXdata/TEST/test-sectionnumbeconversion.tex}



[-- Attachment #2: test-sectionnumbeconversion.tex --]
[-- Type: application/octet-stream, Size: 1003 bytes --]

% Context file
% Filename: test-sectionnumberconversion.tex
% 
% 19-04-2011
% Copyright (c) 2011 BOEDE. All rights reserved.

%\showframe
\def\PartNo#1{#1.\,Teil}
% \def\ChapterNo#1{§ \headnumber[part]
%     \determineheadnumber[chapter]\currentheadnumber}
% \def\SectionNo#1{\determineheadnumber[section]\romannumeral\currentheadnumber}
% 
\setuphead
	[part]
	[number=yes,
	after=\blank,
	% numbercommand=\PartNo,
    style={\tfc\ss\bf},
	placehead=yes]  
\setuphead
	[chapter]
	[before=\blank,
	after=\blank,
	% conversion=Characters,
    % numbercommand=\ChapterNo,
    continue=yes,
    style={\tfb\ss\bf}]
\setuphead
    [section]
	[%conversion=Romannumerals,
    % numbercommand=\SectionNo,
	style={\tfb\ss\bf}] 

\definestructureconversionset[MySet][numbers,Characters,Romannumerals][numbers] % [per level] [default]

\setupsection
	[part,chapter,section]
	[sectionconversionset=MySet]

\starttext

\part{foo}
\chapter{bar}
\section{baz}

\stoptext

[-- Attachment #3: Type: text/plain, Size: 2069 bytes --]



On 18 Apr 2011, at 11:05, Herbert Voss wrote:

> no one has an idea?
> 
> Am 09.04.2011 20:55, schrieb Herbert Voss:
>> With the following code I get
>> 
>> 1. Teil foo
>> § 1 1 bar
>> i baz
>> 
>> but I need
>> 
>> 1. Teil foo
>> § 1 A. bar
>> I. baz
>> 
>> I cannot get the needed information from the wiki and the documentation.
>> 
>> \def\PartNo#1{#1.\,Teil}
>> \def\ChapterNo#1{§ \headnumber[part]
>> \determineheadnumber[chapter]\currentheadnumber}
>> \def\SectionNo#1{\determineheadnumber[section]\romannumeral\currentheadnumber}
>> 
>> \setuphead[part][number=yes,after=\blank,numbercommand=\PartNo,
>> style={\tfc\ss\bf},placehead=yes]
>> \setuphead[chapter][before=\blank,after=\blank,conversion=Characters,
>> numbercommand=\ChapterNo,
>> continue=yes,style={\tfb\ss\bf}]
>> \setuphead[section][conversion=Romannumerals,
>> numbercommand=\SectionNo,style={\tfb\ss\bf}]
>> 
>> \starttext
>> 
>> \part{foo}
>> \chapter{bar}
>> \section{baz}
>> \stoptext
>> 
>> 
>> Herbert
>> ___________________________________________________________________________________
>> 
>> 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.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________


[-- Attachment #4: Type: text/plain, Size: 485 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2011-04-19 12:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-09 18:55 section headings Herbert Voss
2011-04-18  9:05 ` Herbert Voss
2011-04-19 12:46   ` Willi Egger

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