Adjusting the space between references in the bibliography.

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.

Alternate approach.

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.

References

This was adapted from here. See an alternate approach here.

🗫 Comments

  • Kasonde
    It Worked

    Kasonde (2021-11-23 19:56:19 EST)

    Finally found the solution after a week of searching. Thank you

📮 Leave a comment (Spammers beware: All comments are moderated)

Sorry. There was an error submitting your comment. Please try again, or contact me if the problem persists.
Sending comment; please wait.
Thanks. Your comment was successfully submitted. It will appear here shortly if it isn't spam.