조건식을 작성하기 위해 아래 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}