2

I'm having a few problems with my 'Table of Contents' as it the numbering interferes with the chapter and part labels.

I've added a screenshot of the problem here.

I would prefer to keep the roman numbering.

\documentclass[11pt,a4paper]{memoir} . . \begin{document} . . \end{document}

Anders
  • 137

1 Answers1

3

Since you're using the memoir document class, you could issue the command

\setlength\cftpartnumwidth{3em}

in the preamble. This instruction increases the width of the block that's set aside for the part-level Roman numerals in the ToC. For a consistent appearance, you should probably also provide the instructions

\setlength\cftchapternumwidth{3em}
\setlength\cftsectionindent{3em}

in the preamble.

Mico
  • 506,678