Re: [NTG-context] "Turning off" special chapter headings

2012-02-16 Thread Alasdair McAndrew
Thanks for your suggestion, but it didn't seem to work. I just discovered
the answer myself and that was to create a new chapter command:

\def\uchap#1#2{#2}

and then follow as per the wiki:

\definehead[ans][chapter]
\setuphead[ans][command=\uchap,number=no]
\definecombinedlist[content][ans,chapter,section]
\setuplist[ans][headnumber=no]

Then finally

\ans{Answers to Exercises}

cheers,
Alasdair

On Fri, Feb 17, 2012 at 4:05 PM, Otared Kavian  wrote:

> Hi,
>
> Didn't you see my answer? As suggested below, you can
> use \chapter[title={Answer to all the questions},number=no].
>
> On 16 févr. 2012, at 08:59, Otared Kavian wrote:
>
> Hi Alasdair,
>
> Is this what you want?
>  begin
> \starttext
>
> \completecontent
>
> \chapter{Chapter one}
>
> \section{First section}
>
> \section{Second section}
>
> \chapter{Chapter two}
>
> \section{First section}
>
> \section{Second section}
>
> \chapter[title={Answer to all the questions},number=no]
>
> \stoptext
> % end
>
> Best regards: OK
>
>
>
> Best regards: OK
>
> On 17 févr. 2012, at 01:48, Alasdair McAndrew wrote:
>
> I'm using the following:
>
> \def\chap#1#2{\vbox{Chapter #1\crlf\framed[frame=off,topframe=on]{#2}}}
> \setuphead[chapter][command=\chap,style=bfd,after={\blank[1cm]}]
>
> for my chapter headings.  But one chapter: "Answers to Exercises" I want
> unnumbered, without the "Chapter" text, and also in the table of contents.
>
> Can anybody point me to the simplest way of achieving this?  (I've tried
> various combinations of \setuphead, \definehead, but nothing so far has
> given me what I want.)
>
> Thanks,
> Alasdair
>
> --
> Blog: http://amca01.wordpress.com
> Web:  http://sites.google.com/site/amca01/
> Facebook: http://www.facebook.com/alasdair.mcandrew
> ___
> 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
>
> ___
>



-- 
Blog: http://amca01.wordpress.com
Web:  http://sites.google.com/site/amca01/
Facebook: http://www.facebook.com/alasdair.mcandrew
___
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] "Turning off" special chapter headings

2012-02-16 Thread Otared Kavian
Hi,

Didn't you see my answer? As suggested below, you can use 
\chapter[title={Answer to all the questions},number=no].

On 16 févr. 2012, at 08:59, Otared Kavian wrote:

> Hi Alasdair,
> 
> Is this what you want?
>  begin
> \starttext
> 
> \completecontent
> 
> \chapter{Chapter one}
> 
> \section{First section}
> 
> \section{Second section}
> 
> \chapter{Chapter two}
> 
> \section{First section}
> 
> \section{Second section}
> 
> \chapter[title={Answer to all the questions},number=no]
> 
> \stoptext
> % end
> 
> Best regards: OK


Best regards: OK

On 17 févr. 2012, at 01:48, Alasdair McAndrew wrote:

> I'm using the following:
> 
> \def\chap#1#2{\vbox{Chapter #1\crlf\framed[frame=off,topframe=on]{#2}}}
> \setuphead[chapter][command=\chap,style=bfd,after={\blank[1cm]}]
> 
> for my chapter headings.  But one chapter: "Answers to Exercises" I want 
> unnumbered, without the "Chapter" text, and also in the table of contents.
> 
> Can anybody point me to the simplest way of achieving this?  (I've tried 
> various combinations of \setuphead, \definehead, but nothing so far has given 
> me what I want.)
> 
> Thanks,
> Alasdair
> 
> -- 
> Blog: http://amca01.wordpress.com
> Web:  http://sites.google.com/site/amca01/
> Facebook: http://www.facebook.com/alasdair.mcandrew
> ___
> 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
___

[NTG-context] "Turning off" special chapter headings

2012-02-16 Thread Alasdair McAndrew
I'm using the following:

\def\chap#1#2{\vbox{Chapter #1\crlf\framed[frame=off,topframe=on]{#2}}}
\setuphead[chapter][command=\chap,style=bfd,after={\blank[1cm]}]

for my chapter headings.  But one chapter: "Answers to Exercises" I want
unnumbered, without the "Chapter" text, and also in the table of contents.

Can anybody point me to the simplest way of achieving this?  (I've tried
various combinations of \setuphead, \definehead, but nothing so far has
given me what I want.)

Thanks,
Alasdair

-- 
Blog: http://amca01.wordpress.com
Web:  http://sites.google.com/site/amca01/
Facebook: http://www.facebook.com/alasdair.mcandrew
___
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
___