书中不同作者章节的参考书目

书中不同作者章节的参考书目

我目前正在写一篇论文,其中需要引用一本书中的一章。

例如,我有一本书,由多位作者撰写,并有一个标题。在这本书中,不同的章节有不同的其他作者。例如,我有:

  • 書名:書名
  • 本书作者:Juan, D.、Dean, J. 和 Stark, T.
  • 章节标题:章节的标题
  • 本章作者:迪卡普里奥,L.
  • 页数:150-170

当然,还有一些出版商的东西之类的。

我的问题是:我应该如何用 LaTeX 编写此内容?我正在使用 BibLaTeX,并且以下书籍/文章参考资料给出:

@article{Xarticle,
author    = "",
title     = "",
journal   = "",
%volume   = "",
%number   = "",
%pages    = "",
year      = "XXXX",
%month    = "",
%note     = "",
}

@book{Xbook,
author    = "",
title     = "",
publisher = "",
%volume   = "",
%number   = "",
%series   = "",
%address  = "",
%edition  = "",
year      = "XXXX",
%month    = "",
%note     = "",
}

是的,我实际上需要 2 个标题和 2 个作者,至少在我脑子里是这样的。但我不知道该怎么做?

因此,任何帮助都将不胜感激。

提前致谢。

编辑:实际上,在我的一篇文章中,它说:“本章应被引用为”

Le Treut, H.、R. Somerville、U. Cubasch、Y. Ding、C. Mauritzen、A. Mokssit、T. Peterson 和 M. Prather,2007 年:气候变化的历史概述。在:气候变化 2007:物理科学基础。第一工作组对政府间气候变化专门委员会第四次评估报告的贡献 [Solomon, S.、D. Qin、M. Manning、Z. Chen、M. Marquis、KB Averyt、M. Tignor 和 HL Miller(编辑)]。剑桥大学出版社,英国剑桥和美国纽约州纽约。

因此,书中章节的主要作者是不同的作者。

这可以在 LaTeX 中完成吗?

答案1

这不是一个完美的匹配,但我认为最接近的是@incollection,根据维基百科

@incollection

  • 书中有自己标题的部分。

    • 必填字段:作者、标题、书名、出版商、年份。

    • 可选字段:编辑、卷/号、系列、类型、章节、页数、地址、版本、月份、注释。

唯一的问题是,总负责人的字段是editor(有时在参考书目中很明显,具体取决于样式),但是这种类型的书籍通常归入编辑名下。实际上,对于您的示例,这是完美的——“(Eds.)”如我所料地出现。

答案2

对 Chris H. 的回答的评论太长了

书籍章节应为BibTeX@inbook格式@incollection。通常,就像这里的情况一样,我们引用收藏品章节,是集合中的独立文本(尽管是书本形式)。Chris H. 说得对,这个条目应该属于这种@incollection类型。

(顺便说一句,这只对 BibTeX 有效,因为biblatex这里使用了非常不同的方法)

因此条目看起来应该是这样的:

@incollection{LeTreut-etal,
  author = {Le Treut, H. and
      R. Somerville and
      U. Cubasch and
      Y. Ding and
      C. Mauritze and
      A. Mokssit and
      T. Peterson and
      M. Prather},
  title = {2007: Historical Overview of Climate Change},
  booktitle = {Climate Change 2007: The Physical Science Basis. 
      Contribution of Working Group I to the Fourth Assessment Report 
      of the Intergovernmental Panel on Climate Change},
  editor = {Solomon, S. and
      D. Qin and
      M. Manning and
      Z. Chen and
      M. Marquis and
      K. B. Averyt and
      M. Tignor  and
      H.L. Miller},
  publisher = {Cambridge University Press},
  address = {Cambridge, United Kingdom and New York, NY, USA},
}

现在,您希望显示作者姓名的方式完全取决于风格文件。有关示例的视觉列表,请参阅BibTeX 样式示例

以下是具有风格的 MWE alpha

\documentclass{article}
\begin{filecontents}{\jobname.bib}
@incollection{LeTreut-etal,
  author = {Le Treut, H. and
      R. Somerville and
      U. Cubasch and
      Y. Ding and
      C. Mauritze and
      A. Mokssit and
      T. Peterson and
      M. Prather},
  title = {2007: Historical Overview of Climate Change},
  booktitle = {Climate Change 2007: The Physical Science Basis. 
      Contribution of Working Group I to the Fourth Assessment Report 
      of the Intergovernmental Panel on Climate Change},
  editor = {Solomon, S. and
      D. Qin and
      M. Manning and
      Z. Chen and
      M. Marquis and
      K. B. Averyt and
      M. Tignor  and
      H.L. Miller},
  publisher = {Cambridge University Press},
  address = {Cambridge, United Kingdom and New York, NY, USA},
}
\end{filecontents}
\begin{document}
\thispagestyle{empty}
\cite{LeTreut-etal}
\bibliographystyle{alpha}
\bibliography{\jobname.bib}
\end{document}

alpha 示例

相关内容