Is there a way to get \setspace to work for the font size specified? In my MWE below you can see that when I use tiny the double spacing is the same as it would be for the default font. However, I want the double spacing to be tiny double spacing, not normalsize double spacing
\documentclass{article}
\usepackage{setspace}
\usepackage{blindtext}
\begin{document}
\setstretch{2}
\blindtext[1]
\begin{tiny}
\blindtext[2]
\end{tiny}
\end{document}

\end{tiny}– David Carlisle Mar 14 '17 at 12:18\setstretch{2}might not be correct double spacing. For that use\doublespacing. You'll notice the difference. – Skillmon Mar 14 '17 at 12:23\doublespacingwouldn't do – wolf_math Mar 14 '17 at 12:38