I am using one .bib files and need to create multiple bibliographies for each chapter + one global one in the end, using biblatex (biber). Everything works smoothly with the multiple bibliographies using refsection, however, I fail to create the global biblio.
I found a very similar problem here: Multiple bibliographies and one global bibliography - all with global labels - however the solution
\nocite{*}
does not work for me as I need only those references cited (my .bib file is very large.
My example:
\usepackage[refsection=chapter, style=authoryear-comp,natbib=false,mcite=false,backend=biber]{biblatex}
\addbibresource{refs.bib}
\begin{document}
\begin{refsection}
blabla \cite{}
\printbibliography[heading=subbibintoc]
\end{refsection}
% and now the global one that should include all previously cited documents
\printbibliography[heading=bibintoc]
\end{document}
\begin{refsection}
blabla \cite{}
\printbibliography[heading=subbibintoc]
\end{refsection}
It does neither produce a global biblio nor an entry in the toc.
chapterbibpackage and incidentally at this response? http://tex.stackexchange.com/a/17480/6908 – Trefex Mar 31 '14 at 15:54