I have a problem with making my references show up using BibLatex. First, please bear with me if I made a very stupid mistake; it's my first time using Latex.
I made a .bib-file with some references, but when I'm trying to cite these references, the citation only shows the ID instead of the actual citation and the bibliography won't print either.
My MWE looks as follows:
Code: Select all
\documentclass{article}
\usepackage{biblatex}
\addbibresource{thesisbib.bib}
\begin{document}
lalala \cite{BEH03} citation
\printbibliography
\end{document}
Code: Select all
@proceedings{BEH03,
editor = {Paul Boersma and Paola Escudero and Rachel Hayes},
title = {Learning Abstract Phonological from Auditory Phonetic Categories: An Integrated Model for the Acquisition of Language-Specific Sound Categories},
date = {2003},
eventtitle = {Proceedings of the 15th International Congress of Phonetic Sciences},
eventdate = {August 3-9 2003},
pages = {1013-1016},
}
Thanks!