biblatex-sbl 的 mincrossrefs 的正确值

biblatex-sbl 的 mincrossrefs 的正确值

在 SBLH2 6.2.20 和 6.2.21 中,当引用多卷作品中的多卷时应该发生什么情况尚不清楚。mincrossrefs在 中默认为 2。biblatex-sbl但是,似乎并没有缩短多卷作品在各卷中的引用。因此,对于较长的多卷作品,各卷的引用显得很麻烦。我不确定是否应该这样,或者是否应该以类似于这个问题

以下是 MWE:

\documentclass[letterpaper,12pt]{book}
\usepackage{polyglossia}
\setmainlanguage[variant=us]{english}
\usepackage[english=american]{csquotes} 

\begin{filecontents}[overwrite]{customstyles.dbx}
  \DeclareDatamodelEntrytypes{tdict}
\end{filecontents}

\usepackage[style=sbl,citepages=omit,fullbibrefs=true,sblfootnotes=false,citereset=chapter]{biblatex}

\begin{filecontents}[overwrite]{temp.bib}
@mvbook{DSSC,
   editor = {James H. Charlesworth},
   title  = {The Dead Sea Scrolls},
   volumes = {40},
   subtitle = {Hebrew, Aramaic, and Greek Texts with English Translations},
   publisher = {J. C. B. Mohr (Paul Siebeck)},
   address = {T\"{u}bingen},
}

@book{DSSC:1,
   crossref = {DSSC},
   title = {Rule of the Community and Related Documents},
   editor = {James H. Charlesworth and F. M. Cross and J. Milgrom and E.
      Qimron and L. H. Schiffman and L. T. Stuckenbruck and R. E. Whitaker},
   volume = {1}, 
   date = {1994},
}

@book{DSSC:2,
   crossref = {DSSC},
   title = {Damascus Document, War Scroll, and Related Documents},
   editor = {James H. Charlesworth and J. M. Baumgarten and M. T. Davis and J.
      Duhaime and Y. Ofer and Henry W. Morisada Rietz and J. J. Roberts and D.
         Schwartz},
   volume = {2}, 
   date = {1995},
}

\end{filecontents}

\addbibresource{temp.bib}

\usepackage{xparse}

\begin{document}

\null\vfill
First vol.\footcite[5]{DSSC:1} Second vol.\footcite[10]{DSSC:2}

\clearpage
\printbibliography
\end{document}

在此处输入图片描述

在此处输入图片描述

如您所见,脚注和参考书目都有些繁琐。如果多卷作品本身就是参考书目中的条目,那么关于多卷作品的卷数、位置、年份等信息似乎没有必要。但 SBLHS2 似乎含糊不清,除非我遗漏了什么(我在博客中也找不到任何东西)。

相关内容