Problema de ecuación de LaTeX

Problema de ecuación de LaTeX

Esta línea de código:

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

da este error:

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.

Respuesta1

Como decía Carla: hay que cargar el paquete amssymb.

Este MWE funciona:

\documentclass[openright,twoside]{book}

\usepackage{amssymb}

\begin{document}

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

Y su resultado:

ingrese la descripción de la imagen aquí

información relacionada