This is a first approximation:

\documentclass{article}
\newcommand{\ineq}{%
  \mathrel{\mkern1mu\underline{\mkern-1mu\in\mkern-1mu}\mkern1mu}}

\begin{document}
$\alpha\ineq\beta$
\end{document}

This automatically changes size in subscripts.

You may prefer a solution with a roundcap bar below the main symbol:

\documentclass{article}
\usepackage{amsmath}

\makeatletter
\newcommand{\ineq}{\mathrel{\text{\in@eq}}}
\newcommand{\in@eq}{%
  \oalign{%
    \hidewidth\hidewidth\cr
    \noalign{\nointerlineskip\kern1ex}%
    \cr
    \noalign{\nointerlineskip\kern-.5ex}%
  }%
}
\makeatother
\begin{document}
$\alpha\ineq\beta_{\ineq}$
\end{document}

Answer from egreg on Stack Exchange
🌐
Overleaf
overleaf.com › latex › templates › symbol-table › fhqmttqvrnhk
symbol-table - Overleaf, Online LaTeX Editor
\documentclass[10pt]{beamer} \usepackage[orientation=landscape, size=custom,width=32,height=18.0,scale=.75]{beamerposter} % 設定紙張大小 \title{symbol-table} \begin{document} \begin{frame} \begin{tabular}{ll} $\leq$ & $\backslash$leq \\ $\geq$ & $\backslash$geq \\ $\neq$ & $\backslash$neq \\ $\nleq$ & $\backslash$nleq \\ $\ngeq$ & $\backslash$ngeq \\ $\cong$ & $\backslash$cong \\ $\equiv$ & $\backslash$equiv \\ $\sim$ & $\backslash$sim \\ $\approx$ & $\backslash$approx \\ $\doteqdot$ & $\backslash$doteqdot \\ $\times$ & $\backslash$times \\ $\cdot $ & $\backslash$cdot \\ $\ast $ & $\back
🌐
OEISWiki
oeis.org › wiki › List_of_LaTeX_mathematical_symbols
List of LaTeX mathematical symbols - OeisWiki
There are no approved revisions of this page, so it may not have been reviewed. ... All the predefined mathematical symbols from the TeX package are listed below. More symbols are available from extra packages. ... Scott Pakin, The Comprehensive LaTeX Symbol List, 2017.
Discussions

Element of or Equal To Symbol - TeX - LaTeX Stack Exchange
I would like to typeset a symbol that means "element of or equal to," which is just the element symbol with a short horizontal line underneath. I tried $\underline{\in}$, but that makes the underl... More on tex.stackexchange.com
🌐 tex.stackexchange.com
November 24, 2014
symbols - Latex "element of with two strokes" (⋹) - TeX - LaTeX Stack Exchange
Is there a latex symbol akin to \in, but with two strokes? It has a Unicode equivalent, ⋹. I looked on detexify, but I couldn't find anything that matched. If it doesn't exist, how might I "rig" it? More on tex.stackexchange.com
🌐 tex.stackexchange.com
August 17, 2015
How to do Mathematics symbols in LaTeX?
Are you using mathmode [either $...$ or \[ ... \] ] As in...."the value $x \in (2,3,4,5)$ is chosen" More on reddit.com
🌐 r/LaTeX
14
1
April 24, 2020
"not in" symbol?? - LaTeX.org
I'm looking for the "not in" symbol with a slash to the \in command. I dont like the \ni and tried to use mathabx package, but i seem to fail in loading it. Any simpler way than using any package? Thanks in advanced.. ... The simplest answer: \not\in The packages txfonts, pxfonts, kpfonts, mathdesign and others provide \notin command, not just mathabx. (If you want to keep the document in the default Computer/Latin Modern, you could load one of ... More on latex.org
🌐 latex.org
July 21, 2010
🌐
Rice University
cmor-faculty.rice.edu › ~heinken › latex › symbols.pdf pdf
LATEX Mathematical Symbols
and rowj includes character & a total of (n −1) times to separate the n elements in the row.
Top answer
1 of 2
9

This is a first approximation:

\documentclass{article}
\newcommand{\ineq}{%
  \mathrel{\mkern1mu\underline{\mkern-1mu\in\mkern-1mu}\mkern1mu}}

\begin{document}
$\alpha\ineq\beta$
\end{document}

This automatically changes size in subscripts.

You may prefer a solution with a roundcap bar below the main symbol:

\documentclass{article}
\usepackage{amsmath}

\makeatletter
\newcommand{\ineq}{\mathrel{\text{\in@eq}}}
\newcommand{\in@eq}{%
  \oalign{%
    \hidewidth\hidewidth\cr
    \noalign{\nointerlineskip\kern1ex}%
    \cr
    \noalign{\nointerlineskip\kern-.5ex}%
  }%
}
\makeatother
\begin{document}
$\alpha\ineq\beta_{\ineq}$
\end{document}

