biblatex-dw 参考书目中的名字在前

biblatex-dw 参考书目中的名字在前

使用 *-dw 样式时,如何反转参考书目中 Name、Firstname 的顺序?xpatch 技巧只适用于内置样式和一些其他样式,不适用于 biblatex-dw 样式。

答案1

biblatex-dw适用于样式以及随附的标准样式的方法biblatex是声明

\DeclareNameAlias{sortname}{first-last}

在序言中。请参阅这个答案了解详情。

\documentclass{article}

\usepackage[style=footnote-dw]{biblatex}

\DeclareNameAlias{sortname}{first-last}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, Adam},
  year = {2001},
  title = {Alpha},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\nocite{*}

\begin{document}

\printbibliography

\end{document}

相关内容