120

I'm trying to write a set subtraction operation in an AMS formatted template. In the end, what I want should look like A\B. But I'm doing this in math-mode $A\B$ and this gives me errors. I've also tried using the \diagdown symbol, but it doesn't work either. Is there another way to do this?

Corentin
  • 9,981
Paul
  • 2,610
  • 4
    Remember that \ is TeX escape character, so TeX is seeing \B as a macro name (probably undefined). What about $A\backslash B$? – JLDiaz Dec 09 '12 at 18:33
  • For your special Problem, @corentin already gave the answer below. For a more geneal answer, see http://tex.stackexchange.com/q/9363/18674 – Benedikt Bauer Dec 09 '12 at 18:33

1 Answers1

160

\setminus should be what you are after.

\documentclass{article}
\usepackage{amssymb} % for \smallsetminus

\begin{document}
\[ \mbox{setminus: } A \setminus B,\quad \mbox{smallsetminus: } A \smallsetminus B, \quad \mbox{backslash: } A \backslash B\]
\end{document}

enter image description here

Note that you can find more information here on How to look up a symbol?. In particular, you have the Comprehensive LaTeX symbols and the website Detexify. There is also this post which was mentioned earlier in a comment

Corentin
  • 9,981