LaTeX 방정식 문제

LaTeX 방정식 문제

이 코드 줄은 다음과 같습니다.

\[ f \ominus s2 \thickapprox (f \ominus s1) \ominus s1 \]

이 오류가 발생합니다.

l.663 \[ f \ominus s2 \thickapprox
                                   (f \ominus s1) \ominus s1 \]
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.

답변1

Carla가 말했듯이, 패키지를 로드해야 합니다 amssymb.

이 MWE는 다음과 같이 작동합니다.

\documentclass[openright,twoside]{book}

\usepackage{amssymb}

\begin{document}

\[ f \ominus s2 \thickapprox (f \ominus s1) \ominus s1 \]
\end{document}

결과는 다음과 같습니다.

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

관련 정보