如何使用 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、eprints等列印,因此需要eprint=true在載入樣式時進行設定。我可能會修改電子列印的設置,因為它們在物理學中相當常見(這些設置是從我創建的化學樣式繼承的,在化學樣式中此類事情要罕見得多)。

相關內容