如何改变定理数?

如何改变定理数?

我想将下图中的定理数量更改为定理 5.1不是 5.0.1 (我想删除 0)

在此处输入图片描述

------------------------------------------------------------------------------------------

\documentclass[12pt]{article}

\newtheorem{theorem}{Theorem}[section]



\chapter{results}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{theorem}    
Theorem statment

.\end{theorem}

答案1

我必须按如下方式修改您的代码才能复制您发布的屏幕截图:

\documentclass{book} % or: \documentclass{report}
\usepackage{amsthm}  % or: \usepackage{ntheorem}
\newtheorem{theorem}{Theorem}[section]

\begin{document}
\setcounter{chapter}{5} % just for this example
\begin{theorem} Theorem statement. \end{theorem}
\end{document}

问题是你没有\section命令(它增加section 柜台) 位于\begin{theorem}指令之前。

我想到两种方法来解决这个问题:

  • \section在给定章节中提供一个或多个指令发出第一起案件\begin{theorem}

  • 改成。\newtheorem{theorem}{Theorem}[section]\newtheorem{theorem}{Theorem}[chapter]

相关内容