我正在使用natbib
具有利兹哈佛风格的自定义引用样式的包,从以下位置下载这里。
但是,这种风格并不能完全满足我的需要。使用这种风格的引用示例如下:
本质上,我需要三样东西:
- 去掉出版年份的括号,
- 在标题和期刊名称后添加点,
- 在页码前添加“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}
干杯!