In my document i have to print all my bib entries, to present the result of my research for the the chosen topic... therefore i am using:
% Biblatex
\usepackage[
backend=biber,
style=authoryear,
citestyle=authoryear-ibid,
url=false,
isbn=false,
notetype=footonly,
hyperref=false,
sortlocale=de]{biblatex}
% print all bib entries
\nocite{*}
\printbibliography[heading=none]
The Problem is that i want to print the bib entries at the and of the document again. But this time only the cited ones... therefore i am using:
% print only cited entries
\printbibliography
The setting \nocite{*} is still active and all bib entries are printed again. How can i deactive the setting at the end of the document to print cited bib entries only?

refsectionaround\nocite{*} \printbibliography[heading=none]– samcarter_is_at_topanswers.xyz Oct 13 '18 at 14:04\begin{refsection}\nocite{*}\printbibliography[heading=none]\end{refsection}might work, but it would be much easier to help you if you could show us a so called MWE/MWEB that shows us what you have so far. – moewe Oct 13 '18 at 14:04