Skip to content
Snippets Groups Projects
Comments.tex 351 B
Newer Older
  • Learn to ignore specific revisions
  • %% Comments
    
    \usepackage{color}
    
    \newif\ifcomments\commentstrue
    
    \ifcomments
    \newcommand{\authornote}[3]{\textcolor{#1}{[#3 ---#2]}}
    \newcommand{\todo}[1]{\textcolor{red}{[TODO: #1]}}
    \else
    \newcommand{\authornote}[3]{}
    \newcommand{\todo}[1]{}
    \fi
    
    \newcommand{\wss}[1]{\authornote{blue}{SS}{#1}}
    \newcommand{\an}[1]{\authornote{magenta}{Author}{#1}}