I would like to use the MLA citation style in footenotes. The following mwe produces the expected result.
\documentclass[11pt]{article}
\usepackage[backend=biber, style=mla]{biblatex}
\addbibresource{thesis.bib}
\begin{document}
foo\footcite{gof}
\end{document}
However, instead of the \footcite command I would like to use the \autocite command. So, I change the code as follows.
\documentclass[11pt]{article}
\usepackage[backend=biber, style=mla, autocite=footnote]{biblatex}
\addbibresource{thesis.bib}
\begin{document}
foo\autocite{gof}
\end{document}
But, this does not compile. I am getting the error:
! Package biblatex Error: Bibliography macro 'cite' undefined.
How can I fix this error and use the MLA-style with autocite=footnote?
