0

I am looking to produce a symbol \Smallsetminus which looks like \smallsetminus, but has two lines instead of one. It should look similar to \newcommand{\Minus}{\rotatebox[]{-45}{$=$}}, but the thickness of each individual line will ideally look the same as the thickness of the singular line appearing in \smallsetminus.

Thank you!

1 Answers1

1

Like this?

\documentclass{article}
\usepackage{amssymb}
\newcommand{\Smallsetminus}{\mathrel{\smallsetminus\mkern-9mu\smallsetminus}}
\begin{document}

$AB\Smallsetminus CD$ $ab\Smallsetminus cd$

\end{document}

enter image description here

Stephen
  • 3,826