BibTeX 同一第一作者、同一年份但多篇论文:引用为 a、b、c 等

BibTeX 同一第一作者、同一年份但多篇论文:引用为 a、b、c 等

我的问题和这个帖子中的问题完全一样。只不过我使用的是“bibtex”而不是“biblatex”。

biblatex 同一第一作者同一年份:引用为“a”、“b”等

有人知道解决办法吗?

答案1

您可以使用 natbib:

\documentclass{article}

\usepackage[round]{natbib}


\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{IngerEtAl2006a,
  title={Using daily ration models and stable isotope analysis to predict biomass depletion by herbivores},
  author={Inger, Richard and Ruxton, Graeme D and Newton, Jason and Colhoun, Kendrew and Mackie, Kerry and Robinson, James A and Bearhop, Stuart},
  journal={Journal of Applied Ecology},
  volume={43},
  number={5},
  pages={1022--1030},
  year={2006},
  publisher={Wiley Online Library},
  tag={}
}
@article{IngerEtAl2006b,
  title={Prey choice affects the trade-off balance between predation and starvation in an avian herbivore},
  author={Inger, Richard and Bearhop, Stuart and Robinson, James A and Ruxton, Graeme},
  journal={Animal Behaviour},
  volume={71},
  number={7},
 pages={1335--1341},
  year={2006},
  publisher={Elsevier}
}
@article{IngerEtAl2006c,
  title={Temporal and intrapopulation variation in prey choice of wintering geese determined by stable isotope analysis},
  author={Inger, Richard and Ruxton, Graeme D and Newton, Jason and Colhoun, Kendrew and Robinson, James A and Jackson, Andrew L and Bearhop, Stuart},
  journal={Journal of Animal Ecology},
  volume={75},
  number={5},
  pages={1190--1200},
  year={2006},
  publisher={Wiley Online Library}
}
\end{filecontents}
\begin{document}

\citet{IngerEtAl2006a}, \citet{IngerEtAl2006b}, \citet{IngerEtAl2006c}

\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}

在此处输入图片描述

相关内容