我如何用法语引用参考文献(作者姓名之间用“et”而不是“and”)?

我如何用法语引用参考文献(作者姓名之间用“et”而不是“and”)?

我目前正在撰写论文,我需要在作者姓名之间使用“et”而不是“and”来引用参考文献,例如:

Copin-montégut 和 Avril (1995)

答案1

\documentclass[a4paper,12pt]{article}
\usepackage[frenchb]{babel}
\usepackage{natbib}
\begin{filecontents}{mybib.bib}
@BOOK{foo,
  AUTHOR =       {J. Doe and F. Foo},
  address =      {Paris},
  TITLE =        {Comment gagner au loto ?},
  PUBLISHER =    {Seuil},
  YEAR =         {2015},
}
\end{filecontents}
\begin{document}
Voici ma citation : \citet{foo}.
\bibliographystyle{plainnat-fr}
\bibliography{mybib}
\end{document} 

似乎给出了预期的结果:

在此处输入图片描述

相关内容