Behavior: Using biblatex's alphabetic style, I'm citing "Mr. Stark" and "Stack Exchange Inc.", both of 2010. In both cases I get [Sta10] as a reference symbol.
Problem: The reader cannot know whom I'm citing.
Desired behavior: I'd like different reference symbols, for instance [Sta10a] and [Sta10b]. (This actually works when it's the same author, but not when the authors are different.)
Any hints are highly appreciated. Thank you!
Example:
\documentclass{article}
\usepackage[style=alphabetic]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{same_but_different.bib}
@misc{A, author = {{Stack Exchange Inc.}}, year = {2010}}
@misc{B, author = {Starck, Erik}, year = {2010}}
}
\end{filecontents}
\bibliography{same_but_different}
\begin{document}
\emph{Stark} claims something \cite{A} to which \emph{Stack Exchange} cannot agree \cite{B}.
Unfortunately, they get the same citition symbol.
\printbibliography
\end{document}
Result:

biblatex,\bibliographyis deprecated, the use of\addbibresource(with the.bibfile extension) instead is recommended. See section 3.5.1 of thebiblatexdocumentation. – doncherry Jan 08 '12 at 12:04