在 LATEX 中使用條件方程式時出現“未定義的控制序列”

在 LATEX 中使用條件方程式時出現“未定義的控制序列”

我使用下面的 LaTeX 命令來編寫條件方程式。儘管顯示的輸出是正確的,但它給出了編譯錯誤“未定義的控制序列”。誰能告訴我如何修正這個問題嗎?

The saturation or clipping function is defined as follows
\[
\textit{clip}\textsubscript{K,w}(w) =
\begin{cases}
    w,& $\Abs${w} \leq 2\textsuperscript{K - 1} - 1 \\
    2\textsuperscript{K - 1} - 1,&   w >  2\textsuperscript{K - 1} - 1\\
    -2\textsuperscript{K - 1} + 1, & w < -2\textsuperscript{K - 1} + 1
\end{cases}
\]

答案1

沒有\Abs定義命令(除非您自己定義)。

其他要點:

  1. \textit應該\mathit

  2. 不允許$,您已經處於數學模式,由\[

  3. \textsubscript並且\textsuperscript是為了文本的下標/上標文字模式;對於數學模式使用_^

這是一個完整的範例:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

The saturation or clipping function is defined as follows
\[
\mathit{clip}_{K,w}(w) =
\begin{cases}
  w,              & \lvert w\rvert \leq 2^{K - 1} - 1 \\
  2^{K - 1} - 1,  & w > 2^{K - 1} - 1\\
  -2^{K - 1} + 1, & w < -2^{K - 1} + 1
\end{cases}
\]

\end{document}

在此輸入影像描述

精煉版:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

The saturation or clipping function is defined as follows
\[
\mathit{clip}_{K,w}(w) =
\begin{cases}
  w,              & \lvert w\rvert \leq 2^{K - 1} - 1 \\
  2^{K - 1} - 1,  & w > 2^{K - 1} - 1\\
  -2^{K - 1} + 1, & w < -2^{K - 1} + 1
\end{cases}
\]

\end{document}

在此輸入影像描述

相關內容