I am trying to reduce the spacing in between the references to save some space. However, I couldn't do it by myself. I am using the article class, and a portion of my code is as follows:
\documentclass[9pt]{extarticle}
\providecommand{\keywords}[1]{\textbf{\textit{Index Terms---}} #1}
\usepackage{spconf,amsmath,graphicx}
\usepackage{epstopdf}
\usepackage{graphicx}
\usepackage{color}
\usepackage{placeins}
\usepackage{float}
\usepackage{tabularx,colortbl}
\usepackage{amssymb} % \in
\usepackage{amsmath} % For align command
\usepackage[breaklinks=true]{hyperref}
\usepackage{setspace}
\usepackage{cite}
\usepackage{subfigure}
\begin{document}
Huuuuuuuuuuuuuuuuuuu!!
\bibliographystyle{IEEEbib}
\bibliography{references}
\end{document}
How can I manage to reduce the line spacing in reference section?
Thanks in advance.
\bibliography. Try something like\singlespacing. – Werner Oct 21 '13 at 16:12\bibliography{references}with{\linespread{0.7}\selectfont\bibliography{biblio}}and adjust0.7to your needs. – karlkoeller Oct 21 '13 at 16:19etoolboxpackage and issue the following command (in the preamble):\AtBeginEnvironment{thebibliography}{\setlength\parskip{0pt}}. This makes this parameter a rigid length rather than a "rubber" length (its default setting). – Mico Oct 21 '13 at 18:05