评论

评论

我想在方程中使用节编号,如 (1.1)、(1.2)、... (3.2)。但我不想使用\section命令。我该怎么做?

答案1

评论

您可能想要使用\numberwithin指令,例如

\numberwithin{equation}{section}

执行

\documentclass{scrartcl}
\usepackage{amsmath,amssymb}
\pagestyle{empty}
\numberwithin{equation}{section}
\begin{document}
\section{First section}
\begin{equation}
    \hat{f}(\omega) = \frac{1}{\sqrt{(2 \pi)^n}} \int_{\mathbb{R}^n} f(t) \, \mathrm{e}^{\mathrm{i} \omega t} \, \mathrm{d}t
\end{equation}
\end{document}

输出

示例1

相关内容