在下面的例子中,导航项目符号的颜色似乎无法控制。活动部分应为红色,而非活动部分应为蓝色(带有空项目符号)。如您在幻灯片右上角看到的,虽然我希望“环”(空项目符号)为蓝色,但它却是红色和蓝色的混合(红色是活动部分的颜色)。
\documentclass{beamer}
\useoutertheme[subsection=false]{miniframes}
\setbeamercolor*{mini frame}{fg=red,bg=blue}
\setbeamercolor{section in head/foot}{parent=palette tertiary,fg=red}
\setbeamertemplate{section in head/foot shaded}{\color{blue}\usebeamertemplate{section in head/foot}}
\begin{document}
\section{Titre section}
\subsection{Titre sous-section}
\begin{frame}[t]{Titre planche}
\begin{block}{Titre bloc}
\begin{itemize}
\item Un
\item Deux
\end{itemize}
\end{block}
\end{frame}
\section{Titre section}
\subsection{Titre sous-section}
\begin{frame}[t]{Titre planche}
\begin{block}{Titre bloc}
\begin{itemize}
\item Un
\item Deux
\end{itemize}
\end{block}
\end{frame}
\end{document}
答案1
我认为你想要这样的东西:
本手册第 69 页对此进行了介绍。
\documentclass{beamer}
\useoutertheme[subsection=false]{miniframes}
\setbeamercolor*{mini frame}{fg=red,bg=blue}
\setbeamertemplate{mini frame in other section}[default][0]
\setbeamertemplate{mini frame in other subsection}[default][0]
\setbeamercolor{section in head/foot}{parent=palette tertiary,fg=red}
\setbeamertemplate{section in head/foot shaded}{\color{blue}\usebeamertemplate{section in head/foot}}
\begin{document}
\section{Titre section}
\subsection{Titre sous-section}
\begin{frame}[t]{Titre planche}
\begin{block}{Titre bloc}
\begin{itemize}
\item Un
\item Deux
\end{itemize}
\end{block}
\end{frame}
\section{Titre section}
\subsection{Titre sous-section}
\begin{frame}[t]{Titre planche}
\begin{block}{Titre bloc}
\begin{itemize}
\item Un
\item Deux
\end{itemize}
\end{block}
\end{frame}
\end{document}