How can I make the angle symbol with LaTeX?
Asked
Active
Viewed 1.5k times
2
user149743
- 21
- 1
- 1
- 2
1 Answers
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}
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}
egreg
- 1,121,712
-
1@user149743 Just a remark: the symbol you'd like to get looks horrible.
;-)– egreg Dec 03 '17 at 12:06 -
-



amssymband$\sphericalangle$. – Johannes_B Dec 03 '17 at 11:56\AngleSignfrommarvosym. – Bernard Dec 03 '17 at 12:47