[前言:我确信这个问题以前曾被提出过,但我找不到如下所述的简化示例。我确实找到了其他帖子,但涉及更复杂的格式……]
我发现,在多次引用后,作者被省略了。我似乎在芝加哥风格中特别遇到了这个问题。换句话说,替代风格(即authoryear
只有biblatex
)不会产生这个问题。MWE 如下,
\documentclass{article}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Book{book,
author = {Author},
title = {Booktitle},
subtitle = {Booksubtitle},
publisher = {Publisher},
location = {Location},
date = {1995},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
First time \parencite[c.f.][38]{book}. Second time \parencite{book}.
\printbibliography
\end{document}
输出为,
第一次(参见作者 1995, 38)。第二次()。
虽然期望的结果显然是,
第一次(参见作者 1995, 38)。第二次(作者 1995)。
使用该命令时也会出现此结果\autocite
。
如果您有任何想法或者对其他可以找到答案的帖子的引用,我们将不胜感激!
答案1
禁用biblatex-chicago
同上特征:
\usepackage[authordate,noibid,backend=biber]{biblatex-chicago}