\documentclass{article}
\usepackage[style=ext-authoryear, autocite=footnote]{biblatex}
\DeclareInnerCiteDelims{footcite}{\bibopenparen}{\bibcloseparen}
\addbibresource{biblatex-examples.bib}
\begin{document}
\null\vfill
Lorem \autocite{sigfridsson}.
Ipsum \textcite{sigfridsson} filler text.
Dolor.\footcite{sigfridsson}
Sit.\footcite[380-382]{sigfridsson}
Amet.\footcites[380-382]{sigfridsson}[24-27]{worman}
Lorem.\footnote{\textcite{sigfridsson}.}
Ipsum.\footnote{Filler text \autocite{sigfridsson}.}
\bibliographystyle{chicago}
\printbibliography
\end{document}
根据以上代码和图片,我如何打印芝加哥风格的书目,名称为“Reference”而不是“Bibliography”?上面的“\bibliographystyle{chicago}”代码不起作用。
答案1
你需要\printbibliography[title={References}]
。
但是,如果您想要芝加哥风格,那么最好使用biblatex-chicago
专为此目的设计的风格。