如何调整投影仪页脚中活动部分和非活动部分的透明度/不透明度?

如何调整投影仪页脚中活动部分和非活动部分的透明度/不透明度?

我正在使用 pdflatex、beamer 类、boxes 主题。

我有一个页脚线,其中列出了文档的各个部分。它稍微将页脚中非活动部分标题变灰,但效果不够。

如何改变页脚中非活动部分标题的透明度?

\setbeamertemplate{footline} {
  \leavevmode%
  \hbox{%
  \pgfsetfillopacity{95}
  \begin{beamercolorbox}[wd=1.0\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
    \usebeamerfont{author in head/foot}%
    \insertsectionnavigationhorizontal{.8\paperwidth}{}{}%
  \end{beamercolorbox}
  }
}

答案1

您可以通过模板调整调光级别。根据您的喜好section in head/foot shaded调整值。[10]

\documentclass{beamer}

\setbeamertemplate{footline} {
  \leavevmode%
  \hbox{%
%  \pgfsetfillopacity{95}
  \begin{beamercolorbox}[wd=1.0\paperwidth,ht=2.25ex,dp=1ex,center]{section in head/foot}%
    \usebeamerfont{author in head/foot}%
    \insertsectionnavigationhorizontal{.8\paperwidth}{}{}%
  \end{beamercolorbox}
  }
}

\setbeamertemplate{section in head/foot shaded}[default][10]

\begin{document}
    
\section{test}
\begin{frame}
content...
\end{frame}

\section{test}
\begin{frame}
content...
\end{frame}
\end{document}

在此处输入图片描述

相关内容