biblatex-sbl 和 Studia Patristica

biblatex-sbl 和 Studia Patristica

根据SBL 博客Studia Patristica 有特殊的引用格式。我在例子为了biblatex-sbl

Studia Patristica 的正确用法是什么entrytype?它应该article像期刊文章一样吗?如果能提供一个完整的示例(来自上述博客的示例也可以),我将不胜感激。

答案1

可以在文件的标题、作者姓名等中使用 LaTeX 宏.bib。在这种情况下,\textup{}可以使用 LaTeX 宏将卷名直立打印,而不是斜体打印。

梅威瑟:

\documentclass{article}
\usepackage[style=sbl]{biblatex}
\addbibresource{sblrefs.bib}
\begin{document}
See bibliography below \nocite{Husek,Tkacz}
\printbibliography
\end{document}

sblrefs.bib

@article{Husek,
    title = {Human Freedom according to the Earliest Latin Commentaries on Paul's Letters},
    author = {Hušek, Vít},
    journal = {\textup{StPatr}},
    volume = {44},
    pages = {385--390},
    year = {2010}
}

@article{Tkacz,
    title = {Esther as a Type of Christ and the Jewish Celebration of Purim},
    author = {Brown Tkacz, Catherine},
    journal = {StPatr},
    volume = {44},
    pages = {183--187},
    year = {2010}
}

请注意,只有一个条目具有\textup宏,以显示输出的差异。

结果:

在此处输入图片描述

还请注意,这与网站上的标点符号和作者姓名的格式略有不同,但这是另一个问题。

相关内容