如何获取带有 scrreprt 文档类的 J. Appl. Phys. 类参考书目?

如何获取带有 scrreprt 文档类的 J. Appl. Phys. 类参考书目?

可以使用带有 jap 选项和 aipnum4-1 书目样式的 revtex4-1 文档类生成 J. Appl. Phys. 类书目。但是如何使用 scrreprt 文档类获取 J. Appl. Phys. 类书目?

答案1

APS 类使用该natbib包,因此这应该可以工作:

\documentclass{scrreprt}
\usepackage[numbers]{natbib}
\usepackage{hyperref}
\usepackage{filecontents}

\begin{filecontents}{refs.bib}
  @ARTICLE{paper1,
    author = {{Gouzerh}, J. and {Stashkevich}, A.~A. and {Kovshikov}, N.~G. and 
      {Matyushev}, V.~V. and {Desvignes}, J.~M.},
    title = "{Reflection of magnetostatic waves from a laser-annealed grating in a garnet film}",
    journal = {Journal of Magnetism and Magnetic Materials},
    year = 1991,
    month = oct,
    volume = 101,
    pages = {189-190},
    doi = {10.1016/0304-8853(91)90723-N},
    adsurl = {http://adsabs.harvard.edu/abs/1991JMMM..101..189G},
    adsnote = {Provided by the SAO/NASA Astrophysics Data System}
  }
\end{filecontents}


\begin{document}

Something to cite~\cite{paper1}.

\bibliography{refs}
\bibliographystyle{aipnum4-1}

\end{document}

参考书目如下:

在此处输入图片描述

相关内容