I am looking at printing bibliography at end of each chapter, where only cited contents need to be printed in it. But I am getting all the contents printed at the end of each chapter. I am using
\documentclass{report}
\usepackage[backend=biber,style=numeric,autocite=plain,sorting=none]{biblatex}
\addbibresource{report.bib}
\begin{document}
\chapter{Chapter 1}
Test\cite{1}
\printbibliography[heading=subbibliography]
\chapter{Chapter 2}
Test\cite{2}\cite{3}
\printbibliography[heading=subbibliography]
\end{document}