如何使用 Boadilla 主题在 Beamer 的一个区块中编写演示文稿的标题

如何使用 Boadilla 主题在 Beamer 的一个区块中编写演示文稿的标题

在 Boadilla 主题中,如何将演示文稿的标题放在一个块中?我的演示文稿的前几行如下所示:

\documentclass{beamer}
\usetheme{Boadilla}
\title{Equivalent forms of LUB Property}
\author{Saikat Goswami}

\institute
{
  \inst{Department of Mathematics} 
  Ramakrishna Mission Vidyamandira 
  Belur Math 
  [email protected]
}

\date{\today} 
\begin{document}

答案1

您可以\setbeamercolor{title}{...}在文档的序言中添加一个圆角彩色框,并在标题框的标题周围添加阴影。根据您想要获得的蓝色阴影,例如页脚中已有的三种阴影之一,您可以使用\setbeamercolor{title}{parent=author in head/foot}或以下 MWE 中显示的其他两个版本之一:

\documentclass{beamer}
\usetheme{Boadilla}
\title{Equivalent forms of LUB Property}
\author{Saikat Goswami}

\institute[]
{
  Department of Mathematics
   
  Ramakrishna Mission Vidyamandira
   
  Belur Math 
  
  [email protected]
}

\date{\today} 

\setbeamercolor{title}{parent=author in head/foot}
%\setbeamercolor{title}{parent=title in head/foot}
%\setbeamercolor{title}{parent=date in head/foot}

\begin{document}

\begin{frame}
\maketitle
\end{frame}

\end{document}

这三个版本将产生以下输出:

在此处输入图片描述在此处输入图片描述在此处输入图片描述


\institute请注意,与原始代码相比,我还稍微修改了命令的参数。我添加了[]以防止机构显示在页脚中,因为该机构会被“标题”字段部分隐藏。我还添加了空行以确保代码中的 4 行也显示在生成的 pdf 文件中的 4 行中。最后,我还删除了该\inst命令,因为它通常用于具有不同隶属关系的多位作者。

相关内容