我应该如何编写 BibLaTeX 条目斯托基和卢卡斯(1989)? 我正在使用biblatex-chicago
并backend=biber
希望引用标注在文本中显示为“Stokey and Lucas (1989)”(因为这本书通常被引用),但我希望参考文献显示为
Stokey, Nancy L. 和 Robert E. Lucas 与 Edward C. Prescott 合著。1989 年。《经济动态中的递归方法》。马萨诸塞州剑桥:哈佛大学出版社。
更新: 下面是我目前拥有的一个最小可重复示例
\documentclass{article}
\usepackage[authordate,
backend=biber]{biblatex-chicago}
\begin{filecontents}[overwrite]{stokeylucas1989.bib}
@book{stokeylucas1989,
author={Stokey, Nancy L. and Lucas, Robert E.},
title={Recursive Methods in Economic Dynamics},
publisher={Harvard University Press},
location={Cambridge, Mass.},
date={1989},
}
\end{filecontents}
\addbibresource{stokeylucas1989.bib}
\begin{document}
\textcite{stokeylucas1989}
\printbibliography
\end{document}
因此,引用标注看起来正如我想要的那样,但我不知道从哪里开始在格式化的书目条目中添加“与 Edward C. Prescott 合作”。