2 of 2
8

The character ⋸ is the Unicode character U+2278, see Barbara Beeton's comment.

I found two math fonts, which contains the charactes:

  • Asana Math
  • XITS Math

They can be used with XeTeX or LuaTeX. With package unicode-math, the command is \isinvb, or the character can be given directly as UTF-8 character or the ^^^^-escape notation can be used: ^^^^22F8.

The following example shows:

  • The direct glyphs (only Asana Math and XITS Math).
  • The macros \isinvbA and \isinvbB.
    • They compose the symbol with ∈ (\in) and the minus sign. If the minus sign is too long (Latin Modern Fonts), then it is scaled horizontally to fit the symbol ∈.
    • The gap is estimated by the middle of ten percent of the height of ∈ and 150% of the line thickness of the minus sign.
    • Rounded line caps are kept (but subjected to the horizontal scaling in case of Latin Modern).
    • Asana Math centers the complete symbol around the math axis. This is implemented by \isinvbA by using \vcenter.
    • XITS Math keeps the symbol in and adds the line under it. This is implemented by \isinvbB by using \vtop.
  • The symbols can be used in all math styles.

Example and test file:

\tracinglostchars=2
\documentclass{article}
\usepackage{unicode-math}

\newcommand*{\teststring}{%
  \fbox{$\isinvb$}% U+22F8
}

\usepackage{graphicx}

