プレゼンテーションの最初のページの左側に図を追加するにはどうすればいいですか

プレゼンテーションの最初のページの左側に図を追加するにはどうすればいいですか

プレゼンテーションの最初のページの左側に、名前、機関、日付、タイルがある図を追加しようとしています。次のものを使用しようとしましたが、成功しませんでした。

\documentclass{beamer}
\usepackage{tikz}
\usetheme{Warsaw}
\title{Fooing the Bar}
\author{A.~Thor}
\institute{MWE Lmt.}
\titlegraphic{\vspace{8cm}}% to push the other text to the top
\date{\today}

\begin{document}
\begin{frame}
   \tikz [remember picture,overlay]
    \node at
        ([yshift=3cm]current page.south) 
        %or: (current page.center)
        {\includegraphics[width=\textwidth,height=.5\textheight]{photo1.jpg}};
   \titlepage
\end{frame}
\end{document}

答え1

何が問題なのかよく分かりません。MWE は正常に動作しています。フレームの下半分に画像を配置します。ただし、質問のタイトルから、左側に画像を配置したいと推測できます。質問を明確にしてください。

以下に、タイトル ページに画像を配置する 2 つの例を示します。

\documentclass[demo]{beamer}% in real document delete option "demo"
\usepackage{tikz}
\usetheme{Warsaw}
\title{Fooing the Bar}
\author{A.~Thor}
\institute{MWE Lmt.}
%\titlegraphic{\vspace{8cm}}% to push the other text to the top
\date{\today}

\begin{document}
\begin{frame}[plain]
\begin{columns}
\column[c]{.5\linewidth}
   \tikz [remember picture,overlay]
    \node[right] at (current page.west)  
        {\includegraphics[width=\linewidth, height=\textheight]{photo1}};
\column[c]{.5\linewidth}
    \vfil
    \titlepage
\end{columns}
\end{frame}

\begin{frame}[plain]
    \titlepage
   \tikz [remember picture,overlay]
    \node[above] at (current page.south)   % <---
        {\includegraphics[width=\linewidth, height=0.5\textheight]{photo1}};
\end{frame}
\end{document}

ここに画像の説明を入力してください

ご覧のとおり、タイトルページの2番目のケースのコードとムウェ最初のケースはcolumns環境が使用されているため、サイズは小さいです。

関連情報