Am 14.03.2015 um 15:54 schrieb Gerben Wierda
: I am running into two issues with my mkii-to-mkiv conversion project
- The \chapter command in mkiv uses more whitespace between the header and the first paragraph. How can I influence this?
The different space before the \chapter is caused by the “fixed” keyword for \blank which produce different result with MkII and MkIV and the MkIV behaviour need to be corrected. The space after \chapter comes from your \writetolist entry and you can correct this with the \GotoPar command at the end of the entry as shown below. %%%% begin example \showgrid \setuphead[chapter][before={\blank[force,2*line]}] \starttext \chapter{Knuth} \writetolist[chapter]{}{}\GotoPar \input knuth \stoptext %%%% end example Wolfgang