I'm currently writing my thesis and I've run into a problem where I have more than 99 references. normally i would used biblatex for my references and just the command:
\usepackage[maxbibnames=150]{biblatex}
to increase my max references limit to 150. I however need to use the mnras bibliography style which is only available in natbib. natbib only allows up to 99 references and theres no clear way of increasing it.
natbib only allows 99 references as it formats numbered items in the bibliography to have two characters width (which the mnras template hides) i tried changing the digit allowance with
\usepackage{natbib}
\bibliographystyle{mnras}
%%% other thesis gubbins %%%
\begin{thebibliography}{999} %here, making 3 digit numbers acceptable
\bibliography{biblio}
\end{thebibliography}
but to no avail.
any help short of having to make my own cite style for biblatex would be appreciated.