I get the following output using APA-Style citations of the same author and year:
Code: Select all
[Author 2011a] Author: ... 2011a.
[Author 2011b] Author: ... 2011b.
MWE:
Code: Select all
\documentclass[]{article}
\begin{document}
\title{Title}
\author{Author}
\date{Today}
\maketitle
Text\cite{1}
Text\cite{2}
\bibliography{Testbib}
\bibliographystyle{apalike}
\end{document}
Code: Select all
@book{1,
Author = {Author},
Title = {Test2},
Year = {2011}}
@book{2,
Author = {Author},
Title = {Test1},
Year = {2011}}