2014-07-12
If you use LaTeX and want to adjust the spacing between each item in your bibliography, then download bibspacing.sty and put the following in your document:
\usepackage{bibspacing} \setlength{\bibitemsep}{.2\baselineskip plus .05\baselineskip minus .05\baselineskip}
Change the spacing to whatever you desire of course. This works even if you use BibTeX.
Alternately, if you don’t want to download bibspacing.sty, you can just include it’s contents into the preamble of your LaTeX source:
\newlength{\bibitemsep}\setlength{\bibitemsep}{.2\baselineskip plus .05\baselineskip minus .05\baselineskip} \newlength{\bibparskip}\setlength{\bibparskip}{0pt} \let\oldthebibliography\thebibliography \renewcommand\thebibliography[1]{% \oldthebibliography{#1}% \setlength{\parskip}{\bibitemsep}% \setlength{\itemsep}{\bibparskip}% }
This method also works if you use BibTeX.
This was adapted from here. See an alternate approach here.
Kasonde (2021-11-23 19:56:19 EST)
Finally found the solution after a week of searching. Thank you