本文介绍了在 LaTeX Beamer 中更改 extbullet 的颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不想使用 Beamer 的标准蓝色主题.我想使用深红色的 beaver.一切看起来都不错,除了如果我使用 itemize 项目符号点仍然是蓝色的.有没有一种很好的方法可以让子弹随着我使用的颜色主题而变化?(如果我选择淡黄色主题,我希望子弹也会变成黄色.)

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.

推荐答案

这对我有用:

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

egin{frame}

  egin{itemize}
    item First item.
    item Second item.
    item Third item.
    item Fourth item.
  end{itemize}

end{frame}

这篇关于在 LaTeX Beamer 中更改 extbullet 的颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 02:08