删除文内引用中的名字

删除文内引用中的名字

我正在尝试整理论文的引用和参考书目,并使其符合我所在大学的样式表(芝加哥风格的一个版本)。

Natbib 和 Biblatex 都有芝加哥风格,但我无法得到我想要的任何一种:在“文内”引用中只显示姓氏(除非有许多不同的作者具有相同的姓氏),然后在我的参考书目中显示全名。

以下是 MWE:

\documentclass[a4 paper,12pt]{report}
\usepackage{graphicx}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{times}

\usepackage[english]{babel}

\usepackage[
authordate,
backend=biber,
natbib,
maxbibnames=99,
]{biblatex-chicago}

\addbibresource{mybib.bib}

\usepackage{csquotes}

\begin{filecontents}{mybib.bib}
@BOOK{orton,
  title = {Survey of English Dialects},
  publisher = {Leeds: Arnold},
  year = {1962},
  author = {Orton, Harold},
  volume = {IV},
  date-added = {2014-04-20 12:50:04 +0000},
  date-modified = {2014-04-24 18:41:22 +0000}
}
\end{filecontents}


\begin{document}

This is a quote \citep{orton} .  And then the second quote by the same person     \citep{orton}

\printbibliography
\end{document}

如您所见,如果您尝试运行此程序,文内引用会提供全名,例如 (Orton, Harold 1962),而我只想提供 (Orton 1962)。参考书目看起来不错。

约翰

答案1

您的 MWE 给我这个作为文内引用:

这是一句引言 (Orton 1962)。然后是同一个人的第二句引言 (Orton 1962)

参考书目如下:

奥顿,哈罗德。1962 年。《英语方言调查》。第 IV 卷。利兹:阿诺德。

这正是你想要的,对吗?如果这个 MWE 给你错误的引用风格,你可能应该验证你是否运行了最新版本的 latex 及其组件(我如何更新我的 TeX 发行版?)。

如果 MWE 正常运行,则必须检查完整的 bib 文件和其他(更完整的)代码。问题可能出在其中一个文件中。

相关内容