Hi engtex,
Welcome to the LaTeX community! Sounds like LaTeX has a new fan
LaTeX doesn't actively encourage changing the line spacing but of course it can be done LaTeX's way is to set
\linespread
or
\baselinestretch
which is a very unintuitive:
\linespread{<ratio to original>}
, or
\renewcommand\baselinestretch{<ratio to original>}
.
For both you'd need to calculate the needed ratio depending on the chosen font size and its default leading. For a 11pt font this is 13.6pt:
Code: Select all
\documentclass[11pt]{article}
\linespread{1.6691}% 22.7/13.6
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}
A maybe cleaner approach and definitely the easier one is using the leading package. There you don't need to know the default leading but can simply specify the new value:
Code: Select all
\documentclass[11pt]{article}
\usepackage{leading}
\leading{22.7pt}
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}
Regards