Symbol/Unicode | Greater than or equal to/U+2265 |
---|---|
Type of symbol | Inequality |
Package (requirement) | No |
Argument | No |
Latex command | \ge |
Example | \ge → ≥ |
You need to use the \ge
command to print the greater than or equal to symbol in a latex document, you can also use another default command \geq
.
\documentclass{article}
\begin{document}
$ a\ge 5 $ \\[6pt]
If $ x_1\ge x_2 $ then, \\[6pt]
% Use \geq command
$ m\geq -4 $ m is gerater than or equal to -4
\end{document}
Output :