我正在寻找一种 biblatex 样式,它将根据方案创建参考书目样式:
名字的首字母、姓氏、书名、出版地、出版年份。
答案1
您可以通过以下修改来实现结果:
- 使用选项
firstinits=true
:仅使用 forname 的首字母 将名称的格式声明为 order
first-last
。顺序在名称列表格式中指定sortname
。要更改此设置,您可以使用:\DeclareNameAlias{sortname}{first-last}
完整的 MWE 为:
\documentclass{article}
\usepackage[style=authortitle,firstinits=true]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Text \cite{companion}
\DeclareNameAlias{sortname}{first-last}
\printbibliography
\end{document}