在作者年份样式中,如何使条目以作者:年份格式出现在脚注中?
答案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}