徽标仅位于 Beamer 演示文稿的标题页上

徽标仅位于 Beamer 演示文稿的标题页上

如何将徽标仅放在 Beamer 演示文稿的标题页上标题和副标题之间?我正在使用

\title{Title}
\titlegraphic{\includegraphics[width=3cm]{logo}}
\subtitle{\textbf{Subtitle}}

但徽标出现在日期之后。

答案1

您可以使用

\title[Title]{Title\\[1em]\includegraphics[width=3cm]{logo}}

再次使用带有标题的可选参数非常重要,以便在文档的其他部分(例如,页脚/标题)使用正确的标题。

另一个选择是重新定义title page模板以将徽标包含在所需的位置:

\makeatletter
\setbeamertemplate{title page}
{
  \vbox{}
  \vfill
  \begin{centering}
    \begin{beamercolorbox}[sep=8pt,center]{title}
      \usebeamerfont{title}\inserttitle\par%
      \vskip0.25em%
      {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
      \ifx\insertsubtitle\@empty%
      \else%
        \vskip0.25em%
        {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}%
      \fi%     
    \end{beamercolorbox}%
    \vskip1em\par
    \begin{beamercolorbox}[sep=8pt,center]{author}
      \usebeamerfont{author}\insertauthor
    \end{beamercolorbox}
    \begin{beamercolorbox}[sep=8pt,center]{institute}
      \usebeamerfont{institute}\insertinstitute
    \end{beamercolorbox}
    \begin{beamercolorbox}[sep=8pt,center]{date}
      \usebeamerfont{date}\insertdate
    \end{beamercolorbox}\vskip0.5em
  \end{centering}
  \vfill
}
\makeatother

然后只需使用\titlegraphic

\titlegraphic{\includegraphics[width=3cm]{logo}}

答案2

由于徽标通常与组织相关联,因此我使用宏\institute将徽标放在标题框上:

\institute[short name]{\includegraphics[width=3cm]{logo}}

简称通常会根据所使用的主题打印在每张幻灯片上。

但这个标志不是之间标题和副标题...默认顺序如下:

\documentclass{beamer}
\title{title}
\subtitle{subtitle}
\institute{institute}
\author{author}
\date{date}
\titlegraphic{titlegraphic}
\begin{document}
\begin{frame}
  \maketitle
\end{frame}
\end{document}

在此处输入图片描述

答案3

一个简单的解决方案是这样的:

\title{title}
\author{authorname}
\institute{\includegraphics[scale=0.035]{logo} \\Physics Department\\ IIT Bombay}

相关内容