ich bekomme folgende Fehlermeldung von biblatex und finde keine Lösung:
I found no \citaton commands---while reading file Doctest.aux
I found no \bibdata command--- while reading file Doctest.aux
I found no \bibstyle command---while reading file Doctest.aux
Ergebnis ist, dass zwar eine Fußnote erstellt wird (Nummer), aber der Bibliograpie-Entrag nur das Kürzel enthält.
Hier mein Minimalbeispiel:
\documentclass{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[style=footnote-dw]{biblatex}
\bibliography{MKNO}
\usepackage{blindtext}
\begin{document}
\title{Literaturverzeichnis mit BibLaTeX}
\author{Testtext}
\date{Today}
\maketitle
\chapter{Kapitel 1}
\blindtext
Hier soll nun eine Referenz auf ein Zitat erscheinen.\cite{Adorno1966}.
\end{document}
\printbibliography
@BOOK{Adorno1966,
author = {Adorno, Theodor W.},
title = {Negative Dialektik},
publisher = {Suhrkamp},
year = {1966},
address = {Frankfurt a. M.},
owner = {kath},
timestamp = {2011.11.20}
Kann jemand einen Tipp geben?
Danke! Katrin


