I'm trying to use biblatex and I want to cite something but if I use \cite{key} or \footcite{key} the author and title is not printed but the key itself is printed.
bibtex says there are no \citation commands
TUDreport.tex
\documentclass[11pt, nochapterpage,bigchapter,linedtoc,longdoc,colorback,accentcolor=tud9b]{tudreport}
\usepackage[utf8]{inputenc}
\usepackage{ngerman}
\usepackage[stable]{footmisc}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{graphicx}
\renewcommand{\thefigure}{\arabic{figure}}
\usepackage[backend=biber, style=authoryear, sorting=nyt]{biblatex}
\addbibresource{literatur.bib}
\begin{document}
Test\footcite{keyword}
\printbibliography
\end{document}
literatur.bib:
@BOOK{keyword,
title = {Werkzeugmaschinen Maschinenarten und Anwendungsbereiche},
publisher = {Springer Verlag},
year = {2005},
author = {M. Weck}
}
But instead of:
Test1
- Weck(2005), Werkzeugmaschinen und ....
The Output is:
Test1
- keyword
latexthenbiberthenlatexagain to get the reference… – Seamus Feb 20 '12 at 13:56