I have a problem with inserting references from my .bib file into my LaTeX document. Even though it runs when I only put in \bibliography{name of my file}, it cannot find the actual reference when I put \cite{citation key} (error: undefined reference). I made sure that the citation key is correct. Also I want the reference to appear in the footnotes. Can anyone see where I made the mistake?
\documentclass[12pt]{scrbook}
\usepackage[ngerman]{babel}
\usepackage{fontspec}
\setmainfont{Charter}
\usepackage[backend=bibtex,style=verbose-trad2]{biblatex}
\bibliography{Masterarbeit}
\bibliographystyle{siam}
\usepackage{geometry}
\geometry{top=25mm, left=20mm, right=30mm, bottom=20mm, headsep=10mm, footskip=12mm}
\usepackage{graphicx}
\usepackage[onehalfspacing]{setspace}
\makeatletter
\renewcommand\normalsize{\@setfontsize\normalsize{12}{14.4}}
\renewcommand\large{\@setfontsize\large{14}{16.8}}
\renewcommand\LARGE{\@setfontsize\LARGE{18}{21.6}}
\renewcommand\huge{\@setfontsize\huge{20}{24}}
\makeatother
\newcommand{\chapnumsize}{\LARGE}
\newcommand{\chapnumstyle}{\normalfont\mdseries}
\newcommand{\chapsize}{\huge}
\newcommand{\chapstyle}{\mdseries}
\newcommand{\secsize}{\large}
\newcommand{\secstyle}{\mdseries}
\addtokomafont{part}{\mdseries}
\addtokomafont{partnumber}{\mdseries}
\addtokomafont{chapter}{\mdseries}
\addtokomafont{section}{\mdseries}
\setkomafont{disposition}{\normalcolor\bfseries}
\begin{document}
\chapter{Fragebogen}
\section{...}
I want to put a reference in a footnote \cite{Carbon2019}
\end{document}

Carbon2019in your bib file in your question. – Mensch May 14 '20 at 10:34Carbon2019, not saving the bib file after adding the new entry or not compiling two times the tex file. – epsilone May 14 '20 at 10:58biblatexpackage, you must get rid of the\bibliographystylestatement. You should also replace\bibliography{Masterarbeit}with\addbibresource{Masterarbeit.bib}. – Mico May 14 '20 at 12:31\bibliographystylewithbiblatex. Remove the\bibliographystyle{siam}. You probably want to use\autocite{Carbon2019}instead of\cite{Carbon2019}. After you have changed these two things, go to your document folder and delete the.auxand.bblfiles. Then rerun LaTeX, BibTeX, LaTeX, LaTeX. ... – moewe May 14 '20 at 14:44.blgfile. On Windows systems the.blgfile may be recognised as "performance monitor" file or some such, but it is just a simple text file you can open with your favourite text editor. – moewe May 14 '20 at 14:45< -- 0
:= -- 0 add.period$ -- 0 call.type$ -- 0 change.case$ -- 0 chr.to.int$ -- 0 cite$ -- 0 duplicate$ -- 0 empty$ -- 0 format.name$ -- 0 if$ -- 0 int.to.chr$ -- 0 int.to.str$ -- 0 missing$ -- 0 newline$ -- 0 num.names$ -- 0 pop$ -- 0 preamble$ -- 0 purify$ -- 0 quote$ -- 0 skip$ -- 0 stack$ -- 0 substring$ -- 0 swap$ -- 0 text.length$ -- 0 text.prefix$ -- 0 top$ -- 0 type$ -- 0 warning$ -- 0 while$ -- 0 width$ -- 0 write$ -- 0 (There were 3 error messages)
– Clara May 15 '20 at 12:03.blgfile areI found no \citation commands---while reading file Masterarbeit_Text.aux I found no \bibdata command---while reading file Masterarbeit_Text.aux I found no \bibstyle command---while reading file Masterarbeit_Text.aux. That means that BibTeX can't find any citation info. ... – moewe May 15 '20 at 12:16.blgfile come from the code shown in the question or already from the code as changed in the answer? If you removed the optionbackend=bibtex,you are switching to the defaultbackend=biber,and need to run BibTeX instead of Biber in the compilation sequence. See https://tex.stackexchange.com/q/154751/35864 for help with getting your editor to run Biber instead of BibTeX. – moewe May 15 '20 at 12:17