如何从 biblatex-chicago 包中调整作者标题引用中的缩写脚注?

如何从 biblatex-chicago 包中调整作者标题引用中的缩写脚注?

对于我为大学做的报告,我对如何引用有要求。对于第一次出现的参考文献,他们希望有以下脚注:

约翰·麦克莱尔,《艺术导论》(纽约:Book Press,2010 年),第 83 页。

对于下一次发生的情况,他们想要一个简短的脚注:

McLair,引言,83。(缩写名称、缩写标题、页数)

我尝试过但失败的乳胶代码示例:

\documentclass{article}
\usepackage[author-title]{biblatex-chicago}
\bibliography{ref}
\begin{document}

test first citation \autocite{Kunstenaarsportretten}\\
test second citation \autocite{Kunstenaarsportretten}

\printbibliography[title={Bronnenlijst}]
\end{document}

我在 pdf 的脚注中得到的结果是:

1. Lisa Smit 和 Nienke Bakker,《Kunstenaarsportretten [in nl]》(2020 年 2 月),45–151。

2. 斯密特和巴克。

虽然我想要的是:

2. Smit 和 Bakker,艺术,45-151。

我的参考资料文件是(ref.bib):

@BOOK{Kunstenaarsportretten,
  title    = "Kunstenaarsportretten",
  shorttitle = "Kunst",
  author   = "Smit, Lisa and Bakker, Nienke",
  month    =  feb,
  year     =  2020,
  language = "nl",
  pages = {45-151}
}

相关内容