Difference Between (≏) symbol in LaTeX
In this tutorial, you will learn how to print the Difference Between (≏) symbol in a LaTeX document.
The ≏ symbol signifies a relation of difference. To get the Difference Between symbol in LaTeX you can use the \bumpeq
command provided by the amssymb
package.
\documentclass{article} \usepackage{amssymb} \begin{document} $$ \bumpeq $$ $$ f(x) \bumpeq g(x) $$ \end{document}
Output:
Difference Between symbol with wasysym package
You can also use the \libra
command provided by the wasysym
package to get the Difference Between symbol in LaTeX.
\documentclass{article} \usepackage{wasysym} \begin{document} $$ \libra $$ $$ f(x) \libra g(x) $$ $$ f(x) \, \libra \, g(x) $$ \end{document}
Output:
Leave a Reply