Existe um estilo de citação biblatex
semelhante alphabetic
, mas sem os números que representam o ano?
Ou seja, um livro de 'Bach' e 'Schulz' escrito em 1978 deveria receber o rótulo [BS] e não [BS79].
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[style=alphabetic,maxnames=10]{biblatex}
\addbibresource{references.bib}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@book{key,
author = {Baur, S and Schmid, A},
year = {2001},
title = {Title},
publisher = {Publisher},
}
\end{filecontents}
\begin{document}
\nocite{*}
\printbibliography[heading=bibintoc]
\end{document}
Responder1
Você pode configurar a aparência da sua etiqueta nos alphabetic
estilos com \DeclareLabelalphaTemplate
:
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[style=alphabetic,maxnames=10]{biblatex}
\addbibresource{references.bib}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@book{key1,
author = {Baur, S and Schmid, A},
year = {2001},
title = {Title},
publisher = {Publisher},
}
@book{key2,
author = {Baur, S and Schmid, A},
year = {2001},
title = {Title},
publisher = {Publisher},
}
\end{filecontents}
\DeclareLabelalphaTemplate{
\labelelement{
\field[final]{shorthand}
\field{label}
\field[strwidth=3,strside=left,ifnames=1]{labelname}
\field[strwidth=1,strside=left]{labelname}
}
% \labelelement{ % this is removed from the default LabelalphaTemplate
% \field[strwidth=2,strside=right]{year}
% }
}
\DeclareFieldFormat{extraalpha}{#1}
\begin{document}
\nocite{*}
\printbibliography[heading=bibintoc]
\end{document}
No seu caso, como você deseja remover os dígitos do ano. Simplesmente comentei a parte correspondente no arquivo default LabelalphaTemplate
.
O resultado: