Beamer:すべてのスライドにロゴを含める方法は?

beamerを使用してプレゼンテーションを準備しています。

必要な前提条件として各スライド、できれば左下隅に資金調達スキームのロゴを含めます。ロゴは.png画像です。

プレゼンテーションにグラフィックを含める方法は知っていますが、簡単です。左下隅(または他の場所)のすべてのスライドに画像を含める方法は?

回答

右下は簡単です:

\documentclass{beamer} \logo{\includegraphics[width=.1\textwidth]{example-image}} \begin{document} \begin{frame} abc \end{frame} \end{document} 

ダーティハックを使用すると、左に移動できます:

\documentclass{beamer} \logo{\includegraphics[width=.1\textwidth]{example-image}\hspace*{.88\paperwidth}} \begin{document} \begin{frame} abc \end{frame} \end{document} 

回答

これが最善の解決策であることがわかりました:

% Method to add an item that will appear in every slide \addtobeamertemplate{footline}{% \setlength\unitlength{1ex}% \begin{picture}(0,0) % \put{} defines the position of the frame \put(140,6){\makebox(0,0)[bl]{ \includegraphics{figures/image1.png} \includegraphics{figures/image2.png} \includegraphics{figures/image3.png} }}% \end{picture}% }{} 

コメント

  • 右上隅に配置するにはどうすればよいですか?
  • @Echeban回答を参照してください。

回答

確かに多くの人が右上コーナー。そのためには、これを使用します:

\setbeamertemplate{headline}{\hfill\includegraphics[width=1.5cm]{example-image}\hspace{0.2cm}\vspace{-1cm}} 

パラメーターを調整します(widthhspacevspace)それに応じて。

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です