私は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 は物理学ではかなり一般的なので、これを修正するかもしれません (設定は、私が作成した化学スタイルから継承されており、そのようなものは非常にまれです)。