Symbol/Unicode | Angle/U+2220 |
---|---|
Type of symbol | Mathematics |
Package (requirement) | No |
Argument | No |
Latex command | \angle |
Example | \angle → ∠ |
You do not need to use any package to print the angle symbol in a latex document. If you use \angle
, the default command of latex, the symbol will be printed in the document.
\documentclass{article}
\begin{document}
$$ \angle ABC $$
$$ \angle XYZ $$
$$ \angle PQR $$
\end{document}
Output :