[Tex/LaTex] Mirror tilde accent

accentsmacrosmath-modesymbols

Does anybody know if there is a "mirror" tilde accent command in any package?
That is, the "wiggling" of the tilde accent going in the other direction.

Something like defining this \backtilde command:

\newcommand{\backtilde}[1]{\overset{\backsim}{#1}}

but not quite. The kerning, sizes, etc… are not the same as with the \tilde{} command.

Related to this: a mirror version of the \vec{} accentuation.

Best Answer

The accents package turns out to be useful:

\documentclass{article}
\usepackage{accents,graphicx}

\newcommand{\backtildeacc}{%
  \raisebox{-1.25ex}[.3ex][0pt]{\reflectbox{\char"7E}}%
}
\newcommand{\btilde}[1]{\accentset{\backtildeacc}{#1}}

\begin{document}
$\tilde{A}\btilde{A}$

\fboxsep=0pt
\fbox{$\btilde{A}$}\fbox{$\tilde{A}$}
\end{document}

enter image description here