使用 biblatex-chicago 从文内引用中删除名称

使用 biblatex-chicago 从文内引用中删除名称

我正在使用 biblatex-chicago 进行考试。我们将遵循芝加哥风格的引文版本,并附有脚注,并且仅在文本中使用上标数字。\textcite[test]但是,当我使用时,它会编译为

史密斯1

而不是我想要的,即:

1

这是我的 .tex 的简化版本:

\documentclass[a4paper,12pt]{article}

\usepackage{microtype}
\usepackage[backend=biber]{biblatex-chicago}
\addbibresource{exam.bib}
\usepackage[utf8]{inputenc}

\begin{document}

Statement of fact \textcite{test}

\end{document}

这是 .bib:

@book{test,
        author = "Smith, Jake",
        title = "The Book of Testification",
        year = "1997",
        publisher = "Books Publishing LLC",
        }

我该如何改变这种行为?

答案1

根据手册\textcite执行以下操作:

在正文中,他们将提供作者的姓名,后面紧接着是包含完整(或简短)参考的脚注或尾注,遵循通常的规则。

如果您只需要脚注,则应使用\footcite(或\autocite)。

\documentclass[a4paper,12pt]{article}

\usepackage{microtype}
\usepackage[backend=biber]{biblatex-chicago}
\addbibresource{exam.bib}
\usepackage[utf8]{inputenc}

\begin{document}

Statement of fact \autocite{test}

\end{document}

在此处输入图片描述

相关内容