有两个参考文献一作姓氏一样,年份一样,在reference中显示的是:
Wang…2018a
Wang…2018b
引用的时候想要这样的效果:(Wang et al. 2018a,b),同时保持引用的跳转效果,请问如何能做到呢,十分感谢。
先给个最小工作示例
\documentclass{article}
\usepackage[round]{natbib}
\bibliographystyle{abbrvnat}
\begin{document}
\citep{adams2003sobolevone,adams2003sobolevtwo}
\bibliography{ref}
\end{document}
bib
文件是
% Encoding: UTF-8
@Book{adams2003sobolevtwo,
author = {Adams, R. A. and Fournier, J. J. F. and Somebody},
publisher = {Academic Press},
title = {Sobolev Spaces Two},
year = {2003},
address = {New York},
isbn = {9780080541297},
series = {Pure and Applied Mathematics},
}
@Book{adams2003sobolevone,
author = {Adams, R. A. and Fournier, J. J. F. and Somebody},
publisher = {Academic Press},
title = {Sobolev Spaces One},
year = {2003},
address = {New York},
isbn = {9780080541297},
series = {Pure and Applied Mathematics},
}
@Comment{jabref-meta: databaseType:bibtex;}
结果