[Tex/LaTex] How to cite an article from Arxiv using biblatex with bibstyle=phys

arxivbiblatex

I like to cite an article which is on arXiv like so

\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}

This will produce a rather useless output with just stating the names and the year. Is there a way to print some arXiv related info to the library?

Best Answer

The current settings in the phys style turn off printing of DOIs, eprints and so on by default, so you need to set eprint=true when loading the style. I might revise that for eprints as they are rather common in physics (the settings are inherited from the chemistry styles I've created, where such things are much rarer).