尝试使用芝加哥,但脚注仅显示关键词,而不是引文

尝试使用芝加哥,但脚注仅显示关键词,而不是引文

我一直尝试使用 Chicago 在 TeXstudio 中进行引用,但脚注除了关键字之外什么都给不了。

我安装了 MiKTex,希望它能够解决问题,但没有成功。

文本.tex

\documentclass{article}
\usepackage[notes,natbib,isbn=false,backend=biber]{biblatex-chicago}  
\begin{filecontents}{\jobname.bib}
@book{Saussure1995,
    Author = {Ferdinand de Saussure},
    Origyear = {1916},
    Publisher = {Payot},
    Title = {Cours de Linguistique G{\'e}n{\'e}rale},
    Year = {1995}}

@book{Labov1972,
    Address = {Philadelphia},
    Author = {William Labov},
    Publisher = {University of Pennsylvania Press},
    Title = {Sociolinguistic Patterns},
    Year = {1972}}

\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}


Testing\footcite{Saussure1995}

Testing the second citation\footcite{Labov1972}


\end{document}

这是我的脚注的输出:

  1. 索绪尔1995
  2. Labov1972

知道为什么它不起作用吗?安装 MiKTex 后,命令或构建配置中是否有我应该更改的内容?

相关内容