参考文献に最初のイニシャルを強制しますが、1 つの参照だけに対して「F.」を「Fdez.」に調整しますか?

参考文献に最初のイニシャルを強制しますが、1 つの参照だけに対して「F.」を「Fdez.」に調整しますか?

私は、Biblatex パッケージで最初のイニシャルを使用したい状況にあります。ただし、ある例では、「Fernandez」を「Fdez.」に短縮したいと考えています。

「メモ」フィールドのみを使用して手動で参照を作成できることはわかっていますが、おそらく私が知らないもっと簡単な方法があるのでしょうか?

MWE:

\documentclass{article}

\usepackage[backend=biber, giveninits=true]{biblatex}

\begin{filecontents}{ref.bib}
  @article{fernandez2016,
    author = {Fernandez Smith},
    title     = {Title},
    journal = {Journal},
    year      =  {2016},
    volume = {1},
    number = {1},
    pages   = {1--2}
  }
\end{filecontents}

\addbibresource{ref.bib}

\begin{document}
It was first stated by \textcite{fernandez2016} that \ldots

\printbibliography
\end{document}

答え1

この特別な省略形が必要なエントリは1つだけなので、「ブルートフォース」アプローチ、つまり置換を試すことができます。

author = {Fernandez Smith},

author = {{\relax Fdez} Smith},

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

\RequirePackage{filecontents}
\begin{filecontents}{ref.bib}
  @article{fernandez2016,
    author    = {{\relax Fdez} Smith},
    title     = {Title},
    journal   = {Journal},
    year      = {2016},
    volume    = {1},
    number    = {1},
    pages     = {1--2}
  }
\end{filecontents}

\documentclass{article}
\usepackage[backend=biber, giveninits=true]{biblatex}
\addbibresource{ref.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

関連情報