In my thesis, my examiners need the section numbering to start with 0 and not from 1.
The structure is somewhat like
\documentclass[12pt]{report}
\begin{document}
\chapter{First}
\section{first section}
\subsection{subsection}
\end{document}
which gives me result as
Chapter 1
First
1.1 first section
1.1.1 subsection
instead of this I need
Chapter 1
First
1.0 first section
1.0.1 subsection
I tried using
\setcounter{section}{-1}
before
\begin{document}
but no success.