[Tex/LaTex] how to get line spacing greater than one and half spacing and less than double space

line-spacing

Does anyone know how to get line spacing in a paragraph to be greater than one and half spacing and less than double spacing?
I tried \renewcommand{\baselinestretch}{value} but it did not work.

Best Answer

\usepackage{setspace}

Then for the document, in the preamble

\setstretch{1.75}

or for part of it, in the body

\begin{spacing}{1.75}% assuming standard spacing is < 1.75
  ...
\end{spacing}