Hi David. Is the lines= option supposed to reflect \baselinestretch? As far as I can tell, it doesn't, which is too bad. Even if not, it would be nice to document it. Simple case below.
Also, is there a better way to change the interline spacing than \baselinestretch? It is weird to specify it as a multiplication factor. Normally one would say "I want 15pt leading". Merely setting \baselineskip since it gets overwritten at font changes, etc.
Thanks.
\documentclass{article}
\usepackage{lipsum}
% without any \baselinestretch, get 30 lines as requested.
% with \baselinestretch, get 23 lines.
\def\baselinestretch{1.3}
\usepackage[lines=30]{geometry}
\begin{document}
\lipsum[1-15]
\end{document}
Hi David. Is the lines= option supposed to reflect \baselinestretch? As far as I can tell, it doesn't, which is too bad. Even if not, it would be nice to document it. Simple case below.
Also, is there a better way to change the interline spacing than \baselinestretch? It is weird to specify it as a multiplication factor. Normally one would say "I want 15pt leading". Merely setting \baselineskip since it gets overwritten at font changes, etc.
Thanks.