我正在使用natbib
帶有利茲哈佛風格的自定義引用風格的包,從下載這裡。
然而,這種風格並不能完全滿足我的需要。使用此樣式的參考範例如下所示:
本質上,我需要三件事:
- 去掉出版年份周圍的括號,
- 在標題和期刊名稱後面加上點,
- 新增“頁”。就在頁碼之前。
我怎樣才能實現這個目標?是否有類似這樣的不同引用樣式?或者我必須將所有參考文獻複製到 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}
乾杯!