연도를 나타내는 숫자가 없는 biblatex
인용 스타일이 있습니까 ?alphabetic
즉, 1978년에 쓰여진 'Bach'와 'Schulz'의 책은 [BS79]가 아닌 [BS]라는 라벨을 받아야 합니다.
\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}
답변1
alphabetic
다음을 사용하여 스타일 의 라벨 모양을 구성할 수 있습니다 \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}
귀하의 경우에는 연도 숫자를 제거하려고 합니다. 기본적으로 에 해당하는 부분만 주석 처리했습니다 LabelalphaTemplate
.
결과: