Hi, for my table of contents, I have set a style that makes sections and subsections smaller than chapters. However, in the rendering the vertical space seems not to adapt: It remains equal for all entities. Is there a possibility to reduce the vertical space between subsections and sections? I tried before and after but only get it to add additional space and not reducing it. Here is a MWE: ``` \setuplist[chapter][ style=bold, aligntitle=yes, ] \setuplist[section][ aligntitle=yes, style=\tfx, ] \setuplist[subsection][ aligntitle=yes, style=\tfxx, after={\blank[none]}, before={\blank[none]}, ] \starttext \placecontent \hairline \startchapter[title=foo] \startsection[title=foo] \startsubsection[title=foo] \stopsubsection \startsubsection[title=foo] \stopsubsection \startsubsection[title=foo] \stopsubsection \stopsection \startsection[title=foo] \startsubsection[title=foo] \stopsubsection \startsubsection[title=foo] \stopsubsection \stopsection \stopchapter \startchapter[title=foo] \stopchapter \stoptext ``` Gerion