如何查看 latex 参考文献中的“et al”

如何查看 latex 参考文献中的“et al”

你好

我使用这个来源查看了书目

\usepackage{harvard}
.....
\bibliographystyle{dcu}
\bibliography{These}

我搜索如何将引用视为“(Schilit et al, 1994)。我使用了这个声明:

@article{Abc_2001,
    Author = {Anind K. Dey and Gregory D. Abowd and Salber Daniel},
    Title = {A Conceptual Framework and a Toolkit for Supporting the Rapid Prototyping of Context-aware Applications},
    Journal = {Hum.-Comput. Interact.},
    Volume = {16},
    Number = {2},
    Year = {2001},
    Pages = {97--166},
}



@article{Dey_2001,
    Author = {Bill Schilit and Norman Adams and Roy Want},
    Title = {Context-Aware Computing Applications},
    Booktitle = {Proceedings of the 1994 First Workshop on Mobile Computing Systems and Applications},
    Year = {1994},
    Pages = {85--90},
    Numpages = {6},
    Publisher = {IEEE Computer Society},
    Address = {Washington, DC, USA},
}

`

但结果是:

我搜索如何将所有参考文献视为第二个(见图)。

谢谢

答案1

只需在序言中添加命令\citationmode{abbr}

这是一个 MWE:

\documentclass[10pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\usepackage{harvard}
\citationmode{abbr}
\begin{document}
\cite{Abc_2001} and \cite{Dey_2001} ....
.....
\bibliographystyle{dcu}
\bibliography{These}
\end{document}

@article{Abc_2001,
    Author = {Anind K. Dey and Gregory D. Abowd and Salber Daniel},
    Title = {A Conceptual Framework and a Toolkit for Supporting the Rapid Prototyping of Context-aware Applications},
    Journal = {Hum.-Comput. Interact.},
    Volume = {16},
    Number = {2},
    Year = {2001},
    Pages = {97--166},
}



@article{Dey_2001,
    Author = {Bill Schilit and Norman Adams and Roy Want},
    Title = {Context-Aware Computing Applications},
    Booktitle = {Proceedings of the 1994 First Workshop on Mobile Computing Systems and Applications},
    Year = {1994},
    Pages = {85--90},
    Numpages = {6},
    Publisher = {IEEE Computer Society},
    Address = {Washington, DC, USA},
}

并给出: 在此处输入图片描述

相关内容