在 BibTeX 中引用集合中的多位作者

在 BibTeX 中引用集合中的多位作者

我试图使用 BibTeX 引用同一本书的两个章节(每个章节由不同的作者撰写)。我知道我可以使用@incolllection@inbook来做到这一点,但我想我必须为这两个条目输入集合的详细信息。我希望在参考书目中有三个单独的条目,大致如下:

作者 1。20XX。“章节标题”见编辑(20XX)。
作者 2。20XX。“其他章节标题”见编辑(20XX)。
编辑。20XX。收藏标题

我尝试做的是创建三个 BibTeX 条目:

  @book{editor20xx,
     title = {Collection Title},
     editor = {Editors},
     year = {20xx},
  }

  @incollection{author1,
     title = {Chapter title},
     author = {Author 1},
     editor = {Editors},
  }

  @incollection{author2,
     title = {Chapter title},
     author = {Author 2},
     editor = {Editors},
  }

但是,当我这样做时,我在作者条目上看到了类似这样的内容(参见弗里德曼的条目):

我记得看到过一篇关于如何为集合添加条目然后在单独的章节条目中引用它的帖子,但我永远记不清在哪里了。

希望你们能帮忙。谢谢!

答案1

从您选择的标签来看,我假设您确实使用了 BibLaTeX(我不确定这是否适用于普通的 BibTeX)。但是,如果我的猜测正确,那么使用该crossref字段应该可以解决问题:

@book{editor20xx,
title = {Collection Title},
editor = {Editors},
year = {20xx},
}
    
@incollection{author1,
title = {Chapter title},
author = {Author 1},
crossref = {editor20xx},
}
    
@incollection{author2,
title = {Chapter title},
author = {Author 2},
crossref = {editor20xx},
}

相关内容