ich verwende meine LaTeX Installation mit texmaker und versuche einen Text mit BibTeX zu erstellen. Beim Ausführen bekomme ich nur die Meldung:
This is BibTeX, Version 0.99d (TeX Live 2013) 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)
\documentclass[10pt]{scrbook}
\usepackage{biblatex}
\bibliography{literature.bib}
\begin{document}
Erster Test \cite{abc}
Zweiter Test \cite{abcd}
\end{document}@article{abc,
author = {Max Mustermann},
title = {TestA},
journaltitle = {TestJournal},
year = {1993},
}
@article{abcd,
author = {Max Mustermann},
title = {TestB},
journal = {TestJournal},
year = {1991},
}



