Belongs to (∈) and not belongs to (∉) symbol in LaTeX

In mathematics, this ∈ symbol is known as Belongs to, Element of, or Member of. To get this symbol in LaTeX you can use the default command \in.

\documentclass{article}
\begin{document}

  $$ \verb|\in| \rightarrow \in $$
  $$ x \in A $$
  $$ A_x \in S_n $$

\end{document}

Output:
element of symbol.

Element of symbol with other packages

This symbol is also printed by other packages, where you may get slight differences in the output. Follow the table given below.

PackageCommandOutput
None$\in$$\in$
mathabx$\in$$\in$
fdsymbol$\in$$\in$
boisik$\in$$\in$
stix$\in$$\in$

Not Element of (∉) symbol In LaTeX

This ∉ symbol is also known as Not Belongs to, Not Element of, or Not Member of symbol. In order to get this symbol in LaTeX, you can use the default command \notin.

\documentclass{article}
\begin{document}

  $$ \verb|\notin| \rightarrow \notin $$
  $$ x \notin A $$
  $$ A_x \notin S_n $$

\end{document}

Output:

not element of symbol.

Not Element of symbol with other packages

The Not Element of symbol can be also printed by other packages, where you may get slight differences in the output.

PackageCommandOutput
None$\notin$$\notin$
None$\not\in$$\not\in$
mathabx$\notin$$\notin$
fdsymbol$\nin$$\nin$
boisik$\notin$$\notin$
stix$\notin$$\notin$

Leave a Reply

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