I would like to control the spacing of certain symbols in math mode. For instance, consider the following example.
$
?x + ?y
$
I would like for ?x to be parsed as a single element, however the ? and x are a bit too far away for my liking.
I have considered using "?x" instead, but this changes the font of x, which I would like to avoid. Is there an equivalent in Typst to the ; or ! found in LaTeX’s math mode?
I have found a way to achieve what I wanted using #h(-1pt). I thought I might be able to define a function which displays the glyph to my liking, however this makes it so my custom notation behaves weirdly with other math elements, like the + in my prior example