I am writing a little book with the memoir class and I would love to add little table of contents at the start of each chapter. I found that I could use the minitoc package, but it doesn't seem to work.
I tried mtcpatchmem.sty by importing \usepackage{mtcpatchmem} (with mtcpatchmem.sty in my root directory) but it still does not work.
Is there a solution, or workaround? If there are any workarounds, I would like it to look like the minitoc package, since I really like
the style.
\documentclass{memoir}
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage[T1]{fontenc}
\usepackage{minitoc}
\usepackage{shorttoc}
\usepackage{lipsum}
\usepackage{libertine} %MikTeX says this is depreciated, alternative?
\renewcommand*\oldstylenums[1]{{\fontfamily{fxlj}\selectfont #1}}
\title{Hello, World}
\begin{document}
\maketitle
\newpage
\shorttableofcontents{Les Grandes Lignes}{0}
\tableofcontents
\part{Introduction}
\chapter{Merci}
This does not work.
\minitoc
\section{Contenu}
\lipsum[1]
\section{Hello}
\subsection{Bye Bye}
\end{document}
PS: I am well aware there is a similar question, but it never really had a real answer. Also, I am using MikTeX 2.9.


titletoc. Is there any reason why that won't work for you? – Alan Munn Mar 31 '12 at 17:38titletocto produce identical output? – Alan Munn Mar 31 '12 at 17:56