当我尝试编译我的文档(参见下面的 MWE)时,它不使用数字样式,并且在 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)
我也有点困惑,因为即使我使用 BibLaTeX,它也会告诉我一些有关 BibTeX 的信息?
梅威瑟:
\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 文件:
%% 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}}
对于 BibDesk,我关闭了该程序,下载了 BibLaTeX 文件并按说明保存这里在“BibLateX 类型和字段”下(尽管程序的 GUI 中没有字段发生改变)。
答案1
当 biber 日志像这样停止时,通常表示缓存有故障。运行
biber --cache
在终端上获取位置,删除缓存,然后重试。然后 biber 将重新解压。–