答案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
宏,以显示输出的差异。
结果:
还请注意,这与网站上的标点符号和作者姓名的格式略有不同,但这是另一个问题。