使用 CambridgeUS 在演示文稿中添加多个徽标

使用 CambridgeUS 在演示文稿中添加多个徽标

beamer我正在准备一个主题为 的演示文稿CambridgeUS。关于附属徽标,我知道我可以添加一个带有 titlegraphics 的徽标\titlegraphic{\includegraphics[width=2cm]{My_Logo}},但我想添加第二个徽标,我再次尝试了,\titlegraphic{\includegraphics[width=2cm]{My_Logo2}}但没有成功。

我的问题是:

  1. 如何在标题页添加多个徽标?

  2. 我怎样才能将这些徽标包含到底部的 templeta 中?

答案1

在此处输入图片描述

\documentclass{beamer}
\usetheme{CambridgeUS}
\usepackage[T1]{fontenc}      % european characters
\usepackage{amssymb,amsmath}  % use mathematical symbols
%\usepackage{mwe} % helps 1st time use to  load example images
\usepackage{palatino}         % use palatino as the default font
\titlegraphic{\includegraphics[width=2cm]{example-image-A}} % It matters not where this line goes the content is placed at bottom of frame
\title[Short Title]{\includegraphics[width=2cm]{example-image-duck}\newline Deuxième Cours} % We can embed an image in the title
%\subtitle{02  L'Entree:- Canard citron} % some things are best not said and we have to lose some lines somewhere
\author[M.W.E.]{\small Author: M'r Exemple\newline % Removing this newline or beter still \Author (combine with institute) would improve spacing a lot
Assistant: exemple de travail minimales}
\institute[]{\footnotesize Dept de \LaTeX, Uni de la Vie.} % Condense into one line to gain more space as the date will be automatically added next
\begin{document}
\begin{frame}
\titlepage 
\end{frame}
Bonjour Monde 2
\end{document}

相关内容