blob: 5fd001405be247db7930daebbc528a6120509563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
\documentclass[a11paper]{article}
\usepackage{karnaugh-map}
\usepackage{tabularx}
\usepackage{titlepage}
\usepackage{document}
\usepackage{booktabs}
\usepackage{multicol}
\usepackage{float}
\usepackage{varwidth}
% \usepackage[toc,page]{appendix}
\usepackage[usenames,dvipsnames]{xcolor}
\title{Rapport d'APP}
\class{Logique Combinatoire}
\classnb{GEN420 \& GEN430}
\teacher{Marwan Besrour \& Gabriel Bélanger}
\author{
\addtolength{\tabcolsep}{-0.4em}
\begin{tabular}{rcl} % Ajouter des auteurs au besoin
Benjamin Chausse & -- & CHAB1704 \\
Shawn Couture & -- & COUS1912 \\
\end{tabular}
}
\newcommand{\todo}[1]{\begin{color}{Red}\textbf{TODO:} #1\end{color}}
\newcommand{\note}[1]{\begin{color}{Orange}\textbf{NOTE:} #1\end{color}}
\newcommand{\fixme}[1]{\begin{color}{Fuchsia}\textbf{FIXME:} #1\end{color}}
\newcommand{\question}[1]{\begin{color}{ForestGreen}\textbf{QUESTION:} #1\end{color}}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
\todo{test} \fixme{another test} \note{interesting} \question{wtf}
\section{Module thermo2bin}
\subsection{Démarche}
\subsection{Implémentation}
\section{Simulation Complète}
\section{Démarche d'analyse}
\input{annexe.tex}
\end{document}
|