Índice no Beamer

Índice no Beamer

Eu vi um índice bonito em uma apresentação do Beamer. Havia algumas fórmulas, imagens, gráficos situados ao longo do quadro em um fundo sombreado. Alguma idéia de como fazer isso?insira a descrição da imagem aqui

Responder1

Você pode usar o backgroundmodelo; o fundo é uma imagem que pode ser incluída com o \includegraphicscomando usual; a opacidade é controlada colocando a imagem dentro de a \nodecom a ajuda de TikZ; após o ToC, o modelo é novamente redefinido para suprimir a imagem:

\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}

insira a descrição da imagem aqui

Desenho do leão CTAN por Duane Bibby.

Responder2

insira a descrição da imagem aqui

\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}

Editar: compile o código com pdflatex --shell-escape filename.

informação relacionada