0

I have a multi-paragraph section of tiny-font within a larger document of normal-size text.

The last paragraph within this section seems to get double spacing: Imgur

I can fix the problem by putting a blank line before the final \end{tiny} but I don't know why this works.

Can someone tell me what is going on?

Here is the MWE

\documentclass[11pt,oneside]{report}

\begin{document}
This is normal size.

\begin{tiny}
This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. This is tiny size. 

Why is this paragraph double spaced?  Why is this paragraph double spaced?  Why is this paragraph double spaced?  Why is this paragraph double spaced?  Why is this paragraph double spaced?  Why is this paragraph double spaced?  Why is this paragraph double spaced?
\end{tiny}

\end{document}
Tim
  • 1,539
  • is it not double spacing, but actually returning to the linespacing of 'normal size', without actually changing the font yet to normal size? – Tim Nov 15 '15 at 19:26
  • The large and complicated discussion in the older question you link only incidentally mentions the the crucial information I sought. My question is a needle, sufficiently different from the haystack! I would keep the question, and not delete it. – Tim Nov 15 '15 at 21:14
  • @egreg I probably won't vote to re-open but the question isn't a duplicate of that question (or even that related) even though the answers are related. – David Carlisle Nov 15 '15 at 21:18

1 Answers1

1

You need to leave a blank line before

\end{tiny}

Whenever you have a font size change that could involve line breaking you need to include the end of paragraph in the scope, otherwise the paragraph ends outside the scope when baseline spacing has reverted to the previous value

David Carlisle
  • 757,742