62 lines
985 B
TeX
62 lines
985 B
TeX
|
\documentclass[a5paper,12pt]{article}
|
||
|
\usepackage{myXsim}
|
||
|
|
||
|
|
||
|
% Title Page
|
||
|
%\title{\Var{eval.name}}
|
||
|
%\tribe{\Var{eval.tribe}}
|
||
|
%\date{eval.date}
|
||
|
|
||
|
\title{DS1 mise en jambe}
|
||
|
\tribe{302}
|
||
|
\date{}
|
||
|
|
||
|
\begin{document}
|
||
|
|
||
|
%- for student in students
|
||
|
|
||
|
\maketitle
|
||
|
|
||
|
{\Large \Var{student['name']}}
|
||
|
|
||
|
\vfill
|
||
|
|
||
|
Réussite aux exercices
|
||
|
|
||
|
\begin{center}
|
||
|
%- for exercise in student['exercises']
|
||
|
\begin{tabular}{|c|c|}
|
||
|
\hline
|
||
|
\multicolumn{2}{|c|}{Exercice \Var{exercise['name']}}\\
|
||
|
\hline
|
||
|
|
||
|
%- for question in exercise['questions']
|
||
|
\Var{question['question']} \Var{question['comment']}& \Var{question['latex']} \\
|
||
|
\hline
|
||
|
%- endfor
|
||
|
\end{tabular}
|
||
|
\vfill
|
||
|
%- endfor
|
||
|
\end{center}
|
||
|
|
||
|
Bilan par compétences
|
||
|
|
||
|
\begin{itemize}
|
||
|
%- for k,v in student['competences'].iterrows()
|
||
|
\item \Var{competences[k]['latex']} \Var{competences[k]['fullname']} : \Var{v[0]}
|
||
|
%- endfor
|
||
|
\end{itemize}
|
||
|
|
||
|
|
||
|
\vfill
|
||
|
\pagebreak
|
||
|
%- endfor
|
||
|
|
||
|
\end{document}
|
||
|
|
||
|
%%% Local Variables:
|
||
|
%%% mode: latex
|
||
|
%%% TeX-master: "master"
|
||
|
%%% End:
|
||
|
|