71 lines
1.3 KiB
TeX
71 lines
1.3 KiB
TeX
|
\documentclass[14pt]{classPres}
|
||
|
\usepackage{tkz-fct}
|
||
|
\usepackage{minted}
|
||
|
|
||
|
\author{}
|
||
|
\title{}
|
||
|
\date{}
|
||
|
|
||
|
\begin{document}
|
||
|
\begin{frame}{Questions flashs}
|
||
|
\begin{center}
|
||
|
\vfill
|
||
|
2nd
|
||
|
\vfill
|
||
|
30 secondes par calcul
|
||
|
\vfill
|
||
|
\tiny \jobname
|
||
|
\end{center}
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Calcul 1}
|
||
|
% Géométrie repérée
|
||
|
\vfill
|
||
|
Soit $U(2; -1)$ et $V(1; -2)$ deux points.
|
||
|
|
||
|
\vfill
|
||
|
Calculer la longueur $UV$.
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 2}
|
||
|
% Figure géométriques
|
||
|
Un quadrilatère qui a ses diagonales qui se coupent en leur milieu et qui ont la même longueur est un ...
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 3}
|
||
|
% Python
|
||
|
\begin{center}
|
||
|
\begin{minipage}{0.8\linewidth}
|
||
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
||
|
a = 2
|
||
|
for i in range(4):
|
||
|
a = a + 1
|
||
|
\end{minted}
|
||
|
\end{minipage}
|
||
|
\end{center}
|
||
|
\vfill
|
||
|
Combien vaut $a$ à la fin du programme?
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 4}
|
||
|
% Taux d'évolution
|
||
|
\vfill
|
||
|
Une usine produit 80 tonnes de trucs par jour. Elle augmente sa production de 20\%.
|
||
|
|
||
|
\vfill
|
||
|
Combien produira-t-elle?
|
||
|
\vfill
|
||
|
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Fin}
|
||
|
\begin{center}
|
||
|
On retourne son papier.
|
||
|
\end{center}
|
||
|
\end{frame}
|
||
|
|
||
|
|
||
|
\end{document}
|