latex-homework/calculmental/calculmental.cls

143 lines
2.4 KiB
OpenEdge ABL
Raw Normal View History

2016-03-22 11:49:55 +00:00
%%%
%%%
%%% 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
\LoadClassWithOptions{beamer}
2016-05-28 21:26:15 +00:00
%--%
2016-03-22 11:49:55 +00:00
%-- extensions
% perso
\RequirePackage{couleurs}
\RequirePackage{commun}
2016-05-11 20:54:03 +00:00
\RequirePackage{shortcuts}
2016-05-28 21:26:15 +00:00
%--%
2016-03-22 11:49:55 +00:00
%
% \toggletrue{calculmental}
%
2016-03-22 11:49:55 +00:00
2016-05-28 21:26:15 +00:00
2016-03-22 11:49:55 +00:00
%-- paramètrages
2016-05-11 20:54:03 +00:00
\graphicspath{{images/}}
2016-03-22 11:49:55 +00:00
\usetheme{Madrid}
\usefonttheme{serif}
\setbeamerfont{enumerate item}{family=\sffamily}
\setbeamertemplate{navigation symbols}{%
\insertframenavigationsymbol
\insertsectionnavigationsymbol
}
2016-05-28 21:26:15 +00:00
%--%
2016-03-22 11:49:55 +00:00
%% MACROS : DEBUT
\makeatletter
%-- Macros personnelles
\newcounter{decomptecounter}
2016-03-22 11:49:55 +00:00
\newcommand{\decompte}[1]{%
\setcounter{decomptecounter}{#1}
2016-03-22 11:49:55 +00:00
\multido{\n=1+1}{#1}{%
\only<\n>{%
\begin{flushright}\alert{ Il reste \arabic{decomptecounter} s. }\end{flushright}%
2016-03-22 11:49:55 +00:00
\transduration{1}
}
\addtocounter{decomptecounter}{-1}
2016-03-22 11:49:55 +00:00
}
}
\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.
2016-03-31 17:49:20 +00:00
\item Le temps pour répondre à chaque question vous est indiqué au début de chacune d'elle.
2016-03-22 11:49:55 +00:00
\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{cqcm}
% \NewDocumentEnvironment{qcm}{ G{60} }{ % begin
% \stepcounter{cqcm}
% \section{Question \usecounter{cqcm}\ }
% \begin{frame}
% \centering
% Question \usecounter{cqcm}\transduration{3}
% \end{frame}
% \begin{frame}
% \centering
% \begin{beamerboxesrounded}{Q\usecounter{cqcm}.\ }
% }{ % end
% \end{beamerboxesrounded} %
% \decompte{#1} %
% \end{frame} %
% }
2016-03-22 11:49:55 +00:00
\newcommand{\fin}{%
\begin{frame}
\centering
C'est fini !\transduration{3}
\end{frame}
\section*{Index}
2016-03-22 11:49:55 +00:00
\begin{frame}
\begin{center}{\Large Index des questions}\end{center}
\tableofcontents
\end{frame}
}
%--%
2016-05-28 21:26:15 +00:00
%-- Macros modifiées
%--%
2016-03-22 11:49:55 +00:00
\makeatother
%% MACROS : FIN