I'm interested in the tilde symbol used for math accents. In the source2e it is defined as follows:
471 \DeclareMathAccent{\tilde}{\mathalpha}{operators}{"7E}
I want to mess around with the symbol alone. For example rotate, translate, scale, etc. (n.b. the symbol is not the same symbol as \sim). Besides doing something funky like using \raisebox on an empty tilde to get the symbol to render on the baseline, is there a way to call on the symbol alone?
I have tried creating a custom "\mytilde"
\DeclareMathSymbol {\mytilde} {\mathalpha} {operators} {"7E}
but the symbol is still floating above the baseline. Any advice is appreciated.
If my suspicions are correct, then the symbol may be constructed to have the "floating" behavior, and that I may have to resort to the funky method.


$\tilde. \tilde x$both place the\tildeno lower than$\mytilde$tells you that the space is built into the glyph itself. Funk:\newcommand\bltilde{\setbox0=\hbox{\raisebox{-1.3ex}{$\mytilde$}}\dp0=0pt\relax\box0}– Steven B. Segletes Aug 26 '19 at 10:39