인용문의 저자 이름에서 공백 제거

인용문의 저자 이름에서 공백 제거

최소한의 작업 예제를 고려하십시오(여기):

\documentclass{book}
\usepackage{filecontents}
\begin{filecontents}{chapterref.dbx}
\DeclareDatamodelFields[type=field,datatype=literal]{
  shortdesc,
}
\DeclareDatamodelEntryfields{shortdesc}
\end{filecontents}

\usepackage[backref, refsegment=chapter, datamodel=chapterref, 
style=trad-alpha, % https://tex.stackexchange.com/a/69706/38244
minalphanames=3,maxalphanames=3 %https://github.com/moewew/biblatex-trad/issues/22
]{biblatex}
\usepackage[colorlinks]{hyperref}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author    = {Author, A. and Duthor, D.},
  year      = {2001},
  title     = {Alpha},
  shortdesc = {Conference1},
}


@misc{N02,
    author = {Nuthor, C.},
    title = {New title},
    year = {2001},
}

@misc{N03,
    author = {Nuthor, C},
    title = {More new title},
    year = {2000},
}

@misc{badum,
    author = {ba  Du  Tssh},
    title = {No new title},
    year = {2010},
}

\end{filecontents}

\addbibresource{\jobname.bib}


\begin{document}
  \chapter{First Chapter}
  Some more text \cite{A01}. More citation \cite{N02} and again \cite{N03}

    Here is Ba-dum-tssh \cite{badum}.

  \printbibliography
\end{document}

내가 해결할 수 없는 문제는 이미지에서 볼 수 있습니다.

기본적으로 저자 이름의 3글자와 연도 사이에는 추가 공백이 있습니다(아마도 저자 이름에 공백이 두 개 포함되어 있기 때문일까요?). 이렇게 불필요한 공간을 없애고 싶어요[bDu10].

관련 정보