I'm preparing my bibliography and noticed that biblatex-printbibliography produces Overfull \hbox several times.
Examples (gray lines indicates text margins, red line is the physical page margin):



Why is hyperref line-breaking not working as expected using pdflatex or even latex -> dvipdfm BUT not using latex -> dvips -> ps2pdf?
Also it would be great if someone could point out how I can raise the indentation of the second (and following) lines, as this might look better.
edit: Customized question, as the answer given by lockstep solved the third problem. The second problem seems to be identical to the first.
\documentclass[12pt]{scrbook}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ps2pdf]{hyperref}
%\usepackage[ps2pdf,breaklinks=true]{hyperref} %This doesn't change anything.
%\usepackage{breakurl} %That makes no difference either.
\usepackage[a4paper,twoside,showframe]{geometry} %show text margins
\usepackage[style=alphabetic,backend=biber,maxnames=4,minnames=3,maxbibnames=99]{biblatex}
\bibliography{biblatex-issue}
\begin{document}
\nocite{*}
\printbibliography[heading=subbibliography,type=article,prefixnumbers={A-}]
\printbibliography[heading=subbibliography,type=book,prefixnumbers={B-}]
\printbibliography[heading=subbibliography,type=online]
\end{document}
And the bib-file:
@online{GLS:datasheet,
title = "GLS Datasheet",
organization = "Optoelectronics Research Centre",
howpublished ="Website",
date = "2004-09",
urldate="2013-07-01",
url ="http://www.southampton.XXXX",
address = "Southampton, United Kingdom"
}
@book {Lifante:Fundamentals,
title = "Integrated Photonics: Fundamentals",
author = "Lifante, Ginés",
publisher = "J.Wiley",
address = "Chichester",
year = "2003",
type = "text",
isbn = "9780470848685"
}
@article{Labadie:First_fringes,
author = {Labadie, L. and Mart\'{\i}n, G. and Anheier, N. C. and Arezki, B. and Qiao, H. A. and Bernacki, B. and Kern, P.},
title = {First fringes with an integrated-optics beam combiner at 10},
DOI= "10.1051/0004-6361/201116727",
journal = {A\&A},
year = 2011,
volume = 531,
pages = "A48"
}
P.S.: I noticed that the visiting-date of the GLS-datasheet is wrong ;-)





.texand.bibfiles directly in the question (as code samples). – lockstep Apr 08 '13 at 10:32hyperref(that is not a good solution). Although the third problem (Wiley leaking out of the margin) still remains. – MrD Apr 08 '13 at 10:39