I have the following code in latex
\documentclass[letterpaper,12pt,oneside]{book}
\newtheorem{Theorem}{Theorem}[section]
\newtheorem{Proposition}{Proposition}[section]
\newtheorem{Lemma}{Lemma}[section]
\newtheorem{Definition}{Definition}[section]
\newtheorem{Corollary}{Corollary}[section]
\newtheorem{Remark}{Remark}[section]
I want the numbering to increase with each newtheorem defined that I use.
For example, in chapter 2 there are Lemma 2.1.1, Remark 2.1.1 and Theorem 2.1.1, and they appear in this order. Instead, I would like it to be numbered as Lemma 2.1.1, Remark 2.1.2 and Theorem 2.1.3.
I have tried to put [subsection] at the end of the \newtheorem lines, but it does not fixes the problem.
Does anyone knows how to solve this, please?