I would like to have the convex arc and concave arc above letters as below.
The command \texttoptiebar{d} can produce the second "d". Is there any package that produces both arcs?
I would like to have the convex arc and concave arc above letters as below.
The command \texttoptiebar{d} can produce the second "d". Is there any package that produces both arcs?
You can do
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
$\overset{\smile}d(x\mid y)+\overset{\frown}d(x\mid y)+\overline d(x)$
\end{document}
in order to get:
With amssymb and accents:
\documentclass{article}
\usepackage{amssymb}
\usepackage{accents}
\begin{document}
\[ \accentset{\smallsmile}{d}(x\mid y)) + \accentset{\smallfrown}{d}(x\mid y)) + \bar{d}(x) \]%
\end{document}