Move todo/note functions to a dedicated file
This commit is contained in:
parent
fdb5d06dbf
commit
d0588d3a69
2 changed files with 10 additions and 4 deletions
|
@ -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
6
report/todo.sty
Normal 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}}
|
Loading…
Reference in a new issue