How to Write the Superset Symbol (⊃) in LaTeX

In LaTeX, you can write the superset symbol (⊃) using the \supset command.

The following examples show how to write the superset symbol in LaTeX.

How to Write the Superset Symbol in Text

We can use the \supset command to write the superset symbol in LaTeX document for text.

Suppose we want to write the superset symbol in the text.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

This is an example of using the superset symbol \( A \supset B \) in a sentence.

\end{document}

Output: 👇️

This is an example of using the superset symbol A ⊃ B in a sentence.

In this example, we use the \supset command to display the superset symbol in the text.

How to Write the Superset Symbol in Mathematical Expressions

For mathematical expressions, We can use the \supset command to ensure proper formatting.

Suppose we would like to write mathematical expressions that contain the superset symbol.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

An inline mathematical expression: \( A \supset B \).

A displayed mathematical expression:
\[
A \supset B
\]

\end{document}

Output: 👇️

Superset Symbol

In this example, we use the \supset command to denote the superset symbol in both inline and displayed mathematical expressions.

Conclusion

We can use the \supset command for both text and mathematical expressions. This ensures that the superset symbol is properly formatted and displayed in LaTeX document.