答案1
默认情况下,biblatex-chicago
修改行为设置以更接近 CMS 要求。如果您不想这样做,可以biblatex-chicago
使用该footmarkoff
选项加载。
这记录biblatex-chicago
有更多详细信息(第 60 页)
footmarkoff
虽然手动的(14.19) 建议对脚注(和尾注)标记进行特定格式设置,即文本中的上标和脚注或尾注中的内联格式,Charles Schaum 提醒我,并非所有出版商都遵循这种做法,即使要求使用芝加哥风格。我保留了这种格式作为默认设置,但如果您包含该footmarkoff
选项,biblatex-chicago-notes
则不会以任何方式更改 LaTeX(或endnote
软件包)的默认设置,您可以自由地遵循出版商的规范。我已将所有这些代码放在 中biblatex-chicago.sty
,因此如果您使用调用 来加载软件包biblatex
,那么脚注标记将再次恢复为 LaTeX 默认设置,但当然,您也会丢失相当多的其他格式。请参阅下面的第 4.5.1 节。
\documentclass[british,nobib]{tufte-handout}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, footmarkoff]{biblatex-chicago}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson}
\printbibliography
\end{document}