章节、节和小节中的公式引用

章节、节和小节中的公式引用

当我标记我的方程式时,我希望能够标明它们所在的章节/部分/小节。

目前,当我引用第 3 章第 2 节第 2 小节中的标签时,它会出现 (3.15),而我想要的是 (3.2.2.1) 或类似形式的东西。

只是想知道这是否可能 - 谢谢。

答案1

尝试

\documentclass[a4paper]{book}
\usepackage{mathtools}
\numberwithin{equation}{subsection}
\renewcommand{\theequation}{\thesubsection.\arabic{equation}}


\begin{document}
\chapter{ONE}
\section{One}
\section{Two}
\subsection{one}
\begin{equation}\label{eq0}
a = b
\end{equation}
\subsection{two}
\subsection{three}
\begin{equation}\label{eq1}
a = b
\end{equation}

Equation (\ref{eq0}).

Equation (\ref{eq1}).


\end{document}

相关内容