Page Layoutmemoir | ToC with Chapter Numbers in Margin

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Bram
Posts: 20
Joined: Sat Jul 14, 2012 12:54 pm

memoir | ToC with Chapter Numbers in Margin

Post by Bram »

In the table of contents, I have made the chapter numbers right aligned (see the code below). This ensures that there is always the same amount of white between the chapter number and the chapter title. However, I would like to have the chapter numbers in the margin, such that the 'C' of 'Contents' aligns with the 'T' of 'This is a chapter'.

Any help would be very much appreciated!

Code: Select all

\documentclass{memoir}

% this sets the chapter number right aligned
\newlength{\tocspaceafterchapnum}
\setlength{\tocspaceafterchapnum}{0.5em}% extra space at end of number
\renewcommand*{\cftchapterpresnum}{\hfill}% note the double `l'
\renewcommand*{\cftchapteraftersnum}{\hspace*{\tocspaceafterchapnum}}
\addtolength{\cftchapternumwidth}{\tocspaceafterchapnum}

\begin{document}

\tableofcontents*

\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}

\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply