我偶然发现了一份使用会议名称(例如 CCS16)作为引用标签的文档。我尝试了biber
各种样式,但没有成功。有人知道这是如何实现的吗?
答案1
既然你提到了,biber
我想你正在使用biblatex
。如果是这种情况,你可以使用样式alphabetic
并指定shorthand
以匹配所需的输出:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{CSS16,
title={Something or other},
author={E. M. Redmiles},
year={2016},
shorthand={CSS16}
}
\end{filecontents}
\usepackage[backend=biber,style=alphabetic]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
Go check~\cite{CSS16}!
\printbibliography
\end{document}
(我首先建议使用label
字段,但正如 moewe 指出的那样,使用它更安全,shorthand
可以避免使用date
/year
字段时出现的问题)