在 biblatex-chicago 中始终使用简写

在 biblatex-chicago 中始终使用简写

我的出版商告诉我,如果我使用速记法来表示作品,那么我应该在每次引用时都使用它,包括第一次引用。(显然,完整的参考文献将出现在速记列表和参考书目中。)我见过的最接近这个问题的是这里,但 (详细) 的解决方案biblatex当然不适用于biblatex-chicago

梅威瑟:

\documentclass[12pt]{memoir}

\usepackage[notes,shorthandibid,backend=biber,addendum=false,sorting=nyt,giveninits=true,useprefix=false,shorthandfull]{biblatex-chicago}

\usepackage{filecontents}
\begin{filecontents*}{jobname.bib}
@book{lastname98,
author = {Firstname Lastname},
title = {A Book},
shorthand = {Book},
date = {1898},
address = {City},
}
\end{filecontents*}
\addbibresource{jobname.bib}

\begin{document}

\printshorthands

Have a sentence.\autocite{lastname98}

\printbibliography

\end{document}

答案1

这一个实际上是在手动的(第 137 页):

用户 laudecir 请求提供一种方式,即使在第一次引用给定作品时也能显示简写。shorthandfirst注释和参考书目样式中的新选项可以设置true为序言或单个条目,并且应该使此功能比命令更易于激活\shorthandcite

确实\usepackage[notes,shorthandibid,backend=biber,addendum=false,sorting=nyt,giveninits=true,useprefix=false,shorthandfull,shorthandfirst]{biblatex-chicago}结果是:在此处输入图片描述

相关内容