如何在 natbib 中调整自定义 .bst 引用样式

如何在 natbib 中调整自定义 .bst 引用样式

我正在使用natbib具有利兹哈佛风格的自定义引用样式的包,从以下位置下载这里

但是,这种风格并不能完全满足我的需要。使用这种风格的引用示例如下: 在此处输入图片描述

然而,我需要的是: 在此处输入图片描述

本质上,我需要三样东西:

  1. 去掉出版年份的括号,
  2. 在标题和期刊名称后添加点,
  3. 在页码前添加“pp.”

我该如何实现这一点?是否有其他类似的引用样式?或者我必须将所有参考文献复制到 Word 中并手动调整,这意味着会丢失引文和参考文献之间的链接?

我使用的代码是:

@article{kearns2001significance,
  title={The significance of neighbourhood},
  author={Kearns, Ade and Parkinson, Michael},
  journal={Urban studies},
  volume={38},
  number={12},
  pages={2103--2110},
  year={2001},
  publisher={Sage Publications Sage UK: London, England}
}

\documentclass{report}
\usepackage{natbib}
\bibliographystyle{lsharvard.bst}

\begin{document}
\section{Example}
Some text that I'm citing \citep{kearns2001significance}.

\addcontentsline{toc}{chapter}{References}
\bibliography{references}
\end{document}

干杯!

相关内容