Проблема с уравнением 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

Как сказала Карла: вам придется загрузить посылку amssymb.

Этот MWE работает:

\documentclass[openright,twoside]{book}

\usepackage{amssymb}

\begin{document}

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

И его результат:

введите описание изображения здесь

Связанный контент