![OSCOLA BibLaTeX 註腳在精確點之前缺少逗號](https://rvso.com/image/298821/OSCOLA%20BibLaTeX%20%E8%A8%BB%E8%85%B3%E5%9C%A8%E7%B2%BE%E7%A2%BA%E9%BB%9E%E4%B9%8B%E5%89%8D%E7%BC%BA%E5%B0%91%E9%80%97%E8%99%9F%20.png)
我發現了 BibLaTeX 或 OSCOLA 風格中的錯誤。當在引用書籍章節後精確引用期刊文章(可能還有其他類型的來源)時,期刊文章的腳註並不總是用逗號將文章起始頁與精確頁分開。
這是一個 MWE:
\documentclass[12pt, a4paper]{book}
\usepackage[style=british]{csquotes}
\usepackage[style=oscola, citereset=chapter, ibidtracker=true,
backend=biber, babel=hyphen]{biblatex}
\addbibresource{test.bib}
\title{Test Document}
\begin{document}
This is a reference to a book chapter.\autocite[]{Chapter}
This is a reference to a journal article, which should have a comma before the second page reference.\autocite[116]{Article}
\end{document}
以及所需的參考書目文件:
@Incollection{Chapter,
author = {Author, Chapter},
title = {Book Chapter},
booktitle = {Edited Collection},
editor = {Editor,Book},
publisher = {Publisher},
address = {},
pages = {},
year = {2014},
edition = {},
}
@Article{Article,
author = {Author, Article},
title = {Journal Article},
journal = {Academic Journal},
volume = {30},
number = {1},
pages = {114},
year = {2014},
location = {}
}
第二個引用應該是“114, 116”,但是(至少在我的系統上),它是“114 116”。逗號不見了。我怎樣才能恢復它?