저는 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
.