A document (class article) has a bibliography (using biblatex) printed at the end. But inside the document, a small section (call included section in my example) has its own bibliography (not part of the main bibliography) which is printed at the end of the included section. This small sectop, has no citations to the main bibliography.
\documentclass{article}
\usepackage[defernumbers=true]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
category = {internal}
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
\end{filecontents}
\bibliography{\jobname}
\DeclareBibliographyCategory{internal}
\begin{document}
\nocite{*}
\addtocategory{internal}{A01}
\section{first section}
blabla~\cite{B02}
\section{included section}
blabla~\cite{A01}
\printbibliography[title={bibliography of included section},category=internal]
\section{other sections...}
blabla~\cite{C03}
\printbibliography[title={Full bibliography without internal category},notcategory=internal]
\end{document}
The PDF is the following:

The main problem is that the included bibliography is part of the main bibliography: the main bibliography starts at [2], because it contains the bibliography of the included section. How can i (logicaly) separate the two bibliography ? I want the small bibliography to used references like '[Babar2007]' and the main bibliography to be numbered like "[23]" (with its own reference counter: main bibliography starts at 1) ?

\documentclass{...}and ending with\end{document}. – Marco Daniel Mar 10 '13 at 16:41