LaTeX-Gleichungsproblem

LaTeX-Gleichungsproblem

Diese Codezeile:

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

gibt diesen Fehler aus:

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.

Antwort1

Wie Carla sagte: Du musst das Paket laden amssymb.

Dieses MWE funktioniert:

\documentclass[openright,twoside]{book}

\usepackage{amssymb}

\begin{document}

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

Und das Ergebnis:

Bildbeschreibung hier eingeben

verwandte Informationen