引用 biblatex-chicago 文章中发表的信件时出现问题

引用 biblatex-chicago 文章中发表的信件时出现问题

我在引用打印的 s 作为使用 的@letter一部分时遇到了麻烦。这是我的 MWE:@articlebiblatex-chicago

\documentclass[utf8,12pt,letterpaper]{report}

\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX}
\setmainfont{Linux Libertine O}

\begin{filecontents}{bibliography.bib}
@letter{Raux18101789Bertin,
author = {Raux, {Nicolas Joseph}},
title = {Nicolas Joseph Raux to Henri Bertin},
shorttitle = {to Bertin, 18 October 1789},
origlocation = {Peking},
origdate = {1789-10-18},
xref = {Cordier1913LesCorrespondants},
options = {skipbib=true}
}

@letter{Raux12111789Bertin,
author = {Raux, {Nicolas Joseph}},
title = {Nicolas Joseph Raux to Henri Bertin},
shorttitle = {to Bertin, 12 November 1789},
origlocation = {Peking},
origdate = {1789-11-12},
xref = {Cordier1913LesCorrespondants},
options = {skipbib=true}
}

@letter{Raux17111786Bertin,
author = {Raux, {Nicolas Joseph}},
title = {Nicolas Joseph Raux to Henri Bertin},
shorttitle = {to Bertin, 17 November 1786},
origlocation = {Peking},
origdate = {1786-11-17},
xref = {Cordier1913LesCorrespondants},
options = {skipbib=true}
}

@article{Cordier1913LesCorrespondants,
author = {Cordier, Henri},
journal = {T'oung Pao},
volume = {14},
number = {2},
pages = {227--257},
origdate = {1784/1790},
date = {1913},
addendum = {letters originally written 1784--1790},
title = {Les Correspondants de Bertin, Secrétaire d'état au \textsc{xviii}\textsuperscript{e} siècle}
}
\end{filecontents}

\usepackage[notes,strict,isbn=false,backend=biber,bibencoding=utf8]{biblatex-chicago}

\addbibresource{bibliography.bib}

\begin{document}

.\footcite{Raux18101789Bertin}

.\footcite{Raux12111789Bertin}

.\footcite{Raux17111786Bertin}

\printbibliography

\end{document}

产生的引文如下:

在此处输入图片描述

如您所见,第一个引用显示不正确。

还有一个次要的格式问题,因为biblatex-chicago似乎不喜欢letters在 中引用article(如果它这样做正确,我希望在每个 的第一个引用中看到期刊名称等letter,但事实并非如此)。虽然我也想找到解决这个次要问题的方法,但我的问题首先是,无论我把哪一个放在第一位, 似乎在我第一次引用时都xref不起作用。letter

我使用 进行编译xelatex

有任何想法吗?

谢谢!

相关内容