如何改变bibitems的颜色?

如何改变bibitems的颜色?

我在演讲结束时展示了我的参考资料beamer

\documentclass[compress]{beamer}

\begin{document}
\frame{
     \begin{thebibliography}{1}\scriptsize
        \bibitem{Test} Test, Me, 2015.
     \end{thebibliography}
}

\end{document}

我想将每一\bibitem行的颜色改为其他颜色,例如黑色。我该怎么做才能不影响演示文稿的其余部分?我已经在 Google 上搜索了好几个小时,但还是找不到办法。我尝试了类似

\setbeamercolor{structure}{fg=black}

\setbeamercolor{bibliography item}{fg=black}

但第一个改变了我的整个调色板,而第二个没有任何作用。我错过了什么?

答案1

bibitem可以为authortitle和附加字段(如location或 )分别设置的颜色note

\documentclass{beamer}

\setbeamercolor{bibliography entry author}{fg=red}
\setbeamercolor{bibliography entry title}{fg=blue} 
\setbeamercolor{bibliography entry location}{fg=green} 
\setbeamercolor{bibliography entry note}{fg=cyan}  

\begin{document}

    \begin{frame}{Example bibliography}
        \begin{thebibliography}{3}
            \bibitem[{Alpher} et~al.(1948) {Alpher}, {Bethe}, \& {Gamow}]{paper}
            Alpher, R. A., Bethe, H. \& Gamow, G. 
            \newblock{The Origin of Chemical Elements}.
            \newblock{\emph{Phys. Rev.}, 73:\penalty0 803--804, Apr. 1948.}
            \newblock{doi: 10.1103/PhysRev.73.803}
        \end{thebibliography}
    \end{frame}

\end{document}

在此处输入图片描述

相关内容