定理中的编号

定理中的编号

我想要仅根据章节编号进行以下编号:

第 1 节,定理 1.1,示例 1.2,示例 1.3,推论 1.4,第 2 节,定理 2.1 等...

我如何获得它?

我当前的设置是

\documentclass[a4paper,8pt]{report}
\usepackage{amsmath}
\usepackage{amsthm}

\newtheoremstyle{break}
  {\topsep}{\topsep}%
  {\upshape}{}%
  {\bfseries}{}%
  {\newline}{}%
\theoremstyle{break}
  \newtheorem{teor}[section]{Teorema}
  \newtheorem{cor}[section]{Corollario}

我只是报告mythmmycor作为一个例子。

以下是

\chapter{} %Parte 1%
\section{}

\begin{teor}
\end{teor}
\begin{cor}
\end{cor}
\section{}
\section{}

在此处输入图片描述

答案1

您应该[section]对其中一种语句类型使用尾随可选参数,然后将其他语句类型定义为与主语句类型共享相同的计数器。

\documentclass[a4paper]{report}
\usepackage{amsmath}
\usepackage{amsthm}

\newtheoremstyle{break}
  {\topsep}{\topsep}%
  {\upshape}{}%
  {\bfseries}{}%
  {\newline}{}%

\theoremstyle{break}
\newtheorem{teor}{Teorema}[section]
\newtheorem{cor}[teor]{Corollario}

其他人也同样如此。

如果你想删除初始章节编号(但不要删除),也可以添加

\renewcommand{\theteor}{\arabic{section}.\arabic{teor}}

相关内容