最小限の動作例(ここ):
\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文字と年の間に余分なスペースがあります(著者名にスペースが2つ含まれている可能性があります)。次のように余分なスペースを取り除きたいです。[bDu10]。