You cannot use two styles at the same time. I think that you just use the verbose style if you load biblatex as shown. If I did not get it wrong, the biblatex-mla style does not show the first citation in full.
Apart from that, biblatex-mla is based upon an outdated biblatex, and thus lacks the CiteCommand \smartcite. But even with this command, biblatex-mla will give only short citations in footnotes, no full references. See the following example:
\documentclass[ngerman]{scrartcl}
\listfiles
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{article,
author = {Nachname, Vorname},
title = {Titel des Zeitschriftenartikels},
journaltitle = {Zeitschrift},
date = {2006},
volume = {6},
pages = {19-75}
}
@book{book,
author = {Buchautor, Hans-Wilhelm},
title = {Irgendein Buch},
location = {Buch am Wald},
date = {2000}
}
\end{filecontents}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel,csquotes}
\usepackage[
style=mla,
autocite=footnote,
backend=biber
]{biblatex}
\addbibresource{\jobname.bib}
\DeclareCiteCommand{\smartcite}[\iffootnote\mkbibparens\mkbibfootnote]
{\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\usebibmacro{cite:mla}}
{}
{\usebibmacro{postnote}}
\begin{document}
\autocite{article,book}
\cite{article,book}
\printbibliography
\end{document}
style=mla, it will not show references in footnotes. So usingstyle=verboseshows references in footnotes and also inWorks Citedlist at the end. – nixnotwin Oct 11 '11 at 10:11\usepackage[style=mla]{biblatex}, the document compiles fine, but rerences only appear at the end of the paper. But if I use\usepackage[style=mla,autocite=footnote]{biblatex}, it shows up errors during compilation. And the document never gets compiled. – nixnotwin Oct 11 '11 at 10:35biblatex-mlais based upon an outdatedbiblatex, and thus lacks the CiteCommand\smartcite. But even with this command,biblatex-mlawill give only short citations in footnotes, no full references. If this is not what you want, you should consider using (and modifying) one of theverbosestyles. – domwass Oct 11 '11 at 12:03