I would like to know if there is any command which adjusts the vertical spacing of a line automatically to fully display the mathematical equation or formula in that line? For example,
\documentclass[11pt,a4paper]{article}
\begin{document}
-Hello everyone, $\lim_{n\to\infty}d(x_n^{C_1},x_n^{C_2})$ exists,
\end{document}
Running the above code shows that the infinity sign is located next to lim not under it due to tightly set vertical spacing. I do not wish to use $$ or any align for this because
Such commands would start the formula in a new line and
For a long equation, using such commands often result in the equation overflowing into the margin.
I like the current font size and tight line spacing and would just like to relax the vertical line spacing a little to display the 'limit' equation as it should only for the line that contains it.


\renewcommand\baselinestretch{5}and had massive inter-line space, then by default limits are set to the right unless you use\limitsor, for the whole expression, use\displaystyle– David Carlisle Apr 14 '17 at 19:40