Beamerの目次

Beamerの目次

Beamer プレゼンテーションで見栄えの良い目次を見たことがあります。影付きの背景のフレーム全体に数式、画像、グラフが配置されていました。これをどのように実現するか、何かアイデアはありますか?ここに画像の説明を入力してください

答え1

テンプレートを使用できますbackground。背景は通常の\includegraphicsコマンドで含めることができる画像です。不透明度は、 を使用\nodeして画像を 内に配置すると制御されますTikZ。ToC の後、テンプレートは画像を抑制するために再度再定義されます。

\documentclass{beamer}
\usetheme{Boadilla}
\usepackage{tikz}

\begin{document}

\setbeamertemplate{background}{%
   \tikz\node[opacity=0.3] at (current page.center) {\includegraphics[height=\paperheight]{ctanlion}};}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}

\setbeamertemplate{background}{}
\section{Test Section One}
\begin{frame}
Contents of section one
\end{frame}

\section{Test Section Two}
\begin{frame}
Contents of section two
\end{frame}

\section{Test Section Three}
\begin{frame}
Contents of section three
\end{frame}

\end{document}

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

Duane Bibby による CTAN ライオンの絵。

答え2

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

\documentclass{beamer}
\usepackage{filecontents}
\begin{filecontents*}{background.tex}
\documentclass[pstricks,border=0pt]{standalone}
\usepackage{pst-plot}

\begin{document}
\begin{pspicture}(-\psPi,-2)(\psPi,2)
    \psplot[algebraic,plotpoints=1500]{-\psPi}{\psPi}{sin(15*x)*cos(13*x)+cos(5*x)}
\end{pspicture}
\end{document}
\end{filecontents*}

\usepackage{graphicx}
\AtBeginDocument
{
    \immediate\write18{latex background}
    \immediate\write18{dvips background}
    \immediate\write18{ps2pdf background.ps}
}
\begin{document}
\bgroup
\usebackgroundtemplate{\includegraphics[width=\paperwidth]{background}}
\begin{frame}[t]{Table of Contents}
\tableofcontents
\end{frame}
\egroup

\section{Introduction}
\begin{frame}[t]{Who am I?}
I am a Garbage Collector.
\end{frame}

\section{At a glance}
\begin{frame}[t]{What is your hobby?}
Coding!
\end{frame}

\end{document}

編集: でコードをコンパイルしますpdflatex --shell-escape filename

関連情報