如何引用多卷百科全书中的条目?

如何引用多卷百科全书中的条目?

如何引用该条目宗教在名为“宗教百科全书”的多卷百科全书的第 12 卷中?

此外,如果知道如何使用交叉引用技术来引用同一百科全书其他卷中的其他条目就更好了。

到目前为止我发现的所有说明都很难理解。

答案1

对于百科全书中的条目,类型@inreference就是您要查找的。您可以使用@mvreference包含该条目的百科全书,它们可以与 链接crossref

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=verbose-ibid, backend=biber, autocite=footnote]{biblatex}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@mvreference{eor,
  title     = {Encyclopedia of Religion},
  edition   = {2},
  volumes   = {15},
  date      = {2005},
  publisher = {Macmillan},
  location  = {Detroit},
  editor    = {Jones, Lindsay},
  options   = {useeditor=false},
}
@inreference{eor:religion,
  author     = {Winston L. King},
  title      = {Religion [first edition]},
  shorttitle = {Religion},
  volume     = {11},
  pages      = {7692-7701},
  crossref   = {eor},
}
\end{filecontents}

\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\DeclareFieldFormat[inreference]{citetitle}{\mkbibquote{#1\isdot}}
\DeclareFieldFormat[inreference]{title}{\mkbibquote{#1\isdot}}

\begin{document}
\autocite{eor:religion}
\printbibliography
\end{document}

在此处输入图片描述

相关内容