bibtex 配置以匹配 Elsevier 的参考要求

bibtex 配置以匹配 Elsevier 的参考要求

我需要配置我的bibtex文件以匹配 Elsevier 的参考文献要求(寻找数字 10)。例如:

对于期刊

Griffiths, W. 和 G. Judge,1992,《当误差协方差矩阵未知时测试和估计位置向量》。《计量经济学杂志》54,121-138。

我的当前bibtex文件如下所示:

    @ARTICLE{Adrian2008,
  AUTHOR =       {Adrian, T., Rosenberg, J.,},
  TITLE =        {Stock Returns and Volatility: Pricing the Short-Run and Long-Run Components of Market Risk},
  JOURNAL =      {Journal of Finance},
  YEAR =         {2008},
  volume =       {63},
  pages =        {2997-3030}
}

在我的主文档中,我将我的bibtex文件引用为:

\begingroup
\let\itshape\upshape  %I use this to remove the italics. 

\bibliographystyle{plain}
\bibliography{lit3}

\endgroup

按照我上面的例子,它会生成以下参考格式:

T. Adrian 和 J. Rosenberg。股票收益和波动性:市场风险的短期和长期成分定价。《金融杂志》,63:2997-3030,2008 年。

我该如何更改我的bibtex文件以符合 Elsevier 的要求?

答案1

Elsevier 提供了一些参考书目样式;其中似乎符合建议的是elsarticle-harv

\documentclass[authoryear]{elsarticle}
\begin{document}

\cite{Adrian2008}

\bibliographystyle{elsarticle-harv}
\bibliography{plug4}

\end{document}

在此处输入图片描述

请注意,您的author字段是错误的,因为作者应该用 分隔and

@article{Adrian2008,
  author  = {Adrian, T. and Rosenberg, J.},
  journal = {Journal of Finance},
  pages   = {2997-3030},
  title   = {Stock Returns and Volatility: Pricing the Short-Run and Long-Run Components of Market Risk},
  volume  = {63},
  year    = {2008},
}

相关内容