-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tex
More file actions
45 lines (43 loc) · 1.49 KB
/
main.tex
File metadata and controls
45 lines (43 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
\documentclass[]{beamer}
\usepackage{CJKutf8}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{listings}
\usetheme{Gipsalab}
\setbeamertemplate{navigation symbols}{}
%============================================================================
\author[G. Becq]{Guillaume Becq}
\title[Introduction à Python]{Introduction au langage de programmation Python}
\subtitle{{\footnotesize Une pas si courte introduction à Python comme alternative à Matlab pour réaliser des calculs scientifiques ou d'autres applications.}}
\date{\today}
%============================================================================
\input{command}
\AtBeginSection{\framePlanCurrentSection}
%============================================================================
%============================================================================
\includeonly{%
sec_introduction,
sec_language,
sec_scientific,
sec_environment,
sec_conclusion,
sec_appendix,
}
%============================================================================
\begin{document}
%____________________________________________________________________________
\begin{frame}[plain]
\maketitle
\end{frame}
\framePlan
\include{sec_introduction}
\include{sec_language}
\include{sec_scientific}
\include{sec_environment}
\include{sec_conclusion}
\frame{}
\appendix
\include{sec_appendix}
%____________________________________________________________________________
\end{document}
%============================================================================