我正在编辑一个演示文稿beamer
,主题是Boadilla
:
\date{date}
\title[The title is quite quite quite quite quite quite long]{The title is quite quite quite quite quite quite long}
\author{My name}
\institute{My school}
\usetheme{Boadilla}
有几件事我想改变:
1)当我以“幻灯片放映”模式打开 pdf 文件时,右下角的按钮列表仍然可见,我认为没有必要,有人能告诉我如何删除它吗?
2) 底部目前有 3 个部分。对于第 1 部分,My school
会自动附加在 后面My name
,可以删除 吗My school
?
3) 我认为没有date
必要,即第 3 部分。是否可以删除此部分,以便我有更多的空间用于标题 + 页码?如果不可能,我更愿意将名称放在Section
第 2 部分而不是标题,有人知道怎么做吗?
答案1
您可以重新定义由外部主题(主题内部使用)footline
定义的模板;将删除导航符号:infolines
Boadilla
\setbeamertemplate{navigation symbols}{}
\documentclass{beamer}
\usetheme{Boadilla}
\makeatother
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.4\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.6\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle\hspace*{3em}
\insertframenumber{} / \inserttotalframenumber\hspace*{1ex}
\end{beamercolorbox}}%
\vskip0pt%
}
\makeatletter
\setbeamertemplate{navigation symbols}{}
\date{date}
\title[The title is quite quite quite quite quite quite long]{The title is quite quite quite quite quite quite long}
\author{My name}
\institute{My school}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\end{document}
答案2
您可以更改外部主题并使用包含两个部分的主题,例如split
主题。在加载之后加载它Boadilla
。第二行是删除导航符号:
\useoutertheme{split}
\setbeamertemplate{navigation symbols}{}
(我的学校)没了,日期也没了,分成两部分。如果你不喜欢分割后出现的黑底白字,也许你只是想稍后调整一下颜色。