更改文档类文章中的公式编号类型

更改文档类文章中的公式编号类型

可能重复:
连续编号,即按章节/节对图表、表格和其他文档元素进行编号

我已经在文档类“文章”中撰写了我的论文(不要问我为什么)。现在我想按部分对我的方程式进行编号,即在第 1 部分中它们应该为 1.1、1.2、...,在第 2 部分中它们应该为 2.1、2.2、...

我不想更改文档类别(例如更改为“报告”),因为这样我就必须将所有章节更改为章节,将所有小节更改为章节,并且因为我担心很多其他意想不到的后果。

如何解决此问题?

谢谢你的帮助!

答案1

该软件包提供了可以在您的文档中使用的amsmath命令\numberwithin

\numberwithin{equation}{section}

在此处输入图片描述

MWE 跟随

\documentclass{article}
\usepackage{amsmath}

\numberwithin{equation}{section}
\begin{document}

\section{Here is a section}
\begin{equation}
    f(x)=x^2+\sin(x)
\end{equation}
\end{document}

相关内容