扩展 biblatex-chicago 书目中的新编辑器类型

扩展 biblatex-chicago 书目中的新编辑器类型

考虑以下 MWE:

\documentclass{book}
\usepackage{polyglossia}
\setdefaultlanguage{english}
\usepackage{filecontents}
\usepackage[notes]{biblatex-chicago}

\begin{filecontents*}{\jobname.bib}
@book{bibkey,
   editor = {Jeremiah Bullfrog},
   editora = {Peter Rabbit},
   editoratype = {serieseditor},
   title = {Title of the Book},
   location = {Somewhere},
   publisher = {Babylon Press},
   year = {2001}}
\end{filecontents*}

\addbibresource{\jobname.bib}

\NewBibliographyString{cbyserieseditor}
\DefineBibliographyStrings{english}{
  cbyserieseditor = {series editor},
}

\begin{document}
  Typical line.\autocite[99]{bibkey}
  \printbibliography
\end{document}

已为系列编辑器创建了新的键和字符串组合,在引用中运行良好。然而,在参考书目中,键名称似乎被打印出来了:

参考书目中的编辑者类型不正确

我认为这是因为必须定义另一个参考书目字符串,但我不知道它应该是什么。

答案1

byserieseditor似乎有效:

\documentclass{book}
\usepackage{polyglossia}
\setdefaultlanguage{english}

\usepackage{filecontents}
\usepackage[notes]{biblatex-chicago}

\begin{filecontents*}{\jobname.bib}
@book{bibkey,
   editor = {Jeremiah Bullfrog},
   editora = {Peter Rabbit},
   editoratype = {serieseditor},
   title = {Title of the Book},
   location = {Somewhere},
   publisher = {Babylon Press},
   year = {2001}}
\end{filecontents*}

\addbibresource{\jobname.bib}

\NewBibliographyString{cbyserieseditor}
\NewBibliographyString{byserieseditor}
\DefineBibliographyStrings{english}{
  cbyserieseditor = {series editor},
  byserieseditor = {series editor}
}

\begin{document}
  Typical line.\autocite[99]{bibkey}
  \printbibliography
\end{document}

在此处输入图片描述

相关内容