latex-homework/calculmental/calculmental.cls
Jeff LANCE a7b0ca9f69 modif du texte d'introduction
renommage de certaines variables
2016-03-31 21:41:55 +02:00

135 lines
2.4 KiB
TeX

%%%
%%%
%%% Classe : calculmental.cls
%%% Version : 1.0
%%% Date : 08/12/14
%%% Auteur : Jeff LANCE
%%%
%%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{calculmental}[2014/12/08 Classe de diaporama de calcul mental, v1.0]
%-- classe de base
\LoadClass{beamer}
%-- %
%-- extensions
% perso
\RequirePackage{couleurs}
\RequirePackage{commun}
%-- %
%-- definitions
%-- %
%-- paramètrages
\usetheme{Madrid}
\usefonttheme{serif}
\setbeamerfont{enumerate item}{family=\sffamily}
\setbeamertemplate{navigation symbols}{%
\insertframenavigationsymbol
\insertsectionnavigationsymbol
}
%-- %
%% MACROS : DEBUT
\makeatletter
%-- Macros personnelles
\newcounter{decomptecounter}
\newcommand{\decompte}[1]{%
\setcounter{decomptecounter}{#1}
\multido{\n=1+1}{#1}{%
\only<\n>{%
\begin{flushright}\alert{ Il reste \arabic{decomptecounter} s. }\end{flushright}%
\transduration{1}
}
\addtocounter{decomptecounter}{-1}
}
}
\newcommand{\titre}[4]{%
\title{#1}
\subtitle{Calcul Mental}
\date{#2}
\author{#3}
\institute{#4}
}
\newcommand{\debut}{%
\begin{frame}
\titlepage
\transduration{3}
\end{frame}
\begin{frame}
\centering
Voici un rapide calcul mental pour tester votre compréhension du cours.\\~\\
\begin{itemize}[<+-|alert@+>]
\item Vous répondrez sur la feuille qui vous a été distribuée.
\item Le temps pour répondre à chaque question vous est indiqué au début de chacune d'elle.
\item Un compte à rebours apparaîtra en bas à droite vous indiquant le temps restant pour répondre.
\item C'est un calcul mental, la calculatrice n'est donc pas autorisée.
\end{itemize}
\only<5->{Bonne chance !}
\only<3>{
\decompte{30}
}
\transduration{4}
\end{frame}
}
\newcounter{questionscounter}
\NewDocumentEnvironment{questions}{O{60}}{ % begin
\stepcounter{questionscounter}
\section{Question \usecounter{questionscounter}}
\begin{frame}
\centering
Question \usecounter{questionscounter}\transduration{3}
\end{frame}
\begin{frame}
\centering
\begin{beamerboxesrounded}{Q\usecounter{questionscounter}.}
} { % end
\end{beamerboxesrounded} %
\decompte{#1} %
\end{frame} %
}
\newcommand{\fin}{%
\begin{frame}
\centering
C'est fini !\transduration{3}
\end{frame}
\section{Index}
\begin{frame}
\begin{center}{\Large Index des questions}\end{center}
\tableofcontents
\end{frame}
}
%--%
% Macros modifiées
% - %
\makeatother
%% MACROS : FIN