Move todo/note functions to a dedicated file

This commit is contained in:
Théophile Bastian 2016-08-22 10:51:36 +02:00
parent fdb5d06dbf
commit d0588d3a69
2 changed files with 10 additions and 4 deletions

View File

@ -20,10 +20,10 @@
\usepackage{math}
\usepackage{concurgames}
\newcommand{\qtodo}[1]{\colorbox{orange}{\textcolor{blue}{#1}}}
\newcommand{\todo}[1]{\colorbox{orange}{\qtodo{\textbf{TODO:} #1}}}
\newcommand{\qnote}[1]{\colorbox{Cerulean}{\textcolor{Sepia}{[#1]}}}
\newcommand{\note}[1]{\qnote{\textbf{NOTE:} #1}}
%\newcommand{\qtodo}[1]{\colorbox{orange}{\textcolor{blue}{#1}}}
%\newcommand{\todo}[1]{\colorbox{orange}{\qtodo{\textbf{TODO:} #1}}}
%\newcommand{\qnote}[1]{\colorbox{Cerulean}{\textcolor{Sepia}{[#1]}}}
%\newcommand{\note}[1]{\qnote{\textbf{NOTE:} #1}}
\author{Théophile \textsc{Bastian}, supervised by Glynn \textsc{Winskel}
and Pierre \textsc{Clairambault} \\

6
report/todo.sty Normal file
View File

@ -0,0 +1,6 @@
\usepackage[dvipsnames]{xcolor}
\newcommand{\qtodo}[1]{\colorbox{orange}{\textcolor{blue}{#1}}}
\newcommand{\todo}[1]{\qtodo{\textbf{TODO:}\.#1}}
\newcommand{\qnote}[1]{\colorbox{Cerulean}{\textcolor{Sepia}{[#1]}}}
\newcommand{\note}[1]{\qnote{\textbf{NOTE:}\.#1}}