[NTG-context] reduced space below chapter title

Wolfgang Schuster wolfgang.schuster.lists at gmail.com
Wed Jun 3 06:23:22 CEST 2020


jbf schrieb am 03.06.2020 um 01:21:
>
> Thanks Wolfgang. Clearly that fixes the problem. I also came up with 
> another solution which avoids the need to define a MyChapterCommand, 
> by first setting up the normal chapter as:
>
> \setuphead
>   [chapter]
> [header=empty,alternative=middle,style=bold,numbercommand=\groupedcommand{}{\blank[2cm]},after={\blank[3cm]}]
>
> and then setting up a mychapter as:
>
> \definehead[mychapter][chapter]
>
> \setuphead[mychapter][header=empty,alternative=middle,style=bold,numbercommand=\groupedcommand{}{\blank[2cm]},after={\blank[.5cm]}]
>
> That gives me the result I am after as well as maintaining the style 
> of the standard chapter head.
>

You can add a check for odd/even chapter numbers and use only a single 
command.

\startsetups[chapter:after]
   \ifodd\namedheadnumber{chapter}
     \blank[4cm]
   \else
     \blank[1cm]
   \fi
\stopsetups

\setuphead
   [chapter]
   [after=\directsetup{chapter:after}]

% \setuphead
%   [title]
%   [after={\blank[...]}]

\starttext

\dorecurse{10}
   {\chapter{Chapter #1}
    \input knuth}

\stoptext

Wolfgang

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.ntg.nl/pipermail/ntg-context/attachments/20200603/0585a8c3/attachment.htm>


More information about the ntg-context mailing list