答案1
我推断“ERE”是“环境与资源经济学”的缩写。该期刊的网站提供了一个模板链接,建议使用以下三种参考书目样式之一:spbasic
、spmpsci
或spphys
。所有这三种参考书目样式都可以从 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}