Changing the colour of \\textbullet in LaTeX Beamer

依然范特西╮ 提交于 2019-12-03 01:33:40
Bart Kiers

... 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}
Clark

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

\setbeamercolor*{item}{fg=red}

instead.

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