Changing the colour of \textbullet in LaTeX Beamer

后端 未结 2 1497
暗喜
暗喜 2021-02-05 06:34

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

相关标签:
2条回答
  • 2021-02-05 07:38

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

    \setbeamercolor*{item}{fg=red}
    

    instead.

    0 讨论(0)
  • 2021-02-05 07:41

    ... 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}
    
    0 讨论(0)
提交回复
热议问题