Am 24.05.2011 um 16:13 schrieb Mathieu DUPONT:


Thank you !
However, this resulted in something weird with my appendices, but adding \blank in the front fixes the problem :

\define[3]\ChapterList
  {\blank\currentlistsymbol\crlf#2\enspace\listdots\enspace#3}

I am starting to think there is something mysterious with this \blank command...

Not really, the commands just ends the last line and inserts a blank line.
When you don’t want an empty line you can define the chapter entry as:

\define[3]\ChapterList
  {\par\noindent\currentlistsymbol\crlf#2\enspace\listdots\enspace#3\par}

Wolfgang