I'm creating a presentation with beamer and I've got a problem. I use these commands to generate my bibliography:
Code: Select all
\section{Bibliography}
\begin{frame}
\begin{thebibliography}{99}
\addcontentsline{toc}{chapter}{\numberline{}Bibliography}
\bibliographystyle{alpha}
\bibitem[Boulakia09]{Boul09} M. Boulakia, S. Cazeau, M. A. Fern\'andez, J.-F. Gerbeau, N. Zenzemi.
\emph{Mathematical Modeling of Electrocardiograms: A Numerical Study}. Annals of Biomedical Engineering, 2009.
\end{thebibliography}
\end{frame}
When I cite an article
Code: Select all
\cite{Boul09}
What do I have to do to obtain the "[Boulakia09]" also in the bibliography slide?
Thank you.