I want to get my references straight. I use Biber and it recognizes the .bib file and correctly refers to them when I cite them. However, when I want to print the references using \printbibliography, it causes the following error:
Missing $ inserted
on the line below the \printbibliography command. This is my structure:
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{lmodern}
\usepackage[style = numeric, backend = biber]{biblatex}
\addbibresource{mybib.bib}
\author{Simon Götz}
\title{Muziek Genre Classificatie: Een Vergelijking Tussen Album Covers en
Ander Beeldmateriaal}
\begin{document}
\maketitle
\section{Abstract}
\cite{Oramas}
\cite{Manning}
\cite{Downie}
\cite{Schedl}
\cite{humming}
\section{Introductie}
lorem ipsum
\section{Verwante literatuur}
\section{Referenties}
\printbibliography
\end{document}
This is a screenshot of the errors I get:

EDIT: the code below is the mybib.bib file I use
@InProceedings{humming,
author = {T., Kageyama and K., Mochizuki and Y., Takashima},
title = { Melody Retrieval with Humming.},
booktitle = { Proceedings Int. Computer Music
Conference (ICMC)},
pages = {349-351},
year = {1993}
}
@Article{Oramas,
author = {S., Oramas and F., Barbieri and X., Serra},
title = {Multimodal Deep Learning for Music Genre Classification},
journal = {Transactions of the International Society for Music Information Retrieval},
year = {2018},
volume = {1},
number = {1},
pages = {4-21}
}
@Article{Libeks,
author = {J., Libeks and D., Turnbull},
title = {You can judge an artist by an album cover: Using images for musicannotation.},
journal = {IEEE MultiMedia},
year = {2011},
volume = {18},
number = {4},
pages = {30-37}
}
@Article{Schedl,
author = {M., Schedl and E., Gómez and J., Urbano},
title = { Music information retrieval: Recent developments and
applications.},
journal = { Foundations and Trends® in Information Retrieval},
volume = {8},
number = {3},
pages = {127 - 261}
}
@Article{Downie,
author = {J.S., Downie},
title = {Music information retrieval.},
journal = {Annual Review of Information Science and
Technology},
volume = {37},
pages = {295-340},
note = {Available from http://music-ir.org/downie_mir_arist37.pdf}
}
@Book{Manning,
author = {C.D., Manning and P., Raghavan and H., Schütze},
title = {Introduction to Information Retrieval},
publisher = {Cambridge University Press},
year = {2008},
}
mybib.bib. Look at the output pdf and try to find where the bibliography gets messed up (text becomes italicized and without spaces), then you'll find out in which bibliography entry the problem is in. If you can't find out, please show us yourmybib.bibfile. – Phelype Oleinik Sep 26 '18 at 11:09note = {Available from http://music-ir.org/downie_mir_arist37.pdf}._is a special character that can usually only be used in math mode. If you want to give a URL for an entry, use theurlfield. – moewe Sep 26 '18 at 11:16author = {M., Schedl and E., Gómez and J., Urbano},is almost certainly wrong. The first name in the list will be parsed as family (last) name "M." and given (first) name "Schedl". – moewe Sep 26 '18 at 11:17urlpackage to type URL:\url{}. – Sigur Sep 26 '18 at 11:21