source: trunk/presentation-langages/main.tex @ 275

Last change on this file since 275 was 275, checked in by revillet, 13 years ago

-add python, clean main and create generalite_fonctionnel

File size: 1.6 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
10\mode<presentation>
11{
12  \definecolor{beamerstructure}{RGB}{143,79,112}
13  \definecolor{sidebackground}{RGB}{230,242,250}
14  \color{beamerstructure}
15  \usetheme{Antibes}
16  \usepackage{times}
17  \userightsidebarcolortemplate{\color{sidebackground}}
18  \beamertemplateballitem
19}
20
21\title{Présentation des Langages}
22\subtitle{}
23\author{Claire Manent, Olivier Thauvin}
24\date{\today}
25
26%%\setcounter{tocdepth}{2}
27\AtBeginSection[]
28{
29\begin{frame}
30    \frametitle{Plan - \secname}
31    \tableofcontents[currentsection,hideallsubsections]
32\end{frame}
33}
34
35\AtBeginSubsection[]
36{
37\begin{frame}
38    \frametitle{Plan - \secname}
39    \tableofcontents[currentsection,sectionstyle=show/hide,hideothersubsections,subsectionstyle=show/shaded/hide]
40\end{frame}
41}
42
43\begin{document}
44
45\frame{\titlepage}
46
47\begin{frame}{Plan}
48\tableofcontents[hideallsubsections]
49\end{frame}
50
51%\section{Résumé}
52\include{resume}
53%\section{Langages impératifs}
54
55\section{Langages Compilés}
56
57\include{c}
58\include{cpp}
59\include{fortran}
60\subsection{Java}
61\subsection{C\#}
62
63\section{Langages Interprétés}
64
65\subsection{perl}
66\include{python}
67\subsection{ruby}
68\subsection{php}
69
70%% TODO: revoir le mot applicatif
71\section{Langages applicatifs}
72
73\subsection{scilab}
74\subsection{matlab/octave}
75\subsection{IDL}
76
77\section{Langages fonctionnels}
78\include{generalite_fonctionnel}
79\include{ocaml}
80\include{haskell}
81
82\end{document}
Note: See TracBrowser for help on using the repository browser.