source: trunk/presentation-langages/beamer/main.tex @ 329

Last change on this file since 329 was 329, checked in by nanardon, 13 years ago
  • split files to split beamer/article generation
File size: 2.0 KB
Line 
1% $Id: main.tex 256 2010-07-07 06:24:33Z nanardon $
2\documentclass[notes]{beamer}
3\usepackage[utf8]{inputenc}
4\usepackage[frenchb]{babel}
5\usepackage[T1]{fontenc}
6\usepackage{moreverb}
7\usepackage{graphicx}
8\usepackage{eurosym}
9% 4 slides par pages
10%\usepackage{pgfpages}
11%\pgfpagesuselayout{4 on 1}[a4paper,landscape,border shrink=3mm]
12
13\mode<presentation>
14{
15  \definecolor{beamerstructure}{RGB}{143,79,112}
16  \definecolor{sidebackground}{RGB}{230,242,250}
17  \color{beamerstructure}
18  \usetheme{Antibes}
19  \usepackage{times}
20  \userightsidebarcolortemplate{\color{sidebackground}}
21  \beamertemplateballitem
22}
23
24\title{Présentation des langages utilisables en sciences.}
25\subtitle{}
26\author{Claire Manent, Olivier Thauvin}
27\date{\today}
28
29%%\setcounter{tocdepth}{2}
30\AtBeginSection[]
31{
32\begin{frame}
33    \frametitle{Plan - \secname}
34    \tableofcontents[currentsection,hideallsubsections]
35\end{frame}
36}
37
38\AtBeginSubsection[]
39{
40\begin{frame}
41    \frametitle{Plan - \subsecname}
42    \tableofcontents[currentsection,sectionstyle=show/hide,subsectionstyle=show/shaded/hide]
43\end{frame}
44}
45
46%\AtBeginSubsubsection[]
47%{
48%\begin{frame}
49%    \frametitle{\subsubsecname}
50%    \begin{center}
51%    \begin{block}{\secname}
52%    \LARGE{
53%    \textbf{\subsubsecname}
54%    }
55%    \end{block}
56%    \end{center}
57%\end{frame}
58%}
59
60\begin{document}
61
62\frame{\titlepage}
63
64\begin{frame}{Plan}
65\tableofcontents[hideallsubsections]
66\end{frame}
67
68%\section{Résumé}
69\include{resume}
70\section{Langages impératifs}
71
72\subsection{Langages compilés}
73
74\include{c}
75\include{cpp}
76\include{fortran}
77\include{java}
78\include{csharp}
79
80\subsection{Langages interprétés}
81
82\include{perl}
83\include{python}
84\include{ruby}
85\include{php}
86
87%% TODO: revoir le mot applicatif
88\subsection{Langages applicatifs}
89\include{generalite_applicatifs}
90\include{scilab}
91\include{matlab}
92%\include{octave}
93\include{idl}
94\include{r}
95
96\section{Langages fonctionnels}
97\include{generalite_fonctionnel}
98\subsection{Exemples de langage}
99\include{ocaml}
100\include{haskell}
101
102\include{lexique}
103\include{commlang}
104
105\end{document}
Note: See TracBrowser for help on using the repository browser.