[Tex/LaTex] inverted breve accent in math mode

accentsmath-mode

Is there a math mode accent giving an inverted breve? I have tried \stackrel{frown}{x}, but the alignment and spacing are all wrong when compared to \breve{x}.

Best Answer

Using Psirus's idea:

\usepackage[T3,T1]{fontenc}
\DeclareSymbolFont{tipa}{T3}{cmr}{m}{n}
\DeclareMathAccent{\invbreve}{\mathalpha}{tipa}{16}

\begin{document}
$\invbreve{x}$
\end{document}

enter image description here

One has to load fontenc and specify the T3 encoding; if T1 is not desired, say \usepackage[T3,OT1]{fontenc} so as to get OT1 as the default encoding.