When I compile the following latex document the references by \printbibliography don't start from 1 but from 21. What could cause this ? I have allready seen another solved question with a workaround but as I only want it to do the default behaviour I think this should be the last option.
\documentclass{article}
\usepackage[backend=biber, style=alphabetic]{biblatex}
\addbibresource{sources.bib}
\begin{document}\selectlanguage{english}
\begin{figure}[H]
\centering
\includegraphics[width=\textwidth]{../img/nucleo_f303k8}
\caption{Nucleo-F303K8}
\cite{NUCLEO-F303K8-2021-01-29}
\end{figure}
\printbibliography
\end{document}
Like this:
[21] NUCLEO-F303K8 board information on manufacturer site. englisch. mbed. Jan. 29, 2021. url: https://os.mbed.com/platforms/ST-Nucleo-F303K8/.
[21]? that would be odd, please post a document that can be run that shows that effect (we can not run as posted as we don't have sources.bib or the image (you can presumably delete the\includegraphicsline without affecting the bibliography?) – David Carlisle Jan 29 '21 at 17:09