如何将 natbib 引用显示为“第一作者等”?

如何将 natbib 引用显示为“第一作者等”?

我对使用 natbib 包生成的引文调用存在问题

我明白这一点 [Y. Kuwata, MT Wolf, D. Zarzhitsky 和 ​​TL Huntsberger, 2013]

我想 [Kuwata et al., 2013]

平均能量损失

\documentclass[11pt,a4paper,twoside]{report}
\usepackage[latin1]{inputenc}
\usepackage[left=3.5cm,right=3.5cm,top=3cm,bottom=4cm]{geometry}
\usepackage[english]{babel}
\usepackage[square, authoryear]{natbib}
\bibliographystyle{chicago}

\begin{document}
I get this  \citep{VO}  
[Y. Kuwata, M. T. Wolf, D. Zarzhitsky and T. L. Huntsberger, 2013]

I would like [Kuwata et al., 2013]
%%%%%%%%%%% Bibliography%%%%%%%%%%%%%%%%
\addcontentsline{toc}{chapter}{References}
\bibliography{Sample} 

\end{document}

我的样本.bib

@article{VO,
    author =       "{Y. {Kuwata}, M. T. {Wolf}, D. {Zarzhitsky} and T. L. {Huntsberger}}",    
    title =        "{\emph{Safe Maritime Autonomous Navigation With COLREGS, Using Velocity Obstacles}}",
    journal =      {IEEE Journal of Oceanic Enginerring} ,
    volume =       {39},
    number =       {1},
    pages =        {110 - 119},
    year =         {2013},
    DOI =          {10.1109/JOE.2013.2254214}
}

我环顾四周,尝试了不同的东西,我发现(在这里)plainnat 改变chicago

是我全错了还是无法使用 natbib 来做到这一点?

我想保留包含所有名称、年份、标题、期刊、卷、编号、页码的参考书目。但在最后添加 DOI 作为超链接

答案1

根据您输入数据的方式,BibTeX 只会看到您的论文的一位作者,因为有一对不应该出现的括号。此外,不同的作者应该用关键字“and”分隔开。

这是正确的代码:

author = "Y. Kuwata and M. T. Wolf and D. Zarzhitsky and T. L. Huntsberger",

相关内容