\begin{filecontents}{\jobname-bib.bib}
@Book{doe,
  author = {John Doe},
  ALTeditor = {},
  title = {Erstes und letztes \LaTeX{} Beispiel.},
  publisher = {NN},
  year = {50 v. Chr.}
}


@Book{doe2,
  author = {John Doe},
  ALTeditor = {},
  title = {Doch noch ein weiteres \LaTeX{} Beispiel.},
  publisher =  {NN},
  year =  {49 v. Chr.},
  keywords = {grau}
}

@Article{doe3,
  author =  {Jane Doe},
  title =  {Nicht nur John hat Ahnung von \LaTeX{}},
  journal =  {Elektronische Hilfswissenschaften},
  year =  {2019}
}


   
\end{filecontents}

\documentclass{article}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[backend=bibtex, defernumbers=true]{biblatex}
\addbibresource{\jobname-bib.bib}
\begin{document}
Viele Beispiele die in \LaTeX{} online sind, sind seit langem bekannt.~\cite{doe} 
Es gab kaum Neuerungen.~\cite{doe2} Wobei es auch neuere Ansätze gibt.~\cite{doe3}



\printbibliography[type=book, heading=bibliography,notkeyword=grau, title={Bücher}]

\printbibliography[type=article, heading=subbibliography, title={Artikel}]

\printbibliography[heading=subbibliography,keyword=grau, title={Graue Literatur}]



\end{document}
Last modified: Fri Dec 6 22:25:07 CET 2019