ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Question about chapter headings
@ 2011-10-25  5:41 Alasdair McAndrew
  2011-10-25  6:55 ` Peter Münster
  0 siblings, 1 reply; 5+ messages in thread
From: Alasdair McAndrew @ 2011-10-25  5:41 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

I'm trying to set up a chapter heading which looks like this:

Chapter 4

This is the fourth chapter

That is, there are two lines, one of which says "Chapter" followed by its
number, and the next which is the chapter title.  What is the easiest way to
do this?  I've tried

\def\chap#1#2{Chapter #1\crlf #2}

\setuphead[chapter][
       command=\chap,
       style=bfc,
       after={\blank[1cm]},
    ]

But this doesn't work (and nor do many other variations in the "chap"
command).  I'm a bit stymied here - and I'd welcome some advice.

Thanks,
Alasdair

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

[-- Attachment #2: 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] 5+ messages in thread

* Re: Question about chapter headings
  2011-10-25  5:41 Question about chapter headings Alasdair McAndrew
@ 2011-10-25  6:55 ` Peter Münster
  2011-10-25  8:21   ` Alasdair McAndrew
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Peter Münster @ 2011-10-25  6:55 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Tue, Oct 25 2011, Alasdair McAndrew wrote:

> \def\chap#1#2{Chapter #1\crlf #2}

\def\chap#1#2{\vbox{Chapter #1\crlf #2}}

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


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

* Re: Question about chapter headings
  2011-10-25  6:55 ` Peter Münster
@ 2011-10-25  8:21   ` Alasdair McAndrew
  2011-10-25  8:32   ` Wolfgang Schuster
  2011-10-25  8:36   ` Hans Hagen
  2 siblings, 0 replies; 5+ messages in thread
From: Alasdair McAndrew @ 2011-10-25  8:21 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Thanks very much!  (I'm embarrassed - I should have been able to work that
one out for myself...)

-Alasdair

On Tue, Oct 25, 2011 at 5:55 PM, Peter Münster <pmlists@free.fr> wrote:

> On Tue, Oct 25 2011, Alasdair McAndrew wrote:
>
> > \def\chap#1#2{Chapter #1\crlf #2}
>
> \def\chap#1#2{\vbox{Chapter #1\crlf #2}}
>
> --
>           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
>
> ___________________________________________________________________________________
>

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

[-- Attachment #2: 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] 5+ messages in thread

* Re: Question about chapter headings
  2011-10-25  6:55 ` Peter Münster
  2011-10-25  8:21   ` Alasdair McAndrew
@ 2011-10-25  8:32   ` Wolfgang Schuster
  2011-10-25  8:36   ` Hans Hagen
  2 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Schuster @ 2011-10-25  8:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 25.10.2011 um 08:55 schrieb Peter Münster:

> On Tue, Oct 25 2011, Alasdair McAndrew wrote:
> 
>> \def\chap#1#2{Chapter #1\crlf #2}
> 
> \def\chap#1#2{\vbox{Chapter #1\crlf #2}}

Use uppercase or camelcase for self defined command and the chapter string can be set with label texts.

\define[2]\ChapterCommand
  {\vbox{#1\crlf#2}}

\setuplabeltext[chapter=Chapter ]

\setuphead[chapter][command=\ChapterCommand]

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
___________________________________________________________________________________


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

* Re: Question about chapter headings
  2011-10-25  6:55 ` Peter Münster
  2011-10-25  8:21   ` Alasdair McAndrew
  2011-10-25  8:32   ` Wolfgang Schuster
@ 2011-10-25  8:36   ` Hans Hagen
  2 siblings, 0 replies; 5+ messages in thread
From: Hans Hagen @ 2011-10-25  8:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Peter Münster

On 25-10-2011 08:55, Peter Münster wrote:
> On Tue, Oct 25 2011, Alasdair McAndrew wrote:
>
>> \def\chap#1#2{Chapter #1\crlf #2}
>
> \def\chap#1#2{\vbox{Chapter #1\crlf #2}}

or:

\defineheadplacement[MyHead][vertical]#1#2%
   {\vbox{Chapter #1\crlf #2}}

which helps the calling code to make some decisions

Hans


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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] 5+ messages in thread

end of thread, other threads:[~2011-10-25  8:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-25  5:41 Question about chapter headings Alasdair McAndrew
2011-10-25  6:55 ` Peter Münster
2011-10-25  8:21   ` Alasdair McAndrew
2011-10-25  8:32   ` Wolfgang Schuster
2011-10-25  8:36   ` Hans Hagen

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