I use biblatex with citestyle=verbose inside beamer.
With this style, the name of the author is automatically colored, and also the title. That is a nice feature ... except if you cite your a work inside a title of a beamer block: you can't read anything, because it becomes, with for example the Darmstadt theme, blue on blue.
See my minimal example following:
\documentclass{beamer}
\usepackage{fontspec}
\usetheme{Darmstadt}
\usepackage[citestyle=verbose]{biblatex}
\addbibresource{biblio.bib}
\begin{filecontents}{biblio.bib}
@book{Augustin,
Author={Augustin},
Title={La cité de Dieu}
}
\end{filecontents}
\begin{document}
\begin{frame}
\begin{block}{\cite{Augustin}}
blabla
\end{block}
\end{frame}
\end{document}
Any idea to disable this feature of coloring ?
