Contains with Long Horizontal Stroke (⋺) symbol in LaTeX
In this tutorial, you will learn how to print the Contains with Long Horizontal Stroke (⋺) symbol in LaTeX.
In mathematics, this ⋺ symbol is used to show a relationship between elements and sets. In order to print the Contains with Long Horizontal Stroke (⋺) symbol in LaTeX you can use the stix package’s \nisd command.
\documentclass{article}
\usepackage{stix}
\begin{document}
$$ \nisd $$
$$ x \nisd A $$
\end{document}Output:

Contains with Long Horizontal Stroke symbol with boisik package
You can also use the boisik package’s \nisd command to get a slightly different style of this symbol. Take a look.
\documentclass{article}
\usepackage{boisik}
\begin{document}
$$ \nisd $$
$$ x \nisd A $$
\end{document}Output:

Leave a Reply