我想更改活动菜单和非活动菜单之间的颜色。我无法让它工作!它太灰了。我的活动字体是白色的,非活动字体有点灰……我想要它更白一点……
我的 LaTeX 代码:
\definecolor{mycolor}{RGB}{0, 94, 156}
% Set up color for header and footer
\setbeamercolor{palette primary}{fg=mycolor,bg=white}
\setbeamercolor{palette secondary}{fg=white,bg=mycolor}
\setbeamercolor{section in head/foot}{parent=palette secondary}
\setbeamercolor{subsection in head/foot}{parent=palette secondary}
我\setbeamertemplate{section in head/foot shaded}[default][10]
已经试过了,但是没用。没有效果?!
编辑:
整个代码:
我的测试文档:
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{hyperref}
\usepackage[english]{babel}
\usepackage{eso-pic}
\usepackage{tikz}
\mode<presentation>
{
\usetheme{test}
\setbeamercovered{transparent = 28}
}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\end{document}
答案1
推杆
\setbeamertemplate{section in head/foot shaded}[default][10]
beamerthemeutlsb.sty
要么在之前的文件中\mode<all>
,要么在测试.tex
文件中,就像这样
\mode<presentation>
{
\usetheme{utlsb}
\setbeamercovered{transparent = 28}
\setbeamertemplate{section in head/foot shaded}[default][10]
}
产生所需的效果;这是我从您的测试文件中获得的标题图像,显示了具有所需阴影的部分(我使用了该demo
选项,graphicx
因为我没有您的徽标):
如您所见,“AAAA AAAA AAAA AAAA”部分完全可见,而“WWWW WWWW WWWW WWWW”部分位于下方且几乎不可见。