自定义引用标签

自定义引用标签

我偶然发现了一份使用会议名称(例如 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字段时出现的问题)

相关内容