Der folgende Code erzeugt für den Kopf folgende Ausgabe:
Hier ist der erste Abschnitt links aktiv und die anderen nicht, aber der Unterschied ist ziemlich gering, ich hätte den aktiven Abschnitt gerne in Grau. Gibt es eine Möglichkeit, die Farbmischung zu steuern, sodass ich den Kontrast erhöhen kann (indem ich den inaktiven Abschnitt noch weiter abdunkle)?
\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}
Antwort1
Sie können die entsprechende Vorlage verwenden section in head/foot shaded
.
Beispiel:
\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}
Damit [10]
wird der Prozentsatz der Opazität definiert.
Ergebnis:
Antwort2
Die Dimmstufe können Sie über die section in head/foot shaded
Vorlage anpassen. Passen Sie den Wert [10]
nach Belieben an.
\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}