\documentclass[14pt]{classPres}
\usepackage{tkz-fct}
\usepackage{fancybox}

\author{}
\title{}
\date{}

\begin{document}
\begin{frame}{Questions flash}
    \begin{center}
        \vfill
        4e
        \vfill
        30 secondes par calcul
        \vfill
        \tiny \jobname
    \end{center}
\end{frame}

\begin{frame}{Calcul 1}
    % Fraction
    Quelle fraction représente la partie grisée de la figure?
    \begin{center}
        \includegraphics[scale=0.5]{./fig/2sur3}
    \end{center}

\end{frame}

\begin{frame}{Calcul 2}
    % Calculs relatifs
    Calculer la quantité suivante
    \[
        -2 \times 2 \times (-3) \times (-1) = 
    \]
\end{frame}

\begin{frame}[fragile]{Calcul 3}
    % géométrie
    Calculer l'aire du triangle bleu
    \begin{center}
        \begin{tikzpicture}[rotate=40]
                \draw[fill=blue] (-2,3) -- 
                (-2,0) -- 
                (3,0) -- 
                cycle;
            \draw[very thick] 
                (-2,3) -- node[midway, below left]{2cm} 
                (-2,0) -- node[midway, below right]{4cm}
                (3,0) -- 
                (3,3)  -- 
                cycle;
        \end{tikzpicture}
    \end{center}
\end{frame}

\begin{frame}{Calcul 4}
    Est-ce un tableau de proportionnalité?
    \begin{center}
        \begin{tabular}{|c|c|c|}
            \hline
            Longueur & 3 & 15 \\
            \hline
            Poids & 4 & 22 \\
            \hline
        \end{tabular}
    \end{center}
\end{frame}

\begin{frame}{Fin}
    \begin{center}
        On retourne son papier.
    \end{center}
\end{frame}


\end{document}