如何引用 Z 编辑的 Y 所著书籍中 X 所著的章节

如何引用 Z 编辑的 Y 所著书籍中 X 所著的章节

我需要引用一本短篇小说集的引言。这本书的作者是短篇小说作家 (Y),但这是一本经过编辑的合集,因此有一位编辑 (Z)。引言是由学者 X 撰写的。因此,我希望我的输出看起来像这样:

X (2015). “引言”. 出处:Y:短篇小说。Z 编。伦敦:伦敦出版社,第 1-5 页。

有什么办法可以做到这一点?

答案1

您可以用它author来表示您所引用的特定章节的作者和bookauthor书籍的作者。
另一方面,biblatex还提供了一个introduction您可以设置的字段。但我想您会更喜欢第一种方法。

newtolatexBiblatexCiteChapExt

\begin{filecontents}{\jobname.bib}
    @inbook{intro,
        editor={Mickey Mouse},
        author={Donald Duck},
        bookauthor={Don Rosa},
        title={introduction to the book},
        booktitle={Comics of Don Rosa},
        date=1999,
        publisher={London Press},
        pages={1-5},
        introduction={Carl Barks},
    }
\end{filecontents}
\documentclass[english]{article}
\usepackage{babel}
\usepackage[style=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\cite{intro}
\printbibliography
\end{document}

相关内容