Beamerプレゼンテーションのタイトルページのタイトルとサブタイトルの間にのみロゴを配置するにはどうすればよいですか?
\title{Title}
\titlegraphic{\includegraphics[width=3cm]{logo}}
\subtitle{\textbf{Subtitle}}
しかし、ロゴは日付の後に表示されます。
答え1
使用できます
\title[Title]{Title\\[1em]\includegraphics[width=3cm]{logo}}
ドキュメントの他の部分 (たとえば、フッターや見出し) で正しいタイトルが使用されるように、タイトルとともにオプションの引数をもう一度使用することが重要です。
title page
もう 1 つのオプションは、テンプレートを再定義して、目的の位置にロゴを含めることです。
\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}