按部分编号方程式

按部分编号方程式

我如何根据公式所在的部分对显示的公式进行编号?例如,在第 1 部分中,公式的编号应为 1.1、1.2、1.3……,然后在第 2 部分中,它们应为 2.1、2.2、2.3……我在 Google 上搜索了很多,显然https://wiki.lyx.org/Tips/EquationNumbering#toc5它有解释,但我得到的只是根据章节进行编号:例如,在第 1 部分第 4 章中,公式显示为 4.1、4.2、..

\numberwithin{equation}{part}不起作用。提前谢谢!

编辑:我的序言是:

\usepackage{hyperref}
\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5} 

\usepackage{diagbox}
\renewcommand{\theequation}{\arabic{section}.\arabic{equation}}

\usepackage{fancyhdr} 
\pagestyle{fancy}
\setlength{\headheight}{35pt}

\usepackage{xcolor}
\hypersetup{ colorlinks,
    linkcolor={red!25!black},
    citecolor={blue!50!black},
    urlcolor={blue!80!black}
}

\usepackage[bottom]{footmisc} 

\usepackage{tikz-feynman}
\usepackage{everyshi}
\usepackage{colortbl}
\definecolor{brightgray}{RGB}{245,245,245}
\numberwithin{equation}{part}

\renewcommand{\theequation}{\thepart.\thechapter.\arabic{equation}} 
\renewcommand*\thepart{\arabic{part}}

\renewcommand\[{\begin{equation}}
\renewcommand\]{\end{equation}} 

amsmath我已经在“文档/设置/数学选项”中打开了

文档类别为“文章(标准类别)”

答案1

尝试更新\theequation

\numberwithin{equation}{part}
\renewcommand{\theequation}{\thepart\arabic{equation}}

相关内容