Changing the colour of \textbullet in LaTeX Beamer

假装没事ソ 提交于 2019-12-03 11:14:55

问题


I don't want to use Beamer's standard blue colour theme. I want to use beaver, which is deep reds. Everything looks nice, except that if I use itemize the bullet points are still blue. Is there a nice way to have the bullets vary with what colour theme I was using? (If I were to opt for a yellowish colour theme, I'd expect the bullets to go yellow too.)

If there isn't, what is the brute force way to change the bullet points red? Or at the very least, make them go back to black again.


回答1:


... what is the brute force way to change the bullet points red? ...

This works for me:

\setbeamercolor{itemize item}{fg=red} % all frames will have red bullets

\begin{frame}

  \begin{itemize}
    \item First item.
    \item Second item.
    \item Third item.
    \item Fourth item.
  \end{itemize}

\end{frame}



回答2:


In the current (early 2012) version of beamer, you want to use:

\setbeamercolor*{item}{fg=red}

instead.



来源:https://stackoverflow.com/questions/2865581/changing-the-colour-of-textbullet-in-latex-beamer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!