bibstyle=phys와 함께 biblatex를 사용하여 Arxiv의 기사를 인용하는 방법은 무엇입니까?

bibstyle=phys와 함께 biblatex를 사용하여 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 등의 인쇄를 끄므로 eprint=true스타일을 로드할 때 설정해야 합니다. eprint는 물리학에서 흔히 볼 수 있으므로 이를 수정할 수도 있습니다(설정은 제가 만든 화학 스타일에서 상속되며 그러한 경우는 훨씬 드뭅니다).

관련 정보