I'm writing my Thesis and I want the general table of contents at the beginning of the document and the toc for every chapter at beginning of every chapter. For doing so I use the minitoc package.
If I put the \tableofcontents command at the end of the document all goes right. If instead I put it at the begin of the document the minitoc of first Chapter is not printed and the next ones are shifted. The second chapter has the minitoc of the first one, the third of the second and so on so forth.
\documentclass[a4paper,11pt,twoside]{memoir}
\usepackage{minitoc}
\dominitoc
\begin{document}
\tableofcontents
\listoffigures
\chapter{first}
\minitoc
\section{first first}
\section{first second}
\chapter{second}
\minitoc
\section{second first}
\section{second second}
\chapter{third}
\minitoc
\section{third first}
\section{third second}
\end{document}

\listoffigurescommand after\tableofcontents. Do you know why? – Red Feb 08 '16 at 08:37\adjustmtcafter\listoffigures– Red Feb 08 '16 at 08:41memoirandminitocare not the best combination – Feb 08 '16 at 08:42etocpackage is a very good alternative (tominitoc). – Paul Gaborit Sep 23 '17 at 06:40\adjustmtcs before my first chapter. I noted that I can actually calculate the amount of\adjustmts required from the shift in the chapter TOCs: without any\adjustmtc, chapter and TOC were misaligned by three numbers; each\adjustmtcshifted the alignment by one. – Eike P. Oct 28 '20 at 23:52