I have a lot of problems with the bibliography.
I read the BibLaTeX manual but I couldn't find a way to fix it.
Here is the source:
\documentclass[]{report}
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\usepackage[italian]{babel}
\usepackage{csquotes}
\usepackage{biblatex}
\addbibresource{biblio.bib}
\begin{document}
\tableofcontents
\noindent\hrulefill
\section{foo}
\cite{1tree} \& \cite{wiki1}
\noindent\hrulefill
\printbibliography
\noindent\hrulefill
\end{document}
And here is my biblio.bib:
@misc{wiki1,
author = {Wikipedia},
title = {Disuguaglianza Triangolare},
year ={2015},
url ={https://it.wikipedia.org/wiki/Disuguaglianza_triangolare},
}
@online{1tree,
author = {Universit\`a di Torino},
title = {Definizione 1-Tree, TSP Lower Bound},
date = {date},
url = {http://www.di.unito.it/~locatell/didattica/ro2/TSPnewbound-sl.pdf},
}
And this is the output:

I would also be able to use
\defbibfilter{online}{ type=online }
\defbibfilter{offline}{ not type=online }
and
\printbibliography[filter=online]
What am I doing wrong?
P.S.: I am using TeXStudio with MikTeX

.blgfile? – Ulrike Fischer Nov 21 '15 at 12:01blgfile exists: Biblatex with Biber: Configuring my editor to avoid undefined citations – Johannes_B Nov 21 '15 at 12:22\printbibliography[type=online]and\printbibliography[nottype=online]. – moewe Nov 21 '15 at 13:28