Hope somebody can explain why in the following code (1) creates a "smarter" in-paragraph spacing than (2)?
\documentclass{article}
\usepackage{lipsum}
\begin{document}
{\small\lipsum[1]\LARGE\lipsum[1]\small\lipsum[1]\par} %(1)
\clearpage
{\small\lipsum[1]\LARGE\lipsum[1]\par} %(2)
\end{document}


\smallin effect at the\par, which sets the line spacing for the entire paragraph to the line spacing for\small. In (2) this is the line spacing for\LARGEthat is in effect at the\par. – daleif Jan 25 '19 at 10:51\baselineskipand even spacing and just stacks things vertically with no attempt to make a reasonable layout. – David Carlisle Jan 25 '19 at 10:58\LARGE– daleif Jan 25 '19 at 11:53\lineskiplimit=-\maxdimen(seen in TeXByTopic), then the linespacing are not stretched because of "tall stuff", it has no effect on (2) but clearly affect (1). – daleif Jan 25 '19 at 12:02