我正在使用该@inbook
命令来组织书中的章节引用。这是我的一个 BibTeX 条目:
@INBOOK{Ghosal10,
author = {S. Ghosal},
editor = {N. L. Hjort and C. Holmes and P. M{\"u}ller and S. G. Walker},
chapter = {{The {D}irichlet process, related priors and posterior asymptotics}},
title = {Bayesian Nonparametrics},
pages = {35-79},
publisher = {Cambridge University Press},
year = {2010},
address = {Cambridge},
}
然而,这似乎不起作用,因为我在参考文献列表中得到的内容如下所示:
Ghosal, S. (2010)。贝叶斯非参数。NL Hjort、C. Holmes、P. Muller 和 SG Walker (Eds.) 著,(第 35-79 页)。剑桥:剑桥大学出版社。
我正在使用 apacite 书目样式。
有谁知道如何解决这一问题?
答案1
从文档中,我了解到chapter
应该包含章节编号。相反,您应该将其用作title
章节标题和booktitle
合集标题。
但是,使用该chapter
字段似乎不会产生不同的输出。
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@INCOLLECTION{Ghosal10,
author = {S. Ghosal},
editor = {N. L. Hjort and C. Holmes and P. M{\"u}ller and S. G. Walker},
title = {{The {D}irichlet process, related priors and posterior asymptotics}},
booktitle = {Bayesian Nonparametrics},
pages = {35-79},
publisher = {Cambridge University Press},
year = {2010},
address = {Cambridge},
}
\end{filecontents*}
\documentclass{article}
\usepackage{apacite}
\begin{document}
\cite{Ghosal10}
\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}