在 bibtex 中,很容易删除参考书目中的所有标签;例如,这里描述的 https://stackoverflow.com/a/3003759/6936361。
我找不到相当于
\makeatletter
\def\@biblabel#1{}
\makeatother
为 biblatex。
例如,如果我有以下代码:
\documentclass{scrartcl}
\usepackage[style=alphabetic]{biblatex}
\addbibresource{foo.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}