[Tex/LaTex] How to reset the chapter number from zero with memoir

numberingsectioning

I'm working with memoir class, the first chapter was numbering (chapter 1) but I would like numbering it from zero… how can I do this?

Best Answer

Adding \setcounter{chapter}{-1} seems to work:

enter image description here

\documentclass{memoir}

\setcounter{chapter}{-1}
\begin{document}
    \chapter{Chapter Zero}
    \chapter{Chapter One}
\end{document}
Related Question