ロゴをスライドコンテンツの前に表示する

ロゴをスライドコンテンツの前に表示する

テキストと画像のフォント内にロゴを保持する方法、大きな画像によってロゴが隠れないようにする方法。

  \documentclass{beamer}
\usetheme{Warsaw}
\usepackage{tikz}
\title{Logo}
\author{Al}
\date{\today}
\setbeamertemplate{footline}{%
  \begin{tikzpicture}[overlay,remember picture]
    \node[opacity=.5,inner sep=0.3cm,anchor=south east, xshift=\paperwidth]  {\includegraphics[scale=0.1]{example-image-c}}; 
  \end{tikzpicture}
}

\setbeamercolor{background canvas}{bg=red}

\begin{document}
\begin{frame}
    \titlepage
\end{frame} 
    
\begin{frame}
\includegraphics{example-image}
\end{frame}
\end{document} 

答え1

テキスト レイヤーの上にある他のレイヤー (例: フッター ライン) を悪用する可能性があります。

\documentclass{beamer}

\usepackage{tikz}

\setbeamertemplate{footline}{%
  \begin{tikzpicture}[overlay,remember picture]
    \node[opacity=.5,inner sep=0.3cm,anchor=south east, xshift=\paperwidth]  {\includegraphics[scale=0.1]{example-image-c}}; 
  \end{tikzpicture}
}

\setbeamercolor{background canvas}{bg=red}

\begin{document}
\begin{frame}
\includegraphics{example-image}
\end{frame}
\end{document} 

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

関連情報