El siguiente código proporciona el siguiente resultado para el encabezado:
Aquí la primera sección de la izquierda está activa y las demás no, pero la diferencia es bastante pequeña, me gustaría que la sección activa estuviera en gris. ¿Hay alguna manera de controlar cómo se mezclan los colores, de modo que pueda aumentar el contraste (atenuando aún más la sección inactiva)?
\documentclass{beamer}
\usetheme{Singapore}
\setbeamercolor{section in head/foot}{fg=gray,bg=white}
\begin{document}
\section{one}
\begin{frame}
\end{frame}
\section{two}
\begin{frame}
\end{frame}
\section{three}
\begin{frame}
\end{frame}
\end{document}
Respuesta1
Puede utilizar la plantilla correspondiente section in head/foot shaded
.
Ejemplo:
\documentclass{beamer}
\usetheme{Singapore}
\setbeamercolor{section in head/foot}{fg=gray,bg=white}
\setbeamertemplate{section in head/foot shaded}[default][10]
\begin{document}
\section{one}
\begin{frame}
text
\end{frame}
\section{two}
\begin{frame}
text
\end{frame}
\section{three}
\begin{frame}
text
\end{frame}
\end{document}
Con [10]
él se define el porcentaje de opacidad.
Resultado:
Respuesta2
Puede ajustar el nivel de atenuación mediante la section in head/foot shaded
plantilla. Ajusta el valor [10]
a tu gusto.
\documentclass{beamer}
\usetheme{Singapore}
\setbeamercolor{section in head/foot}{fg=gray,bg=white}
\setbeamertemplate{section in head/foot shaded}[default][10]
\begin{document}
\section{one}
\begin{frame}
\end{frame}
\section{two}
\begin{frame}
\end{frame}
\section{three}
\begin{frame}
\end{frame}
\end{document}