뒷면에 정의되지 않은 제어 시퀀스 오류가 있습니다.

뒷면에 정의되지 않은 제어 시퀀스 오류가 있습니다.

뒷면을 사용할 때 라텍스 코드의 3~4개 부분에서 "정의되지 않은 제어 시퀀스" 오류가 발생합니다. 나는 서문에 amsmath를 넣었습니다. 원인이 무엇인지, 어떻게 해결할 수 있는지 이해할 수 없습니다. 아래에서 오류가 가리키는 코드 세그먼트를 공유하고 있습니다.

첫 번째 발생:

\begin{equation*} \small
    n(\ell)= \frac{k\log(\ell)}{\max\limit_{(\gamma,q_{sp})}
    h\Big(E\Big[e^{-\frac{\gamma}{V  \sigma^{2}P+\sigma_{w}^{2}}}\Big]\Big)- 
    E\Big[h\Big(e^{-\frac{\gamma}{V  \sigma^{2}P+\sigma_{w}^{2}}}\Big)\Big]}
\end{equation*} \normalsize where $E(.)$ denotes the expectation for  $V \sim 
 \operatorname{Bin}(k, q_{sp})$, $q_{sp}$ is the probability  $\gamma$ denotes threshold.

두 번째 발생:

\begin{equation} 
    n(\ell) \geq \frac{k\log(\ell)}{\max\limit_{(\gamma,q_{sp})}h\Big(E\Big[e^{- 
    \frac{\gamma}{V  \sigma^{2}P+\sigma_{w}^{2}}}\Big]\Big)-E\Big[h\Big(e^{- 
    \frac{\gamma}{V  \sigma^{2}P+\sigma_{w}^{2}}}\Big)\Big]}.\label{equ}
\end{equation}

세 번째 발생:

  \begin{equation}
    C=\max\limit_{(\gamma,\textbf{q})} I(\Tilde{\textbf{X}};Z) \label{sumcap}
    \end{equation} where $\textbf{q} =\{q_{a_1} \ldots q_{a_k}\}$ are sampling 
    probabilities of   $\{a_1 \ldots a_k\}$, i.e., $X^{a_i}  \sim Bern(q_{a_i})$  
    such that  $X^{a_i}\ind X^{a_j}  $ $\forall i,j \in  \{1,\ldots k\}; i\neq j$.

나는 모든 것이 옳다고 느낀다. 하지만 왠지 그렇지 않습니다. 누군가 이 문제를 해결하도록 도와줄 수 있나요?

답변1

첫 번째 오류에 대한 전체 오류 메시지는 다음과 같습니다.

<argument> \max \limit 
                       _{(\gamma ,q_{sp})} h\Big (E\Big [e^{-\frac {\gamma }...
l.7 ...{V  \sigma^{2}P+\sigma_{w}^{2}}}\Big)\Big]}
                                                  
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

참고: "맨 위 줄 끝에 있는 제어 시퀀스..." 따라서 이는 우리를 가리키는 것입니다 . \limit아마도 이어야 합니다 \lim.

관련 정보