Consider the following bibliography example using alphabetic style, maxalphanames = 1 and deactivated + in case of multiple authors:
How can achieve a complete 4-digit year in the label? So in this case the desired output would be: Baa1989
I found a source explaining how to define a complete custom label. But I have a hard time believing that there is no simpler more generic switch to switch. Couldn't find any in the manual.
I'm looking for a solution for biblatex + biber.
Thank you.
MWE
\begin{filecontents}{references.bib}
@InProceedings{Baader1989,
Title = {Direct self control of inverter-fed induction machine, a basis for speed control without speed-measurement},
Author = {Baader, U. and Depenbrock, M. and Gierse, Georg},
Booktitle = {Industry Applications Society Annual Meeting, 1989., Conference Record of the 1989 IEEE},
Year = {1989},
Month = {Oct},
Pages = {486-492 vol.1},
}
\end{filecontents}
\documentclass{article}
\usepackage[style=alphabetic,%
backend=biber,
maxnames=99,
maxalphanames=1,
backref=true,
doi=false,isbn=false,url=false,
backref=false,
]{biblatex}
\renewcommand*{\labelalphaothers}{}
\bibliography{references.bib}
\begin{document}
Citation: \cite{Baader1989}
\printbibliography
\end{document}

\DeclareLabelalphaTemplate{ \labelelement{ \field[final]{shorthand} \field{label} \field[strwidth=3,strside=left,ifnames=1,pcompound=true]{labelname} \field[strwidth=1,strside=left,pcompound=true]{labelname} } \labelelement{ \field{year} } }(line breaks not to scale). – moewe Jan 28 '16 at 08:24