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}

관련 정보