Natbib にオックスフォードコンマを使用させる

Natbib にオックスフォードコンマを使用させる

複数の論文を引用するときに Natbib でオックスフォード コンマを使用する方法はありますか? を使用するときに自動書式設定/並べ替えを維持したいと思います\citet{}。 の動作に影響を与えないようにしたいです\citep{}

オックスフォードカンマの例

通常の参照を使用した同様の動作の例を見つけました:

しかし、Natbib には私が求めているものがありません。 これに新しいコマンドの作成が含まれる場合、\citetoxf{}大きな損失はありませんが、両方の解決策が可能かどうかを確認したいと思います。

MWE:

\begin{filecontents}{references.bib}
@book{author00,
title = {{A Title}},
publisher = {Alpha},
year = {2008},
editor = {Author, A},
address = {London}
}
@book{buthor00,
title = {{B Title}},
publisher = {Bravo},
year = {1990},
author = {Buthor, B},
address = {New York}
}
@book{cuthor00,
title = {{C Title}},
publisher = {Charlie},
year = {1960},
author = {Cuthor, C},
address = {Tokyo}
}
\end{filecontents}

\documentclass[11pt, a4paper, twoside]{extarticle}
\usepackage[margin=10pt,font=small,labelfont=bf,labelsep=endash,figurewithin=section,tablewithin=section]{caption}
\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=blue,anchorcolor=blue]{hyperref} % Colour links.
\usepackage{cleveref,lipsum}
\usepackage[numbers, sort&compress]{natbib} % Nice references.
\bibliographystyle{unsrtnat}
\begin{document}
\noindent
No Oxford comma: \citet{author00,buthor00,cuthor00}. \\
Oxford comma: \citet{author00,buthor00}, and \citet{cuthor00}. \\
Automatic sorting: \citet{cuthor00,buthor00,author00}.
\bibliography{references}
\end{document}

関連情報