I have this simple question, but I haven't found an answer to it yet:
Using beamer, how do I change the way citations appear on the slides?
In particular, I want the reference cited with the author name in red text.
So far, I am using
Code: Select all
\documentclass[t]{beamer}
\beamertemplatenavigationsymbolsempty
\begin{frame}[allowframebreaks]{References}
\begin{thebibliography}{99}
\bibitem[Herbst,Hofmann\,'04]{Herbst04}
U.~Herbst, R.~Hofmann,
\newblock Asymptotic freedom and compositeness
\newblock [hep-th/0411214].
\end{frame}
Code: Select all
\bibitem[{\usebeamercolor[fg]{alerted text} Herbst,Hofmann 04}]{Herbst04}
Code: Select all
\setbeamercolor{bibliography entry author}{fg=red}
Thanks for your help!