\makeatletter
\newcommand*{\isinvbA}{%
  \mathrel{%
    \mathpalette\@isinvb@\vcenter
  }%
}
\newcommand*{\isinvbB}{%
  \mathrel{%
    \mathpalette\@isinvb@\vtop
  }%
}
\newcommand*{\@isinvb@}[2]{%
  % #1: math style   
  % #2: \vcenter or \vtop
  #2{%   
    \sbox0{$#1\in\m@th$}%
    \copy0 %
    \sbox2{$#1-\m@th$}%
    \sbox4{$#1\vcenter{}$}%
    \dimen@=\dimexpr\ht2-\ht4\relax
    \sbox2{\lower\dimexpr\ht4-\dimen@\relax\hbox{\unhcopy2}}%
    \dp2=\z@
    \kern.5\dimexpr3\dimen@ + .1\ht0\relax
    \ifdim\wd2>\wd0 %
      \hbox to \wd0{\hss\resizebox{\wd0}{\ht2}{\copy2}}%
    \else
      \hbox to \wd0{\hss\copy2}%
    \fi
  }%
}
\makeatother

\begin{document}

\setlength{\fboxsep}{0pt}
\setlength{\fboxrule}{.1pt}   
\newcommand*{\test}[1]{%
  \fontfamily{lmvtt}\tiny #1 &
  \setmathfont{#1.otf}$\teststring$
  &
  \setmathfont{#1.otf}
  &      
  \setmathfont{#1.otf}%  
  \fbox{$\isinvbA$}$^{\isinvbA^{\isinvbA}}$%
  &
  \setmathfont{#1.otf}%
  \fbox{$\isinvbB$}$^{\isinvbB^{\isinvbB}}$%
  \\
}
\begin{tabular}{@{}l@{ }l@{ }l@{\quad}l@{ }l@{}}
  \test{Asana-Math}  
  \test{xits-math}
  \test{latinmodern-math}
  \test{texgyretermes-math}
  \test{texgyrepagella-math}
  \test{texgyrebonum-math}
  \test{texgyreschola-math}
\end{tabular}
\end{document}

Remarks:

  • \tracinglostchar=2 is quite important, because then TeX will report characters, which are not present in the used fonts, e.g.:

    Missing character: There is no ⋸ (U+22F8) in font "[texgyrebonum-math.otf]:mode=base;script=math;language=DFLT;"!
    
  • Macros \isinvbA and \isinvbB do not depend on LuaTeX or XeTeX, they can also be used with pdflatex or latex.

  • The \fbox commands show the bounding boxes.
🌐
Reddit
reddit.com › r/latex › how to do mathematics symbols in latex?
r/LaTeX on Reddit: How to do Mathematics symbols in LaTeX?
April 24, 2020 -

I'm trying to get some bonus points on my homework for a proof writing class by writing my math homework in LaTeX. I've never used it before, so I am trying to figure it out, but there are a few symbols I've struggled to make. I looked up that "is an element of" is \in but it's not working for me as well as Galois Field symbol trying \mathbb{F}. Any tips?

🌐
Overleaf
overleaf.com › learn › latex › List_of_Greek_letters_and_math_symbols
List of Greek letters and math symbols - Overleaf, Online LaTeX Editor
4 Binary Operation/Relation Symbols · 5 Further reading · For more information see: The great, big list of LaTeX symbols · Mathematical expressions · Brackets and Parentheses · Integrals, sums and limits · Mathematical fonts · Spacing in math mode · Aligning equations ·
Find elsewhere
🌐
Poznań University of Technology
cs.put.poznan.pl › ksiek › latexmath.html
LaTeX Formal Methods Reference — Konrad Siek
One lists some of the symbols used by Guerraoui and Kapałka in Principles of Transactional Memory as well as from other work on that subject, which are used fairly commonly to describe various things pertaining to TM histories. The other lists symbols devised by Paweł T. Wojciechowski to render TM histories (or traces) without having to make drawings. Please note that the symbols here are rendered via JavaScript by sphinx.ext.mathjax or sphinx.ext.jsmath and may therefore differ from what LaTeX will render.
🌐
Stiltsoft
docs.stiltsoft.com › latex-math-for-confluence › latex-math-symbols-a-practical-guide
🔢 LaTeX Math Symbols: A Practical Guide
This group of LaTeX commands includes notation for derivatives, vectors, accents, arrows, and braces, which is helpful for organizing and emphasizing expressions. This category focuses on LaTeX symbols for trigonometric, logarithmic, exponential, and other mathematical functions, including min/max and set operations. This symbol set illustrates how to build matrices using various delimiters, align elements, and use ellipses for generalized matrix notation.
🌐
Art of Problem Solving
artofproblemsolving.com › wiki › index.php › LaTeX:Symbols
LaTeX:Symbols - AoPS Wiki
Some symbols are used in commands, so they need to be treated in a special way. (Warning: Using $ for will result in . This is a bug as far as we know. Depending on the version of this is not always a problem.) In mathematics, sometimes we need to enclose expressions in brackets, braces or parentheses. Some of these work just as you'd imagine in LaTeX; type ( and ) for parentheses, [ and ] for brackets, and | and | for absolute value.
🌐
LaTeX.org
latex.org › board index › math & science
"not in" symbol?? - LaTeX.org
July 21, 2010 - I'm looking for the "not in" symbol with a slash to the \in command. I dont like the \ni and tried to use mathabx package, but i seem to fail in loading it. Any simpler way than using any package? Thanks in advanced.. ... The simplest answer: \not\in The packages txfonts, pxfonts, kpfonts, mathdesign and others provide \notin command, not just mathabx. (If you want to keep the document in the default Computer/Latin Modern, you could load one of these and then load lmodern right afterwards.)
🌐
GeeksforGeeks
geeksforgeeks.org › engineering mathematics › set-notations-in-latex
Set Notations in LaTeX - GeeksforGeeks
1 week ago - One commonly used form is set-builder ... that its elements must satisfy. For example, an empty set is represented as \varnothing. This table shows how to write common set notation symbols in LaTeX with examples - perfect for students learning math typesetting: The following examples show the usage of LaTeX to represent ...
🌐
Underleaf
underleaf.ai › learn › latex › math-symbols
Mathematical Symbols in LaTeX | Complete Guide | Underleaf
Learn how to use mathematical symbols in LaTeX, including Greek letters, operators, set theory symbols, and arrows.
🌐
Wikipedia
en.wikipedia.org › wiki › Element_of_a_set
Element of a set - Wikipedia
November 17, 2025 - The binary relation "is an element of", also called set membership, is denoted by the symbol "".
🌐
University of Toronto
math.toronto.edu › mathit › symbols-letter.pdf pdf
The Comprehensive LATEX Symbol List Scott Pakin
See the discussion of “˜” on page 125. † It’s generally preferable to use the corresponding symbol from Table 3 because the · symbols in that table work properly in both text mode and math mode. Table 3: LATEX2ε Commands Defined to Work in Both Math and Text Mode
🌐
Mathematics Monster
mathematics-monster.com › symbols › Element-Of.html
The "Element Of (∈)" Symbol
The primary meaning of the ∈ symbol is to indicate that a particular element is a member of a set. For instance, if the set \( A \) contains the element \( x \), then it is denoted as \( x ∈ A \). If \( A = \{1, 2, 3\} \), then \( 2 ∈ ...
🌐
Math-Linux
math-linux.com › latex › faq › latex-faq › article › latex-symbol-belongs-to
Latex symbol belongs to | Math-Linux.com
November 8, 2025 - How to write Latex symbol belongs to : \in means “is an element of”, “a member of” or “belongs to”.
🌐
Overleaf
overleaf.com › learn › how-to › Using_the_Symbol_Palette_in_Overleaf
Using the Symbol Palette in Overleaf - Overleaf, Online LaTeX Editor
Symbols shown in the Symbol Palette should only be inserted into your document when LaTeX is in math mode, which means they must be enclosed within special math markup:
🌐
CodeSpeedy
codespeedy.com › home › belongs to (∈) and not belongs to (∉) symbol in latex
Belongs to (∈) and not belongs to (∉) symbol in LaTeX - CodeSpeedy
November 21, 2023 - 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.