How to write superset(⊃, ⊇) in LaTeX?

Superset and Proper Superset are two different symbols. Many of you use the Proper Superset as a Superset symbol, which is a wrong approach.

The default \supseteq command is used to implement this symbol in the document.

\documentclass{article}
\begin{document}
   \[ A \supseteq B \]
   \[ S_1 \supseteq S_2 \]
   \[ X_1 \supseteq X_2 \]
\end{document}

Output :

Use \supseteq command for superset.

Proper Superset symbol

The Proper Superset symbol looks like ⊃, for which the \supset command is used.

\documentclass{article}
\begin{document}
   \[ A \supset B \]
   \[ S_1 \supset S_2 \]
   \[ X \supset Y \]
\end{document}

Output :

Use \supset command for proper superset.

Superset with different types of symbols in LaTeX

Different types of symbols are used with this symbol. Such as not equal, subset, equal, etc.

\documentclass{article}
\usepackage{stix}
\begin{document}
   \[ \supseteqq \; \supsetneq \; \supsetneqq  \]
   \[ \nsupset \; \nsupseteq \; \nsupseteqq \]
   \[ \sqsupset \; \sqsupseteq \; \sqsupsetneq \]
   \[ \supdsub \; \supedot \; \suphsol \]
   \[ \suphsub \; \suplarr \; \supmult \]
   \[ \Supset \; \supsetapprox \; \supsetcirc \]
   \[ \supsetdot \; \supsetplus \; \supsim \]
   \[ \supsub \; \supsup \; \varsupsetneqq \]
\end{document>

Output :

Use different types of superset symbols in LaTeX.

Share tutorial

Leave a Comment

Your email address will not be published. Required fields are marked *