On Wed, Nov 20, 2002 at 10:45:12AM +0100, Jeroen Vriesman wrote:
> I use roman chapter numbering in AMS-book, by putting:
> 
> When I look at the table of content it does this:
> 
> Hoofdstuk I.    Dit is hoofdstuk 1             3
> Hoofdstuk II.    Dit is hoofdstuk 2            7
> Hoofdstuk III.    Dit is hoofdstuk 3          15
> 
> While I want this:
> 
> Hoofdstuk I.   Dit is hoofdstuk 1              3
> Hoofdstuk II.  Dit is hoofdstuk 2              7
> Hoofdstuk III. Dit is hoofdstuk 3             15
> 
> How can I correct that?

Add the following to the preamble:

\newlength{\tmp}
\settowidth{\tmp}{Chapter VIII}
\renewcommand{\tocchapter}[3]{%
  \indentlabel{\@ifnotempty{#2}{%
    \makebox[\tmp][l]{\ignorespaces #1 #2.}\quad}}#3}

where VIII is the widest chapter number.

Reply via email to