Hello, my question is basically the title. I have a document where I want to insert a bit of negative space after every F that was specifically in math mode, i.e. after every $F$.
The usual way I would do it would be something like:
#show math.equation: it => {
show "F": [$F #h(-0.1pt)$]
it
}
But this also matches strings inside math mode, so also $“F”$. I do not want this second match. For example,
$F "Flavor text" F$
should be converted to
$F #h(-0.1pt) "Flavor text" F #h(-0.1pt)$
Thanks in advance.
