[Tex/LaTex] Chapter without number in memoir

chaptersmemoirnumberingsectioning

I want one of the chapters in my memoir book to be unnumbered.

I want it to have a chapter heading, show up in the table of contents, etc.–the only difference being that it is not given a number. Is there an easy way to do this?

Best Answer

You can use \chapter*{Your chapter title} to get an unnumbered chapter, but it will also not include that chapter in the ToC. So you can then say \addtocontents{toc}{Your chapter title} to add the chapter title manually.

Related Question