
나는 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"으로 표시됩니다. 쉼표가 없습니다. 어떻게 복원할 수 있나요?