作者年份样式以及如何使条目在脚注中显示为作者:年份?

作者年份样式以及如何使条目在脚注中显示为作者:年份?

在作者年份样式中,如何使条目以作者:年份格式出现在脚注中?

答案1

nameyeardelim只需在适当的上下文中重新定义分隔符格式就足够了(footcite也可能smartcite

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=authoryear, autocite=footnote]{biblatex}

\DeclareDelimFormat[smartcite,footcite]{nameyeardelim}{\addcolon}

\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson}
ipsum \autocite{worman}
dolor \footcite{nussbaum}
sit \textcite{geer}

\printbibliography
\end{document}

Sigfridsson 和 Ryde:1998 年。

相关内容