I would like to know how to break URLs which contains long unbreakable sections in my bibliography using Sharelatex.
That's the code I use to load my bibliography file
\usepackage[sorting=nty]{biblatex}
\addbibresource{bibliography.bib}
\nocite{*}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
filecolor=black,
urlcolor=black,
}
\urlstyle{same}
\begin{document}
...
\printbibliography[
heading=bibintoc,
title={Bibliografia Completa}
]
\printbibliography[heading=subbibintoc,type=article,title={Solo articoli}]
\printbibliography[heading=subbibintoc,type=book,title={Solo libri}]
\printbibliography[heading=subbibintoc,type=misc,title={Solo videografia}]
\end{document}
but when I load the bibliography the URLs that have too long unbreakable sections to fit in the page, like that one
PLoaVOjvkzQtyjhV55wZcdicAz5KexgKvm
, are not automatically broken, forcing me to use the \\ command.
How can I avoid that and still maintaining a fully justified bibliography and correctly broken URLs?
Albeit the use of the hyperref package, I'm not using the \url{} command in the bibliography to make the URLs clickable, but they still are.
My bibliography preset looks like this:
@misc{,
author = "",
title = "",
howpublished = "",
year = "",
url = "",
%month = "",
%note = "",
}
Thank you for your time.
biburlnumpenalty,biburllcpenalty,biburlucpenalty. See the documentation of biblatex and various questions here. – Ulrike Fischer Jun 11 '18 at 14:49