如何使用 biblatex 和 bibstyle=phys 引用 Arxiv 中的文章?

如何使用 biblatex 和 bibstyle=phys 引用 Arxiv 中的文章?

我喜欢引用 arXiv 上的一篇文章,就像这样

\documentclass{scrreprt}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{filecontents}
\begin{filecontents}{library.bib}
@article{Springer2016,
archivePrefix = {arXiv},
arxivId = {1602.02972},
author = {Springer, P. and Koch, S. W. and Kira, M.},
eprint = {1602.02972},
title = {{Excitonic terahertz absorption in semiconductors with effective-mass anisotropies}},
url = {http://arxiv.org/abs/1602.02972},
year = {2016}
}
\end{filecontents}
\usepackage[
    style=numeric-comp,
    bibstyle=phys,
    articletitle=false,
    biblabel=brackets,
    backend=biber
]{biblatex}
\addbibresource{library.bib}

\begin{document}

\cite{Springer2016}

\printbibliography

\end{document}

这将产生相当无用的输出,仅说明名称和年份。有没有办法将一些与 arXiv 相关的信息打印到图书馆?

答案1

样式中的当前设置phys默认关闭 DOI、电子版等的打印,因此您需要eprint=true在加载样式时进行设置。我可能会针对电子版修改该设置,因为它们在物理学中相当常见(这些设置继承自我创建的化学样式,而这类东西在化学样式中要少见得多)。

相关内容