When I try to compile my document (see MWE below) it doesn't use the numeric style and the following message is produced in the prompt of TeXstudio:
Prozess gestartet: biber "MWE_05"
INFO - This is Biber 2.16
INFO - Logfile is 'MWE_05.blg'
INFO - Reading 'MWE_05.bcf'
INFO - Found 1 citekeys in bib section 0
INFO - Processing section 0
INFO - Looking for bibtex format file '../../shared/Quellen/Test.bib' for section 0
INFO - LaTeX decoding ...
INFO - Found BibTeX data source '../../shared/Quellen/Test.bib'
Prozess endete mit Fehler(n)
I am a little puzzled too because it tells me something about BibTeX even though I use BibLaTeX?
MWE:
\documentclass{scrreprt}
\usepackage[%
backend=biber,
bibencoding=utf8,
style=numeric, % numeric
%citestyle=numeric,
sorting=none
]{biblatex}
\addbibresource{../../shared/Quellen/Test.bib}
\begin{document}
\cite{Test}
\printbibliography
\end{document}
.bib file:
%% This BibTeX bibliography file was created using BibDesk.
%% https://bibdesk.sourceforge.io/
%% Created for user at 2021-06-28 13:04:24 +0200
%% Saved with string encoding Unicode (UTF-8)
@book{Test,
author = {Autor Nachname},
date-added = {2021-06-28 13:03:30 +0200},
date-modified = {2021-06-28 13:04:05 +0200},
publisher = {Test Verlag},
title = {Test Titel},
year = {2021}}
for BibDesk I closed the program, downloaded the file for BibLaTeX and saved it as stated here under "BibLateX Types and Fields" (no fields in the program's GUI changed though).
biber --cacheon a terminal to get the location, delete the cache and then try again. biber will then unpack itself anew. – Ulrike Fischer Jun 28 '21 at 11:34biblatexis using is the same format asbibtexhas used like forever. You can see that it mentions a.bibfile. – daleif Jun 28 '21 at 11:40biber cacheand notbiber --cache. – Ulrike Fischer Jun 28 '21 at 11:58