我正在使用带有鲸鱼色主题的 Boadilla 模板。我注意到,项目化块的项目符号是蓝色的,但如果项目化块位于示例块内,项目符号颜色就会变成绿色。
我想让绿色子弹和子弹在普通框架中混合。我可以这样做吗?
下面给出了最小工作示例。
\documentclass{beamer}
\mode<presentation> {
\usetheme{Boadilla}
\usecolortheme{whale}
}
\title[Short title]{Main Topic }
\author{John Smith}
\institute[UCLA]
{
University of California \\ % Your institution for the title page
\medskip
\textit{[email protected]} % Your email address
}
\date{\today}
\begin{document}
\begin{frame}
\begin{itemize}
\item One Blue Bullet
\item Two Blue Bullet. But want it green color.
\end{itemize}
\begin{exampleblock}{Test}
\begin{itemize}
\item Green Bullet
\item Second Green Bullet
\end{itemize}
\end{exampleblock}
\end{frame}
\end{document}
答案1
您可以使用以下方式更改 itemize 项目的颜色\setbeamercolor{item}{fg=green!60!black}
\documentclass{beamer}
\mode<presentation> {
\usetheme{Boadilla}
\usecolortheme{whale}
}
\begin{document}
\begin{frame}
\begin{itemize}
{\setbeamercolor{item}{fg=green!60!black}\item One Blue Bullet}
\item Two Blue Bullet. But want it green color.
\end{itemize}
\begin{exampleblock}{Test}
\begin{itemize}
\item Green Bullet
\item Second Green Bullet
\end{itemize}
\end{exampleblock}
\end{frame}
\end{document}