Why does this render to create space between the delta and ACD in math mode?
$n_("Vibrio" Delta upright("ACD"))=5$
I was able to get the desired result of no space by adding #h(-1em) between Delta and ACD but shouldn’t the math mode automatically remove spaces between text (coming from latex this was the expected behavior for me)?
# enters code mode and ; exits it. Normally you don’t need a ; but here it’s important not to introduce another (unwanted) space to exit code mode.
Using the horizontal spacing function h() with its weak parameter set to true would be the same as using sym.zws. Usin it doesn’t even require a ; since the closing parenthesis ()) is there:
thanks for the improvement suggestions, quick response and offering a couple of different solutions. I have added more details in the question, mainly shouldn’t text in math mode automatically remove spaces. similar code in latex just squished the delta and ACD together which is what I’ve come to expect.