删除由 \usepackage[style=authoryear]{biblatex}? 生成的作者(年份)后的句号

删除由 \usepackage[style=authoryear]{biblatex}? 生成的作者(年份)后的句号

我的围兜文件:

@book{tgt,
  title = {The Great Title},
  author = {Jane Doe},
  year = {2022},
  publisher = {Macmillan},
  address = {Paris},
}

我的 LaTeX 代码:

\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{foo.bib}
\begin{document}

A proof can be found at \textcite{tgt}.

\printbibliography
\end{document}

参考列表如下:

Doe,Jane(2022 年)。伟大的称号。巴黎:麦克米伦。

我怎样才能删除作者(年份)后的句点,以便参考列表看起来像这样:

多伊,简 (2022)伟大的称号。巴黎:麦克米伦。

答案1

相关标点符号由nametitledelim

\documentclass{article}
\usepackage[style=authoryear]{biblatex}

\DeclareDelimFormat[bib]{nametitledelim}{\addspace}

\addbibresource{biblatex-examples.bib}
\begin{document}
A proof can be found at \textcite{sigfridsson}.

\printbibliography
\end{document}

Sigfridsson, Emma 和 Ulf Ryde (1998) “从电势和电矩推导原子电荷的方法比较”

相关内容