我试图引用一个法庭案件biblatex-chicago
,但该引用在脚注或参考文献中都没有正确显示。
梅威瑟:
\documentclass{article}
\usepackage[nopar]{lipsum} % for dummy text
\usepackage[american]{babel}
\usepackage[babel]{csquotes}
\usepackage[notes,natbib,isbn=false,backend=biber]{biblatex-chicago}
\begin{filecontents}{\jobname.bib}
@book{Saussure1995,
Author = {Ferdinand de Saussure},
Origyear = {1916},
Publisher = {Payot},
Title = {Cours de Linguistique G{\'e}n{\'e}rale},
Year = {1995}}
@book{Labov1972,
Address = {Philadelphia},
Author = {William Labov},
Publisher = {University of Pennsylvania Press},
Title = {Sociolinguistic Patterns},
Year = {1972}}
@jurisdiction{statevheckman,
title={State v. Heckman},
journaltitle={So},
issue={2D06-5653},
volume={993},
pages={1004},
date = {2007},
location ={Court of Appeal of Florida, Second District}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\lipsum[1]\autocite{Saussure1995}
\lipsum[2]\autocite{Labov1972}
\lipsum[3]\autocite{statevheckman}
\printbibliography
\end{document}
结果:
答案1
您的 MWE 确实为我正确地生成了脚注(也许您在某处有拼写错误)。
对于您的参考书目问题,默认情况下biblatex-chicago
不会将@jurisdiction
条目类型放入参考书目中。
来自手册:
法律注释=true
此选项可防止在参考书目或参考文献列表中打印法律引文,正如蓝皮书所建议的那样。您可以在文档的序言中将其更改为 false,但您应该知道,在参考书目中打印的参考文献将是长注释形式的克隆,因为蓝皮书不提供替代版本。
因此,从理论上讲,如果您希望所有@jurisdiction
条目都出现在您的参考书目中,那么您可以biblatex-chicago
像这样加载:
\usepackage[natbib,isbn=false,legalnotes=false]{biblatex-chicago}
实际上,由于(我认为)中的一个错误,这不起作用biblatex-chicago
。
因此,你可以做以下两件事之一:
- 您可以将想要出现在参考书目中的
options={skipbib=false}
每个条目添加到其中,或者@jurisdiction
要将所有合法条目放入参考书目,请在加载后添加此行
biblatex-chicago
:\ExecuteBibliographyOptions[jurisdiction,legal,legislation]{skipbib=false}