该amsrefs
包的shortalphabetic
风格与 类似,alphabetic
但不那么冗长(例如,不包括年份)。有什么方法可以做到这一点吗biblatex
?
目前,我已经
\usepackage[style=alphabetic, backref=true, backend=biber, hyperref=true, giveninits=true]{biblatex}
对于 .bib 文件,我有
@article{ben-zvi_character_2009,
archivePrefix = {arXiv},
eprinttype = {arxiv},
eprint = {0904.1247},
primaryClass = {math},
date = {2009-04-07},
keywords = {Geometric Satake,Representation theory,Geometric reps,Trace},
author = {Ben-Zvi, David and Nadler, David}
}
@article{ben-zvi_integral_2010,
langid = {american},
title = {Integral Transforms and {{Drinfeld}} Centers in Derived Algebraic Geometry},
volume = {23},
issn = {0894-0347, 1088-6834},
doi = {10.1090/S0894-0347-10-00669-7},
number = {4},
journaltitle = {Journal of the American Mathematical Society},
shortjournal = {J. Amer. Math. Soc.},
date = {2010},
pages = {909-966},
keywords = {DAG,Trace},
author = {Ben-Zvi, David and Francis, John and Nadler, David}
}
参考书目如下
但如果amsrefs
使用shortalphabetic
选项
\usepackage[shortalphabetic]{amsrefs}
书目将成为
我喜欢第二种风格 ( ) 的主要原因amsrefs
是键(例如 [BZFN]、[BZN])不包含年份。如果能生成biblatex
[BFN] 和 [BN] 而不是 [BFN10] 和 [BN09],那就太好了。
谢谢!
答案1
如果这仅与字母标签有关,您将需要查看\DeclareLabelalphaTemplate
。以下采用 的样式的默认定义biblatex
并alphabetic
从年份中删除两位数字。
也可以看看biblatex
§4.5.5文档标签,第 198-206 页。
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=alphabetic, backref=true, backend=biber, giveninits=true]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareLabelalphaTemplate{
\labelelement{
\field[final]{shorthand}
\field{label}
\field[strwidth=3,strside=left,ifnames=1]{labelname}
\field[strwidth=1,strside=left]{labelname}
}
}
\begin{document}
\cite{sigfridsson,companion}
\printbibliography
\end{document}