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?
Asked
Active
Viewed 1,160 times
10
-
Welcome to TeX.sx! – Torbjørn T. Apr 01 '12 at 14:28
-
Related Question: Getting section numbering to start at 0 – Peter Grill Apr 08 '13 at 09:17
1 Answers
13
Adding \setcounter{chapter}{-1} seems to work:

\documentclass{memoir}
\setcounter{chapter}{-1}
\begin{document}
\chapter{Chapter Zero}
\chapter{Chapter One}
\end{document}
Peter Grill
- 223,288