报告中定理的连续编号

报告中定理的连续编号

我有一个包含和的report类文档: 我需要 在章节下添加定理sectionschapters\documentclass[a4paper,12pt]{report}\newtheorem{theorem}{Theorem}

\begin{theorem}
Let $f$ be a function whose derivative exists in every point, then $f$ 
is a continuous function.
\end{theorem}

但是现在定理已经按章节编号进行编号,如 1.1.1。等等。

报告中如何实现连续编号,以便我的定理无论章节编号如何都按 1、2、3 等进行编号?

答案1

使用\newtheorem{theorem}{Theorem}[chapter](例如)将theorem在每次开始新的章节时重置计数器。

省略[chapter]应该提供连续的数字。

如果这没有帮助,请使用\counterwithout{theorem}{chapter}(需要chngcntr包)

\documentclass[a4paper]{report}

\usepackage{chngcntr}

\newtheorem{theorem}{Theorem}[chapter]

\counterwithout{theorem}{chapter}

\begin{document}

\chapter{First}

\begin{theorem}
Foo

\end{theorem}

\chapter{Second}

\begin{theorem}
Foobar

\end{theorem}

\chapter{Third}

\begin{theorem}
FoobarWins

\end{theorem}

\end{document}

在此处输入图片描述

相关内容