[Tex/LaTex] bibliography problem large spacing

bibliographiesline-breakingurls

@booklet{Ph4,
author = {Panchenko, D.},
title = {Statistics for Applications / Gamma Distribution},
year = {2006},
url = {http://ocw.mit.edu/courses/mathematics/18-443-statistics-for-applications-fall-2003/lecture-notes/lec8.pdf},
}

D. Panchenko. Statistics for applications / gamma
distribution,
2006. URL http://ocw.mit.edu/courses/mathematics/ 18-443-statistics-for-applications-fall-2003/lecture-notes/lec8.pdf.

Guys I have this problem, in my document I insert normally the following command ans I got it in my text with huge spaces, It doesn't brake the url, what can I do?

Best Answer

Try loading the url package with the option hyphens. Loading this package with this option will allow line breaks to occur after hyphens in the url string. A full MWE might be (assuming the .bib file is named test.bib) as follows:

\documentclass{article}
\usepackage{natbib}
\usepackage[hyphens]{url}
\bibliographystyle{unsrtnat}
\begin{document}
\nocite{*} 
\bibliography{test} % assumes that bib file is named "test.bib"
\end{document}