\documentclass{article}
\usepackage[style=historian,citestyle=authoryear,doi=false,backend=biber]{biblatex} %refsection=section
\usepackage{csquotes}
\DefineBibliographyStrings{brazil}{namedash={---------}}
\usepackage[brazil]{babel}
\addbibresource{testebib.bib} %para add arquivo .bib
\begin{document}
\section{First}
\begin{refsection} % abre seção com referências próprias
Citation section \thesection: \textcite{knuth1986texbook}
\printbibliography %[heading=subbibliography]
\end{refsection} % fecha seção com referências próprias
\section{Second}
\begin{refsection}
Citation section \thesection: \textcite{knuth1977fast}.
\printbibliography %[heading=subbibliography]
\end{refsection}
\end{document}
%====
%Conteúdo do arquivo testebib.bib, a ser criado e salvo.
%
%@book{knuth1986texbook,
% keywords = {book},
% title={The texbook},
% author={Knuth, D.E. and Bibby, D.},
% volume={1993},
% year={1986},
% publisher={Addison-Wesley}
%}
%@article{knuth1977fast,
% keywords = {article},
% title={Fast pattern matching in strings},
% author={Knuth, D.E. and Morris Jr, J.H. and Pratt, V.R.},
% journal={SIAM journal on computing},
% volume={6},
% number={2},
% pages={323--350},
% year={1977},
% publisher={SIAM}
%}
%==================
%Você pode também subdividir por palavras-chave (keywords) no seu arquivo bib:
%
%@article{texblog2012,
% keywords = {own}, % keyword for subdivided bibliography
% title={My fancy publication},
% author={Texblog, T},
% journal={TUGboat},
% volume={33},
% number={3},
% pages={1001--1002},
% year={2012},
%}
E criar referências segundo as palavras-chave:
%\printbibliography[keyword=own,title={Minhas publicações}]
%\printbibliography[notkeyword=own,title={Publicações Gerais}]]