使用 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}

在此輸入影像描述

相關內容