[Tex/LaTex] Increase Line spacing in IEEE reference style

bibliographies

enter image description here

I am using IEEEtran to format my references in IEEE format as a part of my thesis work. My project supervisor wants me to increase the line spacing in references section. I am using .bib file for my references.
Please refer to the attached image. The references have very little line spacing by default. I want to have something like double line spacing in the reference section also. How should I do it ?

Best Answer

To change line-spacing in a LaTeX document, either for the document as a whole or for selected parts, it's a good idea to load the setspace package in the preamble. Then, if the linespacing needs to be increased just for the bibliography, simply issue the instruction

\setstretch{1.5}

immediately before \bibliography{...} if you use BibTeX, or immediately before \printbibliography if you use biblatex.

Aside: Loading the setspace package and issuing a \setstretch directive is safer, in general, than using the low-level TeX macros \baselineskip and \linespread.