1

My report has 8 chapters. I want each chapter to have equations from number 1 and just showing with a simple number e.g. 1 without dependency on chapter number (e.g. (1.1)) or without dependency on section number (e.g. (1.1.1))? Just a simple number, and with each chapter starting from 1.

Alenanno
  • 37,338

1 Answers1

2

This has already been answered here: Continuous v. per-chapter/section numbering of figures, tables, and other document elements

But here is a minimal example which should do what you're looking for.

\documentclass{book}

\renewcommand{\theequation}{\arabic{equation}}

\begin{document}

\chapter{One}
\begin{equation}
    1-1=0
\end{equation}

\chapter{Two}
\begin{equation}
    1+1=2
\end{equation}
\end{document} 
JohnBee
  • 189