我认为这是一个微不足道的问题,但我无法在其他地方找到答案。我正在使用一个文件通过 \input 包含其他文件。除了参考书目之外,一切都正常,参考书目不起作用,如果我使用 BibTeX 处理,则会出现以下内容:
这是 BibTeX,版本 0.99d(TeX Live 2021) 顶级辅助文件:main.aux 读取文件 main.aux 时,我没有找到 \citation 命令 读取文件 main.aux 时,我没有找到 \bibdata 命令 读取文件 main.aux 时,我没有找到 \bibstyle 命令(有 3 条错误消息)
有关 biblatex 的信息在序言文件中给出,它们在普通独立文件中工作。我应该如何通过这种方法打印参考书目?
MWE 如下:
设置文件
% !TeX encoding = UTF-8
% !TeX TS-program = xelatex
% !TeX spellcheck = de_DE
% !TeX root = Example.tex
% !BIB TS-program = biber
\documentclass[ngerman]{book}
\usepackage[no-math]{fontspec}
\usepackage{babel}
\usepackage[backend=biber,style=authortitle]{biblatex}
\addbibresource{bibliography.bib}
主要的
\input{setup}
\begin{document}
\input{Text}
\clearpage
\input{Biblio}
\end{document}
文本文件:
Hallo, \cite{Muller}
书目文件:
\printbibliography
bibliography.bib 文件的内容:
@book{Muller,
editor = {Müller, Gotfried},
title = {Example},
publisher = {Someone},
address = {Somewhere}
}