There was an error while loading. Please reload this page.
From Arc Circle Syntax.
A macro to create an arc over or under content (using parenthesis for lack of alternatives).
<script type="text/x-mathjax-config"> MathJax.Hub.Config({ TeX: { Augment: { Definitions: { macros: { overparen: ['UnderOver','23DC'], // UnderOver represents the MathML element, 23DC the unicode character underparen: ['UnderOver','23DD'] // UnderOver represents the MathML element, 23DC the unicode character } } }} }); </script>
Then $\overparen{XYZ}, \underparen{XYZ}$ will provide the desired effect.
$\overparen{XYZ}, \underparen{XYZ}$
If you don't have access to a configuration file (on sites like stackexchange), you can use the following (possibly as part of a \newcommand).
\newcommand
\overset{\mmlToken{mo}{⏜}}{XYZ} \underset{\mmlToken{mo}{⏝}}{XYZ}
You can replace 23DC and 23DD with your favorite unicode characters.