将徽标放置在演示文稿的第一页,靠近会议标题

将徽标放置在演示文稿的第一页,靠近会议标题

我想在我的演示文稿的第一页重现以下幻灯片:

在此处输入图片描述

(浅蓝色方块为会议标志)

我正在使用以下主题:

\documentclass{beamer}
\usetheme[sectionpage=none, progressbar=frametitle, numbering=fraction]{metropolis}        % Use metropolis theme  
\title{Title}
\date{\today}
\author{Author}
\institute{Title}

% logo of my university
\titlegraphic{%
  \begin{picture}(0,0)
    \put(50,0){\makebox(0,0)[rt]{\includegraphics[width=2cm]{example-image-a}}}}
  \end{picture}}
\AtBeginSection[]{
\begin{frame}{Talk Overview}
\tableofcontents[currentsection]
\end{frame}
\frame{\sectionpage}
}

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

这会产生如下结果:

在此处输入图片描述

我如何修改我的 Latex 代码以获取例如徽标右侧的会议名称和正下方的演讲标题?

答案1

一种可能性是:将图像和会议名称放在一起,用minipages 表示:

\documentclass{beamer}
\usetheme[sectionpage=none, progressbar=frametitle]{moloch}% modern fork of the metropolis theme
\title{Title}
\date{\today}
\author{Author}
\institute{Title}


% logo of my university
\titlegraphic{%
\begin{minipage}{.2\textwidth}
\includegraphics[width=2cm]{example-image-duck}
\end{minipage}%
\begin{minipage}{.8\textwidth}
Conference Title
\end{minipage}%
  }
\AtBeginSection[]{
\begin{frame}{Talk Overview}
\tableofcontents[currentsection]
\end{frame}
\frame{\sectionpage}
}

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

相关内容