biblatex:奇怪的输出

biblatex:奇怪的输出

我的 biblatex 给出了奇怪的输出:例如,它写的是“[Whi]”而不是 [“Whittle”]。

此外,我不想在序言中写参考书目,因为最终的作品包含数十处引用。

最小“工作”示例:

.tex 文件

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\usepackage{comment}

\usepackage[
   backend=biber,
   style=alphabetic,
   sorting=ynt
  ]{biblatex}
\addbibresource{references.bib}

\title{The definitive research}
\author{The Supreme Chemist}

\begin{document}

\maketitle

\cite{whittle}

\medskip

\printbibliography

\end{document}

.bib 文件

@misc{whittle,
    author = "Whittle",
    title  = "Processes and apparatus for extraction of 
              active substances and enriched extracts 
              from natural products."
}

在此处输入图片描述

相关内容