I'm preparing my thesis, but unfortunately the page number of the Appendices does not appear correctly in my table of contents. Here is part of my code:
\documentclass[11pt,twoside,openright]{memoir}
\begin{document}
\begin{KeepFromToc}
\tableofcontents \cleardoublepage
\end{KeepFromToc}
\chapter{Introduction}
This is chapter 1.
\appendix
\part*{Appendices}
\addcontentsline{toc}{part}{Appendices}
\chapter{Appendix A1}
This is A1.
\end{document}
When you compile this code, in the table of contents it says that "Appendices" are on p. 7, but they are on p. 5. Any suggestions on how to fix this are very appreciated!