Symbol/Unicode | Does not exist/U+2204 |
---|---|
Type of symbol | Mathematical Operators |
Package (requirement) | amssymb |
Argument | No |
Latex command | \nexists |
Example | \nexists → ∄ |
To print the symbol “does not exist” in a latex document, you need to use the \nexists
command of the amssymb package.
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$ ABC \;\; \nexists $$
$$ XYZ \;\; \nexists $$
\end{document}
Output :