答案1
您应该避免更新章节编号表示,因为它可能在其他地方使用。相反,应该更新\@seccntformat
设置章节标题时使用的章节编号格式:
\documentclass{article}
\usepackage{physics}
\numberwithin{equation}{section}
\makeatletter
\renewcommand{\@seccntformat}[1]{Problem~\csname the#1\endcsname\quad}
\makeatother
\begin{document}
\section{Relativity}
\begin{equation}
E=mc^2
\end{equation}
\end{document}
这也将\subsection
使用前缀设置 s (和较低的单位)Problem
。
也可以只调用
\renewcommand{\theequation}{\arabic{section}.\arabic{equation}}