在我的首页中添加更多信息 - beamer

在我的首页中添加更多信息 - beamer

我正在使用 Beamer 在 LaTex 中创建演示文稿的幻灯片模板,我想添加更多信息“监督人是“在“导演”和“研究所”之间,所以我把

\documentclass{beamer}
\usetheme{CambridgeUS} % theme
\title[Project's name]{Project 's name }
\author[My name]{\textbf {Directed by: my name}} % auteur
\institute[Rouen University]{\textbf {Rouen University}}
\date{20 july 2012}
\titlegraphic{\includegraphics[width=2cm]{logo_ur.jpg}}
\begin{document}

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


\end{document}

结果如下图所示: 在此处输入图片描述

我想要这样的东西:

在此处输入图片描述

答案1

您可以在作者字段中使用换行符并添加第二行。

\documentclass{beamer}
\usetheme{CambridgeUS} % theme
\title[Project's name]{Project 's name }
\author[My name]{\textbf {Directed by: my name\\ \footnotesize Supervised by: first name, second name}} % auteur
\institute[Rouen University]{\textbf {Rouen University}}
\date{20 july 2012}
\titlegraphic{\includegraphics[width=2cm]{example-image}}
\begin{document}

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

在此处输入图片描述

答案2

这是一个可能的解决方案(根据您的具体需求,您可能需要调整一些长度和字体);定义了一个新命令 \titlegraphicii 来包含第二个徽标;它的使用方式与标准 \titlegraphic 相同

代码在这里给出

在此处输入图片描述

相关内容