Classictext:删除古文献引文中的逗号

Classictext:删除古文献引文中的逗号

我想引用一些古代资料,但我不知道如何删除作者/文本名称与以下章节编号之间的逗号。实际上,我得到的是:PALL. V. CHRYS., 1, 1–5 (SC 341, 100–102 Malingrey/Leclercq)。但是,我想删除“CHRYS.”和“1”之间的逗号。因此,应该是:PALL. V. CHRYS. 1, 1–5 (SC 341, 100–102 Malingrey/Leclercq)。有人能帮我吗?

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
  @book{Pall.SC,
    title = {Palladios. Dialogue sur la vie de Jean Chrysostome. 1: Introduction, texte critique, traduction et notes; 2: Histoire du texte, index et appendices},
    editor = {Malingrey, Anne-Marie and Leclercq, Philippe},
    series = {SC},
    number = {341–342},
    volumes = {2},
    location = {Paris},
    keywords = {Vita},
    date = {1988},
  }
  @classictext{Pallad.Dial,
    author = {{Pall. v. Chrys.}},
    xref = {Pall.SC}
  }
\end{filecontents}

\usepackage[ngerman]{babel}
\usepackage[autostyle=true,german=quotes]{csquotes}
\usepackage[style=sbl,ibidtracker=false,idemtracker=false]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
  \autocite[Vgl.:][1, 1–5 (SC 341, 100–102 Malingrey/Leclercq)]{Pallad.Dial}
\end{document}

答案1

由于您的经典文本使用专用的条目类型classictext,我们可以在我们的定义中对此进行测试postnotdelim

\DeclareDelimFormat{postnotedelim}{%
  \ifentrytype{classictext}
    {\addspace}
    {\addcomma\space}%
}

另见:Pall. v. Chrys. 1, 1–5 (SC 341, 100–102 Malingrey/Leclercq)。

相关内容