source: trunk/perl/perl.tex @ 176

Last change on this file since 176 was 176, checked in by nanardon, 16 years ago
  • improve table of contents view
  • Property svn:keywords set to Id
File size: 1.0 KB
Line 
1% $Id$
2\documentclass[notes]{beamer}
3\usepackage[frenchb]{babel}
4\usepackage[T1]{fontenc}
5\usepackage{moreverb}
6\usepackage{graphicx}
7
8\mode<presentation>
9{
10  \definecolor{beamerstructure}{RGB}{143,79,112}
11  \definecolor{sidebackground}{RGB}{230,242,250}
12  \color{beamerstructure}
13  \usetheme[secheader]{Madrid}
14  \usepackage{times}
15  \userightsidebarcolortemplate{\color{sidebackground}}
16  \beamertemplateballitem
17}
18
19\title{Perl}
20\subtitle{5}
21\author{Olivier Thauvin}
22\date{\today}
23
24\AtBeginSection[]
25{
26\begin{frame}<beamer>
27    \frametitle{Plan}
28    \tableofcontents[currentsection,hideothersubsections]
29\end{frame}
30}
31
32\AtBeginSubsection[]
33{
34\begin{frame}<beamer>
35%    \frametitle{}
36    \tableofcontents[sectionstyle=show/hide,subsectionstyle=show/shaded/hide]
37\end{frame}
38}
39
40\begin{document}
41
42\frame{\titlepage}
43
44\begin{frame}
45\tableofcontents[hideallsubsections]
46\end{frame}
47
48\include{introduction}
49
50\include{variables}
51
52\include{syntaxe}
53
54\include{chaines}
55
56\include{variablesbis}
57
58\include{conclusion}
59
60\end{document}
Note: See TracBrowser for help on using the repository browser.