하위 방정식 내부 참조

하위 방정식 내부 참조

아래는 제가 재현하려고 하는 종이에 있는 증거의 예입니다. 그런 것 같습니다. 환경에 있지만 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}

여기에 이미지 설명을 입력하세요

관련 정보