类似于“jneurosci”但没有期刊字段斜体的参考书目样式是什么

类似于“jneurosci”但没有期刊字段斜体的参考书目样式是什么

我一直在努力按照 ERE 期刊给出的以下样式编写我的参考文献列表:

Smith J, Jones M Jr, Houghton L 等 (1999) 健康保险的未来。N Engl J Med 965:325–329

我用过\bibliographystyle{jneurosci},看起来非常相似!但它出现了一些斜体,如下图所示

在此处输入图片描述

为了获得我想要的作者年份引用,我是否应该使用其他风格或者学习以某种方式手动完成?

答案1

我推断“ERE”是“环境与资源经济学”的缩写。该期刊的网站提供了一个模板链接,建议使用以下三种参考书目样式之一:spbasicspmpscispphys。所有这三种参考书目样式都可以从 Springer Verlag 的各个网站下载。

使用spbasic参考书目样式和natbib引文管理包会产生以下效果,这确实看起来像您所追求的。

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@article{schaefer:54,
    author  = "Schaefer, Milner B.",
    year    = 1954,
    title   = "Some aspects of the dynamics of populations 
               important to the management of the commercial 
               marine fisheries",
    journal = "Inter-American Tropical Tuna Commission Bulletin",
    volume  = 1,
    number  = 2,
    pages   = "23-56",
} 
\end{filecontents}

\documentclass{article}
\usepackage{natbib}
%ftp://ftp.springer.de/pub/tex/latex/svmultt1/styles/spbasic.bst
\bibliographystyle{spbasic} 

\begin{document}
\cite{schaefer:54}
\bibliography{mybib}
\end{document}

相关内容