[Tex/LaTex] eliminate space between tilde and letter in equations

equationsmath-modespacing

New bye here, I have a situation to solve, with two different behaviors of the tilde. The first looks normal, within a regular text, something like:

... some text $\sim$A then some text ...

but in equation mode (or even inside the equation dollar signs within the text), there is a space between the tilde and the letter (see the screenshot below):

... some text $\sim{A}$ then some text ...

enter image description here

Is there a way to eliminate that space, in equation mode?

I need it for equations mode:

\[ \sim{A} = ... \]

If relevant, in the preamble I use the package lmodern to use the CM10 font., plus some others dealing with equations: mathptmx, amssymb, amsmath, mathspec and parse the text with xelatex.

Best Answer

The default "math type" of \sim is mathrel, i.e., that of a relational operator. (Another example of an operator of type mathrel is =.) The default math type of the letter A is mathord ("math ordinary"). As you've "discovered", TeX automatically inserts some whitespace -- in the amount of \thickmuskip -- between elements of types mathrel and mathord, respectively.

If you do not wish to get whitespace between \sim and A, simply write

{\sim}A

This setup changes the math type of \sim to mathord, and TeX does not insert extra whitespace between elements of type mathord.