I am a newbie to Latex and I have to write a paper for school where I have to cite different sources. I tried to read up on how to make a bibliography and came to the conclusion that I should use BibLatex using biber as the backend because it is newer and more flexible.
However when I try to use BibLatex with biber do not get a bibliography when I use \printbibliography and i get 3 errors
This is BibTeX, Version 0.99d (MiKTeX 21.6)
The top-level auxiliary file: diho.aux
I found no \citation commands---while reading file diho.aux
I found no \bibdata command---while reading file diho.aux
I found no \bibstyle command---while reading file diho.aux
(There were 3 error messages)
Process exited with error(s)
This is weird because I do not use bibtex as the backend. I then tried using bibtexas the backend and it worked as anticipated.
This is my code when using biber
\documentclass[a4paper,12pt]{article}
\usepackage{datetime}
\usepackage[danish]{babel}
\usepackage{blindtext}
\usepackage[backend=biber,style=numeric]{biblatex}
\addbibresource{uni.bib}
\begin{document}
\title{Efterkrigstid og Albert Camus}
\author{Rasmus Enevoldsen}
\maketitle
\section{Introdution}
\parencite{Camus42}
\blindtext
\parencite{Seeberg62}
\printbibliography
\end{document}
And my .bib file
@articel{Camus42,
author = "Albert Camus",
title = "Le Mythe de Sisyphe. (Fransk) [Sisyfos-myten]",
year = "1942"
}
@incollection{Seeberg62,
author = "Seeberg, Peter",
title = "Hjulet",
booktitle = "eftersøgningen og andre noveller",
isbn = "9788702234862",
year = "1962"
}
\printbibliographyit is because you are usingbibtex, while your backend should bebiber. The first line of the log snippet you posted says that "This is BibTeX". So please compile with the correct program. – Niranjan Dec 09 '21 at 13:55articelinstead ofarticle. 2) Using an old syntax i.e.article = "<name>". You might want to adopt the new syntaxarticle={<name>}. – Niranjan Dec 09 '21 at 13:57