I have a document using the memoir class in which I have broken up the chapters using \include. Inside those chapters, I use the \chapter{...} command, which prints the chapter at the correct place.
When I use \tableofcontents, however, it doesn't include any of the included chapters. How can I get the chapters to show up in the table of contents?
Here is a MWE demonstrating the problem:
\documentclass{memoir}
\begin{document}
\tableofcontents
Here is some text before the include
\include{MWEchapter1}
Here is some text after the include
\end{document}
MWEchapter1.tex is as follows:
\chapter{MWE Chapter}
Here is some text in the MWE Chapter.
This produces the following:

As you can see, the chapter is missing from the contents section, even though it has been included in the document.
I know, as a work-around, I can stick the \chapter commands outside the files, but that removes the reorganizational ability that I have right now with the \include
Also, this is similar to the question "\tableofcontents and multiple files from \include". Unfortunately, that solves the question specifically for revtext4.
\documentclass...\begin{document}...\end{document}, it should compile and contain close to the minimal amount of code needed to explain/demonstrate what you are asking. This saves a lot of time for everyone. – Oct 15 '14 at 02:40