使用子部分重命名方程

使用子部分重命名方程

我喜欢将方程式重命名为:

章节.部分.小节,小小节.公式

我尝试过

\renewcommand{\theequation}{\thesubsubsection.\arabic{equation}}

第一次编辑:我经常使用bookarticle课程。

但它不起作用。为什么?

谢谢

答案1

您可以使用amsmath命令\numberwithin对子部分内的方程进行编号。

article文档中,您可以按照以下示例进行操作。

\documentclass{article}
\usepackage{amsmath}
\numberwithin{equation}{subsubsection}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
\end{document}

book文档中,子小节默认没有编号,因此您可以添加\setcounter{secnumdepth}{3}编号。

\documentclass{book}
\usepackage{amsmath}
\setcounter{secnumdepth}{3}
\numberwithin{equation}{subsubsection}
\begin{document}
\chapter{A chapter}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
\end{document}

相关内容