子方程内部引用其自身

子方程内部引用其自身

下面是我试图重现的论文中证明的示例片段。它似乎处于环境中subequation,但它在内部自我引用intertext

我如何才能自行引用它,或继续编号?当我尝试使用上述函数时,它给出了一个错误。

提前致谢

示例代码

答案1

只需使用它们:

\documentclass[]{article}

\usepackage[]{amsmath}

\begin{document}
\setcounter{equation}{16}
\begin{subequations}
  $H(\omega)$ satisfies the following two properties:
  \begin{align}
    & \lvert H(0) \rvert = 1 \quad\text{and}\quad h(n) = O(n^{-2})
      \text{ at infinity.}
      \label{eq:prop:1}
      \\
    & \lvert H(\omega) \rvert^{2} + \lvert H(\omega + \pi) \rvert^{2} = 1
      \text{ .}
      \label{eq:prop:2}
  \end{align}
  Conversely let $H(\omega)$ be a Fourier series satisfying \eqref{eq:prop:1}
  and \eqref{eq:prop:2} and such that
  \begin{equation}
    \lvert H(\omega) \rvert \neq 0 \quad\text{for}\quad \omega\in[0,\pi/2]\text{
      .}
  \end{equation}
\end{subequations}
\end{document}

在此处输入图片描述

相关内容