I am trying to use the chem-angew bibliography style that is documented here. However the result I am getting is just not the same as the one in the documentation.
In the docs there are no further abbreviations in the bibliography (like Vol or pp.) whereas they do appear in my example. Does anybody know why that is and how I can fix this?
\documentclass{article}
\usepackage[backend=biber,style=chem-angew]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{Sources.bib}
@book{Paper,
author = { Lenis-Rojas, O. A. and Roma-Rodrigues, C. and Fernandes, A. R.},
title = {Inorganic Chemistry},
year = {2017},
volume = {56},
pages = {7127-7144}
}
\end{filecontents}
\bibliography{Sources}
\begin{document}
In \cite{Paper} one can see stuff
\printbibliography
\end{document}

So basically I want to stop biblatex from adding any extra abbreviations to my bibliography in order to achieve the result found in the docs of the chem-angew style
