This is a MWE:
Code: Select all
\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}
Code: Select all
@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 = {}
}
The second citation should read "114, 116" but (at least on my system), it reads "114 116". The comma is missing. How can I restore it?