在 LaTeX Beamer 中更改 \textbullet 的颜色

发布于 2024-09-02 20:23:50 字数 214 浏览 6 评论 0原文

我不想使用 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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

毅然前行 2024-09-09 20:23:50

在当前(2012 年初)版本的 Beamer 中,您需要使用:

\setbeamercolor*{item}{fg=red}

来代替。

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

\setbeamercolor*{item}{fg=red}

instead.

微凉徒眸意 2024-09-09 20:23:50

...将项目符号点更改为红色的强力方法是什么? ...

这对我有用:

\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}

... 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}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文