使用 biblatex-chem 隐藏“参考”一词

使用 biblatex-chem 隐藏“参考”一词

我正在使用biblatex-chem列表列出小组会议感兴趣的论文:MWE 看起来像这样:

\documentclass[letterpaper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{cfr-lm}
\usepackage[backend=biber,style=chem-rsc,doi=true,articletitle=true,pageranges=true,maxnames=6,minnames=1]{biblatex}
\addbibresource{2013-8-GroupMeeting.bib}

\begin{document}
\nocite{*}
\printbibliography
\end{document}

我的 .bib 文件中的一个随机条目是:

@article{doi:10.1021/ja400917r,
author = {Rao, Y.-L. and Amarne, H. and Chen, L. D. and Brown, M. L. and Mosey, N. J. and Wang, S.},
title = {Photo- and Thermal-Induced Multistructural Transformation of 2-Phenylazolyl Chelate Boron Compounds},
journal = {JACS},
volume = {135},
number = {9},
pages = {3407--3410},
year = {2013},
doi = {10.1021/ja400917r},
URL = {http://pubs.acs.org/doi/abs/10.1021/ja400917r},
}

这给了我一个很好的引文列表,我可以通过电子邮件将其发送给所有人,但它以顶部的“参考文献”一词开头,这是不必要的,而且只是浪费空间。有什么办法可以隐藏它吗?

答案1

这是很常见的biblatex情况:您需要可选的控制参数\printbibliography。有一个内置设置可以抑制标题:

\printbibliography[heading = none]

相关内容