Recently I was writing a document in LaTeX using Linux Libertine. Overall I love this font, but I found a strange case of italicized text where there is almost no space between the word of and a successive mathematical expression. Picture, with MWE:
\documentclass{standalone}
\usepackage{libertine}
\usepackage[libertine]{newtxmath}
\begin{document}
\textit{Let $d$ be the dimension of $V$ or of ${}^LG$.}
\end{document}
To my eye both of's are way too close to the following text and it looks glaringly bad.
I suspect this is happening because of the default spacing parameters for an italic f are small. And that scares me a bit because these are very low-level parameters (at least in LaTeX).
Is there an easy way to increase the space here? Ideally I could change a single parameter somewhere, though I think it is unlikely to be this easy. Alternatively, assuming I have to add in space manually each time, what is the best way to do this?



\/is recommended. You might try it here, – barbara beeton Oct 23 '23 at 19:54