我正在使用 beamer
\usecolortheme{dolphin}
并且 itemize 中的所有项目指示符(例如项目符号、数字等)都是蓝色(这是海豚主题的主色调)。
更改项目指示器默认颜色的命令是什么?我希望它与文本颜色相同。
答案1
根据SO上的这篇文章:https://stackoverflow.com/questions/2865581/changing-the-colour-of-textbullet-in-latex-beamer
最好的解决办法是:
\setbeamercolor*{item}{fg=color}
还有一个,但利息较低:
\setbeamercolor{itemize item}{fg=color} % 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
抱歉,我又提起一个老问题了,但我在寻找类似解决方案时发现了这个问题。但我的问题是,项目符号应该始终与文本颜色相同,即使文本会根据某些环境改变颜色。
我最终尝试去除任何特定的颜色,看起来
\setbeamercolor*{item}{}
完美运行(所有项目符号始终为当前文本颜色)。