標誌僅位於 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}

相關內容