Created
October 19, 2011 15:24
-
-
Save orbekk/1298622 to your computer and use it in GitHub Desktop.
LaTeX \todo macro.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% \todo{} command. | |
% | |
% Outputs red TODOs in the document. Requires \usepackage{color}. | |
% | |
% Usage: \todo{Document the TODO command.} | |
% | |
% Comment out second line to disable. | |
\newcommand{\todo}[1]{} | |
\renewcommand{\todo}[1]{{\color{red} TODO: {#1}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment