我正在使用 Biblatex(带有 biber 执行)进行引用。
我想设置引用样式,使得我给出的字母+数字组合在文本中可见,就像这样:
This is the text in latex with a citation [AB123]. Another citation to this could be [BCA124].
参考书目样式也应该显示相同的字母+数字组合:
[ABC123] Authorname, Title, etc...
[BCA124] Authorname2, Title2, etc...
由于排序不太容易通过这种方式进行,如果可以按照文件中的出现顺序对参考书目进行排序,那将是一个很好的额外功能.bib
。
我希望我的问题是清楚的,因为我真的无法用语言表达出来。
答案1
正如您在biblatex
此处标记的 biblatex 选项。排序是按字母顺序进行的,而不是按 bib 进行的。
\documentclass{article}
\begin{filecontents}{alphtest.bib}
@article{article1,
author={AuthorA},
title={title},
label = {ABC123}
}
@article{article2,
author={AuthorB},
title={title},
label = {BCA124}
}
\end{filecontents}
\usepackage[style=alphabetic]{biblatex}
\addbibresource{alphtest.bib}
\begin{document}
\cite{article2}, \cite{article1}
\printbibliography
\end{document}