Re: [NTG-context] sections without numbering

2014-07-25 Thread Wolfgang Schuster

Am 13.07.2014 um 12:06 schrieb Werner Hintze w.hin...@posteo.eu:

 Aha. I see. Two possibilities more. But I forgot another problem. All these 
 solutions give me
 
 »1.2. Kapitel« - »1.2. Kapitel« etc. if it’s the first part. I don’t 
 unterstand the mechanism and so I don’t know where to look for the solution.

Which output do you expect?

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
___


[NTG-context] sections without numbering

2014-07-13 Thread Philipp Gesang
Hello Werner!

···date: 2014-07-12, Saturday···from: Werner Hintze···

 I can’t figure out how to change the chapter heading. More important: 
 I have no idea where to find the needed information. What I want to see 
 is for example:
 
 Kapitel: Blablabla

Several unnumbered structures are predefined.

\setuphead [subject] [before=Kapitel~]
\starttext
  \startsubject [title=foo] \input knuth \stopsubject
\stoptext

If you wish for the styles of the label and the title to match,
you’ll have to assign them manually:

\definealternativestyle [subjectstyle] [\italic \tfd]

\setuphead [subject] [
  style=subjectstyle,
  before=\bgroup \subjectstyle Kapitel~\egroup,
]
\starttext
  \startsubject [title=foo] \input knuth \stopsubject
\stoptext

The reason as to why this isn’t as easy as

\setuplabeltext [chapter=Kapitel]
\setuphead [chapter] [number=no]

is that the section label is treated as part of the number.
Consequently, Context exposes no option to typeset the label
independently. However, it can be made work by passing an
appropriate command that omits the number:

\setuplabeltext [chapter=Kapitel]
\setuphead [chapter] [deepnumbercommand=\gobbleoneargument]

\starttext
  \startchapter [title=foo] \input knuth \stopchapter
\stoptext

 Where can I find these informations?

In the manual [0]. The \title and \subject structurals even made the
second place on the “top ten” ladder of important commands
(cf. section 1.10). The numberless versions also feature
promintently on the wiki [1].

PS  Next time you ask a new question, please open a new thread
with an adequate subject to keep the list tidy.

Best regards,
Philipp

[0] http://wiki.contextgarden.net/ConTeXt_reference_manual
[1] http://wiki.contextgarden.net/Titles#Default



pgpAV8cO5Yz87.pgp
Description: PGP signature
___
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] sections without numbering

2014-07-13 Thread Werner Hintze

Hi Philipp,

I don’t know what happened: I believe I started a new thread with a 
new subject. My mail program makes sometimes strange things…


Anayway. Thanks for your response. In the meantime I found another 
solution:



\starttext

\define[2]\MyChapter {#1.\,Kapitel: #2}
\setuphead [chapter] [command=\MyChapter, page=no]

\startchapter
[title=Die ersten Menschen]
\input knuth
\stopchapter

\startchapter
[title=Mehr von den ersten Menschen]
\input knuth
\stopchapter

\stoptext

But you helped me to unterstand better what happens here.

Thank you and best regards

Werner


***
☞ Werner Hintze  ●  Auerstraße 1  ●  D-10249 Berlin ☜
Fon: +49 (30) 42 73 485 ● Mob: +49 (160) 94 68 76 60
***
On 13 Jul 2014, at 9:03, Philipp Gesang wrote:

Hello Werner!

·

I can’t figure out how to change the chapter heading. More important:
I have no idea where to find the needed information. What I want to see
is for example:

Kapitel: Blablabla

Several unnumbered structures are predefined.

\setuphead [subject] [before=Kapitel~]
\starttext
\startsubject [title=foo] \input knuth \stopsubject
\stoptext

If you wish for the styles of the label and the title to match,
you’ll have to assign them manually:

\definealternativestyle [subjectstyle] [\italic \tfd]

\setuphead [subject] [
style=subjectstyle,
before=\bgroup \subjectstyle Kapitel~\egroup,
]
\starttext
\startsubject [title=foo] \input knuth \stopsubject
\stoptext

The reason as to why this isn’t as easy as

\setuplabeltext [chapter=Kapitel]
\setuphead [chapter] [number=no]

is that the section label is treated as part of the number.
Consequently, Context exposes no option to typeset the label
independently. However, it can be made work by passing an
appropriate command that omits the number:

\setuplabeltext [chapter=Kapitel]
\setuphead [chapter] [deepnumbercommand=\gobbleoneargument]

\starttext
\startchapter [title=foo] \input knuth \stopchapter
\stoptext

Where can I find these informations?

In the manual [0]. The \title and \subject structurals even made the
second place on the “top ten” ladder of important commands
(cf. section 1.10). The numberless versions also feature
promintently on the wiki [1].

PS Next time you ask a new question, please open a new thread
with an adequate subject to keep the list tidy.

Best regards,
Philipp

[0] http://wiki.contextgarden.net/ConTeXt_reference_manual
[1] http://wiki.contextgarden.net/Titles#Default

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
___

Re: [NTG-context] sections without numbering

2014-07-13 Thread Philipp Gesang
···date: 2014-07-13, Sunday···from: Werner Hintze···

 Anayway. Thanks for your response. In the meantime I found another 
 solution:
 
 
   \starttext
 
   \define[2]\MyChapter {#1.\,Kapitel: #2}
   \setuphead [chapter] [command=\MyChapter, page=no]

Yes, that a valid solution as well.

Good luck!
Philipp



pgpne94u5pdEP.pgp
Description: PGP signature
___
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] sections without numbering

2014-07-13 Thread Werner Hintze
Aha. I see. Two possibilities more. But I forgot another problem. All 
these solutions give me


»1.2. Kapitel« - »1.2. Kapitel« etc. if it’s the first part. I 
don’t unterstand the mechanism and so I don’t know where to look for 
the solution.


On 13 Jul 2014, at 11:38, Wolfgang Schuster wrote:

Am 13.07.2014 um 09:23 schrieb Werner Hintze w.hin...@posteo.eu:

Hi Philipp,

I don’t know what happened: I believe I started a new thread with a 
new subject. My mail program makes sometimes strange things…


Anayway. Thanks for your response. In the meantime I found another 
solution:


\starttext

\define[2]\MyChapter {#1.\,Kapitel: #2}
\setuphead [chapter] [command=\MyChapter, page=no]

\setuphead [chapter] [numbercommand=\groupedcommand{}{ 
Kapitel:},page=no,sectionstopper=.]


or

\setuplabeltext[en][chapter={, Kapitel:}]
\setuphead [chapter] [page=no,sectionstopper=.]

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

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