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.
Asked
Active
Viewed 371 times
1 Answers
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}
\usepackage{chngcntr}and\counterwithout{equation}{chapter}then it works as required – David Carlisle Apr 29 '15 at 18:50