我使用下面的 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
定義命令(除非您自己定義)。
其他要點:
\textit
應該\mathit
不允許
$
,您已經處於數學模式,由\[
\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}