Many bibliography entries in the document I am writing produce overfull hboxes. I have attached a small example that shows this undesired behavior below.
I think the problem could easily be fixed by allowing bigger inter-word spaces. While very long inter-word spaces can also look ugly, I am willing to accept them in the bibliography. However, I do not want them in the main text of the document or the appendix (which follows after the bibliography)
So my question is: How do I allow LaTeX to use bigger inter-word spaces in the bibliography?
I would prefer a solution that achieves this, while only requiring changes in the preamble of the document. (In order to keep the body of the document uncluttered)
Of course, entirely different solutions that remove the overlong lines from the bibliography are also welcome.
Small example:
\documentclass{article}
\usepackage[style=alphabetic,maxnames=9,backend=biber]{biblatex}
\begin{filecontents}{references.bib}
@inproceedings{bad,
title = {{The Protracted Example Heading for Parametrized Bibliography Entries}},
author = {James Smith and John Johnson and Robert M. Williams and David Brown and Richard Anderson},
booktitle = {Proceedings of the 18th Annual Symposium on Fictional Content with Long Titles},
publisher = {Publishing},
series = {Lecture Notes and Other Stuff},
volume = {1337},
pages = {290--301},
year = {2019}
}
@inproceedings{better,
title = {{The\, Protracted\, Example\, Heading\, for\, Parametrized Bibliography Entries}},
author = {James Smith and John Johnson and Robert M. Williams and David Brown and Richard Anderson},
booktitle = {Proceedings of the 18th Annual Symposium on Fictional Content with Long Titles},
publisher = {Publishing},
series = {Lecture Notes and Other Stuff},
volume = {1337},
pages = {290--301},
year = {2019}
}
\end{filecontents}
\addbibresource{references.bib}
\begin{document}
\cite{bad}
\cite{better}
\printbibliography
\end{document}
The citation of bad results in an overfull line. Citing better "solves" this by artificially inserting longer spaces.



PlainTeXcommand\spaceskip? – MadyYuvi May 13 '20 at 12:35\spaceskipbefore\printbibliography, how would I restore its original value afterwards? – zuenni May 13 '20 at 12:47{and}before and afterthebibliographyrespectively, or just give\bgroup....\egroup.... – MadyYuvi May 13 '20 at 13:27