2

angle symbol

How can I make the angle symbol with LaTeX?

user149743
  • 21
  • 1
  • 1
  • 2

1 Answers1

8

The symbol in the picture seems to have been built from the “less than” symbol and a parenthesis. I also present an alternative.

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}% for \sphericalangle

\newcommand{\arcangle}{%
  \mathord{<\mspace{-9mu}\mathrel{)}\mspace{2mu}}%
}

\begin{document}

$\arcangle ABC=45^\circ$

$\sphericalangle ABC=45^\circ$

\end{document}

enter image description here

If you want the symbol centered with respect to capital letters:

\documentclass{article}
\usepackage{amsmath}

\newcommand{\arcangle}{\mathord{\mathpalette\doarcangle\relax}}
\newcommand{\doarcangle}[2]{%
  \hbox{%
    \sbox0{$#1B$}%
    \sbox2{$#1<$}%
    \raisebox{\dimexpr\dp2+(\ht0-\ht2)/2}{%
      $#1<\mspace{-9mu}\mathrel{)}\mspace{2mu}$%
    }%
  }%
}

\begin{document}

$\arcangle ABC=45^\circ$

\end{document}

enter image description here

egreg
  • 1,121,712