I'm trying to add a misc entry to my bibliography, and despite biblatex recognizing the citation and citing it in-line, it refuses to put it into the works cited section:
(essay.tex)
\documentclass[12pt,letterpaper]{article}
\usepackage[english]{babel}
\usepackage{hyperref}
\usepackage{csquotes}
\usepackage[style=mla-new,backend=biber]{biblatex}
\addbibresource{essay.bib}
\begin{document}
Test \autocite{misc}.
\newpage
\printbibliography
\end{document}
(essay.bib)
@misc {misc,
author = "Test author",
title = "Test citation",
publisher = "Publisher",
year = "2005"}
The citation will show inline properly (Test (author)), but the entry doesn't appear in the bibliography. No errors or warnings are encountered when building with latex+biber+latex+latex.
