Beamer 中带有图像的多行框架标题

Beamer 中带有图像的多行框架标题

我想要尝试在 beamer 中制作如下所示的标题(来自 libreoffice 的模型,忽略网格):

小样

我尝试过很多方法,但就是无法正确使用。这是我目前的代码情况(framebox 是预定义的 beamercolor)。

\setbeamertemplate{headline} {
  \begin{minipage}{.7\paperwidth}
    % Section Heading
    \vspace{5mm}
    {
      \noindent\hspace{5mm}\usebeamercolor[fg]{}\insertsection
    }
    \\
    % Slide Title
    \begin{beamercolorbox}[wd=\textwidth,ht=2ex,dp=1ex,left]{framebox}%
      \hspace{5mm}\usebeamerfont{section in head/foot}\insertframetitle\hspace*{2ex}
    \end{beamercolorbox}
  \end{minipage}
  \begin{tikzpicture}[remember picture, overlay]
    \node[anchor=north east] at ([yshift=-5mm, xshift=-5mm] current page.north east) {MY LOGO HERE}
  \end{tikzpicture}
}

此代码可使其在大多数幻灯片上大致处于正确的位置(对于目录而言它关闭),但其余文本已完全移出框架并且不再可见。

更新:添加了示例图像

添加 tikzpicture 之前: 前

之后(创建十几张这样的幻灯片): 后

相关内容