我已经在文档类“文章”中撰写了我的论文(不要问我为什么)。现在我想按部分对我的方程式进行编号,即在第 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}