Rev 6472 | Rev 10282 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 6472 | Rev 7867 | ||
---|---|---|---|
Line 13... | Line 13... | ||
13 | \newtheorem{thm}{Théorème}[section] |
13 | \newtheorem{thm}{Théorème}[section] |
14 | \newtheorem{theo}[thm]{Théorème} |
14 | \newtheorem{theo}[thm]{Théorème} |
15 | \newtheorem{prop}[thm]{Proposition} |
15 | \newtheorem{prop}[thm]{Proposition} |
16 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
16 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
17 | \theoremstyle{definition} |
17 | \theoremstyle{definition} |
18 | \newtheorem{defn}{Définition}[section] |
18 | \newtheorem{defn}{Définition}[section] |
19 | \newtheorem{ex}{Exemple} |
19 | \newtheorem{ex}{Exemple} |
20 | \newtheorem{exo}{Exercice} |
20 | \newtheorem{exo}{Exercice} |
21 | \newtheorem{rem}{Remarque} |
21 | \newtheorem{rem}{Remarque} |
22 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
22 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
23 | \def\RR{\mathbb R} |
23 | \def\RR{\mathbb R} |
Line 35... | Line 35... | ||
35 | Voici un théorème |
35 | Voici un théorème |
36 | \end{thm} |
36 | \end{thm} |
37 | \begin{proof} |
37 | \begin{proof} |
38 | Voici la démonstration. |
38 | Voici la démonstration. |
39 | \end{proof} |
39 | \end{proof} |
40 | \begin{defn} |
40 | \begin{defn} |
41 | Voici une définition |
41 | Voici une définition |
42 | \end{defn} |
42 | \end{defn} |
43 | \begin{rem} |
43 | \begin{rem} |
44 | Voici une remarque |
44 | Voici une remarque |
45 | \end{rem} |
45 | \end{rem} |
46 | \begin{defn}[titre] |
46 | \begin{defn}[titre] |
47 | Voici une définition avec titre |
47 | Voici une définition avec titre |
48 | \end{defn} |
48 | \end{defn} |
49 | \section{Insertion d'un exercice} |
49 | \section{Insertion d'un exercice} |
50 | Pour insérer un exercice, prendre les deux premières lignes |
50 | Pour insérer un exercice, prendre les deux premières lignes |
51 | dans le fichier source d'une feuille d'exercice et les coller |
51 | dans le fichier source d'une feuille d'exercice et les coller |
52 | par un \&. |
52 | par un \&. |
53 | \begin{exo} |
53 | \begin{exo} |
54 | Faites l'exercice d'application\index{exercice1} |
54 | Faites l'exercice d'application\index{exercice1} |
55 | \exercise{module=H6/analysis/oefcourbe.fr&exo=courb1&scoredelay=&confparm1=A&confparm1=B}{Courbes} |
55 | \exercise{module=H6/analysis/oefcourbe.fr&exo=courb1&scoredelay=&confparm1=A&confparm1=B}{Courbes} |
56 | \end{exo} |
56 | \end{exo} |
57 | \section{Insertion d'un exemple} |
57 | \section{Insertion d'un exemple} |
Line 75... | Line 75... | ||
75 | \def{text dessin = \dessin |
75 | \def{text dessin = \dessin |
76 | plot \color[\i], \p |
76 | plot \color[\i], \p |
77 | } |
77 | } |
78 | } |
78 | } |
79 | \end{wims} |
79 | \end{wims} |
80 | Voici le graphe des polynômes caractéristiques des matrices \([\A]) pour les valeurs |
80 | Voici le graphe des polynômes caractéristiques des matrices \([\A]) pour les valeurs |
81 | de \(a) suivantes : \liste. |
81 | de \(a) suivantes : \liste. |
82 | <p class="wimscenter"> \draw{300,300}{\dessin} </p> |
82 | <p class="wimscenter"> \draw{300,300}{\dessin} </p> |
83 | Que remarquez-vous ? |
83 | Que remarquez-vous ? |
84 | \end{wimsonly} |
84 | \end{wimsonly} |
85 | 85 | ||
86 | 86 | ||
87 | \section{Une animation qui ne doit pas être dans latex} |
87 | \section{Une animation qui ne doit pas être dans latex} |
88 | \begin{wimsonly} |
88 | \begin{wimsonly} |
Line 137... | Line 137... | ||
137 | &a&\(\frac{1}{2}\) \\ |
137 | &a&\(\frac{1}{2}\) \\ |
138 | \hline |
138 | \hline |
139 | c&d&f\\ |
139 | c&d&f\\ |
140 | \hline |
140 | \hline |
141 | \end{tabular} |
141 | \end{tabular} |
142 | |
142 | |
143 | \section{Un algorithme} |
143 | \section{Un algorithme} |
144 | Vous pouvez configurer l'environnement algorithm dans latex pour |
144 | Vous pouvez configurer l'environnement algorithm dans latex pour |
145 | que les mots clés soient en français |
145 | que les mots clés soient en français. |
146 | 146 | ||
147 | \begin{algorithm} |
147 | \begin{algorithm} |
148 | \caption{ |
148 | \caption{Mon algorithme} |
149 | \begin{algorithmic}[1] |
149 | \begin{algorithmic}[1] |
150 | \REQUIRE $a, b$ |
150 | \REQUIRE $a, b$ |
151 | \ENSURE $u$ et $v$ tels que $u a + v b = pgcd(a,b)$ |
151 | \ENSURE $u$ et $v$ tels que $u a + v b = pgcd(a,b)$ |
152 | \IF{$a = 0$} |
152 | \IF{$a = 0$} |
153 | \STATE Retourner $ |
153 | \STATE Retourner $\lbrack b,0,12 \rbrack$ |
154 | \ENDIF |
154 | \ENDIF |
155 | \STATE $x \rightarrow a$, $y \rightarrow b$, $ vx \rightarrow 0$, $vy \rightarrow 1$ |
155 | \STATE $x \rightarrow a$, $y \rightarrow b$, $ vx \rightarrow 0$, $vy \rightarrow 1$ |
156 | \WHILE{ $ y <> 0$} |
156 | \WHILE{ $ y <> 0$} |
157 | \STATE $q \rightarrow quotient |
157 | \STATE $q \rightarrow \; quotient \; de x \; par \; y$, $r \rightarrow x-q*y$ |
158 | \STATE $t \rightarrow vy$ |
158 | \STATE $t \rightarrow vy$ |
159 | \STATE $vy \rightarrow vx - q*vy$ |
159 | \STATE $vy \rightarrow vx - q*vy$ |
160 | \STATE $vx \rightarrow t$ |
160 | \STATE $vx \rightarrow t$ |
161 | \STATE $x \rightarrow y$ |
161 | \STATE $x \rightarrow y$ |
162 | \STATE $y \rightarrow r$ |
162 | \STATE $y \rightarrow r$ |