46 lines
884 B
Text
46 lines
884 B
Text
|
{% raw %}
|
||
|
\documentclass[a4paper]{article}
|
||
|
|
||
|
\usepackage[margin=1.5cm]{geometry}
|
||
|
\usepackage[dvipsnames]{xcolor}
|
||
|
\usepackage[T1]{fontenc}
|
||
|
\usepackage[fontsize=14pt]{fontsize}
|
||
|
\usepackage{mdframed}
|
||
|
|
||
|
\title{\vspace{-1.5cm}Répartition des tâches}
|
||
|
\author{}
|
||
|
\date{\vspace{-2.5cm}}
|
||
|
|
||
|
\newcommand{\groupe}[1]{#1}
|
||
|
\newcommand{\heure}[1]{#1}
|
||
|
|
||
|
\newcommand{\category}[2]{
|
||
|
\vspace{1em}
|
||
|
\begin{center}
|
||
|
\textbf{\Large#1}
|
||
|
\end{center}\hfill #2\\
|
||
|
\vspace{1em}
|
||
|
}
|
||
|
\newcommand{\subcategory}[2]{
|
||
|
\vspace{1em}\hspace{2em}\textbf{\large#1}\hfill #2\\
|
||
|
\vspace{1em}
|
||
|
}
|
||
|
{% endraw %}
|
||
|
|
||
|
\begin{document}
|
||
|
\maketitle
|
||
|
|
||
|
\section*{Groupes}
|
||
|
|
||
|
\begin{tabular}{r l}
|
||
|
{% for g_id, _ in groupes.items() %}
|
||
|
{% include 'groupe.tex.j2' %}
|
||
|
{%- endfor %}
|
||
|
\end{tabular}
|
||
|
|
||
|
{% for cat in taches -%}
|
||
|
{% include 'category.tex.j2' %}
|
||
|
{% endfor %}
|
||
|
|
||
|
\end{document}
|