[Tex/LaTex] Bibtex does not create citation

bibtexciting

First off, I am using TeXstudio, in case that information is important.

After searching for hours, I was so deseperate that I simply took the example from this question, tried to run it and it doesn't work. So what I have is this:

%bibtest.tex
\documentclass[a4paper,12pt]{scrartcl}
%\usepackage[style=authoryear, backend=bibtex]{biblatex} %produces errors
\usepackage[style=authoryear]{biblatex}
\usepackage{hyperref}
\addbibresource{biblio.bib}

\title{Minimal test}
\date{}

\begin{document}
    \maketitle
    Lorem ipsum ...\cite{Google5gram}
    \printbibliography
\end{document}

%%%%%%%%%%

%biblio.bib
@ONLINE{Google5gram,
    author = {Alex Franz and Thosten Brants},
    organization = {Google Machine Translation Team},
    url = {http://googleresearch.blogspot.com/2006/08/all-our-n-gram-are-belong-to-you.html},
    title = {All Our N-Gram are Belong to You},
    month = aug,
    year = {2006},
}

But the resulting document has no bibliography though the text has a citation tag.

enter image description here

And the compiler runs multiple times, always producing the same output:

This is BibTeX, Version 0.99d (MiKTeX 2.9 64-bit)
The top-level
auxiliary file: bibtest.aux
I found no \citation commands—while
reading file bibtest.aux
I found no \bibdata command—while
reading file bibtest.aux
I found no \bibstyle command—while
reading file bibtest.aux
(There were 3 error messages)

Prozess endete mit Fehler(n)

I just don't know what I am doing wrong. I deleted all files except the two listed above, I restarted my IDE, rebooted my PC, nothing worked. I am desperate, please help!

Best Answer

%bibtest.tex
\documentclass[a4paper,12pt]{scrartcl}
\usepackage{hyperref}
\usepackage{lipsum}
\usepackage{cite}

 \title{Minimal test}
 \date{\today}

 \begin{document}
\maketitle
\lipsum[1] \cite{wang_model_2009}

\bibliographystyle{abbrv}  
\bibliography{biblio}
 \end{document}

 %biblio.bib
 @book{wang_model_2009,
address = {London},
title = {Model {Predictive} {Control} {System} {Design} and  {Implementation} {Using} {MATLAB}®},
isbn = {978-1-84882-331-0},
publisher = {Springer London},
author = {Wang, Liuping},
year = {2009},
keywords = {Appl.Mathematics/Computational Methods of Engineering, (CAD, CAE) and Design, Computer-Aided Engineering, Control , Robotics, Mechatronics, Electrical Engineering, Engineering, Industrial and Production Engineering, Industrial Chemistry/Chemical}
}

enter image description here

Related Question