So it seems that I'm doing something wring with Biblatex.
I'm using Texstudio. I set Biber to my default bib programm in the settings and also
selected the biber.exe in the command tab in the settings.
However when I'm trying to cite anything the bibliography does not appear.
here is a snippet of my code
Code: Select all
\usepackage[backend=biber,citestyle=numeric,bibstyle=numeric,maxnames=10,sorting=none]{biblatex}
\bibliography{literatur}
...
\begin{document}
\cite{Blum2018}
...
\newpage
\addcontentsline{toc}{section}{Literatur}
\printbibliography
\end{document}
Code: Select all
% Encoding: UTF-8
@Article{Blum2018,
author = {Jürgen Blum},
title = {Dust Evolution in Protoplanetary Discs and the Formation of Planetesimals},
journal = {Space Science Reviews},
year = {2018},
volume = {214},
number = {2},
month = {feb},
doi = {10.1007/s11214-018-0486-5},
publisher = {Springer Nature},
}
@Article{Birnstiel2016,
author = {T. Birnstiel and M. Fang and A. Johansen},
title = {Dust Evolution and the Formation of Planetesimals},
journal = {Space Science Reviews},
year = {2016},
volume = {205},
number = {1-4},
month = {may},
pages = {41--75},
doi = {10.1007/s11214-016-0256-1},
publisher = {Springer Nature},
}
@MastersThesis{,
author = {Maya Krause},
title = {Untersuchung von Brownscher Bewegung und resultierender Staubagglomeration in einem Mikrogravitationsexperiment},
year = {2003},
month = may,
school = {Universität Jena},
}
@Comment{jabref-meta: databaseType:biblatex;}
When I compile the code, the console output states no error, just:
Process started: pdflatex.exe -synctex=1 -interaction=nonstopmode "Bachelorarbeit".tex
Process ended normal
I can not find the solution by myself.
I really appreciate any help.