나는natbib
Leeds Harvard 스타일에 대한 사용자 정의 참조 스타일이 포함된 패키지를 사용하고 있습니다.여기.
그러나 이 스타일은 내가 원하는 것을 정확히 수행하지 않습니다. 이 스타일을 사용한 참조의 예는 다음과 같습니다.
기본적으로 세 가지가 필요합니다.
- 출판 연도 주변의 괄호를 없애고,
- 제목과 저널명 뒤에 점을 추가하세요.
- "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}
건배!