Biblatex は「省略された」1 文字の著者名の後ろにドットを付けません

Biblatex は「省略された」1 文字の著者名の後ろにドットを付けません

ここバックエンドとして使用すれば、ドット付きの著者名を 1 文字で正しく「省略」できると言われていますbiberが、私の MWE では、これが解決策になるようには思えません。何か見落としているのでしょうか? 私の .bib データベースは Mendeley によって作成されており、このような「1 文字の名前」のエントリが多すぎて手動で行うことができません。

(私は論文テンプレートを以下からダウンロードして使用しています。ここ

ここに画像の説明を入力してください

\documentclass[11pt, oneside]{Thesis} 

\usepackage[backend=biber,doi=false,url=false]{biblatex}
\addbibresource{database.bib}

\hypersetup{urlcolor=blue, colorlinks=true} % Colors hyperlinks in blue - change to black if annoying

\begin{filecontents*}{database.bib}
@article{Fujisawa:2015nla,
author         = "Fujisawa, K",
title          = "{Magnetised stars with differential rotation and a differential toroidal field}",
doi            = "10.1093/mnras/stv905",
year           = "2015",
eprint         = "1504.05961",
archivePrefix  = "arXiv",
primaryClass   = "astro-ph.HE"
}
\end{filecontents*}

\begin{document}
This reference has mixed fonts~\cite{Fujisawa:2015nla}.
\printbibliography
\end{document}

答え1

biblatexファーストネームとミドルネームは省略されません。

firstinits=true

オプション。

\begin{filecontents*}{\jobname.bib}
@article{Fujisawa:2015nla,
author         = "Fujisawa, K",
title          = "{Magnetised stars with differential rotation and a differential toroidal field}",
doi            = "10.1093/mnras/stv905",
year           = "2015",
eprint         = "1504.05961",
archivePrefix  = "arXiv",
primaryClass   = "astro-ph.HE"
}
\end{filecontents*}

\documentclass[11pt, oneside]{report}

\usepackage[backend=biber,doi=false,url=false,firstinits=true]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
This reference has mixed fonts~\cite{Fujisawa:2015nla}.
\printbibliography
\end{document}

ここに画像の説明を入力してください

関連情報