CambridgeUS
我在投影仪演示文稿中使用主题:
\documentclass[landscape]{beamer} % COMANDI INIZIALI
\usepackage[italian]{babel} % sillabazione italiana
\usepackage[utf8]{inputenc} % Per le lettere accentate IN UNIX E IN WINDOWS
\usepackage{ragged2e} % giustifica
\usepackage{amsmath} % Per allineare le equazioni
\usepackage{amssymb} % Per le lettere dell'indicatrice (mathbb)
\usepackage{graphicx} % Per le figure
\renewcommand{\fontsubfuzz}{1.1pt} % Elimina i warning inutili
\justifying % giustifica
\usetheme{CambridgeUS}
\date{29 Aprile 2015}
\author{Gabriele Mazza}
\title{Regressione con regolarizzazioni differenziali per dati spazio-temporali, con applicazione all'analisi della produzione di rifiuti urbani nella provincia di Venezia}
\begin{document}
%Frame del titolo
\begin{frame}
\maketitle
\end{frame}
\end{document}
我怎样才能改变它,框架底部只有两个块(与顶部的块颜色相同),第一个块带有作者,第二个块带有日期(和框架数量)?
答案1
CambridgeUS
主题使用infolines
外部主题来设计头部和脚线。脚线模板定义为:
\defbeamertemplate*{footline}{infolines theme}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor\expandafter\beamer@ifempty\expandafter{\beamer@shortinstitute}{}{~~(\insertshortinstitute)}
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
\usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em}
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}
它声明了三个框,分别用于作者、标题、日期和编号。如果您只想要两个,请复制此定义并在主文件中根据您的喜好进行调整:
\documentclass[landscape]{beamer} % COMANDI INIZIALI
\usepackage[italian]{babel} % sillabazione italiana
\usepackage[utf8]{inputenc} % Per le lettere accentate IN UNIX E IN WINDOWS
\usepackage{ragged2e} % giustifica
\usepackage{amsmath} % Per allineare le equazioni
\usepackage{amssymb} % Per le lettere dell'indicatrice (mathbb)
\usepackage{graphicx} % Per le figure
\renewcommand{\fontsubfuzz}{1.1pt} % Elimina i warning inutili
\justifying % giustifica
\usetheme{CambridgeUS}
\date{29 Aprile 2015}
\author{Gabriele Mazza}
\title{Regressione con regolarizzazioni differenziali per dati spazio-temporali, con applicazione all'analisi della produzione di rifiuti urbani nella provincia di Venezia}
\makeatletter
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor\expandafter\beamer@ifempty\expandafter{\beamer@shortinstitute}{}{~~(\insertshortinstitute)}
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
\usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em}
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}
\makeatother
\begin{document}
%Frame del titolo
\begin{frame}
\maketitle
\end{frame}
\end{document}
如果需要改变页眉和页脚右侧框的背景颜色,我们需要在infolines
主题中再次查看所使用的颜色。
右标题框使用,subsection in head/foot
而date in head/foot
脚注框使用。我们只想更改这些框的背景颜色并将其替换为frametitle.bg
一个。这可以通过插入来完成
\setbeamercolor{date in head/foot}{use=frametitle, bg=frametitle.bg}
\setbeamercolor{subsection in head/foot}{use=framtitle, bg=frametitle.bg}
在我们的序言中。