blob: 152d503ce155854f95c5da80f9dc4fc60e8517c5 (
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
|
\documentclass[a11paper]{article}
\usepackage{karnaugh-map}
\usepackage{tabularx}
\usepackage{titlepage}
\usepackage{document}
\usepackage{booktabs}
\usepackage{multicol}
\usepackage{float}
\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
\todo{test} \fixme{another test} \note{interesting} \question{wtf}
\end{document}
|