참고문헌의 첫 이니셜을 강제로 적용하되 "F"를 조정합니다. "페데스"에게. 한 번만 참고하시겠어요?

참고문헌의 첫 이니셜을 강제로 적용하되 "F"를 조정합니다. "페데스"에게. 한 번만 참고하시겠어요?

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

이 특별한 약어 형식이 필요한 항목이 하나만 있는 것으로 보이므로 "무차별적인" 접근 방식, 즉 교체를 시도할 수 있습니다.

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}

관련 정보