章节编号错误

章节编号错误

好的,这是重新编辑

\documentclass[a4paper,12pt]{report}
\usepackage{amsthm}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{example}[theorem]{Example}
\newtheorem{notation}[theorem]{Notation}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
\newcommand{\closure}[2][3]{%
  {}\mkern#1mu\overline{\mkern-#1mu#2}}
  \begin{document}
  \section{Schwarzschild Manifold as a Graph}
\begin{definition}
Let $m\in\mathbb{R}$ be such that $m>0$ and consider the manifold
\begin{align*}
S=\left\{(r,x)|(r,x)\in{(2m,\infty){\times}S^2} \right\}.
\end{align*}
Now equip $S$ with the Riemannian metric
\begin{align*}
g_S=\frac{1}{1-\frac{2m}{r}}dr^2+r^2d{\theta}^2+r^2{\sin\theta}^2d{\phi}^2,
\end{align*}
where $(\theta,{\phi})$ are the standard polar coordinates on $S^2$. Then we call $(S,g_S)$ the Schwarzschild manifold.
\end{definition}

  \begin{chapter}
{The Positive Mass Theorem for Graphs over $\mathbb{R}^3$}
\begin{theorem}\label{positivemasstheorem}
{\textnormal{(Positive Mass Theorem for graphs over $\mathbb{R}^3$)}} 
\begin{equation}{\label{positivemassthmeqn}}
 m_{ADM}=\frac{1}{16\pi}\int_MR\frac{1}{\sqrt{1+|\nabla f|^2}}\,dV_g.
\end{equation}
\end{theorem}
\end{chapter}
\end{document}

我得到的第一部分为 0.1,第一个定义是 0.1.1,这没问题。但是当新的章节统计时,定理从 0.1.2 开始?

答案1

amsthm使用与 基本相同的机制为定理和朋友设置计数器\numberwithin。如果用于计数器编号的命令前面没有“within”元素,则不会重置受影响的计数器。然后必须明确完成此重置。

在这种情况下,没有\section前面的 来theorem开始该章节,因此有必要在调用该章节后重置计数器theorem

\setcounter{theorem}{0}

顺便说一句,不建议使用\begin{chapter} ... \end{chapter}。只是\chapter{...}更好。

相关内容