我知道的足以beamer
让我自己感到危险。我正在尝试更改页脚的颜色,Boadilla
但很费劲。
首先,我已经声明
\usecolortheme[named=black]{structure}
这样我就可以得到黑色的框架标题文本。(可能既没有必要,也不太优雅。)
我希望页脚的背景为浅蓝色,\hrule
顶部为黄色。我使用以下代码:
\makeatother
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[color=blue, wd=\paperwidth,ht=1in,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\hfill\insertshorttitle\hfill\insertframenumber{}
\end{beamercolorbox}}%
\vskip0pt%
}
\makeatletter
\setbeamertemplate{navigation symbols}{}
我似乎无法改变背景颜色。有什么可以帮忙的吗?
答案1
前面的问题的线索非常有帮助。以下是最终有效的代码,希望它能为其他人提供帮助:
\definecolor{ilpablue}{rgb}{0.16,0.43,0.75}
\definecolor{ilpayellow}{rgb}{0.86,0.69,0.13}
\setbeamercolor{footlinecolor}{fg=white,bg=ilpablue}
\renewcommand\footnoterule{{\color{ilpayellow}\hrule height 0.5pt width \paperwidth}}
\makeatother
\setbeamertemplate{footline}{%
\leavevmode%
\textcolor{ilpayellow}{\hrule}
\footnoterule
\hbox{%
\begin{beamercolorbox}[wd=\paperwidth,ht=0.25in,dp=1ex,center]{footlinecolor}
\hfill{\normalsize ILPA WEBCAST SERIES} \hfill
\insertframenumber{}
\vskip0pt plus.5fill
\end{beamercolorbox}}%
\vskip0pt%
}
\makeatletter
\setbeamertemplate{navigation symbols}{}
该代码块几乎完全复制了我所给出的徽标。