10

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?

lockstep
  • 250,273
rahma
  • 101

1 Answers1

13

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}
Peter Grill
  • 223,288