biblatex
我用它crossref
来缩短我的.bib
文件,正如在这个 MWE 中看到的那样
\documentclass{article}
\usepackage{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@periodical{DebatMem2002,
title = {Le Débat},
number = {122},
langid = {french},
date = {2002}
}
@article{ChartiersurRicoeur2002,
author = {Roger Chartier},
title = {Le passé au présent},
crossref = {DebatMem2002},
pages = {4--11}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{ChartiersurRicoeur2002}
\printbibliography
\end{document}
我应该使用哪些键来实现 ConTeXt 下的相同功能。我在 Hans Hagen 和 Alan Braslau 手册“参考书目。ConTeXt 方式”中找到了xcrossref
这些percentcrossref
键,但不知道如何使用它们。这是我的 ConTeXt MWE 作为起点
\language [fr]
\startbuffer [bib]
@periodical{DebatMem2002,
title = {Le Débat},
number = {122},
langid = {french},
date = {2002}
}
@article{ChartiersurRicoeur2002,
author = {Roger Chartier},
title = {Le passé au présent},
xcrossref = {DebatMem2002}, %does not work the way I would expect
pages = {4--11}
}
\stopbuffer
\usebtxdataset[bib.buffer]
\usebtxdefinitions[apa]
\definebtxrendering [example][apa]
\starttext
\nocite[ChartiersurRicoeur2002]
\placelistofpublications
\stoptext