我使用 latex 完成所有作业,之前曾单独编写过参考书目。我最近开始将 endnote 转换为 bibtex,但在获取正确的参考书目时遇到了问题,尽管文中引用是正确的。
这是我的~相关~序言。
\documentclass[12pt, a4paper]{article}
% begin preamble
\usepackage[utf8x]{inputenc}
\usepackage{setspace}
\usepackage{cite} %bibtex
\usepackage{natbib}
以下是我引用的正确示例
\subsubsection*{Introduction}
In the article `Seafaring as social action' by Helen Farr \citep{RN123}, the author argues exactly as the title describes; seafaring is a social act and therefore should be studied as one...
在文档的最后我有这个
%references list
\pagebreak
\bibliography{exam}
\bibliographystyle{dcu}
这就是我的文档的结果。我的问题是以这个引文为例的 - Robb and Farr 2005,我在其中引用了一本书的一章。
它以“书籍部分”的形式出现,但根据哈佛风格的引用,它应该具有以下格式。
Farr, Helen 和 John Robb。2005 年。《地中海史前考古学》。载于 Emma Blake 和 Arthur Bernard Knapp 编,《地中海史前考古学》(Blackwell Pub.:马萨诸塞州马尔登)。
我尝试过芝加哥和其他引用风格,但都无法解决问题。
以下是我的.bib
文件。
@inbook{RN139,
author = {Farr, Helen and Robb, John},
booktitle = {The Archaeology of Mediterranean Prehistory},
editor = {Blake, Emma and Knapp, Arthur Bernard},
publisher = {Blackwell Pub.},
address = {Malden, MA},
chapter = {Substances in Motion: Neolithic Mediterranean "Trade"},
pages = {24-46},
year = {2005},
type = {Book Section}
}
我需要它来正确显示书籍的编辑并将他们与书籍章节的作者区分开。
答案1
使用了 @incollection 而不是 @inbook。不幸的是,endnote 将此作为标准,所以我不得不进入 .bib 并手动进行更改。
或者,您可以使用 Endnote 中的书籍部分。谢谢!