3

Does anyone know how to make a 'square version' of \subsetneq? I tried \sqsubsetneq, but it doesn't work.

Thanks! Joon

Stefan Kottwitz
  • 231,401

1 Answers1

4

You need the mathabx package:

enter image description here

For such things I highly recommend trying: texdoc symbols

Code:

\documentclass[border=5mm]{standalone}
\usepackage{mathabx}
\begin{document}

  $X \sqsubsetneq B$

\end{document}

Edit: just to complete, here is a print screen from the documentation cited.

enter image description here

Sigur
  • 37,330