summaryrefslogtreecommitdiff
path: root/tools/toolbox.sty
diff options
context:
space:
mode:
authorzaikoslorandaf <sarah@gosselin.xyz>2024-09-13 10:01:04 -0400
committerzaikoslorandaf <sarah@gosselin.xyz>2024-09-13 10:01:04 -0400
commit713ff93560cb3eed02b2550df326b9a7e29ec71e (patch)
tree59c8906680c888fa5b0efe4561301420028c93f7 /tools/toolbox.sty
parentd399556ddf48e6447e6019d8d5158864ad105f98 (diff)
everything sorta worksHEADmaster
Diffstat (limited to 'tools/toolbox.sty')
-rw-r--r--tools/toolbox.sty33
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/toolbox.sty b/tools/toolbox.sty
deleted file mode 100644
index 9231c82..0000000
--- a/tools/toolbox.sty
+++ /dev/null
@@ -1,33 +0,0 @@
-
-\ProvidesPackage{toolbox}
-%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
-% Required Packages for the Module %
-%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
-\RequirePackage{xcolor} % Addition of colors and color boxes
-
-%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
-% Useful Functions for Team Work %
-%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
-% The following should NEVER apprear in a final document.
-%
-% Their goal is to provide a better team work experience by adding
-% colorful/highlighted keywords into the pdfdocument.
-
-
-%% Usage (These function require a user input)
-% \todo{Something to be done...}
-% \note{A note to communicate to your team}
-% \fixme{An error you wish to higlight for later fix}
-
-\newcommand{\todo}[1]{\colorbox{red}{\textbf{TODO}:}#1}
-\newcommand{\note}[1]{\colorbox{orange}{\textbf{NOTE}:}#1}
-\newcommand{\fixme}[1]{\colorbox{purple}{\textbf{FIXME}:}#1}
-
-%% Usage (These function DON'T require a user input)
-% \addref --> Displays "addref" highlighted in magenta
-% \addcite --> Displays "addcite" highlighted in magenta
-% \addimg --> Displays "addimg" highlighted in cyan
-\newcommand{\addref}{\colorbox{magenta}{add ref}}
-\newcommand{\addcite}{\colorbox{magenta}{add citation}}
-\newcommand{\addimg}{\colorbox{cyan}{add image!}}
-