I am writing a document where I cite all my references and then in the following chapter, I want to cite just some of these references but their numbering should start from [1]. I tried the option "resetnumbers=true" but it prints all the references again, as per the MWE below
\documentclass[12pt,headsepline,a4paper,BCOR=10mm,twoside,titlepage,pdftex,cleardoubleplain]{scrbook}%abstracton
\usepackage[style=ieee,backend=bibtex8,,dashed=false,defernumbers=true]{biblatex}
\bibliography{References.bib}
\begin{document}
\chapter{chapter 1}
bla bla bla \cite{A}, \cite{B}, ..., \cite{Z}
\printbibliography
\chapter{chapter 2}
%% Here I need to reset the bibliography to include references only starting from this point
bla bla bla \cite{B}, \cite{C}
\printbibliography{resetnumbers=true} %only print references B and C with numbers [1] and [2]
\chapter{chapter 3}
%% Here I need to reset the bibliography to include references only starting from this point
bla bla bla \cite{D}, \cite{E}
\printbibliography{resetnumbers=true}%only print references D and E with numbers [1] and [2]
\end{document}
Please note I need to use the same command \cite everywhere since the document is already written. i.e. I don't want to replace \cite with \citeA or so as done with the library "multibib"

\newrefsectionbefore each\chapter. This can be automated with therefsection=chapteroption (which had bugs in older versions ofbiblatexand KOMA script). If you use BibTeX (or BibTeX8) you will have to compile several auxiliary files (check the message in the.logfile), if you switch to Biber (which is a good idea anyway), you can get away with only one Biber run. Lastly\printbibliographydoes not take a mandatory argument, it only has an optional argument, so\printbibliography[resetnumbers=true]would be the correct syntax. But that alone won't do ... – moewe Jul 03 '18 at 14:39Thanks moewe, the parentheses were a typo, I corrected them
– SMR Jul 03 '18 at 15:06[References.bib]for\newrefsection. And as I said you may have to compile different files with BibTeX. Have a look at the.logoutput, it tells you what to do. – moewe Jul 03 '18 at 15:07