Hi there,
I've long had a dream of creating a "consistent comparison" operator to use in my homework (in LaTeX). That is, in some long derivation, we might want to know how $a$ compares to $b$, and although this is totally contrived, an example might read
\begin{align*}
a &? b \\
f(a) &? f(b) \\
f(a) &= f(b) \text{by assumption} \\
\implies a &= b
\end{align*}
That is, we start by saying, "this comparison should be consistent throughout the derivation", and then we later see that ? (the comparison operator) can be replaced with =. This notation is clearly crappy, and now that I'm doing more group work, it'd be nice to have something that's a bit more graphically intuitive.
I've got a pipe dream of a little circle with a question mark inside or on top of it. Trouble is, I have no idea how to do individual character sizing/alignment in LaTeX macros. So far, I've come up with
\def\mycomparator{\circ^{\!\!\!?}\,}
$a \mycomparator b$
(that is, a small circle with a superscript question mark, backshifted three places, then some right padding to get the left-hand side of the comparator properly placed)
While this functions, it's not exactly what I'm looking for and (even worse) is a talentless, disgusting hack.
How can I achieve this goal?
Thanks!