Is there a way to prevent BibLaTeX from splitting page ranges over two lines automatically? I've noticed when editing my thesis's works cited that in a lot of cases BibLaTeX will split the page ranges over two lines. Now, I could prevent this by editing each page number entry to be within an \mbox{}, but I wanted to know if there was a better method that wouldn't involve editing each and every entry.
\documentclass{article}
\begin{filecontents}[overwrite]{\jobname.bib}
@article{edited,
author = {Angenendt, Arnold},
journaltitle = {Revue d'Histoire Eccl{'e}siastique},
date = 2002,
volume = 97,
pages = {\mbox{431--456}, \mbox{791--823} }
}
\end{filecontents}
\usepackage[style=chem-rsc]{biblatex}
\addbibresource{biblatex-examples.bib}
\addbibresource{\jobname.bib}
\begin{document}
Can we keep page ranges together without editing every entry?\autocite{angenendt,edited}
\printbibliography
\end{document}

