I am still trying to tweak my table of contents in my memoir class formatted thesis and am running into a peculiar problem. I have added
Code: Select all
\renewcommand{\cftchaptername}{\hspace{1.5em}}
to shift the chapters over and center the chapter number under the heading Contents as in the "Centered" picture that is attached. I want the same spacing for my appendix sections as well, but somehow it does not get passed down to the \chapter{...} lines in the appendix. Without the line above, the body chapter lines are left aligned as in the picture "Left Aligned".

- Centered
- Centered.jpg (45.79 KiB) Viewed 4677 times

- Left Aligned
- Left Aligned.jpg (42.99 KiB) Viewed 4677 times
A MWE is
Code: Select all
\documentclass{memoir}
\renewcommand{\cftchaptername}{\hspace{1.5em}}
\begin{document}
\maxtocdepth{subsubsection}
\tableofcontents
\chapter{Chapter One}
\section{Section A}
\section{Section B}
\subsection{Subsection a}
\subsection{Subsection b}
\chapter{Chapter Two}
\section{Section A}
\section{Section B}
\section{Section C}
\appendix
\chapter{First Appendix Chapter}
\end{document}
Seems like there should be something simple to do in order to get this to work for the appendices as well. Anyone know how to do it?