[Tex/LaTex] Condense the space between bibliographic entries

bibliographieslyxspacing

In order to save space, I would like to condense the bibliography, specifically, reduce the amount of vertical space between entries. Currently, it seems there is double-space between consecutive entries.

I use the "article" layout in LyX.

Best Answer

As Andrew says, you can use natbib and then reset \bibsep:

\setlength{\bibsep}{0pt plus 0.3ex}

Without natbib, you can set \parskip and \itemsep to zero (they are responsible for the vertical space). It is advised to add some glue-stretch that can be used if necessary (this is what plus 0.3ex is for).

\documentclass[12pt]{article}

\usepackage{lipsum}

% ADD THE FOLLOWING COUPLE LINES INTO YOUR PREAMBLE
\let\OLDthebibliography\thebibliography
\renewcommand\thebibliography[1]{
  \OLDthebibliography{#1}
  \setlength{\parskip}{0pt}
  \setlength{\itemsep}{0pt plus 0.3ex}
}

\begin{document}

\begin{thebibliography}{99}

\bibitem{a} \lipsum[1]

\bibitem{b} \lipsum[4]

\end{thebibliography}

\end{